-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR] iothub/resource-manager (#3201)
* Generated from 85ab219e8f4f326e7f6b6a5eb2068c4b7ccb5408 (#3200) IoTHub conf py * IoTHub packaging
- Loading branch information
1 parent
1252d58
commit 5d4889e
Showing
53 changed files
with
1,522 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
azure-mgmt-iothub/azure/mgmt/iothub/models/endpoint_health_data.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class EndpointHealthData(Model): | ||
"""The health data for an endpoint. | ||
:param endpoint_id: Id of the endpoint | ||
:type endpoint_id: str | ||
:param health_status: Health status. Possible values include: 'unknown', | ||
'healthy', 'unhealthy', 'dead' | ||
:type health_status: str or ~azure.mgmt.iothub.models.EndpointHealthStatus | ||
""" | ||
|
||
_attribute_map = { | ||
'endpoint_id': {'key': 'endpointId', 'type': 'str'}, | ||
'health_status': {'key': 'healthStatus', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(EndpointHealthData, self).__init__(**kwargs) | ||
self.endpoint_id = kwargs.get('endpoint_id', None) | ||
self.health_status = kwargs.get('health_status', None) |
Oops, something went wrong.