class Azure::Resources::Mgmt::V2020_06_01::Models::ExpressionEvaluationOptions

Specifies whether template expressions are evaluated within the scope of the parent template or nested template.

Attributes

scope[RW]

@return [ExpressionEvaluationOptionsScopeType] The scope to be used for evaluation of parameters, variables and functions in a nested template. Possible values include: 'NotSpecified', 'Outer', 'Inner'

Private Class Methods

mapper() click to toggle source

Mapper for ExpressionEvaluationOptions class as Ruby Hash. This will be used for serialization/deserialization.

# 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