Sha256: 8709b60486698f669544b6499445b99de23548d7eafae4fa3566ec4c8d146cd2
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Compute module Models # # Contains information about SSH certificate public key and the path on the # Linux VM where the public key is placed. # class SshPublicKey include MsRestAzure # @return [String] Specifies the full path on the created VM where SSH # public key is stored. If the file already exists, the specified key is # appended to the file. attr_accessor :path # @return [String] Certificate public key used to authenticate to the VM # through SSH. The certificate must be in Pem format with or without # headers. attr_accessor :key_data # # Mapper for SshPublicKey class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'SshPublicKey', type: { name: 'Composite', class_name: 'SshPublicKey', model_properties: { path: { required: false, serialized_name: 'path', type: { name: 'String' } }, key_data: { required: false, serialized_name: 'keyData', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_compute-0.10.0 | lib/generated/azure_mgmt_compute/models/ssh_public_key.rb |