Sha256: 8651f5cbb862983d0e1d750aabec339484a947102313da1d6033a57c08b310e5
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# 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::ARM::Compute module Models # # Contains information about SSH certificate public key data. # class ContainerServiceSshPublicKey include MsRestAzure include MsRest::JSONable # @return [String] Certificate public key used to authenticate with VMs # through SSH. The certificate must be in PEM format with or without # headers. attr_accessor :key_data # # Mapper for ContainerServiceSshPublicKey class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'ContainerServiceSshPublicKey', type: { name: 'Composite', class_name: 'ContainerServiceSshPublicKey', model_properties: { key_data: { required: true, 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.13.0 | lib/generated/azure_mgmt_compute/models/container_service_ssh_public_key.rb |