class Azure::ServiceFabric::V6_2_0_9::Models::EntityHealthStateChunk

A base type for the health state chunk of various entities in the cluster. It contains the aggregated health state.

Attributes

health_state[RW]

@return [HealthState] The health state of a Service Fabric entity such as Cluster, Node, Application, Service, Partition, Replica etc. Possible values include: 'Invalid', 'Ok', 'Warning', 'Error', 'Unknown'

Public Class Methods

mapper() click to toggle source

Mapper for EntityHealthStateChunk class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/6.2.0.9/generated/azure_service_fabric/models/entity_health_state_chunk.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'EntityHealthStateChunk',
    type: {
      name: 'Composite',
      class_name: 'EntityHealthStateChunk',
      model_properties: {
        health_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'HealthState',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end