UpdateSpaceRequest
UpdateSpaceRequest documentation for Python SDK
Request parameters for updating a space.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| validate_label_strategy | object | [optional] | |
| name | str | The new name for the space. | [optional] |
| public_read | bool | Whether the space is publicly readable by all users. | [optional] |
| replace_labels | Dict[str, str] | Labels to replace all existing labels. Mutually exclusive with mergeLabels. | [optional] |
| merge_labels | Dict[str, str] | Labels to merge with existing labels. Mutually exclusive with replaceLabels. | [optional] |
| default_chunking_config | ChunkingConfiguration | [optional] |
Example
from goodmem_client.models.update_space_request import UpdateSpaceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateSpaceRequest from a JSON string
update_space_request_instance = UpdateSpaceRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateSpaceRequest.to_json())
# convert the object into a dict
update_space_request_dict = update_space_request_instance.to_dict()
# create an instance of UpdateSpaceRequest from a dict
update_space_request_from_dict = UpdateSpaceRequest.from_dict(update_space_request_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK