Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

StsStorage.md

File metadata and controls

31 lines (22 loc) · 1 KB

StsStorage

Represents the response object for STS (Security Token Service) operations for storage.

Properties

Name Type Description Notes
storage IStoragePoint [optional]
credentials IStorageSTS [optional]

Example

from openapi_client.models.sts_storage import StsStorage

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

# convert the object into a dict
sts_storage_dict = sts_storage_instance.to_dict()
# create an instance of StsStorage from a dict
sts_storage_from_dict = StsStorage.from_dict(sts_storage_dict)

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