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: 1681
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-b55b8637a8412ad0cd24165181731fe5778b097ba6fca112bbad39e5a3ec1aa1.yml
openapi_spec_hash: 244af09682675169c11b9929529ed027
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-829dd397e1e3a616d11114be4fa1d68a09fac6d59958c41c6767b3225847c8b9.yml
openapi_spec_hash: 1c4fd21b82989ec85ce2d40298098974
config_hash: 5f546b68dc187cd0f2fea2d9ae061b3b
12 changes: 6 additions & 6 deletions src/cloudflare/resources/logs/control/cmb/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def create(
Updates CMB config.

Args:
account_id: Identifier
account_id: Identifier.

regions: Comma-separated list of regions.

Expand Down Expand Up @@ -105,7 +105,7 @@ def delete(
Deletes CMB config.

Args:
account_id: Identifier
account_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -144,7 +144,7 @@ def get(
Gets CMB config.

Args:
account_id: Identifier
account_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -205,7 +205,7 @@ async def create(
Updates CMB config.

Args:
account_id: Identifier
account_id: Identifier.

regions: Comma-separated list of regions.

Expand Down Expand Up @@ -247,7 +247,7 @@ async def delete(
Deletes CMB config.

Args:
account_id: Identifier
account_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -286,7 +286,7 @@ async def get(
Gets CMB config.

Args:
account_id: Identifier
account_id: Identifier.

extra_headers: Send extra headers

Expand Down
8 changes: 4 additions & 4 deletions src/cloudflare/resources/logs/control/retention.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def create(
Updates log retention flag for Logpull API.

Args:
zone_id: Identifier
zone_id: Identifier.

flag: The log retention flag for Logpull API.

Expand Down Expand Up @@ -106,7 +106,7 @@ def get(
Gets log retention flag for Logpull API.

Args:
zone_id: Identifier
zone_id: Identifier.

extra_headers: Send extra headers

Expand Down Expand Up @@ -167,7 +167,7 @@ async def create(
Updates log retention flag for Logpull API.

Args:
zone_id: Identifier
zone_id: Identifier.

flag: The log retention flag for Logpull API.

Expand Down Expand Up @@ -209,7 +209,7 @@ async def get(
Gets log retention flag for Logpull API.

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 @@ -9,7 +9,7 @@

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

regions: str
"""Comma-separated list of regions."""
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

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

flag: bool
"""The log retention flag for Logpull API."""