@alicloud/dataworks-public20200518 4.3.17 → 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 +822 -2
- package/dist/client.js +1364 -9
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1613 -12
package/dist/client.js
CHANGED
|
@@ -23,6 +23,58 @@ const openapi_client_1 = __importStar(require("@alicloud/openapi-client")), $Ope
|
|
|
23
23
|
const openapi_util_1 = __importDefault(require("@alicloud/openapi-util"));
|
|
24
24
|
const endpoint_util_1 = __importDefault(require("@alicloud/endpoint-util"));
|
|
25
25
|
const $tea = __importStar(require("@alicloud/tea-typescript"));
|
|
26
|
+
class Collection extends $tea.Model {
|
|
27
|
+
constructor(map) {
|
|
28
|
+
super(map);
|
|
29
|
+
}
|
|
30
|
+
static names() {
|
|
31
|
+
return {
|
|
32
|
+
collectionType: 'CollectionType',
|
|
33
|
+
comment: 'Comment',
|
|
34
|
+
createTime: 'CreateTime',
|
|
35
|
+
level: 'Level',
|
|
36
|
+
name: 'Name',
|
|
37
|
+
ownerId: 'OwnerId',
|
|
38
|
+
ownerName: 'OwnerName',
|
|
39
|
+
qualifiedName: 'QualifiedName',
|
|
40
|
+
updateTime: 'UpdateTime',
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
static types() {
|
|
44
|
+
return {
|
|
45
|
+
collectionType: 'string',
|
|
46
|
+
comment: 'string',
|
|
47
|
+
createTime: 'number',
|
|
48
|
+
level: 'number',
|
|
49
|
+
name: 'string',
|
|
50
|
+
ownerId: 'string',
|
|
51
|
+
ownerName: 'string',
|
|
52
|
+
qualifiedName: 'string',
|
|
53
|
+
updateTime: 'number',
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.Collection = Collection;
|
|
58
|
+
class Entity extends $tea.Model {
|
|
59
|
+
constructor(map) {
|
|
60
|
+
super(map);
|
|
61
|
+
}
|
|
62
|
+
static names() {
|
|
63
|
+
return {
|
|
64
|
+
entityContent: 'EntityContent',
|
|
65
|
+
qualifiedName: 'QualifiedName',
|
|
66
|
+
tenantId: 'TenantId',
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
static types() {
|
|
70
|
+
return {
|
|
71
|
+
entityContent: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
72
|
+
qualifiedName: 'string',
|
|
73
|
+
tenantId: 'number',
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.Entity = Entity;
|
|
26
78
|
class AbolishDataServiceApiRequest extends $tea.Model {
|
|
27
79
|
constructor(map) {
|
|
28
80
|
super(map);
|
|
@@ -89,6 +141,70 @@ class AbolishDataServiceApiResponse extends $tea.Model {
|
|
|
89
141
|
}
|
|
90
142
|
}
|
|
91
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;
|
|
92
208
|
class AddProjectMemberToRoleRequest extends $tea.Model {
|
|
93
209
|
constructor(map) {
|
|
94
210
|
super(map);
|
|
@@ -1803,6 +1919,74 @@ class CreateMetaCategoryResponse extends $tea.Model {
|
|
|
1803
1919
|
}
|
|
1804
1920
|
}
|
|
1805
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;
|
|
1806
1990
|
class CreatePermissionApplyOrderRequest extends $tea.Model {
|
|
1807
1991
|
constructor(map) {
|
|
1808
1992
|
super(map);
|
|
@@ -3333,6 +3517,132 @@ class DeleteMetaCategoryResponse extends $tea.Model {
|
|
|
3333
3517
|
}
|
|
3334
3518
|
}
|
|
3335
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;
|
|
3336
3646
|
class DeleteProjectMemberRequest extends $tea.Model {
|
|
3337
3647
|
constructor(map) {
|
|
3338
3648
|
super(map);
|
|
@@ -6327,6 +6637,68 @@ class GetMetaCategoryResponse extends $tea.Model {
|
|
|
6327
6637
|
}
|
|
6328
6638
|
}
|
|
6329
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;
|
|
6330
6702
|
class GetMetaColumnLineageRequest extends $tea.Model {
|
|
6331
6703
|
constructor(map) {
|
|
6332
6704
|
super(map);
|
|
@@ -7040,6 +7412,7 @@ class GetMetaTableOutputRequest extends $tea.Model {
|
|
|
7040
7412
|
pageSize: 'PageSize',
|
|
7041
7413
|
startDate: 'StartDate',
|
|
7042
7414
|
tableGuid: 'TableGuid',
|
|
7415
|
+
taskId: 'TaskId',
|
|
7043
7416
|
};
|
|
7044
7417
|
}
|
|
7045
7418
|
static types() {
|
|
@@ -7049,6 +7422,7 @@ class GetMetaTableOutputRequest extends $tea.Model {
|
|
|
7049
7422
|
pageSize: 'number',
|
|
7050
7423
|
startDate: 'string',
|
|
7051
7424
|
tableGuid: 'string',
|
|
7425
|
+
taskId: 'string',
|
|
7052
7426
|
};
|
|
7053
7427
|
}
|
|
7054
7428
|
}
|
|
@@ -7205,6 +7579,78 @@ class GetMetaTablePartitionResponse extends $tea.Model {
|
|
|
7205
7579
|
}
|
|
7206
7580
|
}
|
|
7207
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;
|
|
7208
7654
|
class GetMetaTableThemeLevelRequest extends $tea.Model {
|
|
7209
7655
|
constructor(map) {
|
|
7210
7656
|
super(map);
|
|
@@ -10733,6 +11179,154 @@ class ListManualDagInstancesResponse extends $tea.Model {
|
|
|
10733
11179
|
}
|
|
10734
11180
|
}
|
|
10735
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;
|
|
10736
11330
|
class ListMetaDBRequest extends $tea.Model {
|
|
10737
11331
|
constructor(map) {
|
|
10738
11332
|
super(map);
|
|
@@ -11934,7 +12528,6 @@ class ListResourceGroupsRequest extends $tea.Model {
|
|
|
11934
12528
|
resourceGroupType: 'ResourceGroupType',
|
|
11935
12529
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
11936
12530
|
tags: 'Tags',
|
|
11937
|
-
typeNames: 'TypeNames',
|
|
11938
12531
|
};
|
|
11939
12532
|
}
|
|
11940
12533
|
static types() {
|
|
@@ -11944,7 +12537,6 @@ class ListResourceGroupsRequest extends $tea.Model {
|
|
|
11944
12537
|
resourceGroupType: 'number',
|
|
11945
12538
|
resourceManagerResourceGroupId: 'string',
|
|
11946
12539
|
tags: { 'type': 'array', 'itemType': ListResourceGroupsRequestTags },
|
|
11947
|
-
typeNames: 'string',
|
|
11948
12540
|
};
|
|
11949
12541
|
}
|
|
11950
12542
|
}
|
|
@@ -11960,7 +12552,6 @@ class ListResourceGroupsShrinkRequest extends $tea.Model {
|
|
|
11960
12552
|
resourceGroupType: 'ResourceGroupType',
|
|
11961
12553
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
11962
12554
|
tagsShrink: 'Tags',
|
|
11963
|
-
typeNames: 'TypeNames',
|
|
11964
12555
|
};
|
|
11965
12556
|
}
|
|
11966
12557
|
static types() {
|
|
@@ -11970,7 +12561,6 @@ class ListResourceGroupsShrinkRequest extends $tea.Model {
|
|
|
11970
12561
|
resourceGroupType: 'number',
|
|
11971
12562
|
resourceManagerResourceGroupId: 'string',
|
|
11972
12563
|
tagsShrink: 'string',
|
|
11973
|
-
typeNames: 'string',
|
|
11974
12564
|
};
|
|
11975
12565
|
}
|
|
11976
12566
|
}
|
|
@@ -15091,6 +15681,72 @@ class UpdateMetaCategoryResponse extends $tea.Model {
|
|
|
15091
15681
|
}
|
|
15092
15682
|
}
|
|
15093
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;
|
|
15094
15750
|
class UpdateMetaTableRequest extends $tea.Model {
|
|
15095
15751
|
constructor(map) {
|
|
15096
15752
|
super(map);
|
|
@@ -19471,6 +20127,24 @@ class GetMetaTablePartitionResponseBodyData extends $tea.Model {
|
|
|
19471
20127
|
}
|
|
19472
20128
|
}
|
|
19473
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;
|
|
19474
20148
|
class GetMetaTableThemeLevelResponseBodyEntityLevel extends $tea.Model {
|
|
19475
20149
|
constructor(map) {
|
|
19476
20150
|
super(map);
|
|
@@ -23007,6 +23681,42 @@ class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
|
23007
23681
|
}
|
|
23008
23682
|
}
|
|
23009
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;
|
|
23010
23720
|
class ListMetaDBResponseBodyDatabaseInfoDbList extends $tea.Model {
|
|
23011
23721
|
constructor(map) {
|
|
23012
23722
|
super(map);
|
|
@@ -25185,6 +25895,35 @@ class Client extends openapi_client_1.default {
|
|
|
25185
25895
|
let runtime = new $Util.RuntimeOptions({});
|
|
25186
25896
|
return await this.abolishDataServiceApiWithOptions(request, runtime);
|
|
25187
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
|
+
}
|
|
25188
25927
|
async addProjectMemberToRoleWithOptions(request, runtime) {
|
|
25189
25928
|
tea_util_1.default.validateModel(request);
|
|
25190
25929
|
let query = {};
|
|
@@ -25512,6 +26251,14 @@ class Client extends openapi_client_1.default {
|
|
|
25512
26251
|
let runtime = new $Util.RuntimeOptions({});
|
|
25513
26252
|
return await this.createBusinessWithOptions(request, runtime);
|
|
25514
26253
|
}
|
|
26254
|
+
/**
|
|
26255
|
+
* @deprecated
|
|
26256
|
+
*
|
|
26257
|
+
* @param request CreateConnectionRequest
|
|
26258
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
26259
|
+
* @return CreateConnectionResponse
|
|
26260
|
+
*/
|
|
26261
|
+
// Deprecated
|
|
25515
26262
|
async createConnectionWithOptions(request, runtime) {
|
|
25516
26263
|
tea_util_1.default.validateModel(request);
|
|
25517
26264
|
let query = {};
|
|
@@ -25552,6 +26299,13 @@ class Client extends openapi_client_1.default {
|
|
|
25552
26299
|
});
|
|
25553
26300
|
return $tea.cast(await this.callApi(params, req, runtime), new CreateConnectionResponse({}));
|
|
25554
26301
|
}
|
|
26302
|
+
/**
|
|
26303
|
+
* @deprecated
|
|
26304
|
+
*
|
|
26305
|
+
* @param request CreateConnectionRequest
|
|
26306
|
+
* @return CreateConnectionResponse
|
|
26307
|
+
*/
|
|
26308
|
+
// Deprecated
|
|
25555
26309
|
async createConnection(request) {
|
|
25556
26310
|
let runtime = new $Util.RuntimeOptions({});
|
|
25557
26311
|
return await this.createConnectionWithOptions(request, runtime);
|
|
@@ -25597,6 +26351,14 @@ class Client extends openapi_client_1.default {
|
|
|
25597
26351
|
let runtime = new $Util.RuntimeOptions({});
|
|
25598
26352
|
return await this.createDISyncTaskWithOptions(request, runtime);
|
|
25599
26353
|
}
|
|
26354
|
+
/**
|
|
26355
|
+
* @deprecated
|
|
26356
|
+
*
|
|
26357
|
+
* @param request CreateDagComplementRequest
|
|
26358
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
26359
|
+
* @return CreateDagComplementResponse
|
|
26360
|
+
*/
|
|
26361
|
+
// Deprecated
|
|
25600
26362
|
async createDagComplementWithOptions(request, runtime) {
|
|
25601
26363
|
tea_util_1.default.validateModel(request);
|
|
25602
26364
|
let body = {};
|
|
@@ -25649,10 +26411,25 @@ class Client extends openapi_client_1.default {
|
|
|
25649
26411
|
});
|
|
25650
26412
|
return $tea.cast(await this.callApi(params, req, runtime), new CreateDagComplementResponse({}));
|
|
25651
26413
|
}
|
|
26414
|
+
/**
|
|
26415
|
+
* @deprecated
|
|
26416
|
+
*
|
|
26417
|
+
* @param request CreateDagComplementRequest
|
|
26418
|
+
* @return CreateDagComplementResponse
|
|
26419
|
+
*/
|
|
26420
|
+
// Deprecated
|
|
25652
26421
|
async createDagComplement(request) {
|
|
25653
26422
|
let runtime = new $Util.RuntimeOptions({});
|
|
25654
26423
|
return await this.createDagComplementWithOptions(request, runtime);
|
|
25655
26424
|
}
|
|
26425
|
+
/**
|
|
26426
|
+
* @deprecated
|
|
26427
|
+
*
|
|
26428
|
+
* @param request CreateDagTestRequest
|
|
26429
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
26430
|
+
* @return CreateDagTestResponse
|
|
26431
|
+
*/
|
|
26432
|
+
// Deprecated
|
|
25656
26433
|
async createDagTestWithOptions(request, runtime) {
|
|
25657
26434
|
tea_util_1.default.validateModel(request);
|
|
25658
26435
|
let body = {};
|
|
@@ -25687,6 +26464,13 @@ class Client extends openapi_client_1.default {
|
|
|
25687
26464
|
});
|
|
25688
26465
|
return $tea.cast(await this.callApi(params, req, runtime), new CreateDagTestResponse({}));
|
|
25689
26466
|
}
|
|
26467
|
+
/**
|
|
26468
|
+
* @deprecated
|
|
26469
|
+
*
|
|
26470
|
+
* @param request CreateDagTestRequest
|
|
26471
|
+
* @return CreateDagTestResponse
|
|
26472
|
+
*/
|
|
26473
|
+
// Deprecated
|
|
25690
26474
|
async createDagTest(request) {
|
|
25691
26475
|
let runtime = new $Util.RuntimeOptions({});
|
|
25692
26476
|
return await this.createDagTestWithOptions(request, runtime);
|
|
@@ -26223,6 +27007,14 @@ class Client extends openapi_client_1.default {
|
|
|
26223
27007
|
let createImportMigrationResp = await this.createImportMigrationWithOptions(createImportMigrationReq, runtime);
|
|
26224
27008
|
return createImportMigrationResp;
|
|
26225
27009
|
}
|
|
27010
|
+
/**
|
|
27011
|
+
* @deprecated
|
|
27012
|
+
*
|
|
27013
|
+
* @param request CreateManualDagRequest
|
|
27014
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
27015
|
+
* @return CreateManualDagResponse
|
|
27016
|
+
*/
|
|
27017
|
+
// Deprecated
|
|
26226
27018
|
async createManualDagWithOptions(request, runtime) {
|
|
26227
27019
|
tea_util_1.default.validateModel(request);
|
|
26228
27020
|
let body = {};
|
|
@@ -26266,6 +27058,13 @@ class Client extends openapi_client_1.default {
|
|
|
26266
27058
|
});
|
|
26267
27059
|
return $tea.cast(await this.callApi(params, req, runtime), new CreateManualDagResponse({}));
|
|
26268
27060
|
}
|
|
27061
|
+
/**
|
|
27062
|
+
* @deprecated
|
|
27063
|
+
*
|
|
27064
|
+
* @param request CreateManualDagRequest
|
|
27065
|
+
* @return CreateManualDagResponse
|
|
27066
|
+
*/
|
|
27067
|
+
// Deprecated
|
|
26269
27068
|
async createManualDag(request) {
|
|
26270
27069
|
let runtime = new $Util.RuntimeOptions({});
|
|
26271
27070
|
return await this.createManualDagWithOptions(request, runtime);
|
|
@@ -26302,6 +27101,41 @@ class Client extends openapi_client_1.default {
|
|
|
26302
27101
|
let runtime = new $Util.RuntimeOptions({});
|
|
26303
27102
|
return await this.createMetaCategoryWithOptions(request, runtime);
|
|
26304
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
|
+
}
|
|
26305
27139
|
async createPermissionApplyOrderWithOptions(request, runtime) {
|
|
26306
27140
|
tea_util_1.default.validateModel(request);
|
|
26307
27141
|
let query = {};
|
|
@@ -26927,6 +27761,14 @@ class Client extends openapi_client_1.default {
|
|
|
26927
27761
|
let runtime = new $Util.RuntimeOptions({});
|
|
26928
27762
|
return await this.deleteBusinessWithOptions(request, runtime);
|
|
26929
27763
|
}
|
|
27764
|
+
/**
|
|
27765
|
+
* @deprecated
|
|
27766
|
+
*
|
|
27767
|
+
* @param request DeleteConnectionRequest
|
|
27768
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
27769
|
+
* @return DeleteConnectionResponse
|
|
27770
|
+
*/
|
|
27771
|
+
// Deprecated
|
|
26930
27772
|
async deleteConnectionWithOptions(request, runtime) {
|
|
26931
27773
|
tea_util_1.default.validateModel(request);
|
|
26932
27774
|
let query = {};
|
|
@@ -26949,6 +27791,13 @@ class Client extends openapi_client_1.default {
|
|
|
26949
27791
|
});
|
|
26950
27792
|
return $tea.cast(await this.callApi(params, req, runtime), new DeleteConnectionResponse({}));
|
|
26951
27793
|
}
|
|
27794
|
+
/**
|
|
27795
|
+
* @deprecated
|
|
27796
|
+
*
|
|
27797
|
+
* @param request DeleteConnectionRequest
|
|
27798
|
+
* @return DeleteConnectionResponse
|
|
27799
|
+
*/
|
|
27800
|
+
// Deprecated
|
|
26952
27801
|
async deleteConnection(request) {
|
|
26953
27802
|
let runtime = new $Util.RuntimeOptions({});
|
|
26954
27803
|
return await this.deleteConnectionWithOptions(request, runtime);
|
|
@@ -27194,6 +28043,61 @@ class Client extends openapi_client_1.default {
|
|
|
27194
28043
|
let runtime = new $Util.RuntimeOptions({});
|
|
27195
28044
|
return await this.deleteMetaCategoryWithOptions(request, runtime);
|
|
27196
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
|
+
}
|
|
27197
28101
|
async deleteProjectMemberWithOptions(request, runtime) {
|
|
27198
28102
|
tea_util_1.default.validateModel(request);
|
|
27199
28103
|
let query = {};
|
|
@@ -28447,6 +29351,14 @@ class Client extends openapi_client_1.default {
|
|
|
28447
29351
|
let runtime = new $Util.RuntimeOptions({});
|
|
28448
29352
|
return await this.getInstanceWithOptions(request, runtime);
|
|
28449
29353
|
}
|
|
29354
|
+
/**
|
|
29355
|
+
* @deprecated
|
|
29356
|
+
*
|
|
29357
|
+
* @param request GetInstanceConsumeTimeRankRequest
|
|
29358
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
29359
|
+
* @return GetInstanceConsumeTimeRankResponse
|
|
29360
|
+
*/
|
|
29361
|
+
// Deprecated
|
|
28450
29362
|
async getInstanceConsumeTimeRankWithOptions(request, runtime) {
|
|
28451
29363
|
tea_util_1.default.validateModel(request);
|
|
28452
29364
|
let body = {};
|
|
@@ -28472,10 +29384,25 @@ class Client extends openapi_client_1.default {
|
|
|
28472
29384
|
});
|
|
28473
29385
|
return $tea.cast(await this.callApi(params, req, runtime), new GetInstanceConsumeTimeRankResponse({}));
|
|
28474
29386
|
}
|
|
29387
|
+
/**
|
|
29388
|
+
* @deprecated
|
|
29389
|
+
*
|
|
29390
|
+
* @param request GetInstanceConsumeTimeRankRequest
|
|
29391
|
+
* @return GetInstanceConsumeTimeRankResponse
|
|
29392
|
+
*/
|
|
29393
|
+
// Deprecated
|
|
28475
29394
|
async getInstanceConsumeTimeRank(request) {
|
|
28476
29395
|
let runtime = new $Util.RuntimeOptions({});
|
|
28477
29396
|
return await this.getInstanceConsumeTimeRankWithOptions(request, runtime);
|
|
28478
29397
|
}
|
|
29398
|
+
/**
|
|
29399
|
+
* @deprecated
|
|
29400
|
+
*
|
|
29401
|
+
* @param request GetInstanceCountTrendRequest
|
|
29402
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
29403
|
+
* @return GetInstanceCountTrendResponse
|
|
29404
|
+
*/
|
|
29405
|
+
// Deprecated
|
|
28479
29406
|
async getInstanceCountTrendWithOptions(request, runtime) {
|
|
28480
29407
|
tea_util_1.default.validateModel(request);
|
|
28481
29408
|
let body = {};
|
|
@@ -28504,10 +29431,25 @@ class Client extends openapi_client_1.default {
|
|
|
28504
29431
|
});
|
|
28505
29432
|
return $tea.cast(await this.callApi(params, req, runtime), new GetInstanceCountTrendResponse({}));
|
|
28506
29433
|
}
|
|
29434
|
+
/**
|
|
29435
|
+
* @deprecated
|
|
29436
|
+
*
|
|
29437
|
+
* @param request GetInstanceCountTrendRequest
|
|
29438
|
+
* @return GetInstanceCountTrendResponse
|
|
29439
|
+
*/
|
|
29440
|
+
// Deprecated
|
|
28507
29441
|
async getInstanceCountTrend(request) {
|
|
28508
29442
|
let runtime = new $Util.RuntimeOptions({});
|
|
28509
29443
|
return await this.getInstanceCountTrendWithOptions(request, runtime);
|
|
28510
29444
|
}
|
|
29445
|
+
/**
|
|
29446
|
+
* @deprecated
|
|
29447
|
+
*
|
|
29448
|
+
* @param request GetInstanceErrorRankRequest
|
|
29449
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
29450
|
+
* @return GetInstanceErrorRankResponse
|
|
29451
|
+
*/
|
|
29452
|
+
// Deprecated
|
|
28511
29453
|
async getInstanceErrorRankWithOptions(request, runtime) {
|
|
28512
29454
|
tea_util_1.default.validateModel(request);
|
|
28513
29455
|
let body = {};
|
|
@@ -28530,6 +29472,13 @@ class Client extends openapi_client_1.default {
|
|
|
28530
29472
|
});
|
|
28531
29473
|
return $tea.cast(await this.callApi(params, req, runtime), new GetInstanceErrorRankResponse({}));
|
|
28532
29474
|
}
|
|
29475
|
+
/**
|
|
29476
|
+
* @deprecated
|
|
29477
|
+
*
|
|
29478
|
+
* @param request GetInstanceErrorRankRequest
|
|
29479
|
+
* @return GetInstanceErrorRankResponse
|
|
29480
|
+
*/
|
|
29481
|
+
// Deprecated
|
|
28533
29482
|
async getInstanceErrorRank(request) {
|
|
28534
29483
|
let runtime = new $Util.RuntimeOptions({});
|
|
28535
29484
|
return await this.getInstanceErrorRankWithOptions(request, runtime);
|
|
@@ -28566,6 +29515,14 @@ class Client extends openapi_client_1.default {
|
|
|
28566
29515
|
let runtime = new $Util.RuntimeOptions({});
|
|
28567
29516
|
return await this.getInstanceLogWithOptions(request, runtime);
|
|
28568
29517
|
}
|
|
29518
|
+
/**
|
|
29519
|
+
* @deprecated
|
|
29520
|
+
*
|
|
29521
|
+
* @param request GetInstanceStatusCountRequest
|
|
29522
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
29523
|
+
* @return GetInstanceStatusCountResponse
|
|
29524
|
+
*/
|
|
29525
|
+
// Deprecated
|
|
28569
29526
|
async getInstanceStatusCountWithOptions(request, runtime) {
|
|
28570
29527
|
tea_util_1.default.validateModel(request);
|
|
28571
29528
|
let body = {};
|
|
@@ -28594,6 +29551,13 @@ class Client extends openapi_client_1.default {
|
|
|
28594
29551
|
});
|
|
28595
29552
|
return $tea.cast(await this.callApi(params, req, runtime), new GetInstanceStatusCountResponse({}));
|
|
28596
29553
|
}
|
|
29554
|
+
/**
|
|
29555
|
+
* @deprecated
|
|
29556
|
+
*
|
|
29557
|
+
* @param request GetInstanceStatusCountRequest
|
|
29558
|
+
* @return GetInstanceStatusCountResponse
|
|
29559
|
+
*/
|
|
29560
|
+
// Deprecated
|
|
28597
29561
|
async getInstanceStatusCount(request) {
|
|
28598
29562
|
let runtime = new $Util.RuntimeOptions({});
|
|
28599
29563
|
return await this.getInstanceStatusCountWithOptions(request, runtime);
|
|
@@ -28636,6 +29600,14 @@ class Client extends openapi_client_1.default {
|
|
|
28636
29600
|
let runtime = new $Util.RuntimeOptions({});
|
|
28637
29601
|
return await this.getInstanceStatusStatisticWithOptions(request, runtime);
|
|
28638
29602
|
}
|
|
29603
|
+
/**
|
|
29604
|
+
* @deprecated
|
|
29605
|
+
*
|
|
29606
|
+
* @param request GetManualDagInstancesRequest
|
|
29607
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
29608
|
+
* @return GetManualDagInstancesResponse
|
|
29609
|
+
*/
|
|
29610
|
+
// Deprecated
|
|
28639
29611
|
async getManualDagInstancesWithOptions(request, runtime) {
|
|
28640
29612
|
tea_util_1.default.validateModel(request);
|
|
28641
29613
|
let body = {};
|
|
@@ -28664,6 +29636,13 @@ class Client extends openapi_client_1.default {
|
|
|
28664
29636
|
});
|
|
28665
29637
|
return $tea.cast(await this.callApi(params, req, runtime), new GetManualDagInstancesResponse({}));
|
|
28666
29638
|
}
|
|
29639
|
+
/**
|
|
29640
|
+
* @deprecated
|
|
29641
|
+
*
|
|
29642
|
+
* @param request GetManualDagInstancesRequest
|
|
29643
|
+
* @return GetManualDagInstancesResponse
|
|
29644
|
+
*/
|
|
29645
|
+
// Deprecated
|
|
28667
29646
|
async getManualDagInstances(request) {
|
|
28668
29647
|
let runtime = new $Util.RuntimeOptions({});
|
|
28669
29648
|
return await this.getManualDagInstancesWithOptions(request, runtime);
|
|
@@ -28700,6 +29679,32 @@ class Client extends openapi_client_1.default {
|
|
|
28700
29679
|
let runtime = new $Util.RuntimeOptions({});
|
|
28701
29680
|
return await this.getMetaCategoryWithOptions(request, runtime);
|
|
28702
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
|
+
}
|
|
28703
29708
|
async getMetaColumnLineageWithOptions(request, runtime) {
|
|
28704
29709
|
tea_util_1.default.validateModel(request);
|
|
28705
29710
|
let query = {};
|
|
@@ -28814,6 +29819,13 @@ class Client extends openapi_client_1.default {
|
|
|
28814
29819
|
let runtime = new $Util.RuntimeOptions({});
|
|
28815
29820
|
return await this.getMetaDBTableListWithOptions(request, runtime);
|
|
28816
29821
|
}
|
|
29822
|
+
/**
|
|
29823
|
+
* ****
|
|
29824
|
+
*
|
|
29825
|
+
* @param request GetMetaTableBasicInfoRequest
|
|
29826
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
29827
|
+
* @return GetMetaTableBasicInfoResponse
|
|
29828
|
+
*/
|
|
28817
29829
|
async getMetaTableBasicInfoWithOptions(request, runtime) {
|
|
28818
29830
|
tea_util_1.default.validateModel(request);
|
|
28819
29831
|
let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
|
|
@@ -28833,6 +29845,12 @@ class Client extends openapi_client_1.default {
|
|
|
28833
29845
|
});
|
|
28834
29846
|
return $tea.cast(await this.callApi(params, req, runtime), new GetMetaTableBasicInfoResponse({}));
|
|
28835
29847
|
}
|
|
29848
|
+
/**
|
|
29849
|
+
* ****
|
|
29850
|
+
*
|
|
29851
|
+
* @param request GetMetaTableBasicInfoRequest
|
|
29852
|
+
* @return GetMetaTableBasicInfoResponse
|
|
29853
|
+
*/
|
|
28836
29854
|
async getMetaTableBasicInfo(request) {
|
|
28837
29855
|
let runtime = new $Util.RuntimeOptions({});
|
|
28838
29856
|
return await this.getMetaTableBasicInfoWithOptions(request, runtime);
|
|
@@ -29044,6 +30062,9 @@ class Client extends openapi_client_1.default {
|
|
|
29044
30062
|
if (!tea_util_1.default.isUnset(request.tableGuid)) {
|
|
29045
30063
|
query["TableGuid"] = request.tableGuid;
|
|
29046
30064
|
}
|
|
30065
|
+
if (!tea_util_1.default.isUnset(request.taskId)) {
|
|
30066
|
+
query["TaskId"] = request.taskId;
|
|
30067
|
+
}
|
|
29047
30068
|
let req = new $OpenApi.OpenApiRequest({
|
|
29048
30069
|
query: openapi_util_1.default.query(query),
|
|
29049
30070
|
});
|
|
@@ -29068,8 +30089,8 @@ class Client extends openapi_client_1.default {
|
|
|
29068
30089
|
tea_util_1.default.validateModel(tmpReq);
|
|
29069
30090
|
let request = new GetMetaTablePartitionShrinkRequest({});
|
|
29070
30091
|
openapi_util_1.default.convert(tmpReq, request);
|
|
29071
|
-
if (!tea_util_1.default.isUnset(
|
|
29072
|
-
request.sortCriterionShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(
|
|
30092
|
+
if (!tea_util_1.default.isUnset(tmpReq.sortCriterion)) {
|
|
30093
|
+
request.sortCriterionShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.sortCriterion, "SortCriterion", "json");
|
|
29073
30094
|
}
|
|
29074
30095
|
let query = {};
|
|
29075
30096
|
if (!tea_util_1.default.isUnset(request.clusterId)) {
|
|
@@ -29116,6 +30137,47 @@ class Client extends openapi_client_1.default {
|
|
|
29116
30137
|
let runtime = new $Util.RuntimeOptions({});
|
|
29117
30138
|
return await this.getMetaTablePartitionWithOptions(request, runtime);
|
|
29118
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
|
+
}
|
|
29119
30181
|
async getMetaTableThemeLevelWithOptions(request, runtime) {
|
|
29120
30182
|
tea_util_1.default.validateModel(request);
|
|
29121
30183
|
let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
|
|
@@ -29284,6 +30346,14 @@ class Client extends openapi_client_1.default {
|
|
|
29284
30346
|
let runtime = new $Util.RuntimeOptions({});
|
|
29285
30347
|
return await this.getNodeCodeWithOptions(request, runtime);
|
|
29286
30348
|
}
|
|
30349
|
+
/**
|
|
30350
|
+
* @deprecated
|
|
30351
|
+
*
|
|
30352
|
+
* @param request GetNodeOnBaselineRequest
|
|
30353
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
30354
|
+
* @return GetNodeOnBaselineResponse
|
|
30355
|
+
*/
|
|
30356
|
+
// Deprecated
|
|
29287
30357
|
async getNodeOnBaselineWithOptions(request, runtime) {
|
|
29288
30358
|
tea_util_1.default.validateModel(request);
|
|
29289
30359
|
let body = {};
|
|
@@ -29306,6 +30376,13 @@ class Client extends openapi_client_1.default {
|
|
|
29306
30376
|
});
|
|
29307
30377
|
return $tea.cast(await this.callApi(params, req, runtime), new GetNodeOnBaselineResponse({}));
|
|
29308
30378
|
}
|
|
30379
|
+
/**
|
|
30380
|
+
* @deprecated
|
|
30381
|
+
*
|
|
30382
|
+
* @param request GetNodeOnBaselineRequest
|
|
30383
|
+
* @return GetNodeOnBaselineResponse
|
|
30384
|
+
*/
|
|
30385
|
+
// Deprecated
|
|
29309
30386
|
async getNodeOnBaseline(request) {
|
|
29310
30387
|
let runtime = new $Util.RuntimeOptions({});
|
|
29311
30388
|
return await this.getNodeOnBaselineWithOptions(request, runtime);
|
|
@@ -29339,6 +30416,14 @@ class Client extends openapi_client_1.default {
|
|
|
29339
30416
|
let runtime = new $Util.RuntimeOptions({});
|
|
29340
30417
|
return await this.getNodeParentsWithOptions(request, runtime);
|
|
29341
30418
|
}
|
|
30419
|
+
/**
|
|
30420
|
+
* @deprecated
|
|
30421
|
+
*
|
|
30422
|
+
* @param request GetNodeTypeListInfoRequest
|
|
30423
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
30424
|
+
* @return GetNodeTypeListInfoResponse
|
|
30425
|
+
*/
|
|
30426
|
+
// Deprecated
|
|
29342
30427
|
async getNodeTypeListInfoWithOptions(request, runtime) {
|
|
29343
30428
|
tea_util_1.default.validateModel(request);
|
|
29344
30429
|
let body = {};
|
|
@@ -29376,6 +30461,13 @@ class Client extends openapi_client_1.default {
|
|
|
29376
30461
|
});
|
|
29377
30462
|
return $tea.cast(await this.callApi(params, req, runtime), new GetNodeTypeListInfoResponse({}));
|
|
29378
30463
|
}
|
|
30464
|
+
/**
|
|
30465
|
+
* @deprecated
|
|
30466
|
+
*
|
|
30467
|
+
* @param request GetNodeTypeListInfoRequest
|
|
30468
|
+
* @return GetNodeTypeListInfoResponse
|
|
30469
|
+
*/
|
|
30470
|
+
// Deprecated
|
|
29379
30471
|
async getNodeTypeListInfo(request) {
|
|
29380
30472
|
let runtime = new $Util.RuntimeOptions({});
|
|
29381
30473
|
return await this.getNodeTypeListInfoWithOptions(request, runtime);
|
|
@@ -29507,6 +30599,14 @@ class Client extends openapi_client_1.default {
|
|
|
29507
30599
|
let runtime = new $Util.RuntimeOptions({});
|
|
29508
30600
|
return await this.getProjectWithOptions(request, runtime);
|
|
29509
30601
|
}
|
|
30602
|
+
/**
|
|
30603
|
+
* @deprecated
|
|
30604
|
+
*
|
|
30605
|
+
* @param request GetProjectDetailRequest
|
|
30606
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
30607
|
+
* @return GetProjectDetailResponse
|
|
30608
|
+
*/
|
|
30609
|
+
// Deprecated
|
|
29510
30610
|
async getProjectDetailWithOptions(request, runtime) {
|
|
29511
30611
|
tea_util_1.default.validateModel(request);
|
|
29512
30612
|
let query = {};
|
|
@@ -29529,6 +30629,13 @@ class Client extends openapi_client_1.default {
|
|
|
29529
30629
|
});
|
|
29530
30630
|
return $tea.cast(await this.callApi(params, req, runtime), new GetProjectDetailResponse({}));
|
|
29531
30631
|
}
|
|
30632
|
+
/**
|
|
30633
|
+
* @deprecated
|
|
30634
|
+
*
|
|
30635
|
+
* @param request GetProjectDetailRequest
|
|
30636
|
+
* @return GetProjectDetailResponse
|
|
30637
|
+
*/
|
|
30638
|
+
// Deprecated
|
|
29532
30639
|
async getProjectDetail(request) {
|
|
29533
30640
|
let runtime = new $Util.RuntimeOptions({});
|
|
29534
30641
|
return await this.getProjectDetailWithOptions(request, runtime);
|
|
@@ -29675,6 +30782,14 @@ class Client extends openapi_client_1.default {
|
|
|
29675
30782
|
let runtime = new $Util.RuntimeOptions({});
|
|
29676
30783
|
return await this.getSensitiveDataWithOptions(request, runtime);
|
|
29677
30784
|
}
|
|
30785
|
+
/**
|
|
30786
|
+
* @deprecated
|
|
30787
|
+
*
|
|
30788
|
+
* @param request GetSuccessInstanceTrendRequest
|
|
30789
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
30790
|
+
* @return GetSuccessInstanceTrendResponse
|
|
30791
|
+
*/
|
|
30792
|
+
// Deprecated
|
|
29678
30793
|
async getSuccessInstanceTrendWithOptions(request, runtime) {
|
|
29679
30794
|
tea_util_1.default.validateModel(request);
|
|
29680
30795
|
let body = {};
|
|
@@ -29697,10 +30812,24 @@ class Client extends openapi_client_1.default {
|
|
|
29697
30812
|
});
|
|
29698
30813
|
return $tea.cast(await this.callApi(params, req, runtime), new GetSuccessInstanceTrendResponse({}));
|
|
29699
30814
|
}
|
|
30815
|
+
/**
|
|
30816
|
+
* @deprecated
|
|
30817
|
+
*
|
|
30818
|
+
* @param request GetSuccessInstanceTrendRequest
|
|
30819
|
+
* @return GetSuccessInstanceTrendResponse
|
|
30820
|
+
*/
|
|
30821
|
+
// Deprecated
|
|
29700
30822
|
async getSuccessInstanceTrend(request) {
|
|
29701
30823
|
let runtime = new $Util.RuntimeOptions({});
|
|
29702
30824
|
return await this.getSuccessInstanceTrendWithOptions(request, runtime);
|
|
29703
30825
|
}
|
|
30826
|
+
/**
|
|
30827
|
+
* ****
|
|
30828
|
+
*
|
|
30829
|
+
* @param request GetTopicRequest
|
|
30830
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
30831
|
+
* @return GetTopicResponse
|
|
30832
|
+
*/
|
|
29704
30833
|
async getTopicWithOptions(request, runtime) {
|
|
29705
30834
|
tea_util_1.default.validateModel(request);
|
|
29706
30835
|
let body = {};
|
|
@@ -29723,6 +30852,12 @@ class Client extends openapi_client_1.default {
|
|
|
29723
30852
|
});
|
|
29724
30853
|
return $tea.cast(await this.callApi(params, req, runtime), new GetTopicResponse({}));
|
|
29725
30854
|
}
|
|
30855
|
+
/**
|
|
30856
|
+
* ****
|
|
30857
|
+
*
|
|
30858
|
+
* @param request GetTopicRequest
|
|
30859
|
+
* @return GetTopicResponse
|
|
30860
|
+
*/
|
|
29726
30861
|
async getTopic(request) {
|
|
29727
30862
|
let runtime = new $Util.RuntimeOptions({});
|
|
29728
30863
|
return await this.getTopicWithOptions(request, runtime);
|
|
@@ -30058,6 +31193,14 @@ class Client extends openapi_client_1.default {
|
|
|
30058
31193
|
let runtime = new $Util.RuntimeOptions({});
|
|
30059
31194
|
return await this.listCalcEnginesWithOptions(request, runtime);
|
|
30060
31195
|
}
|
|
31196
|
+
/**
|
|
31197
|
+
* @deprecated
|
|
31198
|
+
*
|
|
31199
|
+
* @param request ListConnectionsRequest
|
|
31200
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
31201
|
+
* @return ListConnectionsResponse
|
|
31202
|
+
*/
|
|
31203
|
+
// Deprecated
|
|
30061
31204
|
async listConnectionsWithOptions(request, runtime) {
|
|
30062
31205
|
tea_util_1.default.validateModel(request);
|
|
30063
31206
|
let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
|
|
@@ -30077,6 +31220,13 @@ class Client extends openapi_client_1.default {
|
|
|
30077
31220
|
});
|
|
30078
31221
|
return $tea.cast(await this.callApi(params, req, runtime), new ListConnectionsResponse({}));
|
|
30079
31222
|
}
|
|
31223
|
+
/**
|
|
31224
|
+
* @deprecated
|
|
31225
|
+
*
|
|
31226
|
+
* @param request ListConnectionsRequest
|
|
31227
|
+
* @return ListConnectionsResponse
|
|
31228
|
+
*/
|
|
31229
|
+
// Deprecated
|
|
30080
31230
|
async listConnections(request) {
|
|
30081
31231
|
let runtime = new $Util.RuntimeOptions({});
|
|
30082
31232
|
return await this.listConnectionsWithOptions(request, runtime);
|
|
@@ -30956,6 +32106,94 @@ class Client extends openapi_client_1.default {
|
|
|
30956
32106
|
let runtime = new $Util.RuntimeOptions({});
|
|
30957
32107
|
return await this.listManualDagInstancesWithOptions(request, runtime);
|
|
30958
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
|
+
}
|
|
30959
32197
|
async listMetaDBWithOptions(request, runtime) {
|
|
30960
32198
|
tea_util_1.default.validateModel(request);
|
|
30961
32199
|
let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
|
|
@@ -31017,6 +32255,14 @@ class Client extends openapi_client_1.default {
|
|
|
31017
32255
|
let runtime = new $Util.RuntimeOptions({});
|
|
31018
32256
|
return await this.listMigrationsWithOptions(request, runtime);
|
|
31019
32257
|
}
|
|
32258
|
+
/**
|
|
32259
|
+
* @deprecated
|
|
32260
|
+
*
|
|
32261
|
+
* @param request ListNodeIORequest
|
|
32262
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
32263
|
+
* @return ListNodeIOResponse
|
|
32264
|
+
*/
|
|
32265
|
+
// Deprecated
|
|
31020
32266
|
async listNodeIOWithOptions(request, runtime) {
|
|
31021
32267
|
tea_util_1.default.validateModel(request);
|
|
31022
32268
|
let body = {};
|
|
@@ -31045,6 +32291,13 @@ class Client extends openapi_client_1.default {
|
|
|
31045
32291
|
});
|
|
31046
32292
|
return $tea.cast(await this.callApi(params, req, runtime), new ListNodeIOResponse({}));
|
|
31047
32293
|
}
|
|
32294
|
+
/**
|
|
32295
|
+
* @deprecated
|
|
32296
|
+
*
|
|
32297
|
+
* @param request ListNodeIORequest
|
|
32298
|
+
* @return ListNodeIOResponse
|
|
32299
|
+
*/
|
|
32300
|
+
// Deprecated
|
|
31048
32301
|
async listNodeIO(request) {
|
|
31049
32302
|
let runtime = new $Util.RuntimeOptions({});
|
|
31050
32303
|
return await this.listNodeIOWithOptions(request, runtime);
|
|
@@ -31239,6 +32492,14 @@ class Client extends openapi_client_1.default {
|
|
|
31239
32492
|
let runtime = new $Util.RuntimeOptions({});
|
|
31240
32493
|
return await this.listPermissionApplyOrdersWithOptions(request, runtime);
|
|
31241
32494
|
}
|
|
32495
|
+
/**
|
|
32496
|
+
* @deprecated
|
|
32497
|
+
*
|
|
32498
|
+
* @param request ListProgramTypeCountRequest
|
|
32499
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
32500
|
+
* @return ListProgramTypeCountResponse
|
|
32501
|
+
*/
|
|
32502
|
+
// Deprecated
|
|
31242
32503
|
async listProgramTypeCountWithOptions(request, runtime) {
|
|
31243
32504
|
tea_util_1.default.validateModel(request);
|
|
31244
32505
|
let body = {};
|
|
@@ -31264,6 +32525,13 @@ class Client extends openapi_client_1.default {
|
|
|
31264
32525
|
});
|
|
31265
32526
|
return $tea.cast(await this.callApi(params, req, runtime), new ListProgramTypeCountResponse({}));
|
|
31266
32527
|
}
|
|
32528
|
+
/**
|
|
32529
|
+
* @deprecated
|
|
32530
|
+
*
|
|
32531
|
+
* @param request ListProgramTypeCountRequest
|
|
32532
|
+
* @return ListProgramTypeCountResponse
|
|
32533
|
+
*/
|
|
32534
|
+
// Deprecated
|
|
31267
32535
|
async listProgramTypeCount(request) {
|
|
31268
32536
|
let runtime = new $Util.RuntimeOptions({});
|
|
31269
32537
|
return await this.listProgramTypeCountWithOptions(request, runtime);
|
|
@@ -31392,6 +32660,13 @@ class Client extends openapi_client_1.default {
|
|
|
31392
32660
|
let runtime = new $Util.RuntimeOptions({});
|
|
31393
32661
|
return await this.listProjectsWithOptions(request, runtime);
|
|
31394
32662
|
}
|
|
32663
|
+
/**
|
|
32664
|
+
* ****
|
|
32665
|
+
*
|
|
32666
|
+
* @param request ListQualityResultsByEntityRequest
|
|
32667
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
32668
|
+
* @return ListQualityResultsByEntityResponse
|
|
32669
|
+
*/
|
|
31395
32670
|
async listQualityResultsByEntityWithOptions(request, runtime) {
|
|
31396
32671
|
tea_util_1.default.validateModel(request);
|
|
31397
32672
|
let body = {};
|
|
@@ -31429,6 +32704,12 @@ class Client extends openapi_client_1.default {
|
|
|
31429
32704
|
});
|
|
31430
32705
|
return $tea.cast(await this.callApi(params, req, runtime), new ListQualityResultsByEntityResponse({}));
|
|
31431
32706
|
}
|
|
32707
|
+
/**
|
|
32708
|
+
* ****
|
|
32709
|
+
*
|
|
32710
|
+
* @param request ListQualityResultsByEntityRequest
|
|
32711
|
+
* @return ListQualityResultsByEntityResponse
|
|
32712
|
+
*/
|
|
31432
32713
|
async listQualityResultsByEntity(request) {
|
|
31433
32714
|
let runtime = new $Util.RuntimeOptions({});
|
|
31434
32715
|
return await this.listQualityResultsByEntityWithOptions(request, runtime);
|
|
@@ -31617,9 +32898,6 @@ class Client extends openapi_client_1.default {
|
|
|
31617
32898
|
if (!tea_util_1.default.isUnset(request.tagsShrink)) {
|
|
31618
32899
|
query["Tags"] = request.tagsShrink;
|
|
31619
32900
|
}
|
|
31620
|
-
if (!tea_util_1.default.isUnset(request.typeNames)) {
|
|
31621
|
-
query["TypeNames"] = request.typeNames;
|
|
31622
|
-
}
|
|
31623
32901
|
let req = new $OpenApi.OpenApiRequest({
|
|
31624
32902
|
query: openapi_util_1.default.query(query),
|
|
31625
32903
|
});
|
|
@@ -32381,6 +33659,14 @@ class Client extends openapi_client_1.default {
|
|
|
32381
33659
|
let runtime = new $Util.RuntimeOptions({});
|
|
32382
33660
|
return await this.searchMetaTablesWithOptions(request, runtime);
|
|
32383
33661
|
}
|
|
33662
|
+
/**
|
|
33663
|
+
* @deprecated
|
|
33664
|
+
*
|
|
33665
|
+
* @param request SearchNodesByOutputRequest
|
|
33666
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
33667
|
+
* @return SearchNodesByOutputResponse
|
|
33668
|
+
*/
|
|
33669
|
+
// Deprecated
|
|
32384
33670
|
async searchNodesByOutputWithOptions(request, runtime) {
|
|
32385
33671
|
tea_util_1.default.validateModel(request);
|
|
32386
33672
|
let body = {};
|
|
@@ -32406,10 +33692,25 @@ class Client extends openapi_client_1.default {
|
|
|
32406
33692
|
});
|
|
32407
33693
|
return $tea.cast(await this.callApi(params, req, runtime), new SearchNodesByOutputResponse({}));
|
|
32408
33694
|
}
|
|
33695
|
+
/**
|
|
33696
|
+
* @deprecated
|
|
33697
|
+
*
|
|
33698
|
+
* @param request SearchNodesByOutputRequest
|
|
33699
|
+
* @return SearchNodesByOutputResponse
|
|
33700
|
+
*/
|
|
33701
|
+
// Deprecated
|
|
32409
33702
|
async searchNodesByOutput(request) {
|
|
32410
33703
|
let runtime = new $Util.RuntimeOptions({});
|
|
32411
33704
|
return await this.searchNodesByOutputWithOptions(request, runtime);
|
|
32412
33705
|
}
|
|
33706
|
+
/**
|
|
33707
|
+
* @deprecated
|
|
33708
|
+
*
|
|
33709
|
+
* @param request SetDataSourceShareRequest
|
|
33710
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
33711
|
+
* @return SetDataSourceShareResponse
|
|
33712
|
+
*/
|
|
33713
|
+
// Deprecated
|
|
32413
33714
|
async setDataSourceShareWithOptions(request, runtime) {
|
|
32414
33715
|
tea_util_1.default.validateModel(request);
|
|
32415
33716
|
let query = {};
|
|
@@ -32444,6 +33745,13 @@ class Client extends openapi_client_1.default {
|
|
|
32444
33745
|
});
|
|
32445
33746
|
return $tea.cast(await this.callApi(params, req, runtime), new SetDataSourceShareResponse({}));
|
|
32446
33747
|
}
|
|
33748
|
+
/**
|
|
33749
|
+
* @deprecated
|
|
33750
|
+
*
|
|
33751
|
+
* @param request SetDataSourceShareRequest
|
|
33752
|
+
* @return SetDataSourceShareResponse
|
|
33753
|
+
*/
|
|
33754
|
+
// Deprecated
|
|
32447
33755
|
async setDataSourceShare(request) {
|
|
32448
33756
|
let runtime = new $Util.RuntimeOptions({});
|
|
32449
33757
|
return await this.setDataSourceShareWithOptions(request, runtime);
|
|
@@ -32942,6 +34250,14 @@ class Client extends openapi_client_1.default {
|
|
|
32942
34250
|
let runtime = new $Util.RuntimeOptions({});
|
|
32943
34251
|
return await this.updateBusinessWithOptions(request, runtime);
|
|
32944
34252
|
}
|
|
34253
|
+
/**
|
|
34254
|
+
* @deprecated
|
|
34255
|
+
*
|
|
34256
|
+
* @param request UpdateConnectionRequest
|
|
34257
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
34258
|
+
* @return UpdateConnectionResponse
|
|
34259
|
+
*/
|
|
34260
|
+
// Deprecated
|
|
32945
34261
|
async updateConnectionWithOptions(request, runtime) {
|
|
32946
34262
|
tea_util_1.default.validateModel(request);
|
|
32947
34263
|
let query = {};
|
|
@@ -32976,6 +34292,13 @@ class Client extends openapi_client_1.default {
|
|
|
32976
34292
|
});
|
|
32977
34293
|
return $tea.cast(await this.callApi(params, req, runtime), new UpdateConnectionResponse({}));
|
|
32978
34294
|
}
|
|
34295
|
+
/**
|
|
34296
|
+
* @deprecated
|
|
34297
|
+
*
|
|
34298
|
+
* @param request UpdateConnectionRequest
|
|
34299
|
+
* @return UpdateConnectionResponse
|
|
34300
|
+
*/
|
|
34301
|
+
// Deprecated
|
|
32979
34302
|
async updateConnection(request) {
|
|
32980
34303
|
let runtime = new $Util.RuntimeOptions({});
|
|
32981
34304
|
return await this.updateConnectionWithOptions(request, runtime);
|
|
@@ -33365,6 +34688,38 @@ class Client extends openapi_client_1.default {
|
|
|
33365
34688
|
let runtime = new $Util.RuntimeOptions({});
|
|
33366
34689
|
return await this.updateMetaCategoryWithOptions(request, runtime);
|
|
33367
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
|
+
}
|
|
33368
34723
|
async updateMetaTableWithOptions(request, runtime) {
|
|
33369
34724
|
tea_util_1.default.validateModel(request);
|
|
33370
34725
|
let query = {};
|