Class: Azure::ARM::Compute::Models::RunCommandInputParameter

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_compute/models/run_command_input_parameter.rb

Overview

Describes the properties of a run command parameter.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#nameString

Returns The run command parameter name.

Returns:

  • (String)

    The run command parameter name.



17
18
19
# File 'lib/generated/azure_mgmt_compute/models/run_command_input_parameter.rb', line 17

def name
  @name
end

#valueString

Returns The run command parameter value.

Returns:

  • (String)

    The run command parameter value.



20
21
22
# File 'lib/generated/azure_mgmt_compute/models/run_command_input_parameter.rb', line 20

def value
  @value
end

Class Method Details

.mapperObject

Mapper for RunCommandInputParameter 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
# File 'lib/generated/azure_mgmt_compute/models/run_command_input_parameter.rb', line 27

def self.mapper()
  {
    required: false,
    serialized_name: 'RunCommandInputParameter',
    type: {
      name: 'Composite',
      class_name: 'RunCommandInputParameter',
      model_properties: {
        name: {
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        value: {
          required: true,
          serialized_name: 'value',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end