class Azure::ServiceFabric::V6_2_0_9::Models::EntityHealthStateChunkList

A base type for the list of health state chunks found in the cluster. It contains the total number of health states that match the input filters.

Attributes

total_count[RW]

@return [Integer] Total number of entity health state objects that match the specified filters from the cluster health chunk query description.

Public Class Methods

mapper() click to toggle source

Mapper for EntityHealthStateChunkList 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_list.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'EntityHealthStateChunkList',
    type: {
      name: 'Composite',
      class_name: 'EntityHealthStateChunkList',
      model_properties: {
        total_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'TotalCount',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end