@alicloud/dataworks-public20200518 4.3.18 → 4.3.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +486 -0
- package/dist/client.js +966 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1271 -74
package/dist/client.js
CHANGED
|
@@ -141,6 +141,70 @@ class AbolishDataServiceApiResponse extends $tea.Model {
|
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
exports.AbolishDataServiceApiResponse = AbolishDataServiceApiResponse;
|
|
144
|
+
class AddMetaCollectionEntityRequest extends $tea.Model {
|
|
145
|
+
constructor(map) {
|
|
146
|
+
super(map);
|
|
147
|
+
}
|
|
148
|
+
static names() {
|
|
149
|
+
return {
|
|
150
|
+
collectionQualifiedName: 'CollectionQualifiedName',
|
|
151
|
+
entityQualifiedName: 'EntityQualifiedName',
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
static types() {
|
|
155
|
+
return {
|
|
156
|
+
collectionQualifiedName: 'string',
|
|
157
|
+
entityQualifiedName: 'string',
|
|
158
|
+
};
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
exports.AddMetaCollectionEntityRequest = AddMetaCollectionEntityRequest;
|
|
162
|
+
class AddMetaCollectionEntityResponseBody extends $tea.Model {
|
|
163
|
+
constructor(map) {
|
|
164
|
+
super(map);
|
|
165
|
+
}
|
|
166
|
+
static names() {
|
|
167
|
+
return {
|
|
168
|
+
errorCode: 'ErrorCode',
|
|
169
|
+
errorMessage: 'ErrorMessage',
|
|
170
|
+
httpStatusCode: 'HttpStatusCode',
|
|
171
|
+
requestId: 'RequestId',
|
|
172
|
+
status: 'Status',
|
|
173
|
+
success: 'Success',
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
static types() {
|
|
177
|
+
return {
|
|
178
|
+
errorCode: 'string',
|
|
179
|
+
errorMessage: 'string',
|
|
180
|
+
httpStatusCode: 'number',
|
|
181
|
+
requestId: 'string',
|
|
182
|
+
status: 'boolean',
|
|
183
|
+
success: 'boolean',
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
exports.AddMetaCollectionEntityResponseBody = AddMetaCollectionEntityResponseBody;
|
|
188
|
+
class AddMetaCollectionEntityResponse extends $tea.Model {
|
|
189
|
+
constructor(map) {
|
|
190
|
+
super(map);
|
|
191
|
+
}
|
|
192
|
+
static names() {
|
|
193
|
+
return {
|
|
194
|
+
headers: 'headers',
|
|
195
|
+
statusCode: 'statusCode',
|
|
196
|
+
body: 'body',
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
static types() {
|
|
200
|
+
return {
|
|
201
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
202
|
+
statusCode: 'number',
|
|
203
|
+
body: AddMetaCollectionEntityResponseBody,
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
exports.AddMetaCollectionEntityResponse = AddMetaCollectionEntityResponse;
|
|
144
208
|
class AddProjectMemberToRoleRequest extends $tea.Model {
|
|
145
209
|
constructor(map) {
|
|
146
210
|
super(map);
|
|
@@ -1855,6 +1919,74 @@ class CreateMetaCategoryResponse extends $tea.Model {
|
|
|
1855
1919
|
}
|
|
1856
1920
|
}
|
|
1857
1921
|
exports.CreateMetaCategoryResponse = CreateMetaCategoryResponse;
|
|
1922
|
+
class CreateMetaCollectionRequest extends $tea.Model {
|
|
1923
|
+
constructor(map) {
|
|
1924
|
+
super(map);
|
|
1925
|
+
}
|
|
1926
|
+
static names() {
|
|
1927
|
+
return {
|
|
1928
|
+
collectionType: 'CollectionType',
|
|
1929
|
+
comment: 'Comment',
|
|
1930
|
+
name: 'Name',
|
|
1931
|
+
parentQualifiedName: 'ParentQualifiedName',
|
|
1932
|
+
};
|
|
1933
|
+
}
|
|
1934
|
+
static types() {
|
|
1935
|
+
return {
|
|
1936
|
+
collectionType: 'string',
|
|
1937
|
+
comment: 'string',
|
|
1938
|
+
name: 'string',
|
|
1939
|
+
parentQualifiedName: 'string',
|
|
1940
|
+
};
|
|
1941
|
+
}
|
|
1942
|
+
}
|
|
1943
|
+
exports.CreateMetaCollectionRequest = CreateMetaCollectionRequest;
|
|
1944
|
+
class CreateMetaCollectionResponseBody extends $tea.Model {
|
|
1945
|
+
constructor(map) {
|
|
1946
|
+
super(map);
|
|
1947
|
+
}
|
|
1948
|
+
static names() {
|
|
1949
|
+
return {
|
|
1950
|
+
errorCode: 'ErrorCode',
|
|
1951
|
+
errorMessage: 'ErrorMessage',
|
|
1952
|
+
httpStatusCode: 'HttpStatusCode',
|
|
1953
|
+
qualifiedName: 'QualifiedName',
|
|
1954
|
+
requestId: 'RequestId',
|
|
1955
|
+
success: 'Success',
|
|
1956
|
+
};
|
|
1957
|
+
}
|
|
1958
|
+
static types() {
|
|
1959
|
+
return {
|
|
1960
|
+
errorCode: 'string',
|
|
1961
|
+
errorMessage: 'string',
|
|
1962
|
+
httpStatusCode: 'string',
|
|
1963
|
+
qualifiedName: 'string',
|
|
1964
|
+
requestId: 'string',
|
|
1965
|
+
success: 'string',
|
|
1966
|
+
};
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
exports.CreateMetaCollectionResponseBody = CreateMetaCollectionResponseBody;
|
|
1970
|
+
class CreateMetaCollectionResponse extends $tea.Model {
|
|
1971
|
+
constructor(map) {
|
|
1972
|
+
super(map);
|
|
1973
|
+
}
|
|
1974
|
+
static names() {
|
|
1975
|
+
return {
|
|
1976
|
+
headers: 'headers',
|
|
1977
|
+
statusCode: 'statusCode',
|
|
1978
|
+
body: 'body',
|
|
1979
|
+
};
|
|
1980
|
+
}
|
|
1981
|
+
static types() {
|
|
1982
|
+
return {
|
|
1983
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1984
|
+
statusCode: 'number',
|
|
1985
|
+
body: CreateMetaCollectionResponseBody,
|
|
1986
|
+
};
|
|
1987
|
+
}
|
|
1988
|
+
}
|
|
1989
|
+
exports.CreateMetaCollectionResponse = CreateMetaCollectionResponse;
|
|
1858
1990
|
class CreatePermissionApplyOrderRequest extends $tea.Model {
|
|
1859
1991
|
constructor(map) {
|
|
1860
1992
|
super(map);
|
|
@@ -3385,6 +3517,132 @@ class DeleteMetaCategoryResponse extends $tea.Model {
|
|
|
3385
3517
|
}
|
|
3386
3518
|
}
|
|
3387
3519
|
exports.DeleteMetaCategoryResponse = DeleteMetaCategoryResponse;
|
|
3520
|
+
class DeleteMetaCollectionRequest extends $tea.Model {
|
|
3521
|
+
constructor(map) {
|
|
3522
|
+
super(map);
|
|
3523
|
+
}
|
|
3524
|
+
static names() {
|
|
3525
|
+
return {
|
|
3526
|
+
qualifiedName: 'QualifiedName',
|
|
3527
|
+
};
|
|
3528
|
+
}
|
|
3529
|
+
static types() {
|
|
3530
|
+
return {
|
|
3531
|
+
qualifiedName: 'string',
|
|
3532
|
+
};
|
|
3533
|
+
}
|
|
3534
|
+
}
|
|
3535
|
+
exports.DeleteMetaCollectionRequest = DeleteMetaCollectionRequest;
|
|
3536
|
+
class DeleteMetaCollectionResponseBody extends $tea.Model {
|
|
3537
|
+
constructor(map) {
|
|
3538
|
+
super(map);
|
|
3539
|
+
}
|
|
3540
|
+
static names() {
|
|
3541
|
+
return {
|
|
3542
|
+
errorCode: 'ErrorCode',
|
|
3543
|
+
errorMessage: 'ErrorMessage',
|
|
3544
|
+
httpStatusCode: 'HttpStatusCode',
|
|
3545
|
+
requestId: 'RequestId',
|
|
3546
|
+
status: 'Status',
|
|
3547
|
+
success: 'Success',
|
|
3548
|
+
};
|
|
3549
|
+
}
|
|
3550
|
+
static types() {
|
|
3551
|
+
return {
|
|
3552
|
+
errorCode: 'string',
|
|
3553
|
+
errorMessage: 'string',
|
|
3554
|
+
httpStatusCode: 'number',
|
|
3555
|
+
requestId: 'string',
|
|
3556
|
+
status: 'boolean',
|
|
3557
|
+
success: 'boolean',
|
|
3558
|
+
};
|
|
3559
|
+
}
|
|
3560
|
+
}
|
|
3561
|
+
exports.DeleteMetaCollectionResponseBody = DeleteMetaCollectionResponseBody;
|
|
3562
|
+
class DeleteMetaCollectionResponse extends $tea.Model {
|
|
3563
|
+
constructor(map) {
|
|
3564
|
+
super(map);
|
|
3565
|
+
}
|
|
3566
|
+
static names() {
|
|
3567
|
+
return {
|
|
3568
|
+
headers: 'headers',
|
|
3569
|
+
statusCode: 'statusCode',
|
|
3570
|
+
body: 'body',
|
|
3571
|
+
};
|
|
3572
|
+
}
|
|
3573
|
+
static types() {
|
|
3574
|
+
return {
|
|
3575
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3576
|
+
statusCode: 'number',
|
|
3577
|
+
body: DeleteMetaCollectionResponseBody,
|
|
3578
|
+
};
|
|
3579
|
+
}
|
|
3580
|
+
}
|
|
3581
|
+
exports.DeleteMetaCollectionResponse = DeleteMetaCollectionResponse;
|
|
3582
|
+
class DeleteMetaCollectionEntityRequest extends $tea.Model {
|
|
3583
|
+
constructor(map) {
|
|
3584
|
+
super(map);
|
|
3585
|
+
}
|
|
3586
|
+
static names() {
|
|
3587
|
+
return {
|
|
3588
|
+
collectionQualifiedName: 'CollectionQualifiedName',
|
|
3589
|
+
entityQualifiedName: 'EntityQualifiedName',
|
|
3590
|
+
};
|
|
3591
|
+
}
|
|
3592
|
+
static types() {
|
|
3593
|
+
return {
|
|
3594
|
+
collectionQualifiedName: 'string',
|
|
3595
|
+
entityQualifiedName: 'string',
|
|
3596
|
+
};
|
|
3597
|
+
}
|
|
3598
|
+
}
|
|
3599
|
+
exports.DeleteMetaCollectionEntityRequest = DeleteMetaCollectionEntityRequest;
|
|
3600
|
+
class DeleteMetaCollectionEntityResponseBody extends $tea.Model {
|
|
3601
|
+
constructor(map) {
|
|
3602
|
+
super(map);
|
|
3603
|
+
}
|
|
3604
|
+
static names() {
|
|
3605
|
+
return {
|
|
3606
|
+
errorCode: 'ErrorCode',
|
|
3607
|
+
errorMessage: 'ErrorMessage',
|
|
3608
|
+
httpStatusCode: 'HttpStatusCode',
|
|
3609
|
+
requestId: 'RequestId',
|
|
3610
|
+
status: 'Status',
|
|
3611
|
+
success: 'Success',
|
|
3612
|
+
};
|
|
3613
|
+
}
|
|
3614
|
+
static types() {
|
|
3615
|
+
return {
|
|
3616
|
+
errorCode: 'string',
|
|
3617
|
+
errorMessage: 'string',
|
|
3618
|
+
httpStatusCode: 'number',
|
|
3619
|
+
requestId: 'string',
|
|
3620
|
+
status: 'boolean',
|
|
3621
|
+
success: 'boolean',
|
|
3622
|
+
};
|
|
3623
|
+
}
|
|
3624
|
+
}
|
|
3625
|
+
exports.DeleteMetaCollectionEntityResponseBody = DeleteMetaCollectionEntityResponseBody;
|
|
3626
|
+
class DeleteMetaCollectionEntityResponse extends $tea.Model {
|
|
3627
|
+
constructor(map) {
|
|
3628
|
+
super(map);
|
|
3629
|
+
}
|
|
3630
|
+
static names() {
|
|
3631
|
+
return {
|
|
3632
|
+
headers: 'headers',
|
|
3633
|
+
statusCode: 'statusCode',
|
|
3634
|
+
body: 'body',
|
|
3635
|
+
};
|
|
3636
|
+
}
|
|
3637
|
+
static types() {
|
|
3638
|
+
return {
|
|
3639
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3640
|
+
statusCode: 'number',
|
|
3641
|
+
body: DeleteMetaCollectionEntityResponseBody,
|
|
3642
|
+
};
|
|
3643
|
+
}
|
|
3644
|
+
}
|
|
3645
|
+
exports.DeleteMetaCollectionEntityResponse = DeleteMetaCollectionEntityResponse;
|
|
3388
3646
|
class DeleteProjectMemberRequest extends $tea.Model {
|
|
3389
3647
|
constructor(map) {
|
|
3390
3648
|
super(map);
|
|
@@ -6379,6 +6637,68 @@ class GetMetaCategoryResponse extends $tea.Model {
|
|
|
6379
6637
|
}
|
|
6380
6638
|
}
|
|
6381
6639
|
exports.GetMetaCategoryResponse = GetMetaCategoryResponse;
|
|
6640
|
+
class GetMetaCollectionDetailRequest extends $tea.Model {
|
|
6641
|
+
constructor(map) {
|
|
6642
|
+
super(map);
|
|
6643
|
+
}
|
|
6644
|
+
static names() {
|
|
6645
|
+
return {
|
|
6646
|
+
qualifiedName: 'QualifiedName',
|
|
6647
|
+
};
|
|
6648
|
+
}
|
|
6649
|
+
static types() {
|
|
6650
|
+
return {
|
|
6651
|
+
qualifiedName: 'string',
|
|
6652
|
+
};
|
|
6653
|
+
}
|
|
6654
|
+
}
|
|
6655
|
+
exports.GetMetaCollectionDetailRequest = GetMetaCollectionDetailRequest;
|
|
6656
|
+
class GetMetaCollectionDetailResponseBody extends $tea.Model {
|
|
6657
|
+
constructor(map) {
|
|
6658
|
+
super(map);
|
|
6659
|
+
}
|
|
6660
|
+
static names() {
|
|
6661
|
+
return {
|
|
6662
|
+
collection: 'Collection',
|
|
6663
|
+
errorCode: 'ErrorCode',
|
|
6664
|
+
errorMessage: 'ErrorMessage',
|
|
6665
|
+
httpStatusCode: 'HttpStatusCode',
|
|
6666
|
+
requestId: 'RequestId',
|
|
6667
|
+
success: 'Success',
|
|
6668
|
+
};
|
|
6669
|
+
}
|
|
6670
|
+
static types() {
|
|
6671
|
+
return {
|
|
6672
|
+
collection: Collection,
|
|
6673
|
+
errorCode: 'string',
|
|
6674
|
+
errorMessage: 'string',
|
|
6675
|
+
httpStatusCode: 'number',
|
|
6676
|
+
requestId: 'string',
|
|
6677
|
+
success: 'boolean',
|
|
6678
|
+
};
|
|
6679
|
+
}
|
|
6680
|
+
}
|
|
6681
|
+
exports.GetMetaCollectionDetailResponseBody = GetMetaCollectionDetailResponseBody;
|
|
6682
|
+
class GetMetaCollectionDetailResponse extends $tea.Model {
|
|
6683
|
+
constructor(map) {
|
|
6684
|
+
super(map);
|
|
6685
|
+
}
|
|
6686
|
+
static names() {
|
|
6687
|
+
return {
|
|
6688
|
+
headers: 'headers',
|
|
6689
|
+
statusCode: 'statusCode',
|
|
6690
|
+
body: 'body',
|
|
6691
|
+
};
|
|
6692
|
+
}
|
|
6693
|
+
static types() {
|
|
6694
|
+
return {
|
|
6695
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6696
|
+
statusCode: 'number',
|
|
6697
|
+
body: GetMetaCollectionDetailResponseBody,
|
|
6698
|
+
};
|
|
6699
|
+
}
|
|
6700
|
+
}
|
|
6701
|
+
exports.GetMetaCollectionDetailResponse = GetMetaCollectionDetailResponse;
|
|
6382
6702
|
class GetMetaColumnLineageRequest extends $tea.Model {
|
|
6383
6703
|
constructor(map) {
|
|
6384
6704
|
super(map);
|
|
@@ -7259,6 +7579,78 @@ class GetMetaTablePartitionResponse extends $tea.Model {
|
|
|
7259
7579
|
}
|
|
7260
7580
|
}
|
|
7261
7581
|
exports.GetMetaTablePartitionResponse = GetMetaTablePartitionResponse;
|
|
7582
|
+
class GetMetaTableProducingTasksRequest extends $tea.Model {
|
|
7583
|
+
constructor(map) {
|
|
7584
|
+
super(map);
|
|
7585
|
+
}
|
|
7586
|
+
static names() {
|
|
7587
|
+
return {
|
|
7588
|
+
clusterId: 'ClusterId',
|
|
7589
|
+
dataSourceType: 'DataSourceType',
|
|
7590
|
+
dbName: 'DbName',
|
|
7591
|
+
schemaName: 'SchemaName',
|
|
7592
|
+
tableGuid: 'TableGuid',
|
|
7593
|
+
tableName: 'TableName',
|
|
7594
|
+
};
|
|
7595
|
+
}
|
|
7596
|
+
static types() {
|
|
7597
|
+
return {
|
|
7598
|
+
clusterId: 'string',
|
|
7599
|
+
dataSourceType: 'string',
|
|
7600
|
+
dbName: 'string',
|
|
7601
|
+
schemaName: 'string',
|
|
7602
|
+
tableGuid: 'string',
|
|
7603
|
+
tableName: 'string',
|
|
7604
|
+
};
|
|
7605
|
+
}
|
|
7606
|
+
}
|
|
7607
|
+
exports.GetMetaTableProducingTasksRequest = GetMetaTableProducingTasksRequest;
|
|
7608
|
+
class GetMetaTableProducingTasksResponseBody extends $tea.Model {
|
|
7609
|
+
constructor(map) {
|
|
7610
|
+
super(map);
|
|
7611
|
+
}
|
|
7612
|
+
static names() {
|
|
7613
|
+
return {
|
|
7614
|
+
data: 'Data',
|
|
7615
|
+
errorCode: 'ErrorCode',
|
|
7616
|
+
errorMessage: 'ErrorMessage',
|
|
7617
|
+
httpStatusCode: 'HttpStatusCode',
|
|
7618
|
+
requestId: 'RequestId',
|
|
7619
|
+
success: 'Success',
|
|
7620
|
+
};
|
|
7621
|
+
}
|
|
7622
|
+
static types() {
|
|
7623
|
+
return {
|
|
7624
|
+
data: { 'type': 'array', 'itemType': GetMetaTableProducingTasksResponseBodyData },
|
|
7625
|
+
errorCode: 'string',
|
|
7626
|
+
errorMessage: 'string',
|
|
7627
|
+
httpStatusCode: 'number',
|
|
7628
|
+
requestId: 'string',
|
|
7629
|
+
success: 'boolean',
|
|
7630
|
+
};
|
|
7631
|
+
}
|
|
7632
|
+
}
|
|
7633
|
+
exports.GetMetaTableProducingTasksResponseBody = GetMetaTableProducingTasksResponseBody;
|
|
7634
|
+
class GetMetaTableProducingTasksResponse extends $tea.Model {
|
|
7635
|
+
constructor(map) {
|
|
7636
|
+
super(map);
|
|
7637
|
+
}
|
|
7638
|
+
static names() {
|
|
7639
|
+
return {
|
|
7640
|
+
headers: 'headers',
|
|
7641
|
+
statusCode: 'statusCode',
|
|
7642
|
+
body: 'body',
|
|
7643
|
+
};
|
|
7644
|
+
}
|
|
7645
|
+
static types() {
|
|
7646
|
+
return {
|
|
7647
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7648
|
+
statusCode: 'number',
|
|
7649
|
+
body: GetMetaTableProducingTasksResponseBody,
|
|
7650
|
+
};
|
|
7651
|
+
}
|
|
7652
|
+
}
|
|
7653
|
+
exports.GetMetaTableProducingTasksResponse = GetMetaTableProducingTasksResponse;
|
|
7262
7654
|
class GetMetaTableThemeLevelRequest extends $tea.Model {
|
|
7263
7655
|
constructor(map) {
|
|
7264
7656
|
super(map);
|
|
@@ -10787,6 +11179,154 @@ class ListManualDagInstancesResponse extends $tea.Model {
|
|
|
10787
11179
|
}
|
|
10788
11180
|
}
|
|
10789
11181
|
exports.ListManualDagInstancesResponse = ListManualDagInstancesResponse;
|
|
11182
|
+
class ListMetaCollectionEntitiesRequest extends $tea.Model {
|
|
11183
|
+
constructor(map) {
|
|
11184
|
+
super(map);
|
|
11185
|
+
}
|
|
11186
|
+
static names() {
|
|
11187
|
+
return {
|
|
11188
|
+
collectionQualifiedName: 'CollectionQualifiedName',
|
|
11189
|
+
entityType: 'EntityType',
|
|
11190
|
+
keyword: 'Keyword',
|
|
11191
|
+
nextToken: 'NextToken',
|
|
11192
|
+
pageSize: 'PageSize',
|
|
11193
|
+
};
|
|
11194
|
+
}
|
|
11195
|
+
static types() {
|
|
11196
|
+
return {
|
|
11197
|
+
collectionQualifiedName: 'string',
|
|
11198
|
+
entityType: 'string',
|
|
11199
|
+
keyword: 'string',
|
|
11200
|
+
nextToken: 'string',
|
|
11201
|
+
pageSize: 'number',
|
|
11202
|
+
};
|
|
11203
|
+
}
|
|
11204
|
+
}
|
|
11205
|
+
exports.ListMetaCollectionEntitiesRequest = ListMetaCollectionEntitiesRequest;
|
|
11206
|
+
class ListMetaCollectionEntitiesResponseBody extends $tea.Model {
|
|
11207
|
+
constructor(map) {
|
|
11208
|
+
super(map);
|
|
11209
|
+
}
|
|
11210
|
+
static names() {
|
|
11211
|
+
return {
|
|
11212
|
+
data: 'Data',
|
|
11213
|
+
errorCode: 'ErrorCode',
|
|
11214
|
+
errorMessage: 'ErrorMessage',
|
|
11215
|
+
httpStatusCode: 'HttpStatusCode',
|
|
11216
|
+
requestId: 'RequestId',
|
|
11217
|
+
success: 'Success',
|
|
11218
|
+
};
|
|
11219
|
+
}
|
|
11220
|
+
static types() {
|
|
11221
|
+
return {
|
|
11222
|
+
data: ListMetaCollectionEntitiesResponseBodyData,
|
|
11223
|
+
errorCode: 'string',
|
|
11224
|
+
errorMessage: 'string',
|
|
11225
|
+
httpStatusCode: 'number',
|
|
11226
|
+
requestId: 'string',
|
|
11227
|
+
success: 'boolean',
|
|
11228
|
+
};
|
|
11229
|
+
}
|
|
11230
|
+
}
|
|
11231
|
+
exports.ListMetaCollectionEntitiesResponseBody = ListMetaCollectionEntitiesResponseBody;
|
|
11232
|
+
class ListMetaCollectionEntitiesResponse extends $tea.Model {
|
|
11233
|
+
constructor(map) {
|
|
11234
|
+
super(map);
|
|
11235
|
+
}
|
|
11236
|
+
static names() {
|
|
11237
|
+
return {
|
|
11238
|
+
headers: 'headers',
|
|
11239
|
+
statusCode: 'statusCode',
|
|
11240
|
+
body: 'body',
|
|
11241
|
+
};
|
|
11242
|
+
}
|
|
11243
|
+
static types() {
|
|
11244
|
+
return {
|
|
11245
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11246
|
+
statusCode: 'number',
|
|
11247
|
+
body: ListMetaCollectionEntitiesResponseBody,
|
|
11248
|
+
};
|
|
11249
|
+
}
|
|
11250
|
+
}
|
|
11251
|
+
exports.ListMetaCollectionEntitiesResponse = ListMetaCollectionEntitiesResponse;
|
|
11252
|
+
class ListMetaCollectionsRequest extends $tea.Model {
|
|
11253
|
+
constructor(map) {
|
|
11254
|
+
super(map);
|
|
11255
|
+
}
|
|
11256
|
+
static names() {
|
|
11257
|
+
return {
|
|
11258
|
+
administrator: 'Administrator',
|
|
11259
|
+
collectionType: 'CollectionType',
|
|
11260
|
+
creator: 'Creator',
|
|
11261
|
+
follower: 'Follower',
|
|
11262
|
+
keyword: 'Keyword',
|
|
11263
|
+
nextToken: 'NextToken',
|
|
11264
|
+
orderBy: 'OrderBy',
|
|
11265
|
+
pageSize: 'PageSize',
|
|
11266
|
+
parentQualifiedName: 'ParentQualifiedName',
|
|
11267
|
+
};
|
|
11268
|
+
}
|
|
11269
|
+
static types() {
|
|
11270
|
+
return {
|
|
11271
|
+
administrator: 'string',
|
|
11272
|
+
collectionType: 'string',
|
|
11273
|
+
creator: 'string',
|
|
11274
|
+
follower: 'string',
|
|
11275
|
+
keyword: 'string',
|
|
11276
|
+
nextToken: 'string',
|
|
11277
|
+
orderBy: 'string',
|
|
11278
|
+
pageSize: 'number',
|
|
11279
|
+
parentQualifiedName: 'string',
|
|
11280
|
+
};
|
|
11281
|
+
}
|
|
11282
|
+
}
|
|
11283
|
+
exports.ListMetaCollectionsRequest = ListMetaCollectionsRequest;
|
|
11284
|
+
class ListMetaCollectionsResponseBody extends $tea.Model {
|
|
11285
|
+
constructor(map) {
|
|
11286
|
+
super(map);
|
|
11287
|
+
}
|
|
11288
|
+
static names() {
|
|
11289
|
+
return {
|
|
11290
|
+
data: 'Data',
|
|
11291
|
+
errorCode: 'ErrorCode',
|
|
11292
|
+
errorMessage: 'ErrorMessage',
|
|
11293
|
+
httpStatusCode: 'HttpStatusCode',
|
|
11294
|
+
requestId: 'RequestId',
|
|
11295
|
+
success: 'Success',
|
|
11296
|
+
};
|
|
11297
|
+
}
|
|
11298
|
+
static types() {
|
|
11299
|
+
return {
|
|
11300
|
+
data: ListMetaCollectionsResponseBodyData,
|
|
11301
|
+
errorCode: 'string',
|
|
11302
|
+
errorMessage: 'string',
|
|
11303
|
+
httpStatusCode: 'number',
|
|
11304
|
+
requestId: 'string',
|
|
11305
|
+
success: 'boolean',
|
|
11306
|
+
};
|
|
11307
|
+
}
|
|
11308
|
+
}
|
|
11309
|
+
exports.ListMetaCollectionsResponseBody = ListMetaCollectionsResponseBody;
|
|
11310
|
+
class ListMetaCollectionsResponse extends $tea.Model {
|
|
11311
|
+
constructor(map) {
|
|
11312
|
+
super(map);
|
|
11313
|
+
}
|
|
11314
|
+
static names() {
|
|
11315
|
+
return {
|
|
11316
|
+
headers: 'headers',
|
|
11317
|
+
statusCode: 'statusCode',
|
|
11318
|
+
body: 'body',
|
|
11319
|
+
};
|
|
11320
|
+
}
|
|
11321
|
+
static types() {
|
|
11322
|
+
return {
|
|
11323
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11324
|
+
statusCode: 'number',
|
|
11325
|
+
body: ListMetaCollectionsResponseBody,
|
|
11326
|
+
};
|
|
11327
|
+
}
|
|
11328
|
+
}
|
|
11329
|
+
exports.ListMetaCollectionsResponse = ListMetaCollectionsResponse;
|
|
10790
11330
|
class ListMetaDBRequest extends $tea.Model {
|
|
10791
11331
|
constructor(map) {
|
|
10792
11332
|
super(map);
|
|
@@ -15141,6 +15681,72 @@ class UpdateMetaCategoryResponse extends $tea.Model {
|
|
|
15141
15681
|
}
|
|
15142
15682
|
}
|
|
15143
15683
|
exports.UpdateMetaCategoryResponse = UpdateMetaCategoryResponse;
|
|
15684
|
+
class UpdateMetaCollectionRequest extends $tea.Model {
|
|
15685
|
+
constructor(map) {
|
|
15686
|
+
super(map);
|
|
15687
|
+
}
|
|
15688
|
+
static names() {
|
|
15689
|
+
return {
|
|
15690
|
+
comment: 'Comment',
|
|
15691
|
+
name: 'Name',
|
|
15692
|
+
qualifiedName: 'QualifiedName',
|
|
15693
|
+
};
|
|
15694
|
+
}
|
|
15695
|
+
static types() {
|
|
15696
|
+
return {
|
|
15697
|
+
comment: 'string',
|
|
15698
|
+
name: 'string',
|
|
15699
|
+
qualifiedName: 'string',
|
|
15700
|
+
};
|
|
15701
|
+
}
|
|
15702
|
+
}
|
|
15703
|
+
exports.UpdateMetaCollectionRequest = UpdateMetaCollectionRequest;
|
|
15704
|
+
class UpdateMetaCollectionResponseBody extends $tea.Model {
|
|
15705
|
+
constructor(map) {
|
|
15706
|
+
super(map);
|
|
15707
|
+
}
|
|
15708
|
+
static names() {
|
|
15709
|
+
return {
|
|
15710
|
+
errorCode: 'ErrorCode',
|
|
15711
|
+
errorMessage: 'ErrorMessage',
|
|
15712
|
+
httpStatusCode: 'HttpStatusCode',
|
|
15713
|
+
requestId: 'RequestId',
|
|
15714
|
+
status: 'Status',
|
|
15715
|
+
success: 'Success',
|
|
15716
|
+
};
|
|
15717
|
+
}
|
|
15718
|
+
static types() {
|
|
15719
|
+
return {
|
|
15720
|
+
errorCode: 'string',
|
|
15721
|
+
errorMessage: 'string',
|
|
15722
|
+
httpStatusCode: 'number',
|
|
15723
|
+
requestId: 'string',
|
|
15724
|
+
status: 'boolean',
|
|
15725
|
+
success: 'boolean',
|
|
15726
|
+
};
|
|
15727
|
+
}
|
|
15728
|
+
}
|
|
15729
|
+
exports.UpdateMetaCollectionResponseBody = UpdateMetaCollectionResponseBody;
|
|
15730
|
+
class UpdateMetaCollectionResponse extends $tea.Model {
|
|
15731
|
+
constructor(map) {
|
|
15732
|
+
super(map);
|
|
15733
|
+
}
|
|
15734
|
+
static names() {
|
|
15735
|
+
return {
|
|
15736
|
+
headers: 'headers',
|
|
15737
|
+
statusCode: 'statusCode',
|
|
15738
|
+
body: 'body',
|
|
15739
|
+
};
|
|
15740
|
+
}
|
|
15741
|
+
static types() {
|
|
15742
|
+
return {
|
|
15743
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
15744
|
+
statusCode: 'number',
|
|
15745
|
+
body: UpdateMetaCollectionResponseBody,
|
|
15746
|
+
};
|
|
15747
|
+
}
|
|
15748
|
+
}
|
|
15749
|
+
exports.UpdateMetaCollectionResponse = UpdateMetaCollectionResponse;
|
|
15144
15750
|
class UpdateMetaTableRequest extends $tea.Model {
|
|
15145
15751
|
constructor(map) {
|
|
15146
15752
|
super(map);
|
|
@@ -19521,6 +20127,24 @@ class GetMetaTablePartitionResponseBodyData extends $tea.Model {
|
|
|
19521
20127
|
}
|
|
19522
20128
|
}
|
|
19523
20129
|
exports.GetMetaTablePartitionResponseBodyData = GetMetaTablePartitionResponseBodyData;
|
|
20130
|
+
class GetMetaTableProducingTasksResponseBodyData extends $tea.Model {
|
|
20131
|
+
constructor(map) {
|
|
20132
|
+
super(map);
|
|
20133
|
+
}
|
|
20134
|
+
static names() {
|
|
20135
|
+
return {
|
|
20136
|
+
taskId: 'TaskId',
|
|
20137
|
+
taskName: 'TaskName',
|
|
20138
|
+
};
|
|
20139
|
+
}
|
|
20140
|
+
static types() {
|
|
20141
|
+
return {
|
|
20142
|
+
taskId: 'string',
|
|
20143
|
+
taskName: 'string',
|
|
20144
|
+
};
|
|
20145
|
+
}
|
|
20146
|
+
}
|
|
20147
|
+
exports.GetMetaTableProducingTasksResponseBodyData = GetMetaTableProducingTasksResponseBodyData;
|
|
19524
20148
|
class GetMetaTableThemeLevelResponseBodyEntityLevel extends $tea.Model {
|
|
19525
20149
|
constructor(map) {
|
|
19526
20150
|
super(map);
|
|
@@ -23057,6 +23681,42 @@ class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
|
23057
23681
|
}
|
|
23058
23682
|
}
|
|
23059
23683
|
exports.ListManualDagInstancesResponseBodyInstances = ListManualDagInstancesResponseBodyInstances;
|
|
23684
|
+
class ListMetaCollectionEntitiesResponseBodyData extends $tea.Model {
|
|
23685
|
+
constructor(map) {
|
|
23686
|
+
super(map);
|
|
23687
|
+
}
|
|
23688
|
+
static names() {
|
|
23689
|
+
return {
|
|
23690
|
+
entityList: 'EntityList',
|
|
23691
|
+
nextToken: 'NextToken',
|
|
23692
|
+
};
|
|
23693
|
+
}
|
|
23694
|
+
static types() {
|
|
23695
|
+
return {
|
|
23696
|
+
entityList: { 'type': 'array', 'itemType': Entity },
|
|
23697
|
+
nextToken: 'string',
|
|
23698
|
+
};
|
|
23699
|
+
}
|
|
23700
|
+
}
|
|
23701
|
+
exports.ListMetaCollectionEntitiesResponseBodyData = ListMetaCollectionEntitiesResponseBodyData;
|
|
23702
|
+
class ListMetaCollectionsResponseBodyData extends $tea.Model {
|
|
23703
|
+
constructor(map) {
|
|
23704
|
+
super(map);
|
|
23705
|
+
}
|
|
23706
|
+
static names() {
|
|
23707
|
+
return {
|
|
23708
|
+
collectionList: 'CollectionList',
|
|
23709
|
+
nextToken: 'NextToken',
|
|
23710
|
+
};
|
|
23711
|
+
}
|
|
23712
|
+
static types() {
|
|
23713
|
+
return {
|
|
23714
|
+
collectionList: { 'type': 'array', 'itemType': Collection },
|
|
23715
|
+
nextToken: 'string',
|
|
23716
|
+
};
|
|
23717
|
+
}
|
|
23718
|
+
}
|
|
23719
|
+
exports.ListMetaCollectionsResponseBodyData = ListMetaCollectionsResponseBodyData;
|
|
23060
23720
|
class ListMetaDBResponseBodyDatabaseInfoDbList extends $tea.Model {
|
|
23061
23721
|
constructor(map) {
|
|
23062
23722
|
super(map);
|
|
@@ -25235,6 +25895,35 @@ class Client extends openapi_client_1.default {
|
|
|
25235
25895
|
let runtime = new $Util.RuntimeOptions({});
|
|
25236
25896
|
return await this.abolishDataServiceApiWithOptions(request, runtime);
|
|
25237
25897
|
}
|
|
25898
|
+
async addMetaCollectionEntityWithOptions(request, runtime) {
|
|
25899
|
+
tea_util_1.default.validateModel(request);
|
|
25900
|
+
let query = {};
|
|
25901
|
+
if (!tea_util_1.default.isUnset(request.collectionQualifiedName)) {
|
|
25902
|
+
query["CollectionQualifiedName"] = request.collectionQualifiedName;
|
|
25903
|
+
}
|
|
25904
|
+
if (!tea_util_1.default.isUnset(request.entityQualifiedName)) {
|
|
25905
|
+
query["EntityQualifiedName"] = request.entityQualifiedName;
|
|
25906
|
+
}
|
|
25907
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
25908
|
+
query: openapi_util_1.default.query(query),
|
|
25909
|
+
});
|
|
25910
|
+
let params = new $OpenApi.Params({
|
|
25911
|
+
action: "AddMetaCollectionEntity",
|
|
25912
|
+
version: "2020-05-18",
|
|
25913
|
+
protocol: "HTTPS",
|
|
25914
|
+
pathname: "/",
|
|
25915
|
+
method: "POST",
|
|
25916
|
+
authType: "AK",
|
|
25917
|
+
style: "RPC",
|
|
25918
|
+
reqBodyType: "formData",
|
|
25919
|
+
bodyType: "json",
|
|
25920
|
+
});
|
|
25921
|
+
return $tea.cast(await this.callApi(params, req, runtime), new AddMetaCollectionEntityResponse({}));
|
|
25922
|
+
}
|
|
25923
|
+
async addMetaCollectionEntity(request) {
|
|
25924
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
25925
|
+
return await this.addMetaCollectionEntityWithOptions(request, runtime);
|
|
25926
|
+
}
|
|
25238
25927
|
async addProjectMemberToRoleWithOptions(request, runtime) {
|
|
25239
25928
|
tea_util_1.default.validateModel(request);
|
|
25240
25929
|
let query = {};
|
|
@@ -26412,6 +27101,41 @@ class Client extends openapi_client_1.default {
|
|
|
26412
27101
|
let runtime = new $Util.RuntimeOptions({});
|
|
26413
27102
|
return await this.createMetaCategoryWithOptions(request, runtime);
|
|
26414
27103
|
}
|
|
27104
|
+
async createMetaCollectionWithOptions(request, runtime) {
|
|
27105
|
+
tea_util_1.default.validateModel(request);
|
|
27106
|
+
let query = {};
|
|
27107
|
+
if (!tea_util_1.default.isUnset(request.collectionType)) {
|
|
27108
|
+
query["CollectionType"] = request.collectionType;
|
|
27109
|
+
}
|
|
27110
|
+
if (!tea_util_1.default.isUnset(request.comment)) {
|
|
27111
|
+
query["Comment"] = request.comment;
|
|
27112
|
+
}
|
|
27113
|
+
if (!tea_util_1.default.isUnset(request.name)) {
|
|
27114
|
+
query["Name"] = request.name;
|
|
27115
|
+
}
|
|
27116
|
+
if (!tea_util_1.default.isUnset(request.parentQualifiedName)) {
|
|
27117
|
+
query["ParentQualifiedName"] = request.parentQualifiedName;
|
|
27118
|
+
}
|
|
27119
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
27120
|
+
query: openapi_util_1.default.query(query),
|
|
27121
|
+
});
|
|
27122
|
+
let params = new $OpenApi.Params({
|
|
27123
|
+
action: "CreateMetaCollection",
|
|
27124
|
+
version: "2020-05-18",
|
|
27125
|
+
protocol: "HTTPS",
|
|
27126
|
+
pathname: "/",
|
|
27127
|
+
method: "POST",
|
|
27128
|
+
authType: "AK",
|
|
27129
|
+
style: "RPC",
|
|
27130
|
+
reqBodyType: "formData",
|
|
27131
|
+
bodyType: "json",
|
|
27132
|
+
});
|
|
27133
|
+
return $tea.cast(await this.callApi(params, req, runtime), new CreateMetaCollectionResponse({}));
|
|
27134
|
+
}
|
|
27135
|
+
async createMetaCollection(request) {
|
|
27136
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
27137
|
+
return await this.createMetaCollectionWithOptions(request, runtime);
|
|
27138
|
+
}
|
|
26415
27139
|
async createPermissionApplyOrderWithOptions(request, runtime) {
|
|
26416
27140
|
tea_util_1.default.validateModel(request);
|
|
26417
27141
|
let query = {};
|
|
@@ -27319,6 +28043,61 @@ class Client extends openapi_client_1.default {
|
|
|
27319
28043
|
let runtime = new $Util.RuntimeOptions({});
|
|
27320
28044
|
return await this.deleteMetaCategoryWithOptions(request, runtime);
|
|
27321
28045
|
}
|
|
28046
|
+
async deleteMetaCollectionWithOptions(request, runtime) {
|
|
28047
|
+
tea_util_1.default.validateModel(request);
|
|
28048
|
+
let query = {};
|
|
28049
|
+
if (!tea_util_1.default.isUnset(request.qualifiedName)) {
|
|
28050
|
+
query["QualifiedName"] = request.qualifiedName;
|
|
28051
|
+
}
|
|
28052
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
28053
|
+
query: openapi_util_1.default.query(query),
|
|
28054
|
+
});
|
|
28055
|
+
let params = new $OpenApi.Params({
|
|
28056
|
+
action: "DeleteMetaCollection",
|
|
28057
|
+
version: "2020-05-18",
|
|
28058
|
+
protocol: "HTTPS",
|
|
28059
|
+
pathname: "/",
|
|
28060
|
+
method: "POST",
|
|
28061
|
+
authType: "AK",
|
|
28062
|
+
style: "RPC",
|
|
28063
|
+
reqBodyType: "formData",
|
|
28064
|
+
bodyType: "json",
|
|
28065
|
+
});
|
|
28066
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteMetaCollectionResponse({}));
|
|
28067
|
+
}
|
|
28068
|
+
async deleteMetaCollection(request) {
|
|
28069
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
28070
|
+
return await this.deleteMetaCollectionWithOptions(request, runtime);
|
|
28071
|
+
}
|
|
28072
|
+
async deleteMetaCollectionEntityWithOptions(request, runtime) {
|
|
28073
|
+
tea_util_1.default.validateModel(request);
|
|
28074
|
+
let query = {};
|
|
28075
|
+
if (!tea_util_1.default.isUnset(request.collectionQualifiedName)) {
|
|
28076
|
+
query["CollectionQualifiedName"] = request.collectionQualifiedName;
|
|
28077
|
+
}
|
|
28078
|
+
if (!tea_util_1.default.isUnset(request.entityQualifiedName)) {
|
|
28079
|
+
query["EntityQualifiedName"] = request.entityQualifiedName;
|
|
28080
|
+
}
|
|
28081
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
28082
|
+
query: openapi_util_1.default.query(query),
|
|
28083
|
+
});
|
|
28084
|
+
let params = new $OpenApi.Params({
|
|
28085
|
+
action: "DeleteMetaCollectionEntity",
|
|
28086
|
+
version: "2020-05-18",
|
|
28087
|
+
protocol: "HTTPS",
|
|
28088
|
+
pathname: "/",
|
|
28089
|
+
method: "POST",
|
|
28090
|
+
authType: "AK",
|
|
28091
|
+
style: "RPC",
|
|
28092
|
+
reqBodyType: "formData",
|
|
28093
|
+
bodyType: "json",
|
|
28094
|
+
});
|
|
28095
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteMetaCollectionEntityResponse({}));
|
|
28096
|
+
}
|
|
28097
|
+
async deleteMetaCollectionEntity(request) {
|
|
28098
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
28099
|
+
return await this.deleteMetaCollectionEntityWithOptions(request, runtime);
|
|
28100
|
+
}
|
|
27322
28101
|
async deleteProjectMemberWithOptions(request, runtime) {
|
|
27323
28102
|
tea_util_1.default.validateModel(request);
|
|
27324
28103
|
let query = {};
|
|
@@ -28900,6 +29679,32 @@ class Client extends openapi_client_1.default {
|
|
|
28900
29679
|
let runtime = new $Util.RuntimeOptions({});
|
|
28901
29680
|
return await this.getMetaCategoryWithOptions(request, runtime);
|
|
28902
29681
|
}
|
|
29682
|
+
async getMetaCollectionDetailWithOptions(request, runtime) {
|
|
29683
|
+
tea_util_1.default.validateModel(request);
|
|
29684
|
+
let query = {};
|
|
29685
|
+
if (!tea_util_1.default.isUnset(request.qualifiedName)) {
|
|
29686
|
+
query["QualifiedName"] = request.qualifiedName;
|
|
29687
|
+
}
|
|
29688
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
29689
|
+
query: openapi_util_1.default.query(query),
|
|
29690
|
+
});
|
|
29691
|
+
let params = new $OpenApi.Params({
|
|
29692
|
+
action: "GetMetaCollectionDetail",
|
|
29693
|
+
version: "2020-05-18",
|
|
29694
|
+
protocol: "HTTPS",
|
|
29695
|
+
pathname: "/",
|
|
29696
|
+
method: "POST",
|
|
29697
|
+
authType: "AK",
|
|
29698
|
+
style: "RPC",
|
|
29699
|
+
reqBodyType: "formData",
|
|
29700
|
+
bodyType: "json",
|
|
29701
|
+
});
|
|
29702
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetMetaCollectionDetailResponse({}));
|
|
29703
|
+
}
|
|
29704
|
+
async getMetaCollectionDetail(request) {
|
|
29705
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
29706
|
+
return await this.getMetaCollectionDetailWithOptions(request, runtime);
|
|
29707
|
+
}
|
|
28903
29708
|
async getMetaColumnLineageWithOptions(request, runtime) {
|
|
28904
29709
|
tea_util_1.default.validateModel(request);
|
|
28905
29710
|
let query = {};
|
|
@@ -29332,6 +30137,47 @@ class Client extends openapi_client_1.default {
|
|
|
29332
30137
|
let runtime = new $Util.RuntimeOptions({});
|
|
29333
30138
|
return await this.getMetaTablePartitionWithOptions(request, runtime);
|
|
29334
30139
|
}
|
|
30140
|
+
async getMetaTableProducingTasksWithOptions(request, runtime) {
|
|
30141
|
+
tea_util_1.default.validateModel(request);
|
|
30142
|
+
let query = {};
|
|
30143
|
+
if (!tea_util_1.default.isUnset(request.clusterId)) {
|
|
30144
|
+
query["ClusterId"] = request.clusterId;
|
|
30145
|
+
}
|
|
30146
|
+
if (!tea_util_1.default.isUnset(request.dataSourceType)) {
|
|
30147
|
+
query["DataSourceType"] = request.dataSourceType;
|
|
30148
|
+
}
|
|
30149
|
+
if (!tea_util_1.default.isUnset(request.dbName)) {
|
|
30150
|
+
query["DbName"] = request.dbName;
|
|
30151
|
+
}
|
|
30152
|
+
if (!tea_util_1.default.isUnset(request.schemaName)) {
|
|
30153
|
+
query["SchemaName"] = request.schemaName;
|
|
30154
|
+
}
|
|
30155
|
+
if (!tea_util_1.default.isUnset(request.tableGuid)) {
|
|
30156
|
+
query["TableGuid"] = request.tableGuid;
|
|
30157
|
+
}
|
|
30158
|
+
if (!tea_util_1.default.isUnset(request.tableName)) {
|
|
30159
|
+
query["TableName"] = request.tableName;
|
|
30160
|
+
}
|
|
30161
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
30162
|
+
query: openapi_util_1.default.query(query),
|
|
30163
|
+
});
|
|
30164
|
+
let params = new $OpenApi.Params({
|
|
30165
|
+
action: "GetMetaTableProducingTasks",
|
|
30166
|
+
version: "2020-05-18",
|
|
30167
|
+
protocol: "HTTPS",
|
|
30168
|
+
pathname: "/",
|
|
30169
|
+
method: "POST",
|
|
30170
|
+
authType: "AK",
|
|
30171
|
+
style: "RPC",
|
|
30172
|
+
reqBodyType: "formData",
|
|
30173
|
+
bodyType: "json",
|
|
30174
|
+
});
|
|
30175
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetMetaTableProducingTasksResponse({}));
|
|
30176
|
+
}
|
|
30177
|
+
async getMetaTableProducingTasks(request) {
|
|
30178
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
30179
|
+
return await this.getMetaTableProducingTasksWithOptions(request, runtime);
|
|
30180
|
+
}
|
|
29335
30181
|
async getMetaTableThemeLevelWithOptions(request, runtime) {
|
|
29336
30182
|
tea_util_1.default.validateModel(request);
|
|
29337
30183
|
let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
|
|
@@ -31260,6 +32106,94 @@ class Client extends openapi_client_1.default {
|
|
|
31260
32106
|
let runtime = new $Util.RuntimeOptions({});
|
|
31261
32107
|
return await this.listManualDagInstancesWithOptions(request, runtime);
|
|
31262
32108
|
}
|
|
32109
|
+
async listMetaCollectionEntitiesWithOptions(request, runtime) {
|
|
32110
|
+
tea_util_1.default.validateModel(request);
|
|
32111
|
+
let query = {};
|
|
32112
|
+
if (!tea_util_1.default.isUnset(request.collectionQualifiedName)) {
|
|
32113
|
+
query["CollectionQualifiedName"] = request.collectionQualifiedName;
|
|
32114
|
+
}
|
|
32115
|
+
if (!tea_util_1.default.isUnset(request.entityType)) {
|
|
32116
|
+
query["EntityType"] = request.entityType;
|
|
32117
|
+
}
|
|
32118
|
+
if (!tea_util_1.default.isUnset(request.keyword)) {
|
|
32119
|
+
query["Keyword"] = request.keyword;
|
|
32120
|
+
}
|
|
32121
|
+
if (!tea_util_1.default.isUnset(request.nextToken)) {
|
|
32122
|
+
query["NextToken"] = request.nextToken;
|
|
32123
|
+
}
|
|
32124
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
32125
|
+
query["PageSize"] = request.pageSize;
|
|
32126
|
+
}
|
|
32127
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
32128
|
+
query: openapi_util_1.default.query(query),
|
|
32129
|
+
});
|
|
32130
|
+
let params = new $OpenApi.Params({
|
|
32131
|
+
action: "ListMetaCollectionEntities",
|
|
32132
|
+
version: "2020-05-18",
|
|
32133
|
+
protocol: "HTTPS",
|
|
32134
|
+
pathname: "/",
|
|
32135
|
+
method: "POST",
|
|
32136
|
+
authType: "AK",
|
|
32137
|
+
style: "RPC",
|
|
32138
|
+
reqBodyType: "formData",
|
|
32139
|
+
bodyType: "json",
|
|
32140
|
+
});
|
|
32141
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListMetaCollectionEntitiesResponse({}));
|
|
32142
|
+
}
|
|
32143
|
+
async listMetaCollectionEntities(request) {
|
|
32144
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
32145
|
+
return await this.listMetaCollectionEntitiesWithOptions(request, runtime);
|
|
32146
|
+
}
|
|
32147
|
+
async listMetaCollectionsWithOptions(request, runtime) {
|
|
32148
|
+
tea_util_1.default.validateModel(request);
|
|
32149
|
+
let query = {};
|
|
32150
|
+
if (!tea_util_1.default.isUnset(request.administrator)) {
|
|
32151
|
+
query["Administrator"] = request.administrator;
|
|
32152
|
+
}
|
|
32153
|
+
if (!tea_util_1.default.isUnset(request.collectionType)) {
|
|
32154
|
+
query["CollectionType"] = request.collectionType;
|
|
32155
|
+
}
|
|
32156
|
+
if (!tea_util_1.default.isUnset(request.creator)) {
|
|
32157
|
+
query["Creator"] = request.creator;
|
|
32158
|
+
}
|
|
32159
|
+
if (!tea_util_1.default.isUnset(request.follower)) {
|
|
32160
|
+
query["Follower"] = request.follower;
|
|
32161
|
+
}
|
|
32162
|
+
if (!tea_util_1.default.isUnset(request.keyword)) {
|
|
32163
|
+
query["Keyword"] = request.keyword;
|
|
32164
|
+
}
|
|
32165
|
+
if (!tea_util_1.default.isUnset(request.nextToken)) {
|
|
32166
|
+
query["NextToken"] = request.nextToken;
|
|
32167
|
+
}
|
|
32168
|
+
if (!tea_util_1.default.isUnset(request.orderBy)) {
|
|
32169
|
+
query["OrderBy"] = request.orderBy;
|
|
32170
|
+
}
|
|
32171
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
32172
|
+
query["PageSize"] = request.pageSize;
|
|
32173
|
+
}
|
|
32174
|
+
if (!tea_util_1.default.isUnset(request.parentQualifiedName)) {
|
|
32175
|
+
query["ParentQualifiedName"] = request.parentQualifiedName;
|
|
32176
|
+
}
|
|
32177
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
32178
|
+
query: openapi_util_1.default.query(query),
|
|
32179
|
+
});
|
|
32180
|
+
let params = new $OpenApi.Params({
|
|
32181
|
+
action: "ListMetaCollections",
|
|
32182
|
+
version: "2020-05-18",
|
|
32183
|
+
protocol: "HTTPS",
|
|
32184
|
+
pathname: "/",
|
|
32185
|
+
method: "POST",
|
|
32186
|
+
authType: "AK",
|
|
32187
|
+
style: "RPC",
|
|
32188
|
+
reqBodyType: "formData",
|
|
32189
|
+
bodyType: "json",
|
|
32190
|
+
});
|
|
32191
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListMetaCollectionsResponse({}));
|
|
32192
|
+
}
|
|
32193
|
+
async listMetaCollections(request) {
|
|
32194
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
32195
|
+
return await this.listMetaCollectionsWithOptions(request, runtime);
|
|
32196
|
+
}
|
|
31263
32197
|
async listMetaDBWithOptions(request, runtime) {
|
|
31264
32198
|
tea_util_1.default.validateModel(request);
|
|
31265
32199
|
let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
|
|
@@ -33754,6 +34688,38 @@ class Client extends openapi_client_1.default {
|
|
|
33754
34688
|
let runtime = new $Util.RuntimeOptions({});
|
|
33755
34689
|
return await this.updateMetaCategoryWithOptions(request, runtime);
|
|
33756
34690
|
}
|
|
34691
|
+
async updateMetaCollectionWithOptions(request, runtime) {
|
|
34692
|
+
tea_util_1.default.validateModel(request);
|
|
34693
|
+
let query = {};
|
|
34694
|
+
if (!tea_util_1.default.isUnset(request.comment)) {
|
|
34695
|
+
query["Comment"] = request.comment;
|
|
34696
|
+
}
|
|
34697
|
+
if (!tea_util_1.default.isUnset(request.name)) {
|
|
34698
|
+
query["Name"] = request.name;
|
|
34699
|
+
}
|
|
34700
|
+
if (!tea_util_1.default.isUnset(request.qualifiedName)) {
|
|
34701
|
+
query["QualifiedName"] = request.qualifiedName;
|
|
34702
|
+
}
|
|
34703
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34704
|
+
query: openapi_util_1.default.query(query),
|
|
34705
|
+
});
|
|
34706
|
+
let params = new $OpenApi.Params({
|
|
34707
|
+
action: "UpdateMetaCollection",
|
|
34708
|
+
version: "2020-05-18",
|
|
34709
|
+
protocol: "HTTPS",
|
|
34710
|
+
pathname: "/",
|
|
34711
|
+
method: "POST",
|
|
34712
|
+
authType: "AK",
|
|
34713
|
+
style: "RPC",
|
|
34714
|
+
reqBodyType: "formData",
|
|
34715
|
+
bodyType: "json",
|
|
34716
|
+
});
|
|
34717
|
+
return $tea.cast(await this.callApi(params, req, runtime), new UpdateMetaCollectionResponse({}));
|
|
34718
|
+
}
|
|
34719
|
+
async updateMetaCollection(request) {
|
|
34720
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34721
|
+
return await this.updateMetaCollectionWithOptions(request, runtime);
|
|
34722
|
+
}
|
|
33757
34723
|
async updateMetaTableWithOptions(request, runtime) {
|
|
33758
34724
|
tea_util_1.default.validateModel(request);
|
|
33759
34725
|
let query = {};
|