@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 CHANGED
@@ -6,6 +6,42 @@ import * as $Util from '@alicloud/tea-util';
6
6
  import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
7
7
  import { Readable } from 'stream';
8
8
  import * as $tea from '@alicloud/tea-typescript';
9
+ export declare class Collection extends $tea.Model {
10
+ collectionType?: string;
11
+ comment?: string;
12
+ createTime?: number;
13
+ level?: number;
14
+ name?: string;
15
+ ownerId?: string;
16
+ ownerName?: string;
17
+ qualifiedName?: string;
18
+ updateTime?: number;
19
+ static names(): {
20
+ [key: string]: string;
21
+ };
22
+ static types(): {
23
+ [key: string]: any;
24
+ };
25
+ constructor(map?: {
26
+ [key: string]: any;
27
+ });
28
+ }
29
+ export declare class Entity extends $tea.Model {
30
+ entityContent?: {
31
+ [key: string]: any;
32
+ };
33
+ qualifiedName?: string;
34
+ tenantId?: number;
35
+ static names(): {
36
+ [key: string]: string;
37
+ };
38
+ static types(): {
39
+ [key: string]: any;
40
+ };
41
+ constructor(map?: {
42
+ [key: string]: any;
43
+ });
44
+ }
9
45
  export declare class AbolishDataServiceApiRequest extends $tea.Model {
10
46
  apiId?: number;
11
47
  projectId?: number;
@@ -53,6 +89,52 @@ export declare class AbolishDataServiceApiResponse extends $tea.Model {
53
89
  [key: string]: any;
54
90
  });
55
91
  }
92
+ export declare class AddMetaCollectionEntityRequest extends $tea.Model {
93
+ collectionQualifiedName?: string;
94
+ entityQualifiedName?: string;
95
+ static names(): {
96
+ [key: string]: string;
97
+ };
98
+ static types(): {
99
+ [key: string]: any;
100
+ };
101
+ constructor(map?: {
102
+ [key: string]: any;
103
+ });
104
+ }
105
+ export declare class AddMetaCollectionEntityResponseBody extends $tea.Model {
106
+ errorCode?: string;
107
+ errorMessage?: string;
108
+ httpStatusCode?: number;
109
+ requestId?: string;
110
+ status?: boolean;
111
+ success?: boolean;
112
+ static names(): {
113
+ [key: string]: string;
114
+ };
115
+ static types(): {
116
+ [key: string]: any;
117
+ };
118
+ constructor(map?: {
119
+ [key: string]: any;
120
+ });
121
+ }
122
+ export declare class AddMetaCollectionEntityResponse extends $tea.Model {
123
+ headers: {
124
+ [key: string]: string;
125
+ };
126
+ statusCode: number;
127
+ body: AddMetaCollectionEntityResponseBody;
128
+ static names(): {
129
+ [key: string]: string;
130
+ };
131
+ static types(): {
132
+ [key: string]: any;
133
+ };
134
+ constructor(map?: {
135
+ [key: string]: any;
136
+ });
137
+ }
56
138
  export declare class AddProjectMemberToRoleRequest extends $tea.Model {
57
139
  clientToken?: string;
58
140
  projectId?: number;
@@ -1250,6 +1332,54 @@ export declare class CreateMetaCategoryResponse extends $tea.Model {
1250
1332
  [key: string]: any;
1251
1333
  });
1252
1334
  }
1335
+ export declare class CreateMetaCollectionRequest extends $tea.Model {
1336
+ collectionType?: string;
1337
+ comment?: string;
1338
+ name?: string;
1339
+ parentQualifiedName?: string;
1340
+ static names(): {
1341
+ [key: string]: string;
1342
+ };
1343
+ static types(): {
1344
+ [key: string]: any;
1345
+ };
1346
+ constructor(map?: {
1347
+ [key: string]: any;
1348
+ });
1349
+ }
1350
+ export declare class CreateMetaCollectionResponseBody extends $tea.Model {
1351
+ errorCode?: string;
1352
+ errorMessage?: string;
1353
+ httpStatusCode?: string;
1354
+ qualifiedName?: string;
1355
+ requestId?: string;
1356
+ success?: string;
1357
+ static names(): {
1358
+ [key: string]: string;
1359
+ };
1360
+ static types(): {
1361
+ [key: string]: any;
1362
+ };
1363
+ constructor(map?: {
1364
+ [key: string]: any;
1365
+ });
1366
+ }
1367
+ export declare class CreateMetaCollectionResponse extends $tea.Model {
1368
+ headers: {
1369
+ [key: string]: string;
1370
+ };
1371
+ statusCode: number;
1372
+ body: CreateMetaCollectionResponseBody;
1373
+ static names(): {
1374
+ [key: string]: string;
1375
+ };
1376
+ static types(): {
1377
+ [key: string]: any;
1378
+ };
1379
+ constructor(map?: {
1380
+ [key: string]: any;
1381
+ });
1382
+ }
1253
1383
  export declare class CreatePermissionApplyOrderRequest extends $tea.Model {
1254
1384
  applyObject?: CreatePermissionApplyOrderRequestApplyObject[];
1255
1385
  applyReason?: string;
@@ -2323,6 +2453,97 @@ export declare class DeleteMetaCategoryResponse extends $tea.Model {
2323
2453
  [key: string]: any;
2324
2454
  });
2325
2455
  }
2456
+ export declare class DeleteMetaCollectionRequest extends $tea.Model {
2457
+ qualifiedName?: string;
2458
+ static names(): {
2459
+ [key: string]: string;
2460
+ };
2461
+ static types(): {
2462
+ [key: string]: any;
2463
+ };
2464
+ constructor(map?: {
2465
+ [key: string]: any;
2466
+ });
2467
+ }
2468
+ export declare class DeleteMetaCollectionResponseBody extends $tea.Model {
2469
+ errorCode?: string;
2470
+ errorMessage?: string;
2471
+ httpStatusCode?: number;
2472
+ requestId?: string;
2473
+ status?: boolean;
2474
+ success?: boolean;
2475
+ static names(): {
2476
+ [key: string]: string;
2477
+ };
2478
+ static types(): {
2479
+ [key: string]: any;
2480
+ };
2481
+ constructor(map?: {
2482
+ [key: string]: any;
2483
+ });
2484
+ }
2485
+ export declare class DeleteMetaCollectionResponse extends $tea.Model {
2486
+ headers: {
2487
+ [key: string]: string;
2488
+ };
2489
+ statusCode: number;
2490
+ body: DeleteMetaCollectionResponseBody;
2491
+ static names(): {
2492
+ [key: string]: string;
2493
+ };
2494
+ static types(): {
2495
+ [key: string]: any;
2496
+ };
2497
+ constructor(map?: {
2498
+ [key: string]: any;
2499
+ });
2500
+ }
2501
+ export declare class DeleteMetaCollectionEntityRequest extends $tea.Model {
2502
+ collectionQualifiedName?: string;
2503
+ entityQualifiedName?: string;
2504
+ static names(): {
2505
+ [key: string]: string;
2506
+ };
2507
+ static types(): {
2508
+ [key: string]: any;
2509
+ };
2510
+ constructor(map?: {
2511
+ [key: string]: any;
2512
+ });
2513
+ }
2514
+ export declare class DeleteMetaCollectionEntityResponseBody extends $tea.Model {
2515
+ errorCode?: string;
2516
+ errorMessage?: string;
2517
+ httpStatusCode?: number;
2518
+ requestId?: string;
2519
+ status?: boolean;
2520
+ success?: boolean;
2521
+ static names(): {
2522
+ [key: string]: string;
2523
+ };
2524
+ static types(): {
2525
+ [key: string]: any;
2526
+ };
2527
+ constructor(map?: {
2528
+ [key: string]: any;
2529
+ });
2530
+ }
2531
+ export declare class DeleteMetaCollectionEntityResponse extends $tea.Model {
2532
+ headers: {
2533
+ [key: string]: string;
2534
+ };
2535
+ statusCode: number;
2536
+ body: DeleteMetaCollectionEntityResponseBody;
2537
+ static names(): {
2538
+ [key: string]: string;
2539
+ };
2540
+ static types(): {
2541
+ [key: string]: any;
2542
+ };
2543
+ constructor(map?: {
2544
+ [key: string]: any;
2545
+ });
2546
+ }
2326
2547
  export declare class DeleteProjectMemberRequest extends $tea.Model {
2327
2548
  projectId?: number;
2328
2549
  userId?: string;
@@ -4492,6 +4713,51 @@ export declare class GetMetaCategoryResponse extends $tea.Model {
4492
4713
  [key: string]: any;
4493
4714
  });
