forked from odpi/egeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEgeria-asset-owner-omas.postman_collection.json
190 lines (190 loc) · 4.65 KB
/
Egeria-asset-owner-omas.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"info": {
"_postman_id": "d2b3c000-e146-4c56-9776-bd16e7292e85",
"name": "Egeria-asset-owner-omas",
"description": "Requests for configuring an OMAG Server",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Get names of the subtypes of Asset",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseURL}}/servers/{{server}}/open-metadata/access-services/asset-owner/users/{{user}}/assets/sub-types",
"host": [
"{{baseURL}}"
],
"path": [
"servers",
"{{server}}",
"open-metadata",
"access-services",
"asset-owner",
"users",
"{{user}}",
"assets",
"sub-types"
]
},
"description": "Asset is the top level type definition for an asset. The type system also defines many more specialized types for Asset. This requests lists the names of all of these specialized types found in the open metadata ecosystem that this instance of the Asset Owner OMAS is connected to."
},
"response": []
},
{
"name": "Get details of the subtypes of Asset",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseURL}}/servers/{{server}}/open-metadata/access-services/asset-owner/users/{{user}}/assets/sub-types/descriptions",
"host": [
"{{baseURL}}"
],
"path": [
"servers",
"{{server}}",
"open-metadata",
"access-services",
"asset-owner",
"users",
"{{user}}",
"assets",
"sub-types",
"descriptions"
]
},
"description": "Asset is the top level type definition for an asset. The type system also defines many more specialized types for Asset. This requests lists the details of all of these specialized types found in the open metadata ecosystem that this instance of the Asset Owner OMAS is connected to."
},
"response": []
},
{
"name": "Create a CSV Asset",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n\t\"class\" : \"NewCSVFileAssetRequestBody\",\n\t\"displayName\" : \"My CSV File\",\n\t\"description\" : \"This is a test CSV file description added with Postman.\",\n\t\"fullPath\" : \"home/my-table.csv\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/servers/{{server}}/open-metadata/access-services/asset-owner/users/{{user}}/assets/data-files/csv",
"host": [
"{{baseURL}}"
],
"path": [
"servers",
"{{server}}",
"open-metadata",
"access-services",
"asset-owner",
"users",
"{{user}}",
"assets",
"data-files",
"csv"
]
},
"description": "Add an asset definition for a CSV file"
},
"response": []
},
{
"name": "Get Assets by name",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "home/my-table.csv",
"options": {
"raw": {
"language": "text"
}
}
},
"url": {
"raw": "{{baseURL}}/servers/{{server}}/open-metadata/access-services/asset-owner/users/{{user}}/assets/by-name?startFrom=0&pageSize=10",
"host": [
"{{baseURL}}"
],
"path": [
"servers",
"{{server}}",
"open-metadata",
"access-services",
"asset-owner",
"users",
"{{user}}",
"assets",
"by-name"
],
"query": [
{
"key": "startFrom",
"value": "0"
},
{
"key": "pageSize",
"value": "10"
}
]
},
"description": "Return a list of assets with the requested name."
},
"response": []
},
{
"name": "Get Assets by search string",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ".*home.*",
"options": {
"raw": {
"language": "text"
}
}
},
"url": {
"raw": "{{baseURL}}/servers/{{server}}/open-metadata/access-services/asset-owner/users/{{user}}/assets/by-search-string?startFrom=0&pageSize=10",
"host": [
"{{baseURL}}"
],
"path": [
"servers",
"{{server}}",
"open-metadata",
"access-services",
"asset-owner",
"users",
"{{user}}",
"assets",
"by-search-string"
],
"query": [
{
"key": "startFrom",
"value": "0"
},
{
"key": "pageSize",
"value": "10"
}
]
},
"description": "Return a list of assets with the requested search string in their name, qualified name or description."
},
"response": []
}
],
"protocolProfileBehavior": {}
}