class Azure::HybridCompute::Mgmt::V2019_12_12::Models::MachineReconnectProperties

Describes the properties required to reconnect a hybrid machine.

Attributes

client_public_key[RW]

@return [String] Public Key that the client provides to be used during initial resource onboarding.

vm_id[RW]

@return [String] Specifies the hybrid machine unique ID.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-12-12/generated/azure_mgmt_hybrid_compute/models/machine_reconnect_properties.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'MachineReconnectProperties',
    type: {
      name: 'Composite',
      class_name: 'MachineReconnectProperties',
      model_properties: {
        vm_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'vmId',
          type: {
            name: 'String'
          }
        },
        client_public_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clientPublicKey',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end