4494
4715
  }
4716
+ export declare class GetMetaCollectionDetailRequest extends $tea.Model {
4717
+ qualifiedName?: string;
4718
+ static names(): {
4719
+ [key: string]: string;
4720
+ };
4721
+ static types(): {
4722
+ [key: string]: any;
4723
+ };
4724
+ constructor(map?: {
4725
+ [key: string]: any;
4726
+ });
4727
+ }
4728
+ export declare class GetMetaCollectionDetailResponseBody extends $tea.Model {
4729
+ collection?: Collection;
4730
+ errorCode?: string;
4731
+ errorMessage?: string;
4732
+ httpStatusCode?: number;
4733
+ requestId?: string;
4734
+ success?: boolean;
4735
+ static names(): {
4736
+ [key: string]: string;
4737
+ };
4738
+ static types(): {
4739
+ [key: string]: any;
4740
+ };
4741
+ constructor(map?: {
4742
+ [key: string]: any;
4743
+ });
4744
+ }
4745
+ export declare class GetMetaCollectionDetailResponse extends $tea.Model {
4746
+ headers: {
4747
+ [key: string]: string;
4748
+ };
4749
+ statusCode: number;
4750
+ body: GetMetaCollectionDetailResponseBody;
4751
+ static names(): {
4752
+ [key: string]: string;
4753
+ };
4754
+ static types(): {
4755
+ [key: string]: any;
4756
+ };
4757
+ constructor(map?: {
4758
+ [key: string]: any;
4759
+ });
4760
+ }
4495
4761
  export declare class GetMetaColumnLineageRequest extends $tea.Model {
4496
4762
  clusterId?: string;
4497
4763
  columnGuid?: string;
@@ -4989,6 +5255,7 @@ export declare class GetMetaTableOutputRequest extends $tea.Model {
4989
5255
  pageSize?: number;
4990
5256
  startDate?: string;
4991
5257
  tableGuid?: string;
5258
+ taskId?: string;
4992
5259
  static names(): {
4993
5260
  [key: string]: string;
4994
5261
  };
@@ -5103,6 +5370,56 @@ export declare class GetMetaTablePartitionResponse extends $tea.Model {
5103
5370
  [key: string]: any;
5104
5371
  });
5105
5372
  }
5373
+ export declare class GetMetaTableProducingTasksRequest extends $tea.Model {
5374
+ clusterId?: string;
5375
+ dataSourceType?: string;
5376
+ dbName?: string;
5377
+ schemaName?: string;
5378
+ tableGuid?: string;
5379
+ tableName?: string;
5380
+ static names(): {
5381
+ [key: string]: string;
5382
+ };
5383
+ static types(): {
5384
+ [key: string]: any;
5385
+ };
5386
+ constructor(map?: {
5387
+ [key: string]: any;
5388
+ });
5389
+ }
5390
+ export declare class GetMetaTableProducingTasksResponseBody extends $tea.Model {
5391
+ data?: GetMetaTableProducingTasksResponseBodyData[];
5392
+ errorCode?: string;
5393
+ errorMessage?: string;
5394
+ httpStatusCode?: number;
5395
+ requestId?: string;
5396
+ success?: boolean;
5397
+ static names(): {
5398
+ [key: string]: string;
5399
+ };
5400
+ static types(): {
5401
+ [key: string]: any;
5402
+ };
5403
+ constructor(map?: {
5404
+ [key: string]: any;
5405
+ });
5406
+ }
5407
+ export declare class GetMetaTableProducingTasksResponse extends $tea.Model {
5408
+ headers: {
5409
+ [key: string]: string;
5410
+ };
5411
+ statusCode: number;
5412
+ body: GetMetaTableProducingTasksResponseBody;
5413
+ static names(): {
5414
+ [key: string]: string;
5415
+ };
5416
+ static types(): {
5417
+ [key: string]: any;
5418
+ };
5419
+ constructor(map?: {
5420
+ [key: string]: any;
5421
+ });
5422
+ }
5106
5423
  export declare class GetMetaTableThemeLevelRequest extends $tea.Model {
5107
5424
  dataSourceType?: string;
5108
5425
  tableGuid?: string;
@@ -7625,6 +7942,108 @@ export declare class ListManualDagInstancesResponse extends $tea.Model {
7625
7942
  [key: string]: any;
7626
7943
  });
7627
7944
  }
