Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.45 KB

TenantStatusReport.md

File metadata and controls

36 lines (27 loc) · 1.45 KB

TenantStatusReport

Response model for a tenant status report.

Properties

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]

Example

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)

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