Response model for a tenant status report.
Name | Type | Description | Notes |
---|---|---|---|
tenant | str | ||
buckets | List[BucketConfiguration] | [optional] | |
queues | List[NotificationQueueStatusReport] | [optional] | |
total_size | int | [optional] | |
bucket_status | BUCKETCREATIONSTATUS | [optional] | |
policy_status | BUCKETPOLICYSTATUS | [optional] | |
queue_status | QUEUESETUPSTATUS | [optional] |
from waylay.services.storage.models.tenant_status_report import TenantStatusReport
# TODO update the JSON string below
json = "{}"
# create an instance of TenantStatusReport from a JSON string
tenant_status_report_instance = TenantStatusReport.from_json(json)
# print the JSON string representation of the object
print TenantStatusReport.to_json()
# convert the object into a dict
tenant_status_report_dict = tenant_status_report_instance.to_dict()
# create an instance of TenantStatusReport from a dict
tenant_status_report_form_dict = tenant_status_report.from_dict(tenant_status_report_dict)