Resources
List share resources by share ID
resource_sharing.resources.list(strshare_id, ResourceListParams**kwargs) -> SyncV4PagePaginationArray[ResourceListResponse]
GET/accounts/{account_id}/shares/{share_id}/resources
Get share resource by ID
resource_sharing.resources.get(strresource_id, ResourceGetParams**kwargs) -> ResourceGetResponse
GET/accounts/{account_id}/shares/{share_id}/resources/{resource_id}
Create a new share resource
resource_sharing.resources.create(strshare_id, ResourceCreateParams**kwargs) -> ResourceCreateResponse
POST/accounts/{account_id}/shares/{share_id}/resources
Update a share resource
resource_sharing.resources.update(strresource_id, ResourceUpdateParams**kwargs) -> ResourceUpdateResponse
PUT/accounts/{account_id}/shares/{share_id}/resources/{resource_id}
Delete a share resource
resource_sharing.resources.delete(strresource_id, ResourceDeleteParams**kwargs) -> ResourceDeleteResponse
DELETE/accounts/{account_id}/shares/{share_id}/resources/{resource_id}