Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

File metadata and controls

30 lines (21 loc) · 1.2 KB

ObjectStorageBucketListResponse

Properties

Name Type Description Notes
buckets List[ObjectStorageBucketResponse]
failed_regions List[str] [optional]

Example

from hyperstack.models.object_storage_bucket_list_response import ObjectStorageBucketListResponse

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

# convert the object into a dict
object_storage_bucket_list_response_dict = object_storage_bucket_list_response_instance.to_dict()
# create an instance of ObjectStorageBucketListResponse from a dict
object_storage_bucket_list_response_from_dict = ObjectStorageBucketListResponse.from_dict(object_storage_bucket_list_response_dict)

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