collections_update_collection_metapatch¶
Update metadata on the collection
Functions
- async pydelfini.delfini_core.api.collections.collections_update_collection_metapatch.asyncio(collection_id, *, client, body)[source]¶
Update metadata on the collection
Update the collection’s metadata, leaving unspecified fields as-is.
This method currently operates the same as the corresponding PUT method. It may be deprecated in the future, or implemented according to the JSON Patch standard.
- Parameters:
collection_id (str)
body (UpdateCollection) – Update core collection properties
client (AuthenticatedClient)
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[Any]
- Return type:
- async pydelfini.delfini_core.api.collections.collections_update_collection_metapatch.asyncio_detailed(collection_id, *, client, body)[source]¶
Update metadata on the collection
Update the collection’s metadata, leaving unspecified fields as-is.
This method currently operates the same as the corresponding PUT method. It may be deprecated in the future, or implemented according to the JSON Patch standard.
- Parameters:
collection_id (str)
body (UpdateCollection) – Update core collection properties
client (AuthenticatedClient)
- Raises:
errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Response[Union[Any, ServerError]]
- Return type:
- pydelfini.delfini_core.api.collections.collections_update_collection_metapatch.sync(collection_id, *, client, body)[source]¶
Update metadata on the collection
Update the collection’s metadata, leaving unspecified fields as-is.
This method currently operates the same as the corresponding PUT method. It may be deprecated in the future, or implemented according to the JSON Patch standard.
- Parameters:
collection_id (str)
body (UpdateCollection) – Update core collection properties
client (AuthenticatedClient)
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[Any]
- Return type:
- pydelfini.delfini_core.api.collections.collections_update_collection_metapatch.sync_detailed(collection_id, *, client, body)[source]¶
Update metadata on the collection
Update the collection’s metadata, leaving unspecified fields as-is.
This method currently operates the same as the corresponding PUT method. It may be deprecated in the future, or implemented according to the JSON Patch standard.
- Parameters:
collection_id (str)
body (UpdateCollection) – Update core collection properties
client (AuthenticatedClient)
- Raises:
errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Response[Union[Any, ServerError]]
- Return type: