Class: Azure::ServiceFabric::V6_2_0_9::Models::ApplicationParameter

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

Overview

Describes an application parameter override to be applied when creating or upgrading an application.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#keyString

Returns The name of the parameter.

Returns:

  • (String)

    The name of the parameter.



17
18
19
# File 'lib/6.2.0.9/generated/azure_service_fabric/models/application_parameter.rb', line 17

def key
  @key
end

#valueString

Returns The value of the parameter.

Returns:

  • (String)

    The value of the parameter.



20
21
22
# File 'lib/6.2.0.9/generated/azure_service_fabric/models/application_parameter.rb', line 20

def value
  @value
end

Class Method Details

.mapperObject

Mapper for ApplicationParameter 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
# File 'lib/6.2.0.9/generated/azure_service_fabric/models/application_parameter.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationParameter',
    type: {
      name: 'Composite',
      class_name: 'ApplicationParameter',
      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: 'String'
          }
        }
      }
    }
  }
end