benchling_api_client.api.feature_libraries.update_feature_library module

async asyncio(*, client: Client, feature_library_id: str, json_body: FeatureLibraryUpdate) Optional[Union[FeatureLibrary, BadRequestError, NotFoundError]]

Update a feature library. Note: Features cannot be updated from this endpoint. Use the /features* endpoints to add or modify features.

async asyncio_detailed(*, client: Client, feature_library_id: str, json_body: FeatureLibraryUpdate) Response[Union[FeatureLibrary, BadRequestError, NotFoundError]]
sync(*, client: Client, feature_library_id: str, json_body: FeatureLibraryUpdate) Optional[Union[FeatureLibrary, BadRequestError, NotFoundError]]

Update a feature library. Note: Features cannot be updated from this endpoint. Use the /features* endpoints to add or modify features.

sync_detailed(*, client: Client, feature_library_id: str, json_body: FeatureLibraryUpdate) Response[Union[FeatureLibrary, BadRequestError, NotFoundError]]