Class: Azure::Network::Mgmt::V2020_06_01::Models::ApplicationGatewayRewriteRuleCondition
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2020_06_01::Models::ApplicationGatewayRewriteRuleCondition
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_rewrite_rule_condition.rb
Overview
Set of conditions in the Rewrite Rule in Application Gateway.
Instance Attribute Summary collapse
-
#ignore_case ⇒ Boolean
pattern to do a case in-sensitive comparison.
-
#negate ⇒ Boolean
negation of the condition given by the user.
-
#pattern ⇒ String
expression, that evaluates the truthfulness of the condition.
-
#variable ⇒ String
The condition parameter of the RewriteRuleCondition.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayRewriteRuleCondition class as Ruby Hash.
Instance Attribute Details
#ignore_case ⇒ Boolean
pattern to do a case in-sensitive comparison.
24 25 26 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_rewrite_rule_condition.rb', line 24 def ignore_case @ignore_case end |
#negate ⇒ Boolean
negation of the condition given by the user.
28 29 30 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_rewrite_rule_condition.rb', line 28 def negate @negate end |
#pattern ⇒ String
expression, that evaluates the truthfulness of the condition.
20 21 22 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_rewrite_rule_condition.rb', line 20 def pattern @pattern end |
#variable ⇒ String
Returns The condition parameter of the RewriteRuleCondition.
16 17 18 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_rewrite_rule_condition.rb', line 16 def variable @variable end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayRewriteRuleCondition class as Ruby Hash. This will be used for serialization/deserialization.
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/2020-06-01/generated/azure_mgmt_network/models/application_gateway_rewrite_rule_condition.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayRewriteRuleCondition', type: { name: 'Composite', class_name: 'ApplicationGatewayRewriteRuleCondition', model_properties: { variable: { client_side_validation: true, required: false, serialized_name: 'variable', type: { name: 'String' } }, pattern: { client_side_validation: true, required: false, serialized_name: 'pattern', type: { name: 'String' } }, ignore_case: { client_side_validation: true, required: false, serialized_name: 'ignoreCase', type: { name: 'Boolean' } }, negate: { client_side_validation: true, required: false, serialized_name: 'negate', type: { name: 'Boolean' } } } } } end |