Skip to content

Commit d83740d

Browse files
[Hub Generated] Review request for Azure.Analytics.Purview.Catalog to add version preview/2022-03-01-preview (#18262)
* Adds base for updating Azure.Analytics.Purview.Catalog from version preview/2021-05-01-preview to version 2022-03-01-preview * Updates readme * Updates API version in new specs and examples * add new atlas2.2 API spec * refactor the structure of the new APIs * refactor the structure of the new APIs-2 * fix validation error * add description * add description-2 * fix wording issue * fix double / typo issue
1 parent 9d86403 commit d83740d

File tree

115 files changed

+14478
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+14478
-6
lines changed

custom-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2516,6 +2516,7 @@ Vuln
25162516
IAASVM
25172517
Quickbase
25182518
Smartsheet
2519+
businessmetadata
25192520
Qualys
25202521
servermetrics
25212522
Dataworld
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"parameters": {
3+
"Endpoint": "{Endpoint}",
4+
"collection": "ExampleCollection",
5+
"api-version": "2022-03-01-preview",
6+
"entity": {
7+
"referredEntities": {},
8+
"entity": {
9+
"typeName": "azure_storage_account",
10+
"attributes": {
11+
"name": "exampleaccount",
12+
"qualifiedName": "https://exampleaccount.core.windows.net"
13+
}
14+
}
15+
}
16+
},
17+
"responses": {
18+
"200": {
19+
"body": {
20+
"mutatedEntities": {
21+
"CREATE": [
22+
{
23+
"typeName": "azure_storage_account",
24+
"attributes": {
25+
"qualifiedName": "https://exampleaccount.core.windows.net"
26+
},
27+
"lastModifiedTS": "1",
28+
"guid": "38d3c41f-300c-434e-8dad-0b1a7cb5efd6",
29+
"status": "ACTIVE"
30+
}
31+
]
32+
},
33+
"guidAssignments": {
34+
"-9514774903018162": "38d3c41f-300c-434e-8dad-0b1a7cb5efd6"
35+
}
36+
}
37+
}
38+
}
39+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"parameters": {
3+
"Endpoint": "{Endpoint}",
4+
"collection": "ExampleCollection",
5+
"api-version": "2022-03-01-preview",
6+
"entities": {
7+
"referredEntities": {},
8+
"entities": [
9+
{
10+
"typeName": "azure_storage_account",
11+
"attributes": {
12+
"qualifiedName": "exampleaccount",
13+
"name": "exampleaccount",
14+
"description": "Example Description"
15+
}
16+
},
17+
{
18+
"typeName": "azure_storage_account",
19+
"attributes": {
20+
"qualifiedName": "exampleaccount2",
21+
"name": "exampleaccount2"
22+
}
23+
}
24+
]
25+
}
26+
},
27+
"responses": {
28+
"200": {
29+
"body": {
30+
"mutatedEntities": {
31+
"UPDATE": [
32+
{
33+
"typeName": "azure_storage_account",
34+
"attributes": {
35+
"qualifiedName": "exampleaccount"
36+
},
37+
"lastModifiedTS": "2",
38+
"guid": "b2f9c306-cf65-4bb0-878e-cfaafde156b1",
39+
"status": "ACTIVE"
40+
}
41+
],
42+
"CREATE": [
43+
{
44+
"typeName": "azure_storage_account",
45+
"attributes": {
46+
"qualifiedName": "exampleaccount2"
47+
},
48+
"lastModifiedTS": "1",
49+
"guid": "321493e3-3fb7-4b3e-9df7-3b69154174c2",
50+
"status": "ACTIVE"
51+
}
52+
]
53+
},
54+
"guidAssignments": {
55+
"-9514774903018192": "321493e3-3fb7-4b3e-9df7-3b69154174c2",
56+
"-9514774903018193": "b2f9c306-cf65-4bb0-878e-cfaafde156b1"
57+
}
58+
}
59+
}
60+
}
61+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"parameters": {
3+
"Endpoint": "{Endpoint}",
4+
"collection": "ExampleNewCollection",
5+
"api-version": "2022-03-01-preview",
6+
"moveEntitiesRequest": {
7+
"entityGuids": [
8+
"321493e3-3fb7-4b3e-9df7-3b69154174c2",
9+
"b2f9c306-cf65-4bb0-878e-cfaafde156b1"
10+
]
11+
}
12+
},
13+
"responses": {
14+
"200": {
15+
"body": {
16+
"mutatedEntities": {
17+
"UPDATE": [
18+
{
19+
"typeName": "azure_storage_account",
20+
"attributes": {
21+
"qualifiedName": "exampleaccount"
22+
},
23+
"lastModifiedTS": "3",
24+
"guid": "b2f9c306-cf65-4bb0-878e-cfaafde156b1",
25+
"status": "ACTIVE"
26+
},
27+
{
28+
"typeName": "azure_storage_account",
29+
"attributes": {
30+
"qualifiedName": "exampleaccount2"
31+
},
32+
"lastModifiedTS": "2",
33+
"guid": "321493e3-3fb7-4b3e-9df7-3b69154174c2",
34+
"status": "ACTIVE"
35+
}
36+
]
37+
},
38+
"guidAssignments": {
39+
"-9514774903018192": "321493e3-3fb7-4b3e-9df7-3b69154174c2",
40+
"-9514774903018193": "b2f9c306-cf65-4bb0-878e-cfaafde156b1"
41+
}
42+
}
43+
}
44+
}
45+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"parameters": {
3+
"Endpoint": "{Endpoint}",
4+
"autoCompleteRequest": {
5+
"keywords": "exa",
6+
"filter": {
7+
"and": [
8+
{
9+
"entityType": "azure_blob_path",
10+
"includeSubTypes": false
11+
}
12+
]
13+
},
14+
"limit": 10
15+
},
16+
"api-version": "2022-03-01-preview"
17+
},
18+
"responses": {
19+
"200": {
20+
"body": {
21+
"value": [
22+
{
23+
"text": "example",
24+
"queryPlusText": "example"
25+
},
26+
{
27+
"text": "exampleconfiguration",
28+
"queryPlusText": "exampleconfiguration"
29+
},
30+
{
31+
"text": "exampleresources",
32+
"queryPlusText": "exampleresources"
33+
}
34+
]
35+
}
36+
}
37+
}
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"parameters": {
3+
"Endpoint": "{Endpoint}",
4+
"browseRequest": {
5+
"entityType": "azure_data_explorer_cluster",
6+
"limit": 10
7+
},
8+
"api-version": "2022-03-01-preview"
9+
},
10+
"responses": {
11+
"200": {
12+
"body": {
13+
"@search.count": 1,
14+
"value": [
15+
{
16+
"id": "7afe6da2-4275-4096-90af-e40479cf70e2",
17+
"name": "examplecluster.westus",
18+
"qualifiedName": "https://examplecluster.westus.kusto.windows.net",
19+
"entityType": "azure_data_explorer_cluster",
20+
"path": "/azure_data_explorer_cluster#examplecluster.westus.kusto.windows.net",
21+
"owner": [
22+
{
23+
"id": "12345678-1234-5678-1234-86b7251e0353",
24+
"displayName": "Example DisplayName",
25+
"mail": "[email protected]",
26+
"contactType": "Owner"
27+
}
28+
],
29+
"isLeaf": false
30+
}
31+
]
32+
}
33+
}
34+
}
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"parameters": {
3+
"Endpoint": "{Endpoint}",
4+
"browseRequest": {
5+
"path": "/azure_data_explorer_cluster#examplecluster.westus.kusto.windows.net",
6+
"limit": 10
7+
},
8+
"api-version": "2022-03-01-preview"
9+
},
10+
"responses": {
11+
"200": {
12+
"body": {
13+
"@search.count": 3,
14+
"value": [
15+
{
16+
"id": "55656c92-7e29-4831-a243-f95bdcdd397b",
17+
"name": "exampledata",
18+
"qualifiedName": "https://examplecluster.westus.kusto.windows.net/exampledata",
19+
"entityType": "azure_data_explorer_database",
20+
"path": "/azure_data_explorer_cluster#examplecluster.westus.kusto.windows.net/azure_data_explorer_database#exampledata",
21+
"owner": [
22+
{
23+
"id": "12345678-1234-5678-1234-86b7251e0353",
24+
"displayName": "Example DisplayName",
25+
"mail": "[email protected]",
26+
"contactType": "Owner"
27+
}
28+
],
29+
"isLeaf": false
30+
},
31+
{
32+
"id": "940aa60f-36f6-4dcf-8989-2faa49c74462",
33+
"name": "exampledata2",
34+
"qualifiedName": "https://examplecluster.westus.kusto.windows.net/exampledata2",
35+
"entityType": "azure_data_explorer_database",
36+
"path": "/azure_data_explorer_cluster#examplecluster.westus.kusto.windows.net/azure_data_explorer_database#exampledata2",
37+
"owner": [
38+
{
39+
"id": "12345678-1234-5678-1234-86b7251e0353",
40+
"displayName": "Example DisplayName",
41+
"mail": "[email protected]",
42+
"contactType": "Owner"
43+
}
44+
],
45+
"isLeaf": false
46+
},
47+
{
48+
"id": "19c4a337-840b-442d-ac9c-3df65bb33d69",
49+
"name": "exampledata3",
50+
"qualifiedName": "https://examplecluster.westus.kusto.windows.net/exampledata3",
51+
"entityType": "azure_data_explorer_database",
52+
"path": "/azure_data_explorer_cluster#examplecluster.westus.kusto.windows.net/azure_data_explorer_database#exampledata3",
53+
"owner": [
54+
{
55+
"id": "12345678-1234-5678-1234-86b7251e0353",
56+
"displayName": "Example DisplayName",
57+
"mail": "[email protected]",
58+
"contactType": "Owner"
59+
}
60+
],
61+
"isLeaf": false
62+
}
63+
]
64+
}
65+
}
66+
}
67+
}

0 commit comments

Comments
 (0)