Skip to content

Commit 9c340b3

Browse files
feat(api): api update
1 parent 0c32e14 commit 9c340b3

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1734
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-5c11da89c6dd1e139ba66f36894b11aa131606697f25cd24dae2a1a474ce8b1f.yml
3-
openapi_spec_hash: 99ecf7c0608c6123ff34cccecf48bf8d
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-3d49e1d67e5503c28d3a7d90936a4e6fba7de35574ea2e0e36466ae9198973e4.yml
3+
openapi_spec_hash: 318cadc958dc0355de1286086371f331
44
config_hash: ab6d922663ab4c7b89e22975f70d50d8

src/cloudflare/types/zero_trust/gateway/rule_setting.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ class BISOAdminControls(BaseModel):
5050
dk: Optional[bool] = None
5151
"""Set to false to enable keyboard usage. Only applies when `version == "v1"`."""
5252

53-
download: Optional[Literal["enabled", "disabled"]] = None
53+
download: Optional[Literal["enabled", "disabled", "remote_only"]] = None
5454
"""Configure whether downloading enabled or not.
5555
56-
When absent, downloading is enabled. Only applies when `version == "v2"`.
56+
When set with "remote_only", downloads are only available for viewing. Only
57+
applies when `version == "v2"`.
5758
"""
5859

5960
dp: Optional[bool] = None

src/cloudflare/types/zero_trust/gateway/rule_setting_param.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ class BISOAdminControls(TypedDict, total=False):
4949
dk: bool
5050
"""Set to false to enable keyboard usage. Only applies when `version == "v1"`."""
5151

52-
download: Literal["enabled", "disabled"]
52+
download: Literal["enabled", "disabled", "remote_only"]
5353
"""Configure whether downloading enabled or not.
5454
55-
When absent, downloading is enabled. Only applies when `version == "v2"`.
55+
When set with "remote_only", downloads are only available for viewing. Only
56+
applies when `version == "v2"`.
5657
"""
5758

5859
dp: bool

0 commit comments

Comments
 (0)