mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-16 23:01:03 +00:00
feat: update via SDK Studio (#118)
This commit is contained in:
parent
eb62f120e1
commit
2f7ff551ee
5 changed files with 15 additions and 15 deletions
|
|
@ -10,7 +10,7 @@ __all__ = [
|
|||
"Configuration",
|
||||
"ConfigurationLegacyJhsIPConfiguration",
|
||||
"ConfigurationLegacyJhsIPV6Configuration",
|
||||
"ConfigurationLegacyJhsCidrConfiguration",
|
||||
"ConfigurationLegacyJhsCIDRConfiguration",
|
||||
"ConfigurationLegacyJhsASNConfiguration",
|
||||
"ConfigurationLegacyJhsCountryConfiguration",
|
||||
]
|
||||
|
|
@ -60,7 +60,7 @@ class ConfigurationLegacyJhsIPV6Configuration(TypedDict, total=False):
|
|||
"""The IPv6 address to match."""
|
||||
|
||||
|
||||
class ConfigurationLegacyJhsCidrConfiguration(TypedDict, total=False):
|
||||
class ConfigurationLegacyJhsCIDRConfiguration(TypedDict, total=False):
|
||||
target: Literal["ip_range"]
|
||||
"""The configuration target.
|
||||
|
||||
|
|
@ -106,7 +106,7 @@ class ConfigurationLegacyJhsCountryConfiguration(TypedDict, total=False):
|
|||
Configuration = Union[
|
||||
ConfigurationLegacyJhsIPConfiguration,
|
||||
ConfigurationLegacyJhsIPV6Configuration,
|
||||
ConfigurationLegacyJhsCidrConfiguration,
|
||||
ConfigurationLegacyJhsCIDRConfiguration,
|
||||
ConfigurationLegacyJhsASNConfiguration,
|
||||
ConfigurationLegacyJhsCountryConfiguration,
|
||||
]
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ __all__ = [
|
|||
"Configuration",
|
||||
"ConfigurationLegacyJhsIPConfiguration",
|
||||
"ConfigurationLegacyJhsIPV6Configuration",
|
||||
"ConfigurationLegacyJhsCidrConfiguration",
|
||||
"ConfigurationLegacyJhsCIDRConfiguration",
|
||||
"ConfigurationLegacyJhsASNConfiguration",
|
||||
"ConfigurationLegacyJhsCountryConfiguration",
|
||||
]
|
||||
|
|
@ -60,7 +60,7 @@ class ConfigurationLegacyJhsIPV6Configuration(TypedDict, total=False):
|
|||
"""The IPv6 address to match."""
|
||||
|
||||
|
||||
class ConfigurationLegacyJhsCidrConfiguration(TypedDict, total=False):
|
||||
class ConfigurationLegacyJhsCIDRConfiguration(TypedDict, total=False):
|
||||
target: Literal["ip_range"]
|
||||
"""The configuration target.
|
||||
|
||||
|
|
@ -106,7 +106,7 @@ class ConfigurationLegacyJhsCountryConfiguration(TypedDict, total=False):
|
|||
Configuration = Union[
|
||||
ConfigurationLegacyJhsIPConfiguration,
|
||||
ConfigurationLegacyJhsIPV6Configuration,
|
||||
ConfigurationLegacyJhsCidrConfiguration,
|
||||
ConfigurationLegacyJhsCIDRConfiguration,
|
||||
ConfigurationLegacyJhsASNConfiguration,
|
||||
ConfigurationLegacyJhsCountryConfiguration,
|
||||
]
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ __all__ = [
|
|||
"LegacyJhsZonelockdown",
|
||||
"Configurations",
|
||||
"ConfigurationsLegacyJhsSchemasIPConfiguration",
|
||||
"ConfigurationsLegacyJhsSchemasCidrConfiguration",
|
||||
"ConfigurationsLegacyJhsSchemasCIDRConfiguration",
|
||||
]
|
||||
|
||||
|
||||
|
|
@ -29,7 +29,7 @@ class ConfigurationsLegacyJhsSchemasIPConfiguration(BaseModel):
|
|||
"""
|
||||
|
||||
|
||||
class ConfigurationsLegacyJhsSchemasCidrConfiguration(BaseModel):
|
||||
class ConfigurationsLegacyJhsSchemasCIDRConfiguration(BaseModel):
|
||||
target: Optional[Literal["ip_range"]] = None
|
||||
"""The configuration target.
|
||||
|
||||
|
|
@ -41,7 +41,7 @@ class ConfigurationsLegacyJhsSchemasCidrConfiguration(BaseModel):
|
|||
"""The IP address range to match. You can only use prefix lengths `/16` and `/24`."""
|
||||
|
||||
|
||||
Configurations = Union[ConfigurationsLegacyJhsSchemasIPConfiguration, ConfigurationsLegacyJhsSchemasCidrConfiguration]
|
||||
Configurations = Union[ConfigurationsLegacyJhsSchemasIPConfiguration, ConfigurationsLegacyJhsSchemasCIDRConfiguration]
|
||||
|
||||
|
||||
class LegacyJhsZonelockdown(BaseModel):
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ __all__ = [
|
|||
"Configuration",
|
||||
"ConfigurationLegacyJhsIPConfiguration",
|
||||
"ConfigurationLegacyJhsIPV6Configuration",
|
||||
"ConfigurationLegacyJhsCidrConfiguration",
|
||||
"ConfigurationLegacyJhsCIDRConfiguration",
|
||||
"ConfigurationLegacyJhsASNConfiguration",
|
||||
"ConfigurationLegacyJhsCountryConfiguration",
|
||||
]
|
||||
|
|
@ -54,7 +54,7 @@ class ConfigurationLegacyJhsIPV6Configuration(TypedDict, total=False):
|
|||
"""The IPv6 address to match."""
|
||||
|
||||
|
||||
class ConfigurationLegacyJhsCidrConfiguration(TypedDict, total=False):
|
||||
class ConfigurationLegacyJhsCIDRConfiguration(TypedDict, total=False):
|
||||
target: Literal["ip_range"]
|
||||
"""The configuration target.
|
||||
|
||||
|
|
@ -100,7 +100,7 @@ class ConfigurationLegacyJhsCountryConfiguration(TypedDict, total=False):
|
|||
Configuration = Union[
|
||||
ConfigurationLegacyJhsIPConfiguration,
|
||||
ConfigurationLegacyJhsIPV6Configuration,
|
||||
ConfigurationLegacyJhsCidrConfiguration,
|
||||
ConfigurationLegacyJhsCIDRConfiguration,
|
||||
ConfigurationLegacyJhsASNConfiguration,
|
||||
ConfigurationLegacyJhsCountryConfiguration,
|
||||
]
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ __all__ = [
|
|||
"Configuration",
|
||||
"ConfigurationLegacyJhsIPConfiguration",
|
||||
"ConfigurationLegacyJhsIPV6Configuration",
|
||||
"ConfigurationLegacyJhsCidrConfiguration",
|
||||
"ConfigurationLegacyJhsCIDRConfiguration",
|
||||
"ConfigurationLegacyJhsASNConfiguration",
|
||||
"ConfigurationLegacyJhsCountryConfiguration",
|
||||
]
|
||||
|
|
@ -42,7 +42,7 @@ class ConfigurationLegacyJhsIPV6Configuration(BaseModel):
|
|||
"""The IPv6 address to match."""
|
||||
|
||||
|
||||
class ConfigurationLegacyJhsCidrConfiguration(BaseModel):
|
||||
class ConfigurationLegacyJhsCIDRConfiguration(BaseModel):
|
||||
target: Optional[Literal["ip_range"]] = None
|
||||
"""The configuration target.
|
||||
|
||||
|
|
@ -88,7 +88,7 @@ class ConfigurationLegacyJhsCountryConfiguration(BaseModel):
|
|||
Configuration = Union[
|
||||
ConfigurationLegacyJhsIPConfiguration,
|
||||
ConfigurationLegacyJhsIPV6Configuration,
|
||||
ConfigurationLegacyJhsCidrConfiguration,
|
||||
ConfigurationLegacyJhsCIDRConfiguration,
|
||||
ConfigurationLegacyJhsASNConfiguration,
|
||||
ConfigurationLegacyJhsCountryConfiguration,
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue