Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(api): OpenAPI spec update via Stainless API #1165

Merged
merged 1 commit into from
Jul 3, 2024
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
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 1254
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-6479aeb5bec3a92a5e31e7129065d636310157577470eda192516abad197e96c.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-9ec83085fa15e1f1cc613401a707a27556909eab3b6b756359938f8fd4a1aef4.yml
4 changes: 2 additions & 2 deletions src/cloudflare/resources/r2/temporary_credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def create(
Args:
account_id: Account ID
bucket: Name of the GCS bucket
bucket: Name of the R2 bucket
parent_access_key_id: The parent access key id to use for signing
Expand Down Expand Up @@ -142,7 +142,7 @@ async def create(
Args:
account_id: Account ID
bucket: Name of the GCS bucket
bucket: Name of the R2 bucket
parent_access_key_id: The parent access key id to use for signing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TemporaryCredentialCreateParams(TypedDict, total=False):
"""Account ID"""

bucket: Required[str]
"""Name of the GCS bucket"""
"""Name of the R2 bucket"""

parent_access_key_id: Required[Annotated[str, PropertyInfo(alias="parentAccessKeyId")]]
"""The parent access key id to use for signing"""
Expand Down