Class: Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnvironmentDeploymentProperties
- Inherits:
-
Object
- Object
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::EnvironmentDeploymentProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/environment_deployment_properties.rb
Overview
Properties of an environment deployment.
Instance Attribute Summary collapse
-
#arm_template_id ⇒ String
The Azure Resource Manager template’s identifier.
-
#parameters ⇒ Array<ArmTemplateParameterProperties>
Azure Resource Manager template.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EnvironmentDeploymentProperties class as Ruby Hash.
Instance Attribute Details
#arm_template_id ⇒ String
Returns The Azure Resource Manager template’s identifier.
16 17 18 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/environment_deployment_properties.rb', line 16 def arm_template_id @arm_template_id end |
#parameters ⇒ Array<ArmTemplateParameterProperties>
Azure Resource Manager template.
20 21 22 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/environment_deployment_properties.rb', line 20 def parameters @parameters end |
Class Method Details
.mapper ⇒ Object
Mapper for EnvironmentDeploymentProperties 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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/environment_deployment_properties.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EnvironmentDeploymentProperties', type: { name: 'Composite', class_name: 'EnvironmentDeploymentProperties', model_properties: { arm_template_id: { client_side_validation: true, required: false, serialized_name: 'armTemplateId', type: { name: 'String' } }, parameters: { client_side_validation: true, required: false, serialized_name: 'parameters', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ArmTemplateParameterPropertiesElementType', type: { name: 'Composite', class_name: 'ArmTemplateParameterProperties' } } } } } } } end |