4
4
openapi : 3.0.3
5
5
info :
6
6
title : PACE API
7
- version : 1.0.0-alpha.40
7
+ version : 1.0.0-alpha.41
8
8
paths :
9
9
/data-policies :
10
10
get :
11
11
tags :
12
12
- DataPoliciesService
13
13
description : Lists all DataPolicies for all platforms.
14
14
operationId : DataPoliciesService_ListDataPolicies
15
+ parameters :
16
+ - name : pageParameters.skip
17
+ in : query
18
+ description : |-
19
+ The provided skip value of the request.
20
+ skip represents records to skip before returning results.
21
+ If empty, skip is 0.
22
+ schema :
23
+ type : integer
24
+ format : uint32
25
+ - name : pageParameters.pageSize
26
+ in : query
27
+ description : |-
28
+ The provided page_size value of the request.
29
+ If empty, page_size is 10.
30
+ schema :
31
+ type : integer
32
+ format : uint32
15
33
responses :
16
34
" 200 " :
17
35
description : OK
@@ -31,6 +49,24 @@ paths:
31
49
- DataCatalogsService
32
50
description : Lists all configured catalogs.
33
51
operationId : DataCatalogsService_ListCatalogs
52
+ parameters :
53
+ - name : pageParameters.skip
54
+ in : query
55
+ description : |-
56
+ The provided skip value of the request.
57
+ skip represents records to skip before returning results.
58
+ If empty, skip is 0.
59
+ schema :
60
+ type : integer
61
+ format : uint32
62
+ - name : pageParameters.pageSize
63
+ in : query
64
+ description : |-
65
+ The provided page_size value of the request.
66
+ If empty, page_size is 10.
67
+ schema :
68
+ type : integer
69
+ format : uint32
34
70
responses :
35
71
" 200 " :
36
72
description : OK
@@ -96,6 +132,23 @@ paths:
96
132
required : true
97
133
schema :
98
134
type : string
135
+ - name : pageParameters.skip
136
+ in : query
137
+ description : |-
138
+ The provided skip value of the request.
139
+ skip represents records to skip before returning results.
140
+ If empty, skip is 0.
141
+ schema :
142
+ type : integer
143
+ format : uint32
144
+ - name : pageParameters.pageSize
145
+ in : query
146
+ description : |-
147
+ The provided page_size value of the request.
148
+ If empty, page_size is 10.
149
+ schema :
150
+ type : integer
151
+ format : uint32
99
152
responses :
100
153
" 200 " :
101
154
description : OK
@@ -125,6 +178,23 @@ paths:
125
178
in : query
126
179
schema :
127
180
type : string
181
+ - name : pageParameters.skip
182
+ in : query
183
+ description : |-
184
+ The provided skip value of the request.
185
+ skip represents records to skip before returning results.
186
+ If empty, skip is 0.
187
+ schema :
188
+ type : integer
189
+ format : uint32
190
+ - name : pageParameters.pageSize
191
+ in : query
192
+ description : |-
193
+ The provided page_size value of the request.
194
+ If empty, page_size is 10.
195
+ schema :
196
+ type : integer
197
+ format : uint32
128
198
responses :
129
199
" 200 " :
130
200
description : OK
@@ -158,6 +228,23 @@ paths:
158
228
in : query
159
229
schema :
160
230
type : string
231
+ - name : pageParameters.skip
232
+ in : query
233
+ description : |-
234
+ The provided skip value of the request.
235
+ skip represents records to skip before returning results.
236
+ If empty, skip is 0.
237
+ schema :
238
+ type : integer
239
+ format : uint32
240
+ - name : pageParameters.pageSize
241
+ in : query
242
+ description : |-
243
+ The provided page_size value of the request.
244
+ If empty, page_size is 10.
245
+ schema :
246
+ type : integer
247
+ format : uint32
161
248
responses :
162
249
" 200 " :
163
250
description : OK
@@ -539,6 +626,23 @@ paths:
539
626
required : true
540
627
schema :
541
628
type : string
629
+ - name : pageParameters.skip
630
+ in : query
631
+ description : |-
632
+ The provided skip value of the request.
633
+ skip represents records to skip before returning results.
634
+ If empty, skip is 0.
635
+ schema :
636
+ type : integer
637
+ format : uint32
638
+ - name : pageParameters.pageSize
639
+ in : query
640
+ description : |-
641
+ The provided page_size value of the request.
642
+ If empty, page_size is 10.
643
+ schema :
644
+ type : integer
645
+ format : uint32
542
646
responses :
543
647
" 200 " :
544
648
description : OK
@@ -564,6 +668,23 @@ paths:
564
668
required : true
565
669
schema :
566
670
type : string
671
+ - name : pageParameters.skip
672
+ in : query
673
+ description : |-
674
+ The provided skip value of the request.
675
+ skip represents records to skip before returning results.
676
+ If empty, skip is 0.
677
+ schema :
678
+ type : integer
679
+ format : uint32
680
+ - name : pageParameters.pageSize
681
+ in : query
682
+ description : |-
683
+ The provided page_size value of the request.
684
+ If empty, page_size is 10.
685
+ schema :
686
+ type : integer
687
+ format : uint32
567
688
responses :
568
689
" 200 " :
569
690
description : OK
@@ -1126,20 +1247,26 @@ components:
1126
1247
type : array
1127
1248
items :
1128
1249
$ref : ' #/components/schemas/DataCatalog'
1250
+ pageInfo :
1251
+ $ref : ' #/components/schemas/PageInfo'
1129
1252
ListDataPoliciesResponse :
1130
1253
type : object
1131
1254
properties :
1132
1255
dataPolicies :
1133
1256
type : array
1134
1257
items :
1135
1258
$ref : ' #/components/schemas/DataPolicy'
1259
+ pageInfo :
1260
+ $ref : ' #/components/schemas/PageInfo'
1136
1261
ListDatabasesResponse :
1137
1262
type : object
1138
1263
properties :
1139
1264
databases :
1140
1265
type : array
1141
1266
items :
1142
1267
$ref : ' #/components/schemas/DataCatalog_Database'
1268
+ pageInfo :
1269
+ $ref : ' #/components/schemas/PageInfo'
1143
1270
ListGlobalTransformsResponse :
1144
1271
type : object
1145
1272
properties :
@@ -1154,6 +1281,8 @@ components:
1154
1281
type : array
1155
1282
items :
1156
1283
type : string
1284
+ pageInfo :
1285
+ $ref : ' #/components/schemas/PageInfo'
1157
1286
ListPluginsResponse :
1158
1287
type : object
1159
1288
properties :
@@ -1175,6 +1304,8 @@ components:
1175
1304
type : array
1176
1305
items :
1177
1306
$ref : ' #/components/schemas/DataCatalog_Schema'
1307
+ pageInfo :
1308
+ $ref : ' #/components/schemas/PageInfo'
1178
1309
description : |-
1179
1310
(-- api-linter: core::0158::response-plural-first-field=disabled
1180
1311
aip.dev/not-precedent: Schemata? Get real. --)
@@ -1185,6 +1316,8 @@ components:
1185
1316
type : array
1186
1317
items :
1187
1318
$ref : ' #/components/schemas/DataCatalog_Table'
1319
+ pageInfo :
1320
+ $ref : ' #/components/schemas/PageInfo'
1188
1321
NumericRounding_Ceil :
1189
1322
type : object
1190
1323
properties :
@@ -1206,6 +1339,13 @@ components:
1206
1339
type : integer
1207
1340
description : The precision to use for rounding. When positive, the value is rounded to the nearest decimal place. When negative, the value is rounded to the nearest power of 10.
1208
1341
format : int32
1342
+ PageInfo :
1343
+ type : object
1344
+ properties :
1345
+ total :
1346
+ type : integer
1347
+ description : The (estimated) total number of records. If the total is unknown, this value is -1.
1348
+ format : int32
1209
1349
Plugin :
1210
1350
type : object
1211
1351
properties :
0 commit comments