Class: Azure::ServiceFabric::V6_5_0_36::Models::ReplicaHealthStateChunkList

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/replica_health_state_chunk_list.rb

Overview

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#itemsArray<ReplicaHealthStateChunk>

state chunks that respect the input filters in the chunk query.

Returns:



18
19
20
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/replica_health_state_chunk_list.rb', line 18

def items
  @items
end

Class Method Details

.mapperObject

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



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/6.5.0.36/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