class Azure::Compute::Mgmt::V2020_06_01::Models::SshPublicKeyUpdateResource
Specifies information about the SSH public key.
Attributes
public_key[RW]
@return [String] SSH public key used to authenticate to a virtual machine through ssh. If this property is not initially provided when the resource is created, the publicKey property will be populated when generateKeyPair is called. If the public key is provided upon resource creation, the provided public key needs to be at least 2048-bit and in ssh-rsa format.
Public Class Methods
mapper()
click to toggle source
Mapper for SshPublicKeyUpdateResource
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-06-01/generated/azure_mgmt_compute/models/ssh_public_key_update_resource.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SshPublicKeyUpdateResource', type: { name: 'Composite', class_name: 'SshPublicKeyUpdateResource', model_properties: { tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, public_key: { client_side_validation: true, required: false, serialized_name: 'properties.publicKey', type: { name: 'String' } } } } } end