-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Review request for Azure.analytics.purview.scanning to add GA version…
… 2023-09-01 (#25983)
- Loading branch information
1 parent
00c060f
commit 90a65cb
Showing
61 changed files
with
12,126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -678,6 +678,7 @@ datasource | |
datasources | ||
datastore | ||
datastores | ||
dataverse | ||
dataversion | ||
dataware | ||
datawarehouse | ||
|
102 changes: 102 additions & 0 deletions
102
...tics.Purview.Scanning/stable/2023-09-01/examples/ClassificationRules_CreateOrReplace.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
{ | ||
"parameters": { | ||
"endpoint": "{endpoint}", | ||
"classificationRuleName": "ClassificationRule1", | ||
"api-version": "2023-09-01", | ||
"body": { | ||
"kind": "Custom", | ||
"properties": { | ||
"description": "Let's put a cool desc here", | ||
"classificationName": "MICROSOFT.FINANCIAL.AUSTRALIA.BANK_ACCOUNT_NUMBER", | ||
"columnPatterns": [ | ||
{ | ||
"pattern": "^data$", | ||
"kind": "Regex" | ||
} | ||
], | ||
"dataPatterns": [ | ||
{ | ||
"pattern": "^[0-9]{2}-[0-9]{4}-[0-9]{6}-[0-9]{3}$", | ||
"kind": "Regex" | ||
} | ||
], | ||
"minimumPercentageMatch": 60, | ||
"ruleStatus": "Enabled" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"201": { | ||
"headers": { | ||
"x-ms-request-id": "d5496da4-9c52-402f-b067-83cc9ddea888" | ||
}, | ||
"body": { | ||
"id": "classificationRules/ClassificationRule1", | ||
"name": "ClassificationRule1", | ||
"kind": "Custom", | ||
"properties": { | ||
"minimumPercentageMatch": 80, | ||
"classificationAction": "Keep", | ||
"description": "second one", | ||
"version": 4, | ||
"classificationName": "MICROSOFT.FINANCIAL.AUSTRALIA.BANK_ACCOUNT_NUMBER", | ||
"ruleStatus": "Enabled", | ||
"createdAt": "2019-12-09T06:43:30.8478469Z", | ||
"lastModifiedAt": "2019-12-09T07:04:53.2807344Z", | ||
"dataPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data1$" | ||
}, | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data2$" | ||
} | ||
], | ||
"columnPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^column1$" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"200": { | ||
"headers": { | ||
"x-ms-request-id": "d5496da4-9c52-402f-b067-83cc9ddea888" | ||
}, | ||
"body": { | ||
"id": "/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.DataCatalog/DataCatalogs/Catalog1/ClassificationRules/ClassificationRule1", | ||
"name": "ClassificationRule1", | ||
"kind": "Custom", | ||
"properties": { | ||
"minimumPercentageMatch": 80, | ||
"classificationAction": "Keep", | ||
"description": "second one", | ||
"version": 4, | ||
"classificationName": "MICROSOFT.FINANCIAL.AUSTRALIA.BANK_ACCOUNT_NUMBER", | ||
"ruleStatus": "Enabled", | ||
"createdAt": "2019-12-09T06:43:30.8478469Z", | ||
"lastModifiedAt": "2019-12-09T07:04:53.2807344Z", | ||
"dataPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data1$" | ||
}, | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data2$" | ||
} | ||
], | ||
"columnPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^column1$" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...ure.Analytics.Purview.Scanning/stable/2023-09-01/examples/ClassificationRules_Delete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"parameters": { | ||
"endpoint": "{endpoint}", | ||
"subscriptionId": "433a8dfd-e5d5-4e77-ad86-90acdc75eb1a", | ||
"resourceGroupName": "SampleResourceGroup", | ||
"dataCatalogName": "Catalog1", | ||
"classificationRuleName": "ClassificationRule1", | ||
"api-version": "2023-09-01" | ||
}, | ||
"responses": { | ||
"204": { | ||
"headers": { | ||
"x-ms-request-id": "d5496da4-9c52-402f-b067-83cc9ddea888" | ||
} | ||
} | ||
} | ||
} |
48 changes: 48 additions & 0 deletions
48
.../Azure.Analytics.Purview.Scanning/stable/2023-09-01/examples/ClassificationRules_Get.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"parameters": { | ||
"endpoint": "{endpoint}", | ||
"subscriptionId": "12345678-1234-1234-12345678abc", | ||
"resourceGroupName": "SampleResourceGroup", | ||
"dataCatalogName": "Catalog1", | ||
"classificationRuleName": "ClassificationRule1", | ||
"api-version": "2023-09-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": { | ||
"x-ms-request-id": "d5496da4-9c52-402f-b067-83cc9ddea888" | ||
}, | ||
"body": { | ||
"id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/SampleResourceGroup/providers/Microsoft.DataCatalog/DataCatalogs/Catalog1/ClassificationRules/ClassificationRule1", | ||
"name": "ClassificationRule1", | ||
"kind": "Custom", | ||
"properties": { | ||
"minimumPercentageMatch": 80, | ||
"classificationAction": "Keep", | ||
"description": "second one", | ||
"version": 4, | ||
"classificationName": "CUSTOM.TEST.TWO", | ||
"ruleStatus": "Enabled", | ||
"createdAt": "2019-12-09T06:43:30.8478469Z", | ||
"lastModifiedAt": "2019-12-09T07:04:53.2807344Z", | ||
"dataPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data1$" | ||
}, | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data2$" | ||
} | ||
], | ||
"columnPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^column1$" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
84 changes: 84 additions & 0 deletions
84
...Azure.Analytics.Purview.Scanning/stable/2023-09-01/examples/ClassificationRules_List.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
{ | ||
"parameters": { | ||
"endpoint": "{endpoint}", | ||
"api-version": "2023-09-01", | ||
"subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
"resourceGroupName": "SampleResourceGroup", | ||
"dataCatalogName": "Catalog1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": { | ||
"x-ms-request-id": "8e58266a-de42-40d5-b3c4-c6a7e159cfba" | ||
}, | ||
"body": { | ||
"count": 2, | ||
"nextLink": null, | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/SampleResourceGroup/providers/Microsoft.DataCatalog/DataCatalogs/Catalog1/ClassificationRules/ClassificationRule1", | ||
"name": "ClassificationRule1", | ||
"kind": "Custom", | ||
"properties": { | ||
"minimumPercentageMatch": 80, | ||
"classificationAction": "Keep", | ||
"description": "second one", | ||
"version": 4, | ||
"classificationName": "CUSTOM.TEST.TWO", | ||
"ruleStatus": "Enabled", | ||
"createdAt": "2019-12-09T06:43:30.8478469Z", | ||
"lastModifiedAt": "2019-12-09T07:04:53.2807344Z", | ||
"dataPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data1$" | ||
}, | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data2$" | ||
} | ||
], | ||
"columnPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^column1$" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/SampleResourceGroup/providers/Microsoft.DataCatalog/DataCatalogs/Catalog1/ClassificationRules/ClassificationRule2", | ||
"name": "ClassificationRule2", | ||
"kind": "Custom", | ||
"properties": { | ||
"minimumPercentageMatch": 80, | ||
"classificationAction": "Keep", | ||
"description": "second one", | ||
"version": 4, | ||
"classificationName": "CUSTOM.TEST.TWO", | ||
"ruleStatus": "Enabled", | ||
"createdAt": "2019-12-09T06:43:30.8478469Z", | ||
"lastModifiedAt": "2019-12-09T07:04:53.2807344Z", | ||
"dataPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data1$" | ||
}, | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data2$" | ||
} | ||
], | ||
"columnPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^column1$" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
85 changes: 85 additions & 0 deletions
85
...rview.Scanning/stable/2023-09-01/examples/ClassificationRules_ListVersionsByRuleName.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"parameters": { | ||
"endpoint": "{endpoint}", | ||
"api-version": "2023-09-01", | ||
"subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
"resourceGroupName": "SampleResourceGroup", | ||
"dataCatalogName": "Catalog1", | ||
"classificationRuleName": "ClassificationRule1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": { | ||
"x-ms-request-id": "8e58266a-de42-40d5-b3c4-c6a7e159cfba" | ||
}, | ||
"body": { | ||
"count": 2, | ||
"nextLink": null, | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/SampleResourceGroup/providers/Microsoft.DataCatalog/DataCatalogs/Catalog1/ClassificationRules/ClassificationRule1", | ||
"name": "ClassificationRule1", | ||
"kind": "Custom", | ||
"properties": { | ||
"minimumPercentageMatch": 80, | ||
"classificationAction": "Keep", | ||
"description": "second one", | ||
"version": 2, | ||
"classificationName": "CUSTOM.TEST.TWO", | ||
"ruleStatus": "Enabled", | ||
"createdAt": "2019-12-09T06:43:30.8478469Z", | ||
"lastModifiedAt": "2019-12-09T07:04:53.2807344Z", | ||
"dataPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data1$" | ||
}, | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data2$" | ||
} | ||
], | ||
"columnPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^column1$" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/12345678-1234-1234-12345678abc/resourceGroups/SampleResourceGroup/providers/Microsoft.DataCatalog/DataCatalogs/Catalog1/ClassificationRules/ClassificationRule1", | ||
"name": "ClassificationRule2", | ||
"kind": "Custom", | ||
"properties": { | ||
"minimumPercentageMatch": 80, | ||
"classificationAction": "Keep", | ||
"description": "second one", | ||
"version": 1, | ||
"classificationName": "CUSTOM.TEST.TWO", | ||
"ruleStatus": "Enabled", | ||
"createdAt": "2019-12-09T06:43:30.8478469Z", | ||
"lastModifiedAt": "2019-12-09T07:04:53.2807344Z", | ||
"dataPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data1$" | ||
}, | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^data2$" | ||
} | ||
], | ||
"columnPatterns": [ | ||
{ | ||
"kind": "Regex", | ||
"pattern": "^column1$" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...iew.Scanning/stable/2023-09-01/examples/ClassificationRules_TagClassificationVersion.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"parameters": { | ||
"endpoint": "{endpoint}", | ||
"classificationRuleName": "ClassificationRule1", | ||
"classificationRuleVersion": 3, | ||
"api-version": "2023-09-01", | ||
"action": "Keep" | ||
}, | ||
"responses": { | ||
"202": { | ||
"headers": { | ||
"x-ms-request-id": "00000000-0000-0000-0000-00000000000", | ||
"Operation-Location": "https://exampleaccountname.purview.azure.com/scan/classificationrules/rulename/versions/1/:tag?api-version=2023-09-01" | ||
}, | ||
"body": { | ||
"status": "Accepted" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.