Skip to content

Commit 2f7ff55

Browse files
feat: update via SDK Studio (#118)
1 parent eb62f12 commit 2f7ff55

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

src/cloudflare/types/firewall/access_rule_create_params.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"Configuration",
1111
"ConfigurationLegacyJhsIPConfiguration",
1212
"ConfigurationLegacyJhsIPV6Configuration",
13-
"ConfigurationLegacyJhsCidrConfiguration",
13+
"ConfigurationLegacyJhsCIDRConfiguration",
1414
"ConfigurationLegacyJhsASNConfiguration",
1515
"ConfigurationLegacyJhsCountryConfiguration",
1616
]
@@ -60,7 +60,7 @@ class ConfigurationLegacyJhsIPV6Configuration(TypedDict, total=False):
6060
"""The IPv6 address to match."""
6161

6262

63-
class ConfigurationLegacyJhsCidrConfiguration(TypedDict, total=False):
63+
class ConfigurationLegacyJhsCIDRConfiguration(TypedDict, total=False):
6464
target: Literal["ip_range"]
6565
"""The configuration target.
6666
@@ -106,7 +106,7 @@ class ConfigurationLegacyJhsCountryConfiguration(TypedDict, total=False):
106106
Configuration = Union[
107107
ConfigurationLegacyJhsIPConfiguration,
108108
ConfigurationLegacyJhsIPV6Configuration,
109-
ConfigurationLegacyJhsCidrConfiguration,
109+
ConfigurationLegacyJhsCIDRConfiguration,
110110
ConfigurationLegacyJhsASNConfiguration,
111111
ConfigurationLegacyJhsCountryConfiguration,
112112
]

src/cloudflare/types/firewall/access_rule_edit_params.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"Configuration",
1111
"ConfigurationLegacyJhsIPConfiguration",
1212
"ConfigurationLegacyJhsIPV6Configuration",
13-
"ConfigurationLegacyJhsCidrConfiguration",
13+
"ConfigurationLegacyJhsCIDRConfiguration",
1414
"ConfigurationLegacyJhsASNConfiguration",
1515
"ConfigurationLegacyJhsCountryConfiguration",
1616
]
@@ -60,7 +60,7 @@ class ConfigurationLegacyJhsIPV6Configuration(TypedDict, total=False):
6060
"""The IPv6 address to match."""
6161

6262

63-
class ConfigurationLegacyJhsCidrConfiguration(TypedDict, total=False):
63+
class ConfigurationLegacyJhsCIDRConfiguration(TypedDict, total=False):
6464
target: Literal["ip_range"]
6565
"""The configuration target.
6666
@@ -106,7 +106,7 @@ class ConfigurationLegacyJhsCountryConfiguration(TypedDict, total=False):
106106
Configuration = Union[
107107
ConfigurationLegacyJhsIPConfiguration,
108108
ConfigurationLegacyJhsIPV6Configuration,
109-
ConfigurationLegacyJhsCidrConfiguration,
109+
ConfigurationLegacyJhsCIDRConfiguration,
110110
ConfigurationLegacyJhsASNConfiguration,
111111
ConfigurationLegacyJhsCountryConfiguration,
112112
]

src/cloudflare/types/firewall/legacy_jhs_zonelockdown.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"LegacyJhsZonelockdown",
1111
"Configurations",
1212
"ConfigurationsLegacyJhsSchemasIPConfiguration",
13-
"ConfigurationsLegacyJhsSchemasCidrConfiguration",
13+
"ConfigurationsLegacyJhsSchemasCIDRConfiguration",
1414
]
1515

1616

@@ -29,7 +29,7 @@ class ConfigurationsLegacyJhsSchemasIPConfiguration(BaseModel):
2929
"""
3030

3131

32-
class ConfigurationsLegacyJhsSchemasCidrConfiguration(BaseModel):
32+
class ConfigurationsLegacyJhsSchemasCIDRConfiguration(BaseModel):
3333
target: Optional[Literal["ip_range"]] = None
3434
"""The configuration target.
3535
@@ -41,7 +41,7 @@ class ConfigurationsLegacyJhsSchemasCidrConfiguration(BaseModel):
4141
"""The IP address range to match. You can only use prefix lengths `/16` and `/24`."""
4242

4343

44-
Configurations = Union[ConfigurationsLegacyJhsSchemasIPConfiguration, ConfigurationsLegacyJhsSchemasCidrConfiguration]
44+
Configurations = Union[ConfigurationsLegacyJhsSchemasIPConfiguration, ConfigurationsLegacyJhsSchemasCIDRConfiguration]
4545

4646

4747
class LegacyJhsZonelockdown(BaseModel):

src/cloudflare/types/user/firewall/access_rule_create_params.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"Configuration",
1111
"ConfigurationLegacyJhsIPConfiguration",
1212
"ConfigurationLegacyJhsIPV6Configuration",
13-
"ConfigurationLegacyJhsCidrConfiguration",
13+
"ConfigurationLegacyJhsCIDRConfiguration",
1414
"ConfigurationLegacyJhsASNConfiguration",
1515
"ConfigurationLegacyJhsCountryConfiguration",
1616
]
@@ -54,7 +54,7 @@ class ConfigurationLegacyJhsIPV6Configuration(TypedDict, total=False):
5454
"""The IPv6 address to match."""
5555

5656

57-
class ConfigurationLegacyJhsCidrConfiguration(TypedDict, total=False):
57+
class ConfigurationLegacyJhsCIDRConfiguration(TypedDict, total=False):
5858
target: Literal["ip_range"]
5959
"""The configuration target.
6060
@@ -100,7 +100,7 @@ class ConfigurationLegacyJhsCountryConfiguration(TypedDict, total=False):
100100
Configuration = Union[
101101
ConfigurationLegacyJhsIPConfiguration,
102102
ConfigurationLegacyJhsIPV6Configuration,
103-
ConfigurationLegacyJhsCidrConfiguration,
103+
ConfigurationLegacyJhsCIDRConfiguration,
104104
ConfigurationLegacyJhsASNConfiguration,
105105
ConfigurationLegacyJhsCountryConfiguration,
106106
]

src/cloudflare/types/user/firewall/legacy_jhs_rule.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"Configuration",
1212
"ConfigurationLegacyJhsIPConfiguration",
1313
"ConfigurationLegacyJhsIPV6Configuration",
14-
"ConfigurationLegacyJhsCidrConfiguration",
14+
"ConfigurationLegacyJhsCIDRConfiguration",
1515
"ConfigurationLegacyJhsASNConfiguration",
1616
"ConfigurationLegacyJhsCountryConfiguration",
1717
]
@@ -42,7 +42,7 @@ class ConfigurationLegacyJhsIPV6Configuration(BaseModel):
4242
"""The IPv6 address to match."""
4343

4444

45-
class ConfigurationLegacyJhsCidrConfiguration(BaseModel):
45+
class ConfigurationLegacyJhsCIDRConfiguration(BaseModel):
4646
target: Optional[Literal["ip_range"]] = None
4747
"""The configuration target.
4848
@@ -88,7 +88,7 @@ class ConfigurationLegacyJhsCountryConfiguration(BaseModel):
8888
Configuration = Union[
8989
ConfigurationLegacyJhsIPConfiguration,
9090
ConfigurationLegacyJhsIPV6Configuration,
91-
ConfigurationLegacyJhsCidrConfiguration,
91+
ConfigurationLegacyJhsCIDRConfiguration,
9292
ConfigurationLegacyJhsASNConfiguration,
9393
ConfigurationLegacyJhsCountryConfiguration,
9494
]

0 commit comments

Comments
 (0)