class Azure::CDN::Mgmt::V2020_09_01::Models::RuleUpdateParameters

The domain JSON object required for domain creation or update.

Attributes

actions[RW]

@return [Array<DeliveryRuleAction>] A list of actions that are executed when all the conditions of a rule are satisfied.

conditions[RW]

@return [Array<DeliveryRuleCondition>] A list of conditions that must be matched for the actions to be executed

match_processing_behavior[RW]

@return [MatchProcessingBehavior] If this rule is a match should the rules engine continue running the remaining rules or stop. If not present, defaults to Continue. Possible values include: 'Continue', 'Stop'

order[RW]

@return [Integer] The order in which the rules are applied for the endpoint. Possible values {0,1,2,3,………}. A rule with a lesser order will be applied before a rule with a greater order. Rule with order 0 is a special rule. It does not require any condition and actions listed in it will always be applied.

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-09-01/generated/azure_mgmt_cdn/models/rule_update_parameters.rb, line 41
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RuleUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'RuleUpdateParameters',
      model_properties: {
        order: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.order',
          type: {
            name: 'Number'
          }
        },
        conditions: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.conditions',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'DeliveryRuleConditionElementType',
                type: {
                  name: 'Composite',
                  polymorphic_discriminator: 'name',
                  uber_parent: 'DeliveryRuleCondition',
                  class_name: 'DeliveryRuleCondition'
                }
            }
          }
        },
        actions: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.actions',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'DeliveryRuleActionElementType',
                type: {
                  name: 'Composite',
                  polymorphic_discriminator: 'name',
                  uber_parent: 'DeliveryRuleAction',
                  class_name: 'DeliveryRuleAction'
                }
            }
          }
        },
        match_processing_behavior: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.matchProcessingBehavior',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end