Skip to content

Commit 119f889

Browse files
chore(api): update composite API spec
1 parent fc648ce commit 119f889

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1821
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-df1380110de4bd213f2d58dc4df48e37a9d8c31f1060370d540ef0996c929925.yml
3-
openapi_spec_hash: d8aafb10be079e6124b75dd5f1884dcb
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-e758fbd537ee6a6679a4b8930316dea8c62b76c2e1d50786767ae560edb9b8f7.yml
3+
openapi_spec_hash: 61a3fefb76f66f3392f46a9012434966
44
config_hash: 0ce5789fc4b59ae352e68d00847570c2

src/cloudflare/resources/zero_trust/gateway/rules.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def create(
112112
apply to HTTP or network policies. Settable only for `dns` rules.
113113
114114
filters: Specify the protocol or layer to evaluate the traffic, identity, and device
115-
posture expressions.
115+
posture expressions. Can only contain a single value.
116116
117117
identity: Specify the wirefilter expression used for identity matching. The API
118118
automatically formats and sanitizes expressions before storing them. To prevent
@@ -245,7 +245,7 @@ def update(
245245
apply to HTTP or network policies. Settable only for `dns` rules.
246246
247247
filters: Specify the protocol or layer to evaluate the traffic, identity, and device
248-
posture expressions.
248+
posture expressions. Can only contain a single value.
249249
250250
identity: Specify the wirefilter expression used for identity matching. The API
251251
automatically formats and sanitizes expressions before storing them. To prevent
@@ -560,7 +560,7 @@ async def create(
560560
apply to HTTP or network policies. Settable only for `dns` rules.
561561
562562
filters: Specify the protocol or layer to evaluate the traffic, identity, and device
563-
posture expressions.
563+
posture expressions. Can only contain a single value.
564564
565565
identity: Specify the wirefilter expression used for identity matching. The API
566566
automatically formats and sanitizes expressions before storing them. To prevent
@@ -693,7 +693,7 @@ async def update(
693693
apply to HTTP or network policies. Settable only for `dns` rules.
694694
695695
filters: Specify the protocol or layer to evaluate the traffic, identity, and device
696-
posture expressions.
696+
posture expressions. Can only contain a single value.
697697
698698
identity: Specify the wirefilter expression used for identity matching. The API
699699
automatically formats and sanitizes expressions before storing them. To prevent

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class GatewayRule(BaseModel):
6262
filters: List[GatewayFilter]
6363
"""
6464
Specify the protocol or layer to evaluate the traffic, identity, and device
65-
posture expressions.
65+
posture expressions. Can only contain a single value.
6666
"""
6767

6868
name: str

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class RuleCreateParams(TypedDict, total=False):
6969
filters: List[GatewayFilter]
7070
"""
7171
Specify the protocol or layer to evaluate the traffic, identity, and device
72-
posture expressions.
72+
posture expressions. Can only contain a single value.
7373
"""
7474

7575
identity: str

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class RuleUpdateParams(TypedDict, total=False):
6969
filters: List[GatewayFilter]
7070
"""
7171
Specify the protocol or layer to evaluate the traffic, identity, and device
72-
posture expressions.
72+
posture expressions. Can only contain a single value.
7373
"""
7474

7575
identity: str

0 commit comments

Comments
 (0)