Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.49 KB

File metadata and controls

34 lines (25 loc) · 1.49 KB

CloneNamespaceResponse

Response after initiating namespace clone.

Properties

Name Type Description Notes
namespace NamespaceModel Cloned namespace with new namespace_id
source_namespace_id str Source namespace that was cloned
status str Clone status: 'cloning', 'ready', or 'failed' [optional] [default to 'cloning']
task_id str Celery task ID for tracking clone progress [optional]
cloned_resources ClonedResourceSummary Summary of cloned resources (present when ready) [optional]

Example

from mixpeek.models.clone_namespace_response import CloneNamespaceResponse

# TODO update the JSON string below
json = "{}"
# create an instance of CloneNamespaceResponse from a JSON string
clone_namespace_response_instance = CloneNamespaceResponse.from_json(json)
# print the JSON string representation of the object
print(CloneNamespaceResponse.to_json())

# convert the object into a dict
clone_namespace_response_dict = clone_namespace_response_instance.to_dict()
# create an instance of CloneNamespaceResponse from a dict
clone_namespace_response_from_dict = CloneNamespaceResponse.from_dict(clone_namespace_response_dict)

[Back to Model list] [Back to API list] [Back to README]