Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.46 KB

File metadata and controls

36 lines (27 loc) · 1.46 KB

BucketHealthResponse

Bucket health monitoring response.

Properties

Name Type Description Notes
bucket_id str Bucket identifier
time_range ApiAnalyticsBucketsModelsTimeRange Query time range
overall_health str Overall health status
total_errors int Total error count
error_breakdown List[ErrorBreakdown] Errors by type
sync_health List[SyncHealthMetric] Sync health per config
stuck_syncs List[str] Sync configs with no recent activity

Example

from mixpeek.models.bucket_health_response import BucketHealthResponse

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

# convert the object into a dict
bucket_health_response_dict = bucket_health_response_instance.to_dict()
# create an instance of BucketHealthResponse from a dict
bucket_health_response_from_dict = BucketHealthResponse.from_dict(bucket_health_response_dict)

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