Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 1680
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-4e3e219c2f2c6f9bc185b6a54fc8646041c96a3d1ad3367979cc3a4d18563172.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-22aa409339ba3ba4e61a86e7e94dc5a66082c5c20615d1d30e3b9499d6407e31.yml
openapi_spec_hash: e5eb84a55caa82c6dfdc82b7fbe3e8aa
config_hash: 94dbe34a71cea39e805dcaf50b693e42
config_hash: 713ebf60a015dd910800437b34425bea
19 changes: 15 additions & 4 deletions src/cloudflare/types/addressing/address_map_delete_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ..._models import BaseModel
from ..shared.response_info import ResponseInfo

__all__ = ["AddressMapDeleteResponse", "ResultInfo"]
__all__ = ["AddressMapDeleteResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class AddressMapDeleteResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ...._models import BaseModel
from ...shared.response_info import ResponseInfo

__all__ = ["AccountDeleteResponse", "ResultInfo"]
__all__ = ["AccountDeleteResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class AccountDeleteResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ...._models import BaseModel
from ...shared.response_info import ResponseInfo

__all__ = ["AccountUpdateResponse", "ResultInfo"]
__all__ = ["AccountUpdateResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class AccountUpdateResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
19 changes: 15 additions & 4 deletions src/cloudflare/types/addressing/address_maps/ip_delete_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ...._models import BaseModel
from ...shared.response_info import ResponseInfo

__all__ = ["IPDeleteResponse", "ResultInfo"]
__all__ = ["IPDeleteResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class IPDeleteResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
19 changes: 15 additions & 4 deletions src/cloudflare/types/addressing/address_maps/ip_update_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ...._models import BaseModel
from ...shared.response_info import ResponseInfo

__all__ = ["IPUpdateResponse", "ResultInfo"]
__all__ = ["IPUpdateResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class IPUpdateResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ...._models import BaseModel
from ...shared.response_info import ResponseInfo

__all__ = ["ZoneDeleteResponse", "ResultInfo"]
__all__ = ["ZoneDeleteResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class ZoneDeleteResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ...._models import BaseModel
from ...shared.response_info import ResponseInfo

__all__ = ["ZoneUpdateResponse", "ResultInfo"]
__all__ = ["ZoneUpdateResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class ZoneUpdateResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
19 changes: 15 additions & 4 deletions src/cloudflare/types/addressing/prefix_delete_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ..._models import BaseModel
from ..shared.response_info import ResponseInfo

__all__ = ["PrefixDeleteResponse", "ResultInfo"]
__all__ = ["PrefixDeleteResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class PrefixDeleteResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,26 @@
from typing_extensions import Literal

from ...._models import BaseModel
from ...shared.response_info import ResponseInfo

__all__ = ["ServiceBindingDeleteResponse"]
__all__ = ["ServiceBindingDeleteResponse", "Error", "Message"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ServiceBindingDeleteResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,26 @@
from typing_extensions import Literal

from ..._models import BaseModel
from ..shared.response_info import ResponseInfo

__all__ = ["RegionalHostnameDeleteResponse"]
__all__ = ["RegionalHostnameDeleteResponse", "Error", "Message"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class RegionalHostnameDeleteResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
from typing_extensions import Literal

from ...._models import BaseModel
from ...shared.response_info import ResponseInfo

__all__ = ["PagerdutyDeleteResponse", "ResultInfo"]
__all__ = ["PagerdutyDeleteResponse", "Error", "Message", "ResultInfo"]


class Error(BaseModel):
code: int

message: str


class Message(BaseModel):
code: int

message: str


class ResultInfo(BaseModel):
Expand All @@ -24,9 +35,9 @@ class ResultInfo(BaseModel):


class PagerdutyDeleteResponse(BaseModel):
errors: List[ResponseInfo]
errors: List[Error]

messages: List[ResponseInfo]
messages: List[Message]

success: Literal[True]
"""Whether the API call was successful"""
Expand Down
Loading