Sha256: 0fd4192051fcaf4a9638f00439acdcbcc5bfd2dde1796ba995425aec62ae3a6e
Contents?: true
Size: 1.48 KB
Versions: 2
Compression:
Stored size: 1.48 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::Compute::Mgmt::V2015_06_15 module Models # # Describes Windows configuration of the OS Profile. # class LinuxConfiguration include MsRestAzure # @return [Boolean] Specifies whether password authentication should be # disabled. attr_accessor :disable_password_authentication # @return [SshConfiguration] The SSH configuration for linux VMs. attr_accessor :ssh # # Mapper for LinuxConfiguration class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'LinuxConfiguration', type: { name: 'Composite', class_name: 'LinuxConfiguration', model_properties: { disable_password_authentication: { required: false, serialized_name: 'disablePasswordAuthentication', type: { name: 'Boolean' } }, ssh: { required: false, serialized_name: 'ssh', type: { name: 'Composite', class_name: 'SshConfiguration' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems