Sha256: b0a3557667e9734bbf7b5cf317365895aa1cb2ad8b773bce39138f9b16db501c
Contents?: true
Size: 1.47 KB
Versions: 2
Compression:
Stored size: 1.47 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Compute 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
Version | Path |
---|---|
azure_mgmt_compute-0.9.0 | lib/generated/azure_mgmt_compute/models/linux_configuration.rb |
azure_mgmt_compute-0.8.0 | lib/generated/azure_mgmt_compute/models/linux_configuration.rb |