Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

ProviderConfigInput

Properties

Name Type Description Notes
regions object [optional]
role_name str [optional]
cur_bucket_config CurBucketConfig [optional]
storage_lens_config StorageLensConfig [optional]

Example

from onelens_backend_client.models.provider_config_input import ProviderConfigInput

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

# convert the object into a dict
provider_config_input_dict = provider_config_input_instance.to_dict()
# create an instance of ProviderConfigInput from a dict
provider_config_input_form_dict = provider_config_input.from_dict(provider_config_input_dict)

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