Class: Azure::Automation::Mgmt::V2015_10_31::Models::AgentRegistrationKeys

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-10-31/generated/azure_mgmt_automation/models/agent_registration_keys.rb

Overview

Definition of the agent registration keys.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#primaryString

Returns Gets or sets the primary key.

Returns:

  • (String)

    Gets or sets the primary key.



16
17
18
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/agent_registration_keys.rb', line 16

def primary
  @primary
end

#secondaryString

Returns Gets or sets the secondary key.

Returns:

  • (String)

    Gets or sets the secondary key.



19
20
21
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/agent_registration_keys.rb', line 19

def secondary
  @secondary
end

Class Method Details

.mapperObject

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



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
54
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/agent_registration_keys.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AgentRegistrationKeys',
    type: {
      name: 'Composite',
      class_name: 'AgentRegistrationKeys',
      model_properties: {
        primary: {
          client_side_validation: true,
          required: false,
          serialized_name: 'primary',
          type: {
            name: 'String'
          }
        },
        secondary: {
          client_side_validation: true,
          required: false,
          serialized_name: 'secondary',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end