Class: Azure::Resources::Mgmt::V2020_06_01::Models::ExpressionEvaluationOptions
- Inherits:
-
Object
- Object
- Azure::Resources::Mgmt::V2020_06_01::Models::ExpressionEvaluationOptions
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-06-01/generated/azure_mgmt_resources/models/expression_evaluation_options.rb
Overview
Specifies whether template expressions are evaluated within the scope of the parent template or nested template.
Instance Attribute Summary collapse
-
#scope ⇒ ExpressionEvaluationOptionsScopeType
evaluation of parameters, variables and functions in a nested template.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ExpressionEvaluationOptions class as Ruby Hash.
Instance Attribute Details
#scope ⇒ ExpressionEvaluationOptionsScopeType
evaluation of parameters, variables and functions in a nested template. Possible values include: 'NotSpecified', 'Outer', 'Inner'
19 20 21 |
# File 'lib/2020-06-01/generated/azure_mgmt_resources/models/expression_evaluation_options.rb', line 19 def scope @scope end |
Class Method Details
.mapper ⇒ Object
Mapper for ExpressionEvaluationOptions class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/2020-06-01/generated/azure_mgmt_resources/models/expression_evaluation_options.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExpressionEvaluationOptions', type: { name: 'Composite', class_name: 'ExpressionEvaluationOptions', model_properties: { scope: { client_side_validation: true, required: false, serialized_name: 'scope', type: { name: 'String' } } } } } end |