Skip to content
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 @@ -1697,6 +1697,54 @@
],
"description": "Parameters supplied to the CreateOrUpdate certificate operation."
},
"DataMasking": {
"properties": {
"queryParams": {
"type": "array",
"items": {
"$ref": "#/definitions/DataMaskingEntity"
},
"description": "Masking settings for Url query parameters"
},
"headers": {
"type": "array",
"items": {
"$ref": "#/definitions/DataMaskingEntity"
},
"description": "Masking settings for headers"
}
}
},
"DataMaskingEntity": {
"properties": {
"value": {
"type": "string",
"description": "The name of an entity to mask (e.g. a name of a header or a query parameter)."
},
"mode": {
"type": "string",
"enum": [
"Mask",
"Hide"
],
"x-ms-enum": {
"name": "DataMaskingMode",
"modelAsString": true,
"values": [
{
"value": "Mask",
"description": "Mask the value of an entity."
},
{
"value": "Hide",
"description": "Hide the presence of an entity."
}
]
},
"description": "Data masking mode."
}
}
},
"DeployConfigurationParameters": {
"properties": {
"properties": {
Expand Down Expand Up @@ -2170,6 +2218,10 @@
"body": {
"$ref": "#/definitions/BodyDiagnosticSettings",
"description": "Body logging settings."
},
"dataMasking": {
"$ref": "#/definitions/DataMasking",
"description": "Data masking settings."
}
},
"description": "Http message diagnostic settings."
Expand Down