-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): update via SDK Studio (#284)
- Loading branch information
1 parent
9b2178a
commit f46eebe
Showing
40 changed files
with
695 additions
and
457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/cloudflare/types/zero_trust/access_device_posture_rule.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from ..._models import BaseModel | ||
|
||
__all__ = ["AccessDevicePostureRule", "DevicePosture"] | ||
|
||
|
||
class DevicePosture(BaseModel): | ||
integration_uid: str | ||
"""The ID of a device posture integration.""" | ||
|
||
|
||
class AccessDevicePostureRule(BaseModel): | ||
device_posture: DevicePosture |
16 changes: 16 additions & 0 deletions
16
src/cloudflare/types/zero_trust/access_device_posture_rule_param.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
from typing_extensions import Required, TypedDict | ||
|
||
__all__ = ["AccessDevicePostureRuleParam", "DevicePosture"] | ||
|
||
|
||
class DevicePosture(TypedDict, total=False): | ||
integration_uid: Required[str] | ||
"""The ID of a device posture integration.""" | ||
|
||
|
||
class AccessDevicePostureRuleParam(TypedDict, total=False): | ||
device_posture: Required[DevicePosture] |
Oops, something went wrong.