@@ -8274,14 +8274,62 @@ Types:
8274
8274
```python
8275
8275
from cloudflare.types.resource_sharing import (
8276
8276
ResourceSharingCreateResponse,
8277
+ ResourceSharingUpdateResponse,
8277
8278
ResourceSharingListResponse,
8279
+ ResourceSharingDeleteResponse,
8280
+ ResourceSharingGetResponse,
8278
8281
)
8279
8282
```
8280
8283
8281
8284
Methods:
8282
8285
8283
8286
- <code title="post /accounts/{account_id}/shares">client.resource_sharing.<a href="./src/cloudflare/resources/resource_sharing/resource_sharing.py">create</a>(\*, account_id, \*\*<a href="src/cloudflare/types/resource_sharing/resource_sharing_create_params.py">params</a>) -> <a href="./src/cloudflare/types/resource_sharing/resource_sharing_create_response.py">Optional</a></code>
8287
+ - <code title="put /accounts/{account_id}/shares/{share_identifier}">client.resource_sharing.<a href="./src/cloudflare/resources/resource_sharing/resource_sharing.py">update</a>(share_identifier, \*, account_id, \*\*<a href="src/cloudflare/types/resource_sharing/resource_sharing_update_params.py">params</a>) -> <a href="./src/cloudflare/types/resource_sharing/resource_sharing_update_response.py">Optional</a></code>
8284
8288
- <code title="get /accounts/{account_id}/shares">client.resource_sharing.<a href="./src/cloudflare/resources/resource_sharing/resource_sharing.py">list</a>(\*, account_id, \*\*<a href="src/cloudflare/types/resource_sharing/resource_sharing_list_params.py">params</a>) -> <a href="./src/cloudflare/types/resource_sharing/resource_sharing_list_response.py">SyncV4PagePaginationArray[ResourceSharingListResponse]</a></code>
8289
+ - <code title="delete /accounts/{account_id}/shares/{share_identifier}">client.resource_sharing.<a href="./src/cloudflare/resources/resource_sharing/resource_sharing.py">delete</a>(share_identifier, \*, account_id) -> <a href="./src/cloudflare/types/resource_sharing/resource_sharing_delete_response.py">Optional</a></code>
8290
+ - <code title="get /accounts/{account_id}/shares/{share_identifier}">client.resource_sharing.<a href="./src/cloudflare/resources/resource_sharing/resource_sharing.py">get</a>(share_identifier, \*, account_id) -> <a href="./src/cloudflare/types/resource_sharing/resource_sharing_get_response.py">Optional</a></code>
8291
+
8292
+ ## Recipients
8293
+
8294
+ Types:
8295
+
8296
+ ```python
8297
+ from cloudflare.types.resource_sharing import (
8298
+ RecipientCreateResponse,
8299
+ RecipientListResponse,
8300
+ RecipientDeleteResponse,
8301
+ RecipientGetResponse,
8302
+ )
8303
+ ```
8304
+
8305
+ Methods:
8306
+
8307
+ - <code title="post /accounts/{account_id}/shares/{share_identifier}/recipients">client.resource_sharing.recipients.<a href="./src/cloudflare/resources/resource_sharing/recipients.py">create</a>(share_identifier, \*, path_account_id, \*\*<a href="src/cloudflare/types/resource_sharing/recipient_create_params.py">params</a>) -> <a href="./src/cloudflare/types/resource_sharing/recipient_create_response.py">Optional</a></code>
8308
+ - <code title="get /accounts/{account_id}/shares/{share_identifier}/recipients">client.resource_sharing.recipients.<a href="./src/cloudflare/resources/resource_sharing/recipients.py">list</a>(share_identifier, \*, account_id, \*\*<a href="src/cloudflare/types/resource_sharing/recipient_list_params.py">params</a>) -> <a href="./src/cloudflare/types/resource_sharing/recipient_list_response.py">SyncV4PagePaginationArray[RecipientListResponse]</a></code>
8309
+ - <code title="delete /accounts/{account_id}/shares/{share_identifier}/recipients/{recipient_identifier}">client.resource_sharing.recipients.<a href="./src/cloudflare/resources/resource_sharing/recipients.py">delete</a>(recipient_identifier, \*, account_id, share_identifier) -> <a href="./src/cloudflare/types/resource_sharing/recipient_delete_response.py">Optional</a></code>
8310
+ - <code title="get /accounts/{account_id}/shares/{share_identifier}/recipients/{recipient_identifier}">client.resource_sharing.recipients.<a href="./src/cloudflare/resources/resource_sharing/recipients.py">get</a>(recipient_identifier, \*, account_id, share_identifier) -> <a href="./src/cloudflare/types/resource_sharing/recipient_get_response.py">Optional</a></code>
8311
+
8312
+ ## Resources
8313
+
8314
+ Types:
8315
+
8316
+ ```python
8317
+ from cloudflare.types.resource_sharing import (
8318
+ ResourceCreateResponse,
8319
+ ResourceUpdateResponse,
8320
+ ResourceListResponse,
8321
+ ResourceDeleteResponse,
8322
+ ResourceGetResponse,
8323
+ )
8324
+ ```
8325
+
8326
+ Methods:
8327
+
8328
+ - <code title="post /accounts/{account_id}/shares/{share_identifier}/resources">client.resource_sharing.resources.<a href="./src/cloudflare/resources/resource_sharing/resources.py">create</a>(share_identifier, \*, account_id, \*\*<a href="src/cloudflare/types/resource_sharing/resource_create_params.py">params</a>) -> <a href="./src/cloudflare/types/resource_sharing/resource_create_response.py">Optional</a></code>
8329
+ - <code title="put /accounts/{account_id}/shares/{share_identifier}/resources/{resource_identifier}">client.resource_sharing.resources.<a href="./src/cloudflare/resources/resource_sharing/resources.py">update</a>(resource_identifier, \*, account_id, share_identifier, \*\*<a href="src/cloudflare/types/resource_sharing/resource_update_params.py">params</a>) -> <a href="./src/cloudflare/types/resource_sharing/resource_update_response.py">Optional</a></code>
8330
+ - <code title="get /accounts/{account_id}/shares/{share_identifier}/resources">client.resource_sharing.resources.<a href="./src/cloudflare/resources/resource_sharing/resources.py">list</a>(share_identifier, \*, account_id, \*\*<a href="src/cloudflare/types/resource_sharing/resource_list_params.py">params</a>) -> <a href="./src/cloudflare/types/resource_sharing/resource_list_response.py">SyncV4PagePaginationArray[ResourceListResponse]</a></code>
8331
+ - <code title="delete /accounts/{account_id}/shares/{share_identifier}/resources/{resource_identifier}">client.resource_sharing.resources.<a href="./src/cloudflare/resources/resource_sharing/resources.py">delete</a>(resource_identifier, \*, account_id, share_identifier) -> <a href="./src/cloudflare/types/resource_sharing/resource_delete_response.py">Optional</a></code>
8332
+ - <code title="get /accounts/{account_id}/shares/{share_identifier}/resources/{resource_identifier}">client.resource_sharing.resources.<a href="./src/cloudflare/resources/resource_sharing/resources.py">get</a>(resource_identifier, \*, account_id, share_identifier) -> <a href="./src/cloudflare/types/resource_sharing/resource_get_response.py">Optional</a></code>
8285
8333
8286
8334
# LeakedCredentialChecks
8287
8335
0 commit comments