Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release network microsoft.network official 2023 11 01 #27477

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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."
Sukhdev841 marked this conversation as resolved.
Show resolved Hide resolved
}
},
"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