Skip to content

Commit

Permalink
Generated from 7311fd41d1714f152d4569e6641c8821a0273ae4 (#4450)
Browse files Browse the repository at this point in the history
changes to improve documentation of endpoint health statuses for routing
  • Loading branch information
AutorestCI authored Feb 28, 2019
1 parent b1f5921 commit 1948e44
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions azure-mgmt-iothub/azure/mgmt/iothub/models/endpoint_health_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,18 @@ class EndpointHealthData(Model):
:param endpoint_id: Id of the endpoint
:type endpoint_id: str
:param health_status: Health status. Possible values include: 'unknown',
'healthy', 'unhealthy', 'dead'
:param health_status: Health statuses have following meanings. The
'healthy' status shows that the endpoint is accepting messages as
expected. The 'unhealthy' status shows that the endpoint is not accepting
messages as expected and IoT Hub is retrying to send data to this
endpoint. The status of an unhealthy endpoint will be updated to healthy
when IoT Hub has established an eventually consistent state of health. The
'dead' status shows that the endpoint is not accepting messages, after IoT
Hub retried sending messages for the retrial period. See IoT Hub metrics
to identify errors and monitor issues with endpoints. The 'unknown' status
shows that the IoT Hub has not established a connection with the endpoint.
No messages have been delivered to or rejected from this endpoint.
Possible values include: 'unknown', 'healthy', 'unhealthy', 'dead'
:type health_status: str or ~azure.mgmt.iothub.models.EndpointHealthStatus
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,18 @@ class EndpointHealthData(Model):
:param endpoint_id: Id of the endpoint
:type endpoint_id: str
:param health_status: Health status. Possible values include: 'unknown',
'healthy', 'unhealthy', 'dead'
:param health_status: Health statuses have following meanings. The
'healthy' status shows that the endpoint is accepting messages as
expected. The 'unhealthy' status shows that the endpoint is not accepting
messages as expected and IoT Hub is retrying to send data to this
endpoint. The status of an unhealthy endpoint will be updated to healthy
when IoT Hub has established an eventually consistent state of health. The
'dead' status shows that the endpoint is not accepting messages, after IoT
Hub retried sending messages for the retrial period. See IoT Hub metrics
to identify errors and monitor issues with endpoints. The 'unknown' status
shows that the IoT Hub has not established a connection with the endpoint.
No messages have been delivered to or rejected from this endpoint.
Possible values include: 'unknown', 'healthy', 'unhealthy', 'dead'
:type health_status: str or ~azure.mgmt.iothub.models.EndpointHealthStatus
"""

Expand Down

0 comments on commit 1948e44

Please sign in to comment.