Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1288828

Browse files
committedMar 9, 2025·
fix(r2_custom_domain): update path placeholders to de-duplicate internal values (#2506)
1 parent ea4d061 commit 1288828

File tree

9 files changed

+984
-4
lines changed

9 files changed

+984
-4
lines changed
 

‎.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
configured_endpoints: 1571
1+
configured_endpoints: 1574
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-49794d21f9c5b1d528a53fc9c10d5d9de6eed9bd412a262d1cad78fa453be1b4.yml

‎api.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -4693,13 +4693,22 @@ Methods:
46934693
Types:
46944694

46954695
```python
4696-
from cloudflare.types.r2.buckets.domains import CustomCreateResponse, CustomListResponse
4696+
from cloudflare.types.r2.buckets.domains import (
4697+
CustomCreateResponse,
4698+
CustomUpdateResponse,
4699+
CustomListResponse,
4700+
CustomDeleteResponse,
4701+
CustomGetResponse,
4702+
)
46974703
```
46984704

46994705
Methods:
47004706

47014707
- <code title="post /accounts/{account_id}/r2/buckets/{bucket_name}/domains/custom">client.r2.buckets.domains.custom.<a href="./src/cloudflare/resources/r2/buckets/domains/custom.py">create</a>(bucket_name, \*, account_id, \*\*<a href="src/cloudflare/types/r2/buckets/domains/custom_create_params.py">params</a>) -> <a href="./src/cloudflare/types/r2/buckets/domains/custom_create_response.py">CustomCreateResponse</a></code>
4708+
- <code title="put /accounts/{account_id}/r2/buckets/{bucket_name}/domains/custom/{domain}">client.r2.buckets.domains.custom.<a href="./src/cloudflare/resources/r2/buckets/domains/custom.py">update</a>(domain, \*, account_id, bucket_name, \*\*<a href="src/cloudflare/types/r2/buckets/domains/custom_update_params.py">params</a>) -> <a href="./src/cloudflare/types/r2/buckets/domains/custom_update_response.py">CustomUpdateResponse</a></code>
47024709
- <code title="get /accounts/{account_id}/r2/buckets/{bucket_name}/domains/custom">client.r2.buckets.domains.custom.<a href="./src/cloudflare/resources/r2/buckets/domains/custom.py">list</a>(bucket_name, \*, account_id) -> <a href="./src/cloudflare/types/r2/buckets/domains/custom_list_response.py">CustomListResponse</a></code>
4710+
- <code title="delete /accounts/{account_id}/r2/buckets/{bucket_name}/domains/custom/{domain}">client.r2.buckets.domains.custom.<a href="./src/cloudflare/resources/r2/buckets/domains/custom.py">delete</a>(domain, \*, account_id, bucket_name) -> <a href="./src/cloudflare/types/r2/buckets/domains/custom_delete_response.py">CustomDeleteResponse</a></code>
4711+
- <code title="get /accounts/{account_id}/r2/buckets/{bucket_name}/domains/custom/{domain}">client.r2.buckets.domains.custom.<a href="./src/cloudflare/resources/r2/buckets/domains/custom.py">get</a>(domain, \*, account_id, bucket_name) -> <a href="./src/cloudflare/types/r2/buckets/domains/custom_get_response.py">CustomGetResponse</a></code>
47034712

47044713
#### Managed
47054714

‎src/cloudflare/resources/r2/buckets/domains/custom.py

+404-1
Large diffs are not rendered by default.

‎src/cloudflare/types/r2/buckets/domains/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
from __future__ import annotations
44

5+
from .custom_get_response import CustomGetResponse as CustomGetResponse
56
from .custom_create_params import CustomCreateParams as CustomCreateParams
67
from .custom_list_response import CustomListResponse as CustomListResponse
8+
from .custom_update_params import CustomUpdateParams as CustomUpdateParams
79
from .managed_list_response import ManagedListResponse as ManagedListResponse
810
from .managed_update_params import ManagedUpdateParams as ManagedUpdateParams
911
from .custom_create_response import CustomCreateResponse as CustomCreateResponse
12+
from .custom_delete_response import CustomDeleteResponse as CustomDeleteResponse
13+
from .custom_update_response import CustomUpdateResponse as CustomUpdateResponse
1014
from .managed_update_response import ManagedUpdateResponse as ManagedUpdateResponse
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
4+
from ....._models import BaseModel
5+
6+
__all__ = ["CustomDeleteResponse"]
7+
8+
9+
class CustomDeleteResponse(BaseModel):
10+
domain: str
11+
"""Name of the removed custom domain"""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing import Optional
4+
from typing_extensions import Literal
5+
6+
from pydantic import Field as FieldInfo
7+
8+
from ....._models import BaseModel
9+
10+
__all__ = ["CustomGetResponse", "Status"]
11+
12+
13+
class Status(BaseModel):
14+
ownership: Literal["pending", "active", "deactivated", "blocked", "error", "unknown"]
15+
"""Ownership status of the domain"""
16+
17+
ssl: Literal["initializing", "pending", "active", "deactivated", "error", "unknown"]
18+
"""SSL certificate status"""
19+
20+
21+
class CustomGetResponse(BaseModel):
22+
domain: str
23+
"""Domain name of the custom domain to be added"""
24+
25+
enabled: bool
26+
"""Whether this bucket is publicly accessible at the specified custom domain"""
27+
28+
status: Status
29+
30+
min_tls: Optional[Literal["1.0", "1.1", "1.2", "1.3"]] = FieldInfo(alias="minTLS", default=None)
31+
"""Minimum TLS Version the custom domain will accept for incoming connections.
32+
33+
If not set, defaults to 1.0.
34+
"""
35+
36+
zone_id: Optional[str] = FieldInfo(alias="zoneId", default=None)
37+
"""Zone ID of the custom domain resides in"""
38+
39+
zone_name: Optional[str] = FieldInfo(alias="zoneName", default=None)
40+
"""Zone that the custom domain resides in"""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from __future__ import annotations
4+
5+
from typing_extensions import Literal, Required, Annotated, TypedDict
6+
7+
from ....._utils import PropertyInfo
8+
9+
__all__ = ["CustomUpdateParams"]
10+
11+
12+
class CustomUpdateParams(TypedDict, total=False):
13+
account_id: Required[str]
14+
"""Account ID"""
15+
16+
bucket_name: Required[str]
17+
"""Name of the bucket"""
18+
19+
enabled: bool
20+
"""Whether to enable public bucket access at the specified custom domain"""
21+
22+
min_tls: Annotated[Literal["1.0", "1.1", "1.2", "1.3"], PropertyInfo(alias="minTLS")]
23+
"""Minimum TLS Version the custom domain will accept for incoming connections.
24+
25+
If not set, defaults to previous value.
26+
"""
27+
28+
jurisdiction: Annotated[Literal["default", "eu", "fedramp"], PropertyInfo(alias="cf-r2-jurisdiction")]
29+
"""The bucket jurisdiction"""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing import Optional
4+
from typing_extensions import Literal
5+
6+
from pydantic import Field as FieldInfo
7+
8+
from ....._models import BaseModel
9+
10+
__all__ = ["CustomUpdateResponse"]
11+
12+
13+
class CustomUpdateResponse(BaseModel):
14+
domain: str
15+
"""Domain name of the affected custom domain"""
16+
17+
enabled: Optional[bool] = None
18+
"""Whether this bucket is publicly accessible at the specified custom domain"""
19+
20+
min_tls: Optional[Literal["1.0", "1.1", "1.2", "1.3"]] = FieldInfo(alias="minTLS", default=None)
21+
"""Minimum TLS Version the custom domain will accept for incoming connections.
22+
23+
If not set, defaults to 1.0.
24+
"""

‎tests/api_resources/r2/buckets/domains/test_custom.py

+461-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.