Esempio n. 1
0
        private ApplicationGatewayRewriteRuleResponse(
            Outputs.ApplicationGatewayRewriteRuleActionSetResponse?actionSet,

            string?name)
        {
            ActionSet = actionSet;
            Name      = name;
        }
        private ApplicationGatewayRewriteRuleResponse(
            Outputs.ApplicationGatewayRewriteRuleActionSetResponse?actionSet,

            ImmutableArray <Outputs.ApplicationGatewayRewriteRuleConditionResponse> conditions,

            string?name,

            int?ruleSequence)
        {
            ActionSet    = actionSet;
            Conditions   = conditions;
            Name         = name;
            RuleSequence = ruleSequence;
        }