Class: Azure::ServerManagement::Mgmt::V2016_07_01_preview::Models::PowerShellCommandParameters
- Inherits:
-
Object
- Object
- Azure::ServerManagement::Mgmt::V2016_07_01_preview::Models::PowerShellCommandParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-07-01-preview/generated/azure_mgmt_server_management/models/power_shell_command_parameters.rb
Overview
The parameters to a PowerShell script execution command.
Instance Attribute Summary collapse
-
#command ⇒ String
Script to execute.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PowerShellCommandParameters class as Ruby Hash.
Instance Attribute Details
#command ⇒ String
Returns Script to execute.
16 17 18 |
# File 'lib/2016-07-01-preview/generated/azure_mgmt_server_management/models/power_shell_command_parameters.rb', line 16 def command @command end |
Class Method Details
.mapper ⇒ Object
Mapper for PowerShellCommandParameters class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/2016-07-01-preview/generated/azure_mgmt_server_management/models/power_shell_command_parameters.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PowerShellCommandParameters', type: { name: 'Composite', class_name: 'PowerShellCommandParameters', model_properties: { command: { client_side_validation: true, required: false, serialized_name: 'properties.command', type: { name: 'String' } } } } } end |