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: 1707
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-f78a35abf9d278902c3a5eb8d4e7d4e95a2b140f2a4232fa1cdeb9903e0cb84a.yml
openapi_spec_hash: 92d871db6baffc6ddacbd694cb109414
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-5c35402447e53718289f20efeb2057f3cdecd299425924ad251479d6c4852fc2.yml
openapi_spec_hash: ebb145ffdc717a5cc9391fd37a7eb0e8
config_hash: e30b863eac83985d5919f958f3cd8993
8 changes: 4 additions & 4 deletions src/cloudflare/resources/dns/settings/account/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def edit(
Update DNS settings for an account

Args:
account_id: Identifier
account_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -116,7 +116,7 @@ def get(
Show DNS settings for an account

Args:
account_id: Identifier
account_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -181,7 +181,7 @@ async def edit(
Update DNS settings for an account

Args:
account_id: Identifier
account_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -221,7 +221,7 @@ async def get(
Show DNS settings for an account

Args:
account_id: Identifier
account_id: Identifier.

extra_headers: Send extra headers

Expand Down
32 changes: 16 additions & 16 deletions src/cloudflare/resources/dns/settings/account/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def create(
Create Internal DNS View for an account

Args:
account_id: Identifier
account_id: Identifier.

name: The name of the view.

Expand Down Expand Up @@ -128,7 +128,7 @@ def list(
List DNS Internal Views for an Account

Args:
account_id: Identifier
account_id: Identifier.

direction: Direction to order DNS views in.

Expand Down Expand Up @@ -197,9 +197,9 @@ def delete(
Delete an existing Internal DNS View

Args:
account_id: Identifier
account_id: Identifier.

view_id: Identifier
view_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -243,9 +243,9 @@ def edit(
Update an existing Internal DNS View

Args:
account_id: Identifier
account_id: Identifier.

view_id: Identifier
view_id: Identifier.

name: The name of the view.

Expand Down Expand Up @@ -298,9 +298,9 @@ def get(
Get DNS Internal View

Args:
account_id: Identifier
account_id: Identifier.

view_id: Identifier
view_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -364,7 +364,7 @@ async def create(
Create Internal DNS View for an account

Args:
account_id: Identifier
account_id: Identifier.

name: The name of the view.

Expand Down Expand Up @@ -422,7 +422,7 @@ def list(
List DNS Internal Views for an Account

Args:
account_id: Identifier
account_id: Identifier.

direction: Direction to order DNS views in.

Expand Down Expand Up @@ -491,9 +491,9 @@ async def delete(
Delete an existing Internal DNS View

Args:
account_id: Identifier
account_id: Identifier.

view_id: Identifier
view_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -537,9 +537,9 @@ async def edit(
Update an existing Internal DNS View

Args:
account_id: Identifier
account_id: Identifier.

view_id: Identifier
view_id: Identifier.

name: The name of the view.

Expand Down Expand Up @@ -592,9 +592,9 @@ async def get(
Get DNS Internal View

Args:
account_id: Identifier
account_id: Identifier.

view_id: Identifier
view_id: Identifier.

extra_headers: Send extra headers

Expand Down
8 changes: 4 additions & 4 deletions src/cloudflare/resources/dns/settings/zone.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def edit(
Update DNS settings for a zone

Args:
zone_id: Identifier
zone_id: Identifier.

flatten_all_cnames: Whether to flatten all CNAME records in the zone. Note that, due to DNS
limitations, a CNAME record at the zone apex will always be flattened.
Expand Down Expand Up @@ -148,7 +148,7 @@ def get(
Show DNS settings for a zone

Args:
zone_id: Identifier
zone_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -217,7 +217,7 @@ async def edit(
Update DNS settings for a zone

Args:
zone_id: Identifier
zone_id: Identifier.

flatten_all_cnames: Whether to flatten all CNAME records in the zone. Note that, due to DNS
limitations, a CNAME record at the zone apex will always be flattened.
Expand Down Expand Up @@ -292,7 +292,7 @@ async def get(
Show DNS settings for a zone

Args:
zone_id: Identifier
zone_id: Identifier.

extra_headers: Send extra headers

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ViewCreateParams(TypedDict, total=False):
account_id: Required[str]
"""Identifier"""
"""Identifier."""

name: Required[str]
"""The name of the view."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ViewCreateResponse(BaseModel):
id: str
"""Identifier"""
"""Identifier."""

created_time: datetime
"""When the view was created."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

class ViewDeleteResponse(BaseModel):
id: Optional[str] = None
"""Identifier"""
"""Identifier."""
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ViewEditParams(TypedDict, total=False):
account_id: Required[str]
"""Identifier"""
"""Identifier."""

name: str
"""The name of the view."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ViewEditResponse(BaseModel):
id: str
"""Identifier"""
"""Identifier."""

created_time: datetime
"""When the view was created."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ViewGetResponse(BaseModel):
id: str
"""Identifier"""
"""Identifier."""

created_time: datetime
"""When the view was created."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class ViewListParams(TypedDict, total=False):
account_id: Required[str]
"""Identifier"""
"""Identifier."""

direction: Literal["asc", "desc"]
"""Direction to order DNS views in."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class ViewListResponse(BaseModel):
id: str
"""Identifier"""
"""Identifier."""

created_time: datetime
"""When the view was created."""
Expand Down
2 changes: 1 addition & 1 deletion src/cloudflare/types/dns/settings/account_edit_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class AccountEditParams(TypedDict, total=False):
account_id: Required[str]
"""Identifier"""
"""Identifier."""

zone_defaults: ZoneDefaults

Expand Down
2 changes: 1 addition & 1 deletion src/cloudflare/types/dns/settings/zone_edit_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class ZoneEditParams(TypedDict, total=False):
zone_id: Required[str]
"""Identifier"""
"""Identifier."""

flatten_all_cnames: bool
"""Whether to flatten all CNAME records in the zone.
Expand Down