# 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 SshPublicKeyResource < Resource 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 SshPublicKeyResource class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SshPublicKeyResource', type: { name: 'Composite', class_name: 'SshPublicKeyResource', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, 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