Skip to content
Merged
Show file tree
Hide file tree
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 @@ -2,7 +2,8 @@
"parameters": {
"Endpoint": "{Endpoint}",
"guid": "cc0730ba-9b30-41f0-6953-559d17626d2b",
"classificationName": "MICROSOFT.FINANCIAL.US.ABA_ROUTING_NUMBER"
"classificationName": "MICROSOFT.FINANCIAL.US.ABA_ROUTING_NUMBER",
"suppressDeletedClassification": true
},
"responses": {
"204": {}
Expand Down
4 changes: 4 additions & 0 deletions specification/purview/data-plane/datamap/routes.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,10 @@ interface Entity {
@doc("The name of the classification.")
@path
classificationName: string;

@doc("To prevent classification changes from being overridden during regular scans, set this parameter to true. The default value is false.")
@query
suppressDeletedClassification?: boolean;
},
void,
{}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"parameters": {
"Endpoint": "{Endpoint}",
"guid": "cc0730ba-9b30-41f0-6953-559d17626d2b",
"classificationName": "MICROSOFT.FINANCIAL.US.ABA_ROUTING_NUMBER"
"classificationName": "MICROSOFT.FINANCIAL.US.ABA_ROUTING_NUMBER",
"suppressDeletedClassification": true
},
"responses": {
"204": {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,13 @@
"description": "The name of the classification.",
"required": true,
"type": "string"
},
{
"name": "suppressDeletedClassification",
"in": "query",
"description": "To prevent classification changes from being overridden during regular scans, set this parameter to true. The default value is false.",
"required": false,
"type": "boolean"
}
],
"responses": {
Expand Down
Loading