Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

BucketStorageResponse

Storage growth trends response.

Properties

Name Type Description Notes
bucket_id str Bucket identifier
time_range ApiAnalyticsBucketsModelsTimeRange Query time range
metrics List[StorageMetric] Time-series storage metrics
summary Dict[str, object] Summary statistics [optional]

Example

from mixpeek.models.bucket_storage_response import BucketStorageResponse

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

# convert the object into a dict
bucket_storage_response_dict = bucket_storage_response_instance.to_dict()
# create an instance of BucketStorageResponse from a dict
bucket_storage_response_from_dict = BucketStorageResponse.from_dict(bucket_storage_response_dict)

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