Skip to content

Commit

Permalink
feat(api): update via SDK Studio (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Apr 23, 2024
1 parent 42e0458 commit 477c21a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ....._models import BaseModel
from ..applications import UserPolicyCheckGeo

__all__ = ["ActiveSessionGetResponse", "DeviceSessions", "DevicePosture", "DevicePostureCheck", "IDP", "MTLSAuth"]
__all__ = ["ActiveSessionGetResponse", "DeviceSessions", "DevicePosture", "DevicePostureCheck", "IdP", "MTLSAuth"]


class DeviceSessions(BaseModel):
Expand Down Expand Up @@ -40,7 +40,7 @@ class DevicePosture(BaseModel):
type: Optional[str] = None


class IDP(BaseModel):
class IdP(BaseModel):
id: Optional[str] = None

type: Optional[str] = None
Expand Down Expand Up @@ -77,7 +77,7 @@ class ActiveSessionGetResponse(BaseModel):

iat: Optional[float] = None

idp: Optional[IDP] = None
idp: Optional[IdP] = None

ip: Optional[str] = None

Expand Down
6 changes: 3 additions & 3 deletions src/cloudflare/types/zero_trust/access/users/identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ....._models import BaseModel
from ..applications import UserPolicyCheckGeo

__all__ = ["Identity", "DeviceSessions", "DevicePosture", "DevicePostureCheck", "IDP", "MTLSAuth"]
__all__ = ["Identity", "DeviceSessions", "DevicePosture", "DevicePostureCheck", "IdP", "MTLSAuth"]


class DeviceSessions(BaseModel):
Expand Down Expand Up @@ -40,7 +40,7 @@ class DevicePosture(BaseModel):
type: Optional[str] = None


class IDP(BaseModel):
class IdP(BaseModel):
id: Optional[str] = None

type: Optional[str] = None
Expand Down Expand Up @@ -77,7 +77,7 @@ class Identity(BaseModel):

iat: Optional[float] = None

idp: Optional[IDP] = None
idp: Optional[IdP] = None

ip: Optional[str] = None

Expand Down

0 comments on commit 477c21a

Please sign in to comment.