# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Compute::Mgmt::V2020_06_01 module Models # # Specifies information about the SSH public key. # class SshPublicKeyUpdateResource < UpdateResource include MsRestAzure # @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. attr_accessor :public_key # # Mapper for SshPublicKeyUpdateResource class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end