8000 feat(api): api update · cloudflare/cloudflare-python@9ca549e · GitHub
[go: up one dir, main page]

Skip to content

Commit 9ca549e

Browse files
feat(api): api update
1 parent d078d82 commit 9ca549e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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: 1706
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-5520d22552cc295e89dd08883b7b53289d7e12061fb9cf37b87f56c635a5ee5c.yml
3-
openapi_spec_hash: dcd1000b4eb09ffe6128efb1d17398ef
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-2dae8879faca0590948be3d1c1c3d9c48c3011169a9d10a94da004e49fe30215.yml
3+
openapi_spec_hash: be8d9bebac2ea8ad8cb531cf08ce7dbf
44
config_hash: 67f412c990647f3cb598378fa22a9db5

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from __future__ import annotations
44

5-
from typing import Dict, List, Iterable
5+
from typing import Dict, List, Iterable, Optional
66
from typing_extensions import Literal, Required, TypedDict
77

88
from .dns_resolver_settings_v4_param import DNSResolverSettingsV4Param
@@ -206,7 +206,7 @@ class RuleSettingParam(TypedDict, total=False):
206206
Keys are header names, pointing to an array with its header value(s).
207207
"""
208208

209-
allow_child_bypass: bool
209+
allow_child_bypass: Optional[bool]
210210
"""Set by parent MSP accounts to enable their children to bypass this rule."""
211211

212212
audit_ssh: AuditSSH
@@ -230,7 +230,7 @@ class RuleSettingParam(TypedDict, total=False):
230230
(if enabled).
231231
"""
232232

233-
bypass_parent_rule: bool
233+
bypass_parent_rule: Optional[bool]
234234
"""Set by children MSP accounts to bypass their parent's rules."""
235235

236236
check_session: CheckSession

0 commit comments

Comments
 (0)
0