Sha256: c10a10b7ca7d7da53674d55ef5f4d6c9c6e2132e10170ba871e8773431698965
Contents?: true
Size: 1.53 KB
Versions: 3
Compression:
Stored size: 1.53 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::IotHub::Mgmt::V2018_04_01 module Models # # The health data for an endpoint # class EndpointHealthData include MsRestAzure # @return [String] Id of the endpoint attr_accessor :endpoint_id # @return [EndpointHealthStatus] The health status code of the endpoint. # Possible values include: 'unknown', 'healthy', 'unhealthy', 'dead' attr_accessor :health_status # # Mapper for EndpointHealthData class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EndpointHealthData', type: { name: 'Composite', class_name: 'EndpointHealthData', model_properties: { endpoint_id: { client_side_validation: true, required: false, serialized_name: 'endpointId', type: { name: 'String' } }, health_status: { client_side_validation: true, required: false, serialized_name: 'healthStatus', type: { name: 'String' } } } } } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems