class Azure::BatchAI::Mgmt::V2017_09_01_preview::Models::UserAccountSettings
Settings for user account that gets created on each on the nodes of a cluster.
Attributes
admin_user_name[RW]
@return [String] Specifies the name of the administrator account.
admin_user_password[RW]
@return [String] Admin user Password (linux only). This does not get returned in a GET response body.
admin_user_ssh_public_key[RW]
@return [String] SSH public keys used to authenticate with linux based VMs. This does not get returned in a GET response body.
Public Class Methods
mapper()
click to toggle source
Mapper for UserAccountSettings
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/user_account_settings.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UserAccountSettings', type: { name: 'Composite', class_name: 'UserAccountSettings', model_properties: { admin_user_name: { client_side_validation: true, required: true, serialized_name: 'adminUserName', type: { name: 'String' } }, admin_user_ssh_public_key: { client_side_validation: true, required: false, serialized_name: 'adminUserSshPublicKey', type: { name: 'String' } }, admin_user_password: { client_side_validation: true, required: false, serialized_name: 'adminUserPassword', type: { name: 'String' } } } } } end