Class: Azure::ServiceFabric::V6_4_0_36::Models::ApplicationTypeHealthPolicyMapItem

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

Overview

Defines an item in ApplicationTypeHealthPolicyMap.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#keyString

item. This is the name of the application type.

Returns:

  • (String)

    The key of the application type health policy map



17
18
19
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/application_type_health_policy_map_item.rb', line 17

def key
  @key
end

#valueInteger

item. The max percent unhealthy applications allowed for the application type. Must be between zero and 100.

Returns:

  • (Integer)

    The value of the application type health policy map



23
24
25
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/application_type_health_policy_map_item.rb', line 23

def value
  @value
end

Class Method Details

.mapperObject

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



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
57
58
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/application_type_health_policy_map_item.rb', line 30

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationTypeHealthPolicyMapItem',
    type: {
      name: 'Composite',
      class_name: 'ApplicationTypeHealthPolicyMapItem',
      model_properties: {
        key: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Key',
          type: {
            name: 'String'
          }
        },
        value: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Value',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end