Class: Azure::ServiceFabric::V6_4_0_36::Models::DeployedApplicationHealthStateChunkList

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

Overview

The list of deployed application 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<DeployedApplicationHealthStateChunk>

deployed application health state chunks that respect the input filters in the chunk query.

Returns:



20
21
22
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/deployed_application_health_state_chunk_list.rb', line 20

def items
  @items
end

Class Method Details

.mapperObject

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



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
55
56
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/deployed_application_health_state_chunk_list.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DeployedApplicationHealthStateChunkList',
    type: {
      name: 'Composite',
      class_name: 'DeployedApplicationHealthStateChunkList',
      model_properties: {
        items: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Items',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'DeployedApplicationHealthStateChunkElementType',
                type: {
                  name: 'Composite',
                  class_name: 'DeployedApplicationHealthStateChunk'
                }
            }
          }
        }
      }
    }
  }
end