Class: Azure::Resources::Mgmt::V2016_02_01::Models::DeploymentProperties
- Inherits:
-
Object
- Object
- Azure::Resources::Mgmt::V2016_02_01::Models::DeploymentProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-02-01/generated/azure_mgmt_resources/models/deployment_properties.rb
Overview
Deployment properties.
Instance Attribute Summary collapse
-
#debug_setting ⇒ DebugSetting
The debug setting of the deployment.
-
#mode ⇒ DeploymentMode
‘Incremental’, ‘Complete’.
-
#parameters ⇒ Object
JSON string.
-
#parameters_link ⇒ ParametersLink
or ParametersLink.
-
#template ⇒ Object
string.
-
#template_link ⇒ TemplateLink
TemplateLink.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DeploymentProperties class as Ruby Hash.
Instance Attribute Details
#debug_setting ⇒ DebugSetting
Returns The debug setting of the deployment.
36 37 38 |
# File 'lib/2016-02-01/generated/azure_mgmt_resources/models/deployment_properties.rb', line 36 def debug_setting @debug_setting end |
#mode ⇒ DeploymentMode
‘Incremental’, ‘Complete’
33 34 35 |
# File 'lib/2016-02-01/generated/azure_mgmt_resources/models/deployment_properties.rb', line 33 def mode @mode end |
#parameters ⇒ Object
JSON string. Use only one of Parameters or ParametersLink.
25 26 27 |
# File 'lib/2016-02-01/generated/azure_mgmt_resources/models/deployment_properties.rb', line 25 def parameters @parameters end |
#parameters_link ⇒ ParametersLink
or ParametersLink.
29 30 31 |
# File 'lib/2016-02-01/generated/azure_mgmt_resources/models/deployment_properties.rb', line 29 def parameters_link @parameters_link end |
#template ⇒ Object
string. Use only one of Template or TemplateLink.
17 18 19 |
# File 'lib/2016-02-01/generated/azure_mgmt_resources/models/deployment_properties.rb', line 17 def template @template end |
#template_link ⇒ TemplateLink
TemplateLink.
21 22 23 |
# File 'lib/2016-02-01/generated/azure_mgmt_resources/models/deployment_properties.rb', line 21 def template_link @template_link end |
Class Method Details
.mapper ⇒ Object
Mapper for DeploymentProperties class as Ruby Hash. This will be used for serialization/deserialization.
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/2016-02-01/generated/azure_mgmt_resources/models/deployment_properties.rb', line 43 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeploymentProperties', type: { name: 'Composite', class_name: 'DeploymentProperties', model_properties: { template: { client_side_validation: true, required: false, serialized_name: 'template', type: { name: 'Object' } }, template_link: { client_side_validation: true, required: false, serialized_name: 'templateLink', type: { name: 'Composite', class_name: 'TemplateLink' } }, parameters: { client_side_validation: true, required: false, serialized_name: 'parameters', type: { name: 'Object' } }, parameters_link: { client_side_validation: true, required: false, serialized_name: 'parametersLink', type: { name: 'Composite', class_name: 'ParametersLink' } }, mode: { client_side_validation: true, required: true, serialized_name: 'mode', type: { name: 'Enum', module: 'DeploymentMode' } }, debug_setting: { client_side_validation: true, required: false, serialized_name: 'debugSetting', type: { name: 'Composite', class_name: 'DebugSetting' } } } } } end |