class Azure::Automation::Mgmt::V2015_10_31::Models::AgentRegistrationKeys

Definition of the agent registration keys.

Attributes

primary[RW]

@return [String] Gets or sets the primary key.

secondary[RW]

@return [String] Gets or sets the secondary key.

Private Class Methods

mapper() click to toggle source

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

# 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