Skip to content

Commit 1a65a8d

Browse files
committed
feat(custom_csrs): add custom_csrs resource
1 parent 820bf1f commit 1a65a8d

12 files changed

Lines changed: 1594 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from .custom_csrs import (
4+
CustomCsrsResource,
5+
AsyncCustomCsrsResource,
6+
CustomCsrsResourceWithRawResponse,
7+
AsyncCustomCsrsResourceWithRawResponse,
8+
CustomCsrsResourceWithStreamingResponse,
9+
AsyncCustomCsrsResourceWithStreamingResponse,
10+
)
11+
12+
__all__ = [
13+
"CustomCsrsResource",
14+
"AsyncCustomCsrsResource",
15+
"CustomCsrsResourceWithRawResponse",
16+
"AsyncCustomCsrsResourceWithRawResponse",
17+
"CustomCsrsResourceWithStreamingResponse",
18+
"AsyncCustomCsrsResourceWithStreamingResponse",
19+
]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# CustomCsrs
2+
3+
Types:
4+
5+
```python
6+
from cloudflare.types.custom_csrs import (
7+
CustomCsr,
8+
CustomCsrCreateResponse,
9+
CustomCsrListResponse,
10+
CustomCsrDeleteResponse,
11+
CustomCsrGetResponse,
12+
)
13+
```
14+
15+
Methods:
16+
17+
- <code title="post /{accounts_or_zones}/{account_or_zone_id}/custom_csrs">client.custom_csrs.<a href="./src/cloudflare/resources/custom_csrs/custom_csrs.py">create</a>(\*, account_id, zone_id, \*\*<a href="src/cloudflare/types/custom_csrs/custom_csr_create_params.py">params</a>) -> <a href="./src/cloudflare/types/custom_csrs/custom_csr_create_response.py">Optional[CustomCsrCreateResponse]</a></code>
18+
- <code title="get /{accounts_or_zones}/{account_or_zone_id}/custom_csrs">client.custom_csrs.<a href="./src/cloudflare/resources/custom_csrs/custom_csrs.py">list</a>(\*, account_id, zone_id, \*\*<a href="src/cloudflare/types/custom_csrs/custom_csr_list_params.py">params</a>) -> <a href="./src/cloudflare/types/custom_csrs/custom_csr_list_response.py">SyncV4PagePaginationArray[CustomCsrListResponse]</a></code>
19+
- <code title="delete /{accounts_or_zones}/{account_or_zone_id}/custom_csrs/{custom_csr_id}">client.custom_csrs.<a href="./src/cloudflare/resources/custom_csrs/custom_csrs.py">delete</a>(custom_csr_id, \*, account_id, zone_id) -> <a href="./src/cloudflare/types/custom_csrs/custom_csr_delete_response.py">Optional[CustomCsrDeleteResponse]</a></code>
20+
- <code title="get /{accounts_or_zones}/{account_or_zone_id}/custom_csrs/{custom_csr_id}">client.custom_csrs.<a href="./src/cloudflare/resources/custom_csrs/custom_csrs.py">get</a>(custom_csr_id, \*, account_id, zone_id) -> <a href="./src/cloudflare/types/custom_csrs/custom_csr_get_response.py">Optional[CustomCsrGetResponse]</a></code>

0 commit comments

Comments
 (0)