7945
+ export declare class ListMetaCollectionEntitiesRequest extends $tea.Model {
7946
+ collectionQualifiedName?: string;
7947
+ entityType?: string;
7948
+ keyword?: string;
7949
+ nextToken?: string;
7950
+ pageSize?: number;
7951
+ static names(): {
7952
+ [key: string]: string;
7953
+ };
7954
+ static types(): {
7955
+ [key: string]: any;
7956
+ };
7957
+ constructor(map?: {
7958
+ [key: string]: any;
7959
+ });
7960
+ }
7961
+ export declare class ListMetaCollectionEntitiesResponseBody extends $tea.Model {
7962
+ data?: ListMetaCollectionEntitiesResponseBodyData;
7963
+ errorCode?: string;
7964
+ errorMessage?: string;
7965
+ httpStatusCode?: number;
7966
+ requestId?: string;
7967
+ success?: boolean;
7968
+ static names(): {
7969
+ [key: string]: string;
7970
+ };
7971
+ static types(): {
7972
+ [key: string]: any;
7973
+ };
7974
+ constructor(map?: {
7975
+ [key: string]: any;
7976
+ });
7977
+ }
7978
+ export declare class ListMetaCollectionEntitiesResponse extends $tea.Model {
7979
+ headers: {
7980
+ [key: string]: string;
7981
+ };
7982
+ statusCode: number;
7983
+ body: ListMetaCollectionEntitiesResponseBody;
7984
+ static names(): {
7985
+ [key: string]: string;
7986
+ };
7987
+ static types(): {
7988
+ [key: string]: any;
7989
+ };
7990
+ constructor(map?: {
7991
+ [key: string]: any;
7992
+ });
7993
+ }
7994
+ export declare class ListMetaCollectionsRequest extends $tea.Model {
7995
+ administrator?: string;
7996
+ collectionType?: string;
7997
+ creator?: string;
7998
+ follower?: string;
7999
+ keyword?: string;
8000
+ nextToken?: string;
8001
+ orderBy?: string;
8002
+ pageSize?: number;
8003
+ parentQualifiedName?: string;
8004
+ static names(): {
8005
+ [key: string]: string;
8006
+ };
8007
+ static types(): {
8008
+ [key: string]: any;
8009
+ };
8010
+ constructor(map?: {
8011
+ [key: string]: any;
8012
+ });
8013
+ }
8014
+ export declare class ListMetaCollectionsResponseBody extends $tea.Model {
8015
+ data?: ListMetaCollectionsResponseBodyData;
8016
+ errorCode?: string;
8017
+ errorMessage?: string;
8018
+ httpStatusCode?: number;
8019
+ requestId?: string;
8020
+ success?: boolean;
8021
+ static names(): {
8022
+ [key: string]: string;
8023
+ };
8024
+ static types(): {
8025
+ [key: string]: any;
8026
+ };
8027
+ constructor(map?: {
8028
+ [key: string]: any;
8029
+ });
8030
+ }
8031
+ export declare class ListMetaCollectionsResponse extends $tea.Model {
8032
+ headers: {
8033
+ [key: string]: string;
8034
+ };
8035
+ statusCode: number;
8036
+ body: ListMetaCollectionsResponseBody;
8037
+ static names(): {
8038
+ [key: string]: string;
8039
+ };
8040
+ static types(): {
8041
+ [key: string]: any;
8042
+ };
8043
+ constructor(map?: {
8044
+ [key: string]: any;
8045
+ });
8046
+ }
7628
8047
  export declare class ListMetaDBRequest extends $tea.Model {
7629
8048
  clusterId?: string;
7630
8049
  dataSourceType?: string;
@@ -8482,7 +8901,6 @@ export declare class ListResourceGroupsRequest extends $tea.Model {
8482
8901
  resourceGroupType?: number;
8483
8902
  resourceManagerResourceGroupId?: string;
8484
8903
  tags?: ListResourceGroupsRequestTags[];
8485
- typeNames?: string;
8486
8904
  static names(): {
8487
8905
  [key: string]: string;
8488
8906
  };
@@ -8499,7 +8917,6 @@ export declare class ListResourceGroupsShrinkRequest extends $tea.Model {
8499
8917
  resourceGroupType?: number;
8500
8918
  resourceManagerResourceGroupId?: string;
8501
8919
  tagsShrink?: string;
8502
- typeNames?: string;
8503
8920
  static names(): {
8504
8921
  [key: string]: string;
8505
8922
  };
@@ -10732,6 +11149,53 @@ export declare class UpdateMetaCategoryResponse extends $tea.Model {
10732
11149
  [key: string]: any;
10733
11150
  });
10734
11151
  }
11152
+ export declare class UpdateMetaCollectionRequest extends $tea.Model {
11153
+ comment?: string;
11154
+ name?: string;
11155
+ qualifiedName?: string;
11156
+ static names(): {
11157
+ [key: string]: string;
11158
+ };
11159
+ static types(): {
11160
+ [key: string]: any;
11161
+ };
11162
+ constructor(map?: {
11163
+ [key: string]: any;
11164
+ });
11165
+ }
11166
+ export declare class UpdateMetaCollectionResponseBody extends $tea.Model {
11167
+ errorCode?: string;
11168
+ errorMessage?: string;
11169
+ httpStatusCode?: number;
11170
+ requestId?: string;
11171
+ status?: boolean;
11172
+ success?: boolean;
11173
+ static names(): {
11174
+ [key: string]: string;
11175
+ };
11176
+ static types(): {
11177
+ [key: string]: any;
11178
+ };
11179
+ constructor(map?: {
11180
+ [key: string]: any;
11181
+ });
11182
+ }
11183
+ export declare class UpdateMetaCollectionResponse extends $tea.Model {
11184
+ headers: {
11185
+ [key: string]: string;
11186
+ };
11187
+ statusCode: number;
11188
+ body: UpdateMetaCollectionResponseBody;
11189
+ static names(): {
11190
+ [key: string]: string;
11191
+ };
11192
+ static types(): {
11193
+ [key: string]: any;
11194
+ };
11195
+ constructor(map?: {
11196
+ [key: string]: any;
11197
+ });
11198
+ }
10735
11199
  export declare class UpdateMetaTableRequest extends $tea.Model {
10736
11200
  addedLabels?: string;
10737
11201
  caption?: string;
@@ -13610,6 +14074,19 @@ export declare class GetMetaTablePartitionResponseBodyData extends $tea.Model {
13610
14074
  [key: string]: any;
13611
14075
  });
13612
14076
  }
14077
+ export declare class GetMetaTableProducingTasksResponseBodyData extends $tea.Model {
14078
+ taskId?: string;
14079
+ taskName?: string;
14080
+ static names(): {
14081
+ [key: string]: string;
14082
+ };
14083
+ static types(): {
14084
+ [key: string]: any;
14085
+ };
14086
+ constructor(map?: {
14087
+ [key: string]: any;
14088
+ });
14089
+ }
13613
14090
  export declare class GetMetaTableThemeLevelResponseBodyEntityLevel extends $tea.Model {
13614
14091
  description?: string;
13615
14092
  levelId?: number;
@@ -15884,6 +16361,32 @@ export declare class ListManualDagInstancesResponseBodyInstances extends $tea.Mo
15884
16361
  [key: string]: any;
15885
16362
  });
15886
16363
  }
16364
+ export declare class ListMetaCollectionEntitiesResponseBodyData extends $tea.Model {
16365
+ entityList?: Entity[];
16366
+ nextToken?: string;
16367
+ static names(): {
16368
+ [key: string]: string;
16369
+ };
16370
+ static types(): {
16371
+ [key: string]: any;
16372
+ };
16373
+ constructor(map?: {
16374
+ [key: string]: any;
16375
+ });
16376
+ }
16377
+ export declare class ListMetaCollectionsResponseBodyData extends $tea.Model {
16378
+ collectionList?: Collection[];
16379
+ nextToken?: string;
16380
+ static names(): {
16381
+ [key: string]: string;
16382
+ };
16383
+ static types(): {
16384
+ [key: string]: any;
16385
+ };
16386
+ constructor(map?: {
16387
+ [key: string]: any;
16388
+ });
16389
+ }
15887
16390
  export declare class ListMetaDBResponseBodyDatabaseInfoDbList extends $tea.Model {
15888
16391
  createTimeStamp?: number;
15889
16392
  location?: string;
@@ -17277,6 +17780,8 @@ export default class Client extends OpenApi {
17277
17780
  }, endpoint: string): string;
