Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

CurBucketConfig.md

File metadata and controls

33 lines (24 loc) · 1.12 KB

CurBucketConfig

Properties

Name Type Description Notes
name str [optional]
role str [optional]
path str [optional]
version CurBucketVersion [optional]
status TenantProviderState [optional]

Example

from onelens_backend_client.models.cur_bucket_config import CurBucketConfig

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

# convert the object into a dict
cur_bucket_config_dict = cur_bucket_config_instance.to_dict()
# create an instance of CurBucketConfig from a dict
cur_bucket_config_form_dict = cur_bucket_config.from_dict(cur_bucket_config_dict)

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