class Azure::ServiceFabric::V6_2_0_9::Models::ReplicaHealthStateChunkList

The list of replica health state chunks that respect the input filters in the chunk query. Returned by get cluster health state chunks query.

Attributes

items[RW]

@return [Array<ReplicaHealthStateChunk>] The list of replica health state chunks that respect the input filters in the chunk query.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.2.0.9/generated/azure_service_fabric/models/replica_health_state_chunk_list.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ReplicaHealthStateChunkList',
    type: {
      name: 'Composite',
      class_name: 'ReplicaHealthStateChunkList',
      model_properties: {
        items: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Items',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ReplicaHealthStateChunkElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ReplicaHealthStateChunk'
                }
            }
          }
        }
      }
    }
  }
end