17278
17781
  abolishDataServiceApiWithOptions(request: AbolishDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<AbolishDataServiceApiResponse>;
17279
17782
  abolishDataServiceApi(request: AbolishDataServiceApiRequest): Promise<AbolishDataServiceApiResponse>;
17783
+ addMetaCollectionEntityWithOptions(request: AddMetaCollectionEntityRequest, runtime: $Util.RuntimeOptions): Promise<AddMetaCollectionEntityResponse>;
17784
+ addMetaCollectionEntity(request: AddMetaCollectionEntityRequest): Promise<AddMetaCollectionEntityResponse>;
17280
17785
  addProjectMemberToRoleWithOptions(request: AddProjectMemberToRoleRequest, runtime: $Util.RuntimeOptions): Promise<AddProjectMemberToRoleResponse>;
17281
17786
  addProjectMemberToRole(request: AddProjectMemberToRoleRequest): Promise<AddProjectMemberToRoleResponse>;
17282
17787
  addToMetaCategoryWithOptions(request: AddToMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<AddToMetaCategoryResponse>;
@@ -17295,13 +17800,52 @@ export default class Client extends OpenApi {
17295
17800
  createBaseline(request: CreateBaselineRequest): Promise<CreateBaselineResponse>;
17296
17801
  createBusinessWithOptions(request: CreateBusinessRequest, runtime: $Util.RuntimeOptions): Promise<CreateBusinessResponse>;
17297
17802
  createBusiness(request: CreateBusinessRequest): Promise<CreateBusinessResponse>;
17803
+ /**
17804
+ * @deprecated
17805
+ *
17806
+ * @param request CreateConnectionRequest
17807
+ * @param runtime runtime options for this request RuntimeOptions
17808
+ * @return CreateConnectionResponse
17809
+ */
17298
17810
  createConnectionWithOptions(request: CreateConnectionRequest, runtime: $Util.RuntimeOptions): Promise<CreateConnectionResponse>;
17811
+ /**
17812
+ * @deprecated
17813
+ *
17814
+ * @param request CreateConnectionRequest
17815
+ * @return CreateConnectionResponse
17816
+ */
17299
17817
  createConnection(request: CreateConnectionRequest): Promise<CreateConnectionResponse>;
17300
17818
  createDISyncTaskWithOptions(request: CreateDISyncTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateDISyncTaskResponse>;
17301
17819
  createDISyncTask(request: CreateDISyncTaskRequest): Promise<CreateDISyncTaskResponse>;
17820
+ /**
17821
+ * @deprecated
17822
+ *
17823
+ * @param request CreateDagComplementRequest
17824
+ * @param runtime runtime options for this request RuntimeOptions
17825
+ * @return CreateDagComplementResponse
17826
+ */
17302
17827
  createDagComplementWithOptions(request: CreateDagComplementRequest, runtime: $Util.RuntimeOptions): Promise<CreateDagComplementResponse>;
17828
+ /**
17829
+ * @deprecated
17830
+ *
17831
+ * @param request CreateDagComplementRequest
17832
+ * @return CreateDagComplementResponse
17833
+ */
17303
17834
  createDagComplement(request: CreateDagComplementRequest): Promise<CreateDagComplementResponse>;
17835
+ /**
17836
+ * @deprecated
17837
+ *
17838
+ * @param request CreateDagTestRequest
17839
+ * @param runtime runtime options for this request RuntimeOptions
17840
+ * @return CreateDagTestResponse
17841
+ */
17304
17842
  createDagTestWithOptions(request: CreateDagTestRequest, runtime: $Util.RuntimeOptions): Promise<CreateDagTestResponse>;
17843
+ /**
17844
+ * @deprecated
17845
+ *
17846
+ * @param request CreateDagTestRequest
17847
+ * @return CreateDagTestResponse
17848
+ */
17305
17849
  createDagTest(request: CreateDagTestRequest): Promise<CreateDagTestResponse>;
17306
17850
  createDataServiceApiWithOptions(request: CreateDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<CreateDataServiceApiResponse>;
17307
17851
  createDataServiceApi(request: CreateDataServiceApiRequest): Promise<CreateDataServiceApiResponse>;
@@ -17322,10 +17866,25 @@ export default class Client extends OpenApi {
17322
17866
  createImportMigrationWithOptions(request: CreateImportMigrationRequest, runtime: $Util.RuntimeOptions): Promise<CreateImportMigrationResponse>;
17323
17867
  createImportMigration(request: CreateImportMigrationRequest): Promise<CreateImportMigrationResponse>;
17324
17868
  createImportMigrationAdvance(request: CreateImportMigrationAdvanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateImportMigrationResponse>;
17869
+ /**
17870
+ * @deprecated
17871
+ *
17872
+ * @param request CreateManualDagRequest
17873
+ * @param runtime runtime options for this request RuntimeOptions
17874
+ * @return CreateManualDagResponse
17875
+ */
17325
17876
  createManualDagWithOptions(request: CreateManualDagRequest, runtime: $Util.RuntimeOptions): Promise<CreateManualDagResponse>;
17877
+ /**
17878
+ * @deprecated
17879
+ *
17880
+ * @param request CreateManualDagRequest
17881
+ * @return CreateManualDagResponse
17882
+ */
17326
17883
  createManualDag(request: CreateManualDagRequest): Promise<CreateManualDagResponse>;
17327
17884
  createMetaCategoryWithOptions(request: CreateMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<CreateMetaCategoryResponse>;
17328
17885
  createMetaCategory(request: CreateMetaCategoryRequest): Promise<CreateMetaCategoryResponse>;
17886
+ createMetaCollectionWithOptions(request: CreateMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<CreateMetaCollectionResponse>;
17887
+ createMetaCollection(request: CreateMetaCollectionRequest): Promise<CreateMetaCollectionResponse>;
17329
17888
  createPermissionApplyOrderWithOptions(request: CreatePermissionApplyOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreatePermissionApplyOrderResponse>;
17330
17889
  createPermissionApplyOrder(request: CreatePermissionApplyOrderRequest): Promise<CreatePermissionApplyOrderResponse>;
17331
17890
  createProjectMemberWithOptions(request: CreateProjectMemberRequest, runtime: $Util.RuntimeOptions): Promise<CreateProjectMemberResponse>;
@@ -17352,7 +17911,20 @@ export default class Client extends OpenApi {
17352
17911
  deleteBaseline(request: DeleteBaselineRequest): Promise<DeleteBaselineResponse>;
17353
17912
  deleteBusinessWithOptions(request: DeleteBusinessRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBusinessResponse>;
17354
17913
  deleteBusiness(request: DeleteBusinessRequest): Promise<DeleteBusinessResponse>;
17914
+ /**
17915
+ * @deprecated
17916
+ *
17917
+ * @param request DeleteConnectionRequest
17918
+ * @param runtime runtime options for this request RuntimeOptions
17919
+ * @return DeleteConnectionResponse
17920
+ */
17355
17921
  deleteConnectionWithOptions(request: DeleteConnectionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteConnectionResponse>;
17922
+ /**
17923
+ * @deprecated
17924
+ *
17925
+ * @param request DeleteConnectionRequest
17926
+ * @return DeleteConnectionResponse
17927
+ */
17356
17928
  deleteConnection(request: DeleteConnectionRequest): Promise<DeleteConnectionResponse>;
17357
17929
  deleteDISyncTaskWithOptions(request: DeleteDISyncTaskRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDISyncTaskResponse>;
17358
17930
  deleteDISyncTask(request: DeleteDISyncTaskRequest): Promise<DeleteDISyncTaskResponse>;
@@ -17370,6 +17942,10 @@ export default class Client extends OpenApi {
17370
17942
  deleteFromMetaCategory(request: DeleteFromMetaCategoryRequest): Promise<DeleteFromMetaCategoryResponse>;
17371
17943
  deleteMetaCategoryWithOptions(request: DeleteMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMetaCategoryResponse>;
17372
17944
  deleteMetaCategory(request: DeleteMetaCategoryRequest): Promise<DeleteMetaCategoryResponse>;
17945
+ deleteMetaCollectionWithOptions(request: DeleteMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMetaCollectionResponse>;
17946
+ deleteMetaCollection(request: DeleteMetaCollectionRequest): Promise<DeleteMetaCollectionResponse>;
17947
+ deleteMetaCollectionEntityWithOptions(request: DeleteMetaCollectionEntityRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMetaCollectionEntityResponse>;
17948
+ deleteMetaCollectionEntity(request: DeleteMetaCollectionEntityRequest): Promise<DeleteMetaCollectionEntityResponse>;
17373
17949
  deleteProjectMemberWithOptions(request: DeleteProjectMemberRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProjectMemberResponse>;
17374
17950
  deleteProjectMember(request: DeleteProjectMemberRequest): Promise<DeleteProjectMemberResponse>;
17375
17951
  deleteQualityEntityWithOptions(request: DeleteQualityEntityRequest, runtime: $Util.RuntimeOptions): Promise<DeleteQualityEntityResponse>;
@@ -17450,29 +18026,109 @@ export default class Client extends OpenApi {
17450
18026
  getIDEEventDetail(request: GetIDEEventDetailRequest): Promise<GetIDEEventDetailResponse>;
17451
18027
  getInstanceWithOptions(request: GetInstanceRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceResponse>;
17452
18028
  getInstance(request: GetInstanceRequest): Promise<GetInstanceResponse>;
18029
+ /**
18030
+ * @deprecated
18031
+ *
18032
+ * @param request GetInstanceConsumeTimeRankRequest
18033
+ * @param runtime runtime options for this request RuntimeOptions
18034
+ * @return GetInstanceConsumeTimeRankResponse
18035
+ */
17453
18036
  getInstanceConsumeTimeRankWithOptions(request: GetInstanceConsumeTimeRankRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceConsumeTimeRankResponse>;
18037
+ /**
18038
+ * @deprecated
18039
+ *
18040
+ * @param request GetInstanceConsumeTimeRankRequest
18041
+ * @return GetInstanceConsumeTimeRankResponse
18042
+ */
17454
18043
  getInstanceConsumeTimeRank(request: GetInstanceConsumeTimeRankRequest): Promise<GetInstanceConsumeTimeRankResponse>;
18044
+ /**
18045
+ * @deprecated
18046
+ *
18047
+ * @param request GetInstanceCountTrendRequest
18048
+ * @param runtime runtime options for this request RuntimeOptions
18049
+ * @return GetInstanceCountTrendResponse
18050
+ */
17455
18051
  getInstanceCountTrendWithOptions(request: GetInstanceCountTrendRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceCountTrendResponse>;
18052
+ /**
18053
+ * @deprecated
18054
+ *
18055
+ * @param request GetInstanceCountTrendRequest
18056
+ * @return GetInstanceCountTrendResponse
18057
+ */
17456
18058
  getInstanceCountTrend(request: GetInstanceCountTrendRequest): Promise<GetInstanceCountTrendResponse>;
18059
+ /**
18060
+ * @deprecated
18061
+ *
18062
+ * @param request GetInstanceErrorRankRequest
18063
+ * @param runtime runtime options for this request RuntimeOptions
18064
+ * @return GetInstanceErrorRankResponse
18065
+ */
17457
18066
  getInstanceErrorRankWithOptions(request: GetInstanceErrorRankRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceErrorRankResponse>;
18067
+ /**
18068
+ * @deprecated
18069
+ *
18070
+ * @param request GetInstanceErrorRankRequest
18071
+ * @return GetInstanceErrorRankResponse
18072
+ */
17458
18073
  getInstanceErrorRank(request: GetInstanceErrorRankRequest): Promise<GetInstanceErrorRankResponse>;
17459
18074
  getInstanceLogWithOptions(request: GetInstanceLogRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceLogResponse>;
17460
18075
  getInstanceLog(request: GetInstanceLogRequest): Promise<GetInstanceLogResponse>;
18076
+ /**
18077
+ * @deprecated
18078
+ *
18079
+ * @param request GetInstanceStatusCountRequest
18080
+ * @param runtime runtime options for this request RuntimeOptions
18081
+ * @return GetInstanceStatusCountResponse
18082
+ */
17461
18083
  getInstanceStatusCountWithOptions(request: GetInstanceStatusCountRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceStatusCountResponse>;
18084
+ /**
18085
+ * @deprecated
18086
+ *
18087
+ * @param request GetInstanceStatusCountRequest
18088
+ * @return GetInstanceStatusCountResponse
18089
+ */
17462
18090
  getInstanceStatusCount(request: GetInstanceStatusCountRequest): Promise<GetInstanceStatusCountResponse>;
17463
18091
  getInstanceStatusStatisticWithOptions(request: GetInstanceStatusStatisticRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceStatusStatisticResponse>;
17464
18092
  getInstanceStatusStatistic(request: GetInstanceStatusStatisticRequest): Promise<GetInstanceStatusStatisticResponse>;
18093
+ /**
18094
+ * @deprecated
18095
+ *
18096
+ * @param request GetManualDagInstancesRequest
18097
+ * @param runtime runtime options for this request RuntimeOptions
18098
+ * @return GetManualDagInstancesResponse
18099
+ */
17465
18100
  getManualDagInstancesWithOptions(request: GetManualDagInstancesRequest, runtime: $Util.RuntimeOptions): Promise<GetManualDagInstancesResponse>;
18101
+ /**
18102
+ * @deprecated
18103
+ *
18104
+ * @param request GetManualDagInstancesRequest
18105
+ * @return GetManualDagInstancesResponse
18106
+ */
17466
18107
  getManualDagInstances(request: GetManualDagInstancesRequest): Promise<GetManualDagInstancesResponse>;
17467
18108
  getMetaCategoryWithOptions(request: GetMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaCategoryResponse>;
17468
18109
  getMetaCategory(request: GetMetaCategoryRequest): Promise<GetMetaCategoryResponse>;
18110
+ getMetaCollectionDetailWithOptions(request: GetMetaCollectionDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaCollectionDetailResponse>;
18111
+ getMetaCollectionDetail(request: GetMetaCollectionDetailRequest): Promise<GetMetaCollectionDetailResponse>;
17469
18112
  getMetaColumnLineageWithOptions(request: GetMetaColumnLineageRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaColumnLineageResponse>;
17470
18113
  getMetaColumnLineage(request: GetMetaColumnLineageRequest): Promise<GetMetaColumnLineageResponse>;
17471
18114
  getMetaDBInfoWithOptions(request: GetMetaDBInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaDBInfoResponse>;
17472
18115
  getMetaDBInfo(request: GetMetaDBInfoRequest): Promise<GetMetaDBInfoResponse>;
17473
18116
  getMetaDBTableListWithOptions(request: GetMetaDBTableListRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaDBTableListResponse>;
17474
18117
  getMetaDBTableList(request: GetMetaDBTableListRequest): Promise<GetMetaDBTableListResponse>;
18118
+ /**
18119
+ * ****
18120
+ *
18121
+ * @param request GetMetaTableBasicInfoRequest
18122
+ * @param runtime runtime options for this request RuntimeOptions
18123
+ * @return GetMetaTableBasicInfoResponse
18124
+ */
17475
18125
  getMetaTableBasicInfoWithOptions(request: GetMetaTableBasicInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableBasicInfoResponse>;
18126
+ /**
18127
+ * ****
18128
+ *
18129
+ * @param request GetMetaTableBasicInfoRequest
18130
+ * @return GetMetaTableBasicInfoResponse
18131
+ */
17476
18132
  getMetaTableBasicInfo(request: GetMetaTableBasicInfoRequest): Promise<GetMetaTableBasicInfoResponse>;
17477
18133
  getMetaTableChangeLogWithOptions(request: GetMetaTableChangeLogRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableChangeLogResponse>;
17478
18134
  getMetaTableChangeLog(request: GetMetaTableChangeLogRequest): Promise<GetMetaTableChangeLogResponse>;
@@ -17490,6 +18146,8 @@ export default class Client extends OpenApi {
17490
18146
  getMetaTableOutput(request: GetMetaTableOutputRequest): Promise<GetMetaTableOutputResponse>;
17491
18147
  getMetaTablePartitionWithOptions(tmpReq: GetMetaTablePartitionRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTablePartitionResponse>;
17492
18148
  getMetaTablePartition(request: GetMetaTablePartitionRequest): Promise<GetMetaTablePartitionResponse>;
18149
+ getMetaTableProducingTasksWithOptions(request: GetMetaTableProducingTasksRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableProducingTasksResponse>;
18150
+ getMetaTableProducingTasks(request: GetMetaTableProducingTasksRequest): Promise<GetMetaTableProducingTasksResponse>;
17493
18151
  getMetaTableThemeLevelWithOptions(request: GetMetaTableThemeLevelRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableThemeLevelResponse>;
17494
18152
  getMetaTableThemeLevel(request: GetMetaTableThemeLevelRequest): Promise<GetMetaTableThemeLevelResponse>;
17495
18153
  getMigrationProcessWithOptions(request: GetMigrationProcessRequest, runtime: $Util.RuntimeOptions): Promise<GetMigrationProcessResponse>;
@@ -17502,11 +18160,37 @@ export default class Client extends OpenApi {
17502
18160
  getNodeChildren(request: GetNodeChildrenRequest): Promise<GetNodeChildrenResponse>;
17503
18161
  getNodeCodeWithOptions(request: GetNodeCodeRequest, runtime: $Util.RuntimeOptions): Promise<GetNodeCodeResponse>;
17504
18162
  getNodeCode(request: GetNodeCodeRequest): Promise<GetNodeCodeResponse>;
18163
+ /**
18164
+ * @deprecated
18165
+ *
18166
+ * @param request GetNodeOnBaselineRequest
18167
+ * @param runtime runtime options for this request RuntimeOptions
18168
+ * @return GetNodeOnBaselineResponse
18169
+ */
17505
18170
  getNodeOnBaselineWithOptions(request: GetNodeOnBaselineRequest, runtime: $Util.RuntimeOptions): Promise<GetNodeOnBaselineResponse>;
18171
+ /**
18172
+ * @deprecated
18173
+ *
18174
+ * @param request GetNodeOnBaselineRequest
18175
+ * @return GetNodeOnBaselineResponse
18176
+ */
17506
18177
  getNodeOnBaseline(request: GetNodeOnBaselineRequest): Promise<GetNodeOnBaselineResponse>;
17507
18178
  getNodeParentsWithOptions(request: GetNodeParentsRequest, runtime: $Util.RuntimeOptions): Promise<GetNodeParentsResponse>;
17508
18179
  getNodeParents(request: GetNodeParentsRequest): Promise<GetNodeParentsResponse>;
18180
+ /**
18181
+ * @deprecated
18182
+ *
18183
+ * @param request GetNodeTypeListInfoRequest
18184
+ * @param runtime runtime options for this request RuntimeOptions
18185
+ * @return GetNodeTypeListInfoResponse
18186
+ */
17509
18187
  getNodeTypeListInfoWithOptions(request: GetNodeTypeListInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetNodeTypeListInfoResponse>;
18188
+ /**
18189
+ * @deprecated
18190
+ *
18191
+ * @param request GetNodeTypeListInfoRequest
18192
+ * @return GetNodeTypeListInfoResponse
18193
+ */
17510
18194
  getNodeTypeListInfo(request: GetNodeTypeListInfoRequest): Promise<GetNodeTypeListInfoResponse>;
17511
18195
  getOpRiskDataWithOptions(request: GetOpRiskDataRequest, runtime: $Util.RuntimeOptions): Promise<GetOpRiskDataResponse>;
17512
18196
  getOpRiskData(request: GetOpRiskDataRequest): Promise<GetOpRiskDataResponse>;
@@ -17518,7 +18202,20 @@ export default class Client extends OpenApi {
17518
18202
  getPermissionApplyOrderDetail(request: GetPermissionApplyOrderDetailRequest): Promise<GetPermissionApplyOrderDetailResponse>;
17519
18203
  getProjectWithOptions(request: GetProjectRequest, runtime: $Util.RuntimeOptions): Promise<GetProjectResponse>;
17520
18204
  getProject(request: GetProjectRequest): Promise<GetProjectResponse>;
18205
+ /**
18206
+ * @deprecated
18207
+ *
18208
+ * @param request GetProjectDetailRequest
18209
+ * @param runtime runtime options for this request RuntimeOptions
18210
+ * @return GetProjectDetailResponse
18211
+ */
17521
18212
  getProjectDetailWithOptions(request: GetProjectDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetProjectDetailResponse>;
18213
+ /**
18214
+ * @deprecated
18215
+ *
18216
+ * @param request GetProjectDetailRequest
18217
+ * @return GetProjectDetailResponse
18218
+ */
17522
18219
  getProjectDetail(request: GetProjectDetailRequest): Promise<GetProjectDetailResponse>;
17523
18220
  getQualityEntityWithOptions(request: GetQualityEntityRequest, runtime: $Util.RuntimeOptions): Promise<GetQualityEntityResponse>;
17524
18221
  getQualityEntity(request: GetQualityEntityRequest): Promise<GetQualityEntityResponse>;
@@ -17530,9 +18227,35 @@ export default class Client extends OpenApi {
17530
18227
  getRemind(request: GetRemindRequest): Promise<GetRemindResponse>;
17531
18228
  getSensitiveDataWithOptions(request: GetSensitiveDataRequest, runtime: $Util.RuntimeOptions): Promise<GetSensitiveDataResponse>;
17532
18229
  getSensitiveData(request: GetSensitiveDataRequest): Promise<GetSensitiveDataResponse>;
18230
+ /**
18231
+ * @deprecated
18232
+ *
18233
+ * @param request GetSuccessInstanceTrendRequest
18234
+ * @param runtime runtime options for this request RuntimeOptions
18235
+ * @return GetSuccessInstanceTrendResponse
18236
+ */
17533
18237
  getSuccessInstanceTrendWithOptions(request: GetSuccessInstanceTrendRequest, runtime: $Util.RuntimeOptions): Promise<GetSuccessInstanceTrendResponse>;
18238
+ /**
18239
+ * @deprecated
18240
+ *
18241
+ * @param request GetSuccessInstanceTrendRequest
18242
+ * @return GetSuccessInstanceTrendResponse
18243
+ */
17534
18244
  getSuccessInstanceTrend(request: GetSuccessInstanceTrendRequest): Promise<GetSuccessInstanceTrendResponse>;
18245
+ /**
18246
+ * ****
18247
+ *
18248
+ * @param request GetTopicRequest
18249
+ * @param runtime runtime options for this request RuntimeOptions
18250
+ * @return GetTopicResponse
18251
+ */
17535
18252
  getTopicWithOptions(request: GetTopicRequest, runtime: $Util.RuntimeOptions): Promise<GetTopicResponse>;
18253
+ /**
18254
+ * ****
18255
+ *
18256
+ * @param request GetTopicRequest
18257
+ * @return GetTopicResponse
18258
+ */
17536
18259
  getTopic(request: GetTopicRequest): Promise<GetTopicResponse>;
17537
18260
  getTopicInfluenceWithOptions(request: GetTopicInfluenceRequest, runtime: $Util.RuntimeOptions): Promise<GetTopicInfluenceResponse>;
17538
18261
  getTopicInfluence(request: GetTopicInfluenceRequest): Promise<GetTopicInfluenceResponse>;
@@ -17550,7 +18273,20 @@ export default class Client extends OpenApi {
17550
18273
  listBusiness(request: ListBusinessRequest): Promise<ListBusinessResponse>;
17551
18274
  listCalcEnginesWithOptions(request: ListCalcEnginesRequest, runtime: $Util.RuntimeOptions): Promise<ListCalcEnginesResponse>;
17552
18275
  listCalcEngines(request: ListCalcEnginesRequest): Promise<ListCalcEnginesResponse>;
18276
+ /**
18277
+ * @deprecated
18278
+ *
18279
+ * @param request ListConnectionsRequest
18280
+ * @param runtime runtime options for this request RuntimeOptions
18281
+ * @return ListConnectionsResponse
18282
+ */
17553
18283
  listConnectionsWithOptions(request: ListConnectionsRequest, runtime: $Util.RuntimeOptions): Promise<ListConnectionsResponse>;
18284
+ /**
18285
+ * @deprecated
18286
+ *
18287
+ * @param request ListConnectionsRequest
18288
+ * @return ListConnectionsResponse
18289
+ */
17554
18290
  listConnections(request: ListConnectionsRequest): Promise<ListConnectionsResponse>;
17555
18291
  listDIProjectConfigWithOptions(request: ListDIProjectConfigRequest, runtime: $Util.RuntimeOptions): Promise<ListDIProjectConfigResponse>;
17556
18292
  listDIProjectConfig(request: ListDIProjectConfigRequest): Promise<ListDIProjectConfigResponse>;
@@ -17598,11 +18334,28 @@ export default class Client extends OpenApi {
17598
18334
  listInstances(request: ListInstancesRequest): Promise<ListInstancesResponse>;
17599
18335
  listManualDagInstancesWithOptions(request: ListManualDagInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListManualDagInstancesResponse>;
17600
18336
  listManualDagInstances(request: ListManualDagInstancesRequest): Promise<ListManualDagInstancesResponse>;
18337
+ listMetaCollectionEntitiesWithOptions(request: ListMetaCollectionEntitiesRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionEntitiesResponse>;
18338
+ listMetaCollectionEntities(request: ListMetaCollectionEntitiesRequest): Promise<ListMetaCollectionEntitiesResponse>;
18339
+ listMetaCollectionsWithOptions(request: ListMetaCollectionsRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionsResponse>;
18340
+ listMetaCollections(request: ListMetaCollectionsRequest): Promise<ListMetaCollectionsResponse>;
17601
18341
  listMetaDBWithOptions(request: ListMetaDBRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaDBResponse>;
17602
18342
  listMetaDB(request: ListMetaDBRequest): Promise<ListMetaDBResponse>;
17603
18343
  listMigrationsWithOptions(request: ListMigrationsRequest, runtime: $Util.RuntimeOptions): Promise<ListMigrationsResponse>;
17604
18344
  listMigrations(request: ListMigrationsRequest): Promise<ListMigrationsResponse>;
18345
+ /**
18346
+ * @deprecated
18347
+ *
18348
+ * @param request ListNodeIORequest
18349
+ * @param runtime runtime options for this request RuntimeOptions
18350
+ * @return ListNodeIOResponse
18351
+ */
17605
18352
  listNodeIOWithOptions(request: ListNodeIORequest, runtime: $Util.RuntimeOptions): Promise<ListNodeIOResponse>;
18353
+ /**
18354
+ * @deprecated
18355
+ *
18356
+ * @param request ListNodeIORequest
18357
+ * @return ListNodeIOResponse
18358
+ */
17606
18359
  listNodeIO(request: ListNodeIORequest): Promise<ListNodeIOResponse>;
17607
18360
  listNodeInputOrOutputWithOptions(request: ListNodeInputOrOutputRequest, runtime: $Util.RuntimeOptions): Promise<ListNodeInputOrOutputResponse>;
17608
18361
  listNodeInputOrOutput(request: ListNodeInputOrOutputRequest): Promise<ListNodeInputOrOutputResponse>;
@@ -17614,7 +18367,20 @@ export default class Client extends OpenApi {
17614
18367
  listNodesByOutput(request: ListNodesByOutputRequest): Promise<ListNodesByOutputResponse>;
17615
18368
  listPermissionApplyOrdersWithOptions(request: ListPermissionApplyOrdersRequest, runtime: $Util.RuntimeOptions): Promise<ListPermissionApplyOrdersResponse>;
17616
18369
  listPermissionApplyOrders(request: ListPermissionApplyOrdersRequest): Promise<ListPermissionApplyOrdersResponse>;
18370
+ /**
18371
+ * @deprecated
18372
+ *
18373
+ * @param request ListProgramTypeCountRequest
18374
+ * @param runtime runtime options for this request RuntimeOptions
18375
+ * @return ListProgramTypeCountResponse
18376
+ */
17617
18377
  listProgramTypeCountWithOptions(request: ListProgramTypeCountRequest, runtime: $Util.RuntimeOptions): Promise<ListProgramTypeCountResponse>;
18378
+ /**
18379
+ * @deprecated
18380
+ *
18381
+ * @param request ListProgramTypeCountRequest
18382
+ * @return ListProgramTypeCountResponse
18383
+ */
17618
18384
  listProgramTypeCount(request: ListProgramTypeCountRequest): Promise<ListProgramTypeCountResponse>;
17619
18385
  listProjectIdsWithOptions(request: ListProjectIdsRequest, runtime: $Util.RuntimeOptions): Promise<ListProjectIdsResponse>;
17620
18386
  listProjectIds(request: ListProjectIdsRequest): Promise<ListProjectIdsResponse>;
@@ -17624,7 +18390,20 @@ export default class Client extends OpenApi {
17624
18390
  listProjectRoles(request: ListProjectRolesRequest): Promise<ListProjectRolesResponse>;
17625
18391
  listProjectsWithOptions(tmpReq: ListProjectsRequest, runtime: $Util.RuntimeOptions): Promise<ListProjectsResponse>;
17626
18392
  listProjects(request: ListProjectsRequest): Promise<ListProjectsResponse>;
18393
+ /**
18394
+ * ****
18395
+ *
18396
+ * @param request ListQualityResultsByEntityRequest
18397
+ * @param runtime runtime options for this request RuntimeOptions
18398
+ * @return ListQualityResultsByEntityResponse
18399
+ */
17627
18400
  listQualityResultsByEntityWithOptions(request: ListQualityResultsByEntityRequest, runtime: $Util.RuntimeOptions): Promise<ListQualityResultsByEntityResponse>;
18401
+ /**
18402
+ * ****
18403
+ *
18404
+ * @param request ListQualityResultsByEntityRequest
18405
+ * @return ListQualityResultsByEntityResponse
18406
+ */
17628
18407
  listQualityResultsByEntity(request: ListQualityResultsByEntityRequest): Promise<ListQualityResultsByEntityResponse>;
17629
18408
  listQualityResultsByRuleWithOptions(request: ListQualityResultsByRuleRequest, runtime: $Util.RuntimeOptions): Promise<ListQualityResultsByRuleResponse>;
17630
18409
  listQualityResultsByRule(request: ListQualityResultsByRuleRequest): Promise<ListQualityResultsByRuleResponse>;
@@ -17678,9 +18457,35 @@ export default class Client extends OpenApi {
17678
18457
  scanSensitiveData(request: ScanSensitiveDataRequest): Promise<ScanSensitiveDataResponse>;
17679
18458
  searchMetaTablesWithOptions(request: SearchMetaTablesRequest, runtime: $Util.RuntimeOptions): Promise<SearchMetaTablesResponse>;
17680
18459
  searchMetaTables(request: SearchMetaTablesRequest): Promise<SearchMetaTablesResponse>;
18460
+ /**
18461
+ * @deprecated
18462
+ *
18463
+ * @param request SearchNodesByOutputRequest
18464
+ * @param runtime runtime options for this request RuntimeOptions
18465
+ * @return SearchNodesByOutputResponse
18466
+ */
17681
18467
  searchNodesByOutputWithOptions(request: SearchNodesByOutputRequest, runtime: $Util.RuntimeOptions): Promise<SearchNodesByOutputResponse>;
18468
+ /**
18469
+ * @deprecated
18470
+ *
18471
+ * @param request SearchNodesByOutputRequest
18472
+ * @return SearchNodesByOutputResponse
18473
+ */
17682
18474
  searchNodesByOutput(request: SearchNodesByOutputRequest): Promise<SearchNodesByOutputResponse>;
18475
+ /**
18476
+ * @deprecated
18477
+ *
18478
+ * @param request SetDataSourceShareRequest
18479
+ * @param runtime runtime options for this request RuntimeOptions
18480
+ * @return SetDataSourceShareResponse
18481
+ */
17683
18482
  setDataSourceShareWithOptions(request: SetDataSourceShareRequest, runtime: $Util.RuntimeOptions): Promise<SetDataSourceShareResponse>;
18483
+ /**
18484
+ * @deprecated
18485
+ *
18486
+ * @param request SetDataSourceShareRequest
18487
+ * @return SetDataSourceShareResponse
18488
+ */
17684
18489
  setDataSourceShare(request: SetDataSourceShareRequest): Promise<SetDataSourceShareResponse>;
17685
18490
  setSuccessInstanceWithOptions(request: SetSuccessInstanceRequest, runtime: $Util.RuntimeOptions): Promise<SetSuccessInstanceResponse>;
17686
18491
  setSuccessInstance(request: SetSuccessInstanceRequest): Promise<SetSuccessInstanceResponse>;
@@ -17710,7 +18515,20 @@ export default class Client extends OpenApi {
17710
18515
  updateBaseline(request: UpdateBaselineRequest): Promise<UpdateBaselineResponse>;
17711
18516
  updateBusinessWithOptions(request: UpdateBusinessRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBusinessResponse>;
17712
18517
  updateBusiness(request: UpdateBusinessRequest): Promise<UpdateBusinessResponse>;
18518
+ /**
18519
+ * @deprecated
18520
+ *
18521
+ * @param request UpdateConnectionRequest
18522
+ * @param runtime runtime options for this request RuntimeOptions
18523
+ * @return UpdateConnectionResponse
18524
+ */
17713
18525
  updateConnectionWithOptions(request: UpdateConnectionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateConnectionResponse>;
18526
+ /**
18527
+ * @deprecated
18528
+ *
18529
+ * @param request UpdateConnectionRequest
18530
+ * @return UpdateConnectionResponse
18531
+ */
17714
18532
  updateConnection(request: UpdateConnectionRequest): Promise<UpdateConnectionResponse>;
17715
18533
  updateDIProjectConfigWithOptions(request: UpdateDIProjectConfigRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDIProjectConfigResponse>;
17716
18534
  updateDIProjectConfig(request: UpdateDIProjectConfigRequest): Promise<UpdateDIProjectConfigResponse>;
@@ -17728,6 +18546,8 @@ export default class Client extends OpenApi {
17728
18546
  updateIDEEventResult(request: UpdateIDEEventResultRequest): Promise<UpdateIDEEventResultResponse>;
17729
18547
  updateMetaCategoryWithOptions(request: UpdateMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaCategoryResponse>;
17730
18548
  updateMetaCategory(request: UpdateMetaCategoryRequest): Promise<UpdateMetaCategoryResponse>;
18549
+ updateMetaCollectionWithOptions(request: UpdateMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaCollectionResponse>;
18550
+ updateMetaCollection(request: UpdateMetaCollectionRequest): Promise<UpdateMetaCollectionResponse>;
17731
18551
  updateMetaTableWithOptions(request: UpdateMetaTableRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaTableResponse>;
17732
18552
  updateMetaTable(request: UpdateMetaTableRequest): Promise<UpdateMetaTableResponse>;
17733
18553
  updateMetaTableIntroWikiWithOptions(request: UpdateMetaTableIntroWikiRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaTableIntroWikiResponse>;