Class: Azure::ServiceFabric::V6_4_0_36::Models::ApplicationHealthState

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

Overview

Represents the health state of an application, which contains the application identifier and the aggregated health state.

Instance Attribute Summary collapse

Attributes inherited from EntityHealthState

#aggregated_health_state

Class Method Summary collapse

Instance Attribute Details

#nameString

URI scheme.

Returns:

  • (String)

    The name of the application, including the ‘fabric:’



18
19
20
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/application_health_state.rb', line 18

def name
  @name
end

Class Method Details

.mapperObject

Mapper for ApplicationHealthState 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
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/application_health_state.rb', line 25

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationHealthState',
    type: {
      name: 'Composite',
      class_name: 'ApplicationHealthState',
      model_properties: {
        aggregated_health_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'AggregatedHealthState',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Name',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end