Class: Azure::Batch::Mgmt::V2018_12_01::Models::WindowsUserConfiguration
- Inherits:
-
Object
- Object
- Azure::Batch::Mgmt::V2018_12_01::Models::WindowsUserConfiguration
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-12-01/generated/azure_mgmt_batch/models/windows_user_configuration.rb
Overview
Properties used to create a user account on a Windows node.
Instance Attribute Summary collapse
-
#login_mode ⇒ LoginMode
user.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WindowsUserConfiguration class as Ruby Hash.
Instance Attribute Details
#login_mode ⇒ LoginMode
user. The default value for VirtualMachineConfiguration pools is interactive mode and for CloudServiceConfiguration pools is batch mode. Possible values include: ‘Batch’, ‘Interactive’
20 21 22 |
# File 'lib/2018-12-01/generated/azure_mgmt_batch/models/windows_user_configuration.rb', line 20 def login_mode @login_mode end |
Class Method Details
.mapper ⇒ Object
Mapper for WindowsUserConfiguration class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/2018-12-01/generated/azure_mgmt_batch/models/windows_user_configuration.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WindowsUserConfiguration', type: { name: 'Composite', class_name: 'WindowsUserConfiguration', model_properties: { login_mode: { client_side_validation: true, required: false, serialized_name: 'loginMode', type: { name: 'Enum', module: 'LoginMode' } } } } } end |