class Azure::ServiceFabric::V6_5_0_36::Models::NodeHealthStateChunkList

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

Attributes

items[RW]

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

Public Class Methods

mapper() click to toggle source

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

# File lib/6.5.0.36/generated/azure_service_fabric/models/node_health_state_chunk_list.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NodeHealthStateChunkList',
    type: {
      name: 'Composite',
      class_name: 'NodeHealthStateChunkList',
      model_properties: {
        total_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'TotalCount',
          type: {
            name: 'Number'
          }
        },
        items: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Items',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'NodeHealthStateChunkElementType',
                type: {
                  name: 'Composite',
                  class_name: 'NodeHealthStateChunk'
                }
            }
          }
        }
      }
    }
  }
end