Represents the response object for STS (Security Token Service) operations for storage.
Name | Type | Description | Notes |
---|---|---|---|
storage | IStoragePoint | [optional] | |
credentials | IStorageSTS | [optional] |
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)