class Azure::Hdinsight::Mgmt::V2015_03_01_preview::Models::LinuxOperatingSystemProfile
The ssh username, password, and ssh public key.
Attributes
password[RW]
@return [String] The password.
ssh_profile[RW]
@return [SshProfile] The SSH profile.
username[RW]
@return [String] The username.
Public Class Methods
mapper()
click to toggle source
Mapper for LinuxOperatingSystemProfile
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/linux_operating_system_profile.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'LinuxOperatingSystemProfile', type: { name: 'Composite', class_name: 'LinuxOperatingSystemProfile', model_properties: { username: { client_side_validation: true, required: false, serialized_name: 'username', type: { name: 'String' } }, password: { client_side_validation: true, required: false, serialized_name: 'password', type: { name: 'String' } }, ssh_profile: { client_side_validation: true, required: false, serialized_name: 'sshProfile', type: { name: 'Composite', class_name: 'SshProfile' } } } } } end