Skip to content

Commit add6b5f

Browse files
feat(api): api update
1 parent 8c74c60 commit add6b5f

File tree

5 files changed

+10
-14
lines changed

5 files changed

+10
-14
lines changed

.stats.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1711
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a854b9197fc1030fb0b1149fc2179b57b6c82df40f3fd0a92545c7039874f90b.yml
3-
openapi_spec_hash: 5a509907529b832f22f2741b393ccf0d
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-e99a4c3f30b3391c305733deec48b0bc9da78894f0c429be26777b56dc835e14.yml
3+
openapi_spec_hash: fb9d4e2a76e2286df06a22fa0e9d232e
44
config_hash: 67f412c990647f3cb598378fa22a9db5

src/cloudflare/types/rulesets/rule_create_params.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -2087,7 +2087,7 @@ class SkipRuleActionParameters(TypedDict, total=False):
20872087
phases: List[Phase]
20882088
"""A list of phases to skip the execution of.
20892089
2090-
This option is incompatible with the rulesets options.
2090+
This option is incompatible with the ruleset and rulesets options.
20912091
"""
20922092

20932093
products: List[Literal["bic", "hot", "rateLimit", "securityLevel", "uaBlock", "waf", "zoneLockdown"]]
@@ -2102,8 +2102,7 @@ class SkipRuleActionParameters(TypedDict, total=False):
21022102
ruleset: Literal["current"]
21032103
"""A ruleset to skip the execution of.
21042104
2105-
This option is incompatible with the rulesets, rules. It can be incompatible
2106-
with phases options base on the phase of the ruleset.
2105+
This option is incompatible with the rulesets, rules and phases options.
21072106
"""
21082107

21092108
rulesets: List[str]

src/cloudflare/types/rulesets/rule_edit_params.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -2129,7 +2129,7 @@ class SkipRuleActionParameters(TypedDict, total=False):
21292129
phases: List[Phase]
21302130
"""A list of phases to skip the execution of.
21312131
2132-
This option is incompatible with the rulesets options.
2132+
This option is incompatible with the ruleset and rulesets options.
21332133
"""
21342134

21352135
products: List[Literal["bic", "hot", "rateLimit", "securityLevel", "uaBlock", "waf", "zoneLockdown"]]
@@ -2144,8 +2144,7 @@ class SkipRuleActionParameters(TypedDict, total=False):
21442144
ruleset: Literal["current"]
21452145
"""A ruleset to skip the execution of.
21462146
2147-
This option is incompatible with the rulesets, rules. It can be incompatible
2148-
with phases options base on the phase of the ruleset.
2147+
This option is incompatible with the rulesets, rules and phases options.
21492148
"""
21502149

21512150
rulesets: List[str]

src/cloudflare/types/rulesets/skip_rule.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ActionParameters(BaseModel):
1515
phases: Optional[List[Phase]] = None
1616
"""A list of phases to skip the execution of.
1717
18-
This option is incompatible with the rulesets options.
18+
This option is incompatible with the ruleset and rulesets options.
1919
"""
2020

2121
products: Optional[List[Literal["bic", "hot", "rateLimit", "securityLevel", "uaBlock", "waf", "zoneLockdown"]]] = (
@@ -32,8 +32,7 @@ class ActionParameters(BaseModel):
3232
ruleset: Optional[Literal["current"]] = None
3333
"""A ruleset to skip the execution of.
3434
35-
This option is incompatible with the rulesets, rules. It can be incompatible
36-
with phases options base on the phase of the ruleset.
35+
This option is incompatible with the rulesets, rules and phases options.
3736
"""
3837

3938
rulesets: Optional[List[str]] = None

src/cloudflare/types/rulesets/skip_rule_param.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ActionParameters(TypedDict, total=False):
1515
phases: List[Phase]
1616
"""A list of phases to skip the execution of.
1717
18-
This option is incompatible with the rulesets options.
18+
This option is incompatible with the ruleset and rulesets options.
1919
"""
2020

2121
products: List[Literal["bic", "hot", "rateLimit", "securityLevel", "uaBlock", "waf", "zoneLockdown"]]
@@ -30,8 +30,7 @@ class ActionParameters(TypedDict, total=False):
3030
ruleset: Literal["current"]
3131
"""A ruleset to skip the execution of.
3232
33-
This option is incompatible with the rulesets, rules. It can be incompatible
34-
with phases options base on the phase of the ruleset.
33+
This option is incompatible with the rulesets, rules and phases options.
3534
"""
3635

3736
rulesets: List[str]

0 commit comments

Comments
 (0)