Skip to content

Commit

Permalink
Release network microsoft.network official 2023 11 01 (#27477)
Browse files Browse the repository at this point in the history
* Update applicationGateway.json

Added 'headerValueMatcher' property in the Application Gateway configuration file.

* Update applicationGateway.json

* Update applicationGateway.json

Updated descriptions of fields.

* Update applicationGateway.json

updated description message

* Update applicationGateway.json

* Update applicationGateway.json

Prettifying
  • Loading branch information
Sukhdev841 authored Feb 8, 2024
1 parent a57c2db commit 4189e23
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2642,13 +2642,36 @@
"type": "string",
"description": "Header name of the header configuration."
},
"headerValueMatcher": {
"type": "object",
"$ref": "#/definitions/HeaderValueMatcher",
"description": "An optional field under \"Rewrite Action\". It lets you capture and modify the value(s) of a specific header when multiple headers with the same name exist. Currently supported for Set-Cookie Response header only. For more details, visit https://aka.ms/appgwheadercrud"
},
"headerValue": {
"type": "string",
"description": "Header value of the header configuration."
}
},
"description": "Header configuration of the Actions set in Application Gateway."
},
"HeaderValueMatcher": {
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "The pattern, either fixed string or regular expression, that evaluates if a header value should be selected for rewrite."
},
"ignoreCase": {
"type": "boolean",
"description": "Setting this parameter to truth value with force the pattern to do a case in-sensitive comparison."
},
"negate": {
"type": "boolean",
"description": "Setting this value as truth will force to check the negation of the condition given by the user in the pattern field."
}
},
"description": "An optional field under \"Rewrite Action\". It lets you capture and modify the value(s) of a specific header when multiple headers with the same name exist. Currently supported for Set-Cookie Response header only. For more details, visit https://aka.ms/appgwheadercrud"
},
"ApplicationGatewayUrlConfiguration": {
"properties": {
"modifiedPath": {
Expand Down

0 comments on commit 4189e23

Please sign in to comment.