@alicloud/dataworks-public20200518 4.4.7 → 4.4.8
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 +33 -76
- package/dist/client.js +50 -87
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +59 -98
package/dist/client.d.ts
CHANGED
|
@@ -470,8 +470,6 @@ export declare class CreateBaselineRequest extends $tea.Model {
|
|
|
470
470
|
}
|
|
471
471
|
export declare class CreateBaselineResponseBody extends $tea.Model {
|
|
472
472
|
data?: number;
|
|
473
|
-
dynamicErrorCode?: string;
|
|
474
|
-
dynamicErrorMessage?: string;
|
|
475
473
|
errorCode?: string;
|
|
476
474
|
errorMessage?: string;
|
|
477
475
|
httpStatusCode?: number;
|
|
@@ -1063,6 +1061,7 @@ export declare class CreateFileRequest extends $tea.Model {
|
|
|
1063
1061
|
fileFolderPath?: string;
|
|
1064
1062
|
fileName?: string;
|
|
1065
1063
|
fileType?: number;
|
|
1064
|
+
ignoreParentSkipRunningProperty?: boolean;
|
|
1066
1065
|
inputList?: string;
|
|
1067
1066
|
inputParameters?: string;
|
|
1068
1067
|
outputParameters?: string;
|
|
@@ -1975,8 +1974,6 @@ export declare class DeleteBaselineRequest extends $tea.Model {
|
|
|
1975
1974
|
}
|
|
1976
1975
|
export declare class DeleteBaselineResponseBody extends $tea.Model {
|
|
1977
1976
|
data?: boolean;
|
|
1978
|
-
dynamicErrorCode?: string;
|
|
1979
|
-
dynamicErrorMessage?: string;
|
|
1980
1977
|
errorCode?: string;
|
|
1981
1978
|
errorMessage?: string;
|
|
1982
1979
|
httpStatusCode?: number;
|
|
@@ -3301,8 +3298,6 @@ export declare class GetBaselineRequest extends $tea.Model {
|
|
|
3301
3298
|
}
|
|
3302
3299
|
export declare class GetBaselineResponseBody extends $tea.Model {
|
|
3303
3300
|
data?: GetBaselineResponseBodyData;
|
|
3304
|
-
dynamicErrorCode?: string;
|
|
3305
|
-
dynamicErrorMessage?: string;
|
|
3306
3301
|
errorCode?: string;
|
|
3307
3302
|
errorMessage?: string;
|
|
3308
3303
|
httpStatusCode?: number;
|
|
@@ -6685,8 +6680,6 @@ export declare class ListBaselinesRequest extends $tea.Model {
|
|
|
6685
6680
|
}
|
|
6686
6681
|
export declare class ListBaselinesResponseBody extends $tea.Model {
|
|
6687
6682
|
data?: ListBaselinesResponseBodyData;
|
|
6688
|
-
dynamicErrorCode?: string;
|
|
6689
|
-
dynamicErrorMessage?: string;
|
|
6690
6683
|
errorCode?: string;
|
|
6691
6684
|
errorMessage?: string;
|
|
6692
6685
|
httpStatusCode?: number;
|
|
@@ -9761,6 +9754,7 @@ export declare class RunCycleDagNodesResponse extends $tea.Model {
|
|
|
9761
9754
|
export declare class RunManualDagNodesRequest extends $tea.Model {
|
|
9762
9755
|
bizDate?: string;
|
|
9763
9756
|
dagParameters?: string;
|
|
9757
|
+
endBizDate?: string;
|
|
9764
9758
|
excludeNodeIds?: string;
|
|
9765
9759
|
flowName?: string;
|
|
9766
9760
|
includeNodeIds?: string;
|
|
@@ -9768,6 +9762,7 @@ export declare class RunManualDagNodesRequest extends $tea.Model {
|
|
|
9768
9762
|
projectEnv?: string;
|
|
9769
9763
|
projectId?: number;
|
|
9770
9764
|
projectName?: string;
|
|
9765
|
+
startBizDate?: string;
|
|
9771
9766
|
static names(): {
|
|
9772
9767
|
[key: string]: string;
|
|
9773
9768
|
};
|
|
@@ -10818,8 +10813,6 @@ export declare class UpdateBaselineShrinkRequest extends $tea.Model {
|
|
|
10818
10813
|
}
|
|
10819
10814
|
export declare class UpdateBaselineResponseBody extends $tea.Model {
|
|
10820
10815
|
data?: boolean;
|
|
10821
|
-
dynamicErrorCode?: string;
|
|
10822
|
-
dynamicErrorMessage?: string;
|
|
10823
10816
|
errorCode?: string;
|
|
10824
10817
|
errorMessage?: string;
|
|
10825
10818
|
httpStatusCode?: number;
|
|
@@ -11159,6 +11152,7 @@ export declare class UpdateFileRequest extends $tea.Model {
|
|
|
11159
11152
|
fileFolderPath?: string;
|
|
11160
11153
|
fileId?: number;
|
|
11161
11154
|
fileName?: string;
|
|
11155
|
+
ignoreParentSkipRunningProperty?: boolean;
|
|
11162
11156
|
inputList?: string;
|
|
11163
11157
|
inputParameters?: string;
|
|
11164
11158
|
outputList?: string;
|
|
@@ -12377,11 +12371,11 @@ export declare class GetBaselineResponseBodyData extends $tea.Model {
|
|
|
12377
12371
|
baselineName?: string;
|
|
12378
12372
|
baselineType?: string;
|
|
12379
12373
|
enabled?: boolean;
|
|
12374
|
+
nodeIds?: number[];
|
|
12380
12375
|
overTimeSettings?: GetBaselineResponseBodyDataOverTimeSettings[];
|
|
12381
12376
|
owner?: string;
|
|
12382
12377
|
priority?: number;
|
|
12383
12378
|
projectId?: number;
|
|
12384
|
-
taskIds?: number[];
|
|
12385
12379
|
static names(): {
|
|
12386
12380
|
[key: string]: string;
|
|
12387
12381
|
};
|
|
@@ -17990,7 +17984,7 @@ export default class Client extends OpenApi {
|
|
|
17990
17984
|
addMetaCollectionEntityWithOptions(request: AddMetaCollectionEntityRequest, runtime: $Util.RuntimeOptions): Promise<AddMetaCollectionEntityResponse>;
|
|
17991
17985
|
addMetaCollectionEntity(request: AddMetaCollectionEntityRequest): Promise<AddMetaCollectionEntityResponse>;
|
|
17992
17986
|
/**
|
|
17993
|
-
*
|
|
17987
|
+
* The ID of the DataWorks workspace. You can call the [ListProjects](~~178393~~) operation to query the ID.
|
|
17994
17988
|
*
|
|
17995
17989
|
* @param request AddProjectMemberToRoleRequest
|
|
17996
17990
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -17998,7 +17992,7 @@ export default class Client extends OpenApi {
|
|
|
17998
17992
|
*/
|
|
17999
17993
|
addProjectMemberToRoleWithOptions(request: AddProjectMemberToRoleRequest, runtime: $Util.RuntimeOptions): Promise<AddProjectMemberToRoleResponse>;
|
|
18000
17994
|
/**
|
|
18001
|
-
*
|
|
17995
|
+
* The ID of the DataWorks workspace. You can call the [ListProjects](~~178393~~) operation to query the ID.
|
|
18002
17996
|
*
|
|
18003
17997
|
* @param request AddProjectMemberToRoleRequest
|
|
18004
17998
|
* @return AddProjectMemberToRoleResponse
|
|
@@ -18158,7 +18152,8 @@ export default class Client extends OpenApi {
|
|
|
18158
18152
|
createMetaCategoryWithOptions(request: CreateMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<CreateMetaCategoryResponse>;
|
|
18159
18153
|
createMetaCategory(request: CreateMetaCategoryRequest): Promise<CreateMetaCategoryResponse>;
|
|
18160
18154
|
/**
|
|
18161
|
-
*
|
|
18155
|
+
* A category must belong to a data album.
|
|
18156
|
+
* You can create a category in a data album only after you create the data album. You can set the value of the parentQualifiedName parameter to the unique identifier of the data album to create the category.
|
|
18162
18157
|
*
|
|
18163
18158
|
* @param request CreateMetaCollectionRequest
|
|
18164
18159
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18166,7 +18161,8 @@ export default class Client extends OpenApi {
|
|
|
18166
18161
|
*/
|
|
18167
18162
|
createMetaCollectionWithOptions(request: CreateMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<CreateMetaCollectionResponse>;
|
|
18168
18163
|
/**
|
|
18169
|
-
*
|
|
18164
|
+
* A category must belong to a data album.
|
|
18165
|
+
* You can create a category in a data album only after you create the data album. You can set the value of the parentQualifiedName parameter to the unique identifier of the data album to create the category.
|
|
18170
18166
|
*
|
|
18171
18167
|
* @param request CreateMetaCollectionRequest
|
|
18172
18168
|
* @return CreateMetaCollectionResponse
|
|
@@ -18275,8 +18271,7 @@ export default class Client extends OpenApi {
|
|
|
18275
18271
|
exportDataSourcesWithOptions(request: ExportDataSourcesRequest, runtime: $Util.RuntimeOptions): Promise<ExportDataSourcesResponse>;
|
|
18276
18272
|
exportDataSources(request: ExportDataSourcesRequest): Promise<ExportDataSourcesResponse>;
|
|
18277
18273
|
/**
|
|
18278
|
-
*
|
|
18279
|
-
* DataWorks allows you to create real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
18274
|
+
* The operation that you want to perform.
|
|
18280
18275
|
*
|
|
18281
18276
|
* @param request GenerateDISyncTaskConfigForCreatingRequest
|
|
18282
18277
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18284,15 +18279,14 @@ export default class Client extends OpenApi {
|
|
|
18284
18279
|
*/
|
|
18285
18280
|
generateDISyncTaskConfigForCreatingWithOptions(request: GenerateDISyncTaskConfigForCreatingRequest, runtime: $Util.RuntimeOptions): Promise<GenerateDISyncTaskConfigForCreatingResponse>;
|
|
18286
18281
|
/**
|
|
18287
|
-
*
|
|
18288
|
-
* DataWorks allows you to create real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
18282
|
+
* The operation that you want to perform.
|
|
18289
18283
|
*
|
|
18290
18284
|
* @param request GenerateDISyncTaskConfigForCreatingRequest
|
|
18291
18285
|
* @return GenerateDISyncTaskConfigForCreatingResponse
|
|
18292
18286
|
*/
|
|
18293
18287
|
generateDISyncTaskConfigForCreating(request: GenerateDISyncTaskConfigForCreatingRequest): Promise<GenerateDISyncTaskConfigForCreatingResponse>;
|
|
18294
18288
|
/**
|
|
18295
|
-
*
|
|
18289
|
+
* The operation that you want to perform.
|
|
18296
18290
|
*
|
|
18297
18291
|
* @param request GenerateDISyncTaskConfigForUpdatingRequest
|
|
18298
18292
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18300,7 +18294,7 @@ export default class Client extends OpenApi {
|
|
|
18300
18294
|
*/
|
|
18301
18295
|
generateDISyncTaskConfigForUpdatingWithOptions(request: GenerateDISyncTaskConfigForUpdatingRequest, runtime: $Util.RuntimeOptions): Promise<GenerateDISyncTaskConfigForUpdatingResponse>;
|
|
18302
18296
|
/**
|
|
18303
|
-
*
|
|
18297
|
+
* The operation that you want to perform.
|
|
18304
18298
|
*
|
|
18305
18299
|
* @param request GenerateDISyncTaskConfigForUpdatingRequest
|
|
18306
18300
|
* @return GenerateDISyncTaskConfigForUpdatingResponse
|
|
@@ -18484,7 +18478,8 @@ export default class Client extends OpenApi {
|
|
|
18484
18478
|
getMetaColumnLineageWithOptions(request: GetMetaColumnLineageRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaColumnLineageResponse>;
|
|
18485
18479
|
getMetaColumnLineage(request: GetMetaColumnLineageRequest): Promise<GetMetaColumnLineageResponse>;
|
|
18486
18480
|
/**
|
|
18487
|
-
*
|
|
18481
|
+
* The ID of the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
18482
|
+
* You can log on to the [EMR console](https://emr.console.aliyun.com/?spm=a2c4g.11186623.0.0.965cc5c2GeiHet#/cn-hangzhou) to obtain the ID of the EMR cluster.
|
|
18488
18483
|
*
|
|
18489
18484
|
* @param request GetMetaDBInfoRequest
|
|
18490
18485
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18492,7 +18487,8 @@ export default class Client extends OpenApi {
|
|
|
18492
18487
|
*/
|
|
18493
18488
|
getMetaDBInfoWithOptions(request: GetMetaDBInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaDBInfoResponse>;
|
|
18494
18489
|
/**
|
|
18495
|
-
*
|
|
18490
|
+
* The ID of the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
18491
|
+
* You can log on to the [EMR console](https://emr.console.aliyun.com/?spm=a2c4g.11186623.0.0.965cc5c2GeiHet#/cn-hangzhou) to obtain the ID of the EMR cluster.
|
|
18496
18492
|
*
|
|
18497
18493
|
* @param request GetMetaDBInfoRequest
|
|
18498
18494
|
* @return GetMetaDBInfoResponse
|
|
@@ -18530,7 +18526,7 @@ export default class Client extends OpenApi {
|
|
|
18530
18526
|
getMetaTableOutputWithOptions(request: GetMetaTableOutputRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableOutputResponse>;
|
|
18531
18527
|
getMetaTableOutput(request: GetMetaTableOutputRequest): Promise<GetMetaTableOutputResponse>;
|
|
18532
18528
|
/**
|
|
18533
|
-
*
|
|
18529
|
+
* The operation that you want to perform. Set the value to **GetMetaTablePartition**.
|
|
18534
18530
|
*
|
|
18535
18531
|
* @param tmpReq GetMetaTablePartitionRequest
|
|
18536
18532
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18538,7 +18534,7 @@ export default class Client extends OpenApi {
|
|
|
18538
18534
|
*/
|
|
18539
18535
|
getMetaTablePartitionWithOptions(tmpReq: GetMetaTablePartitionRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTablePartitionResponse>;
|
|
18540
18536
|
/**
|
|
18541
|
-
*
|
|
18537
|
+
* The operation that you want to perform. Set the value to **GetMetaTablePartition**.
|
|
18542
18538
|
*
|
|
18543
18539
|
* @param request GetMetaTablePartitionRequest
|
|
18544
18540
|
* @return GetMetaTablePartitionResponse
|
|
@@ -18719,16 +18715,7 @@ export default class Client extends OpenApi {
|
|
|
18719
18715
|
*/
|
|
18720
18716
|
listDIProjectConfig(request: ListDIProjectConfigRequest): Promise<ListDIProjectConfigResponse>;
|
|
18721
18717
|
/**
|
|
18722
|
-
*
|
|
18723
|
-
* * MANUAL: the DAG for a manually triggered workflow.
|
|
18724
|
-
* * SMOKE_TEST: the DAG for a smoke testing workflow.
|
|
18725
|
-
* * SUPPLY_DATA: the DAG for a data backfill instance.
|
|
18726
|
-
* * BUSINESS_PROCESS_DAG: the DAG for a one-time workflow.
|
|
18727
|
-
* Supported DAG states:
|
|
18728
|
-
* * CREATED: The DAG is created.
|
|
18729
|
-
* * RUNNING: The DAG is running.
|
|
18730
|
-
* * FAILURE: The DAG fails to run.
|
|
18731
|
-
* * SUCCESS: The DAG successfully runs.
|
|
18718
|
+
* The operation that you want to perform. Set the value to **ListDags**.
|
|
18732
18719
|
*
|
|
18733
18720
|
* @param request ListDagsRequest
|
|
18734
18721
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18736,16 +18723,7 @@ export default class Client extends OpenApi {
|
|
|
18736
18723
|
*/
|
|
18737
18724
|
listDagsWithOptions(request: ListDagsRequest, runtime: $Util.RuntimeOptions): Promise<ListDagsResponse>;
|
|
18738
18725
|
/**
|
|
18739
|
-
*
|
|
18740
|
-
* * MANUAL: the DAG for a manually triggered workflow.
|
|
18741
|
-
* * SMOKE_TEST: the DAG for a smoke testing workflow.
|
|
18742
|
-
* * SUPPLY_DATA: the DAG for a data backfill instance.
|
|
18743
|
-
* * BUSINESS_PROCESS_DAG: the DAG for a one-time workflow.
|
|
18744
|
-
* Supported DAG states:
|
|
18745
|
-
* * CREATED: The DAG is created.
|
|
18746
|
-
* * RUNNING: The DAG is running.
|
|
18747
|
-
* * FAILURE: The DAG fails to run.
|
|
18748
|
-
* * SUCCESS: The DAG successfully runs.
|
|
18726
|
+
* The operation that you want to perform. Set the value to **ListDags**.
|
|
18749
18727
|
*
|
|
18750
18728
|
* @param request ListDagsRequest
|
|
18751
18729
|
* @return ListDagsResponse
|
|
@@ -18796,7 +18774,7 @@ export default class Client extends OpenApi {
|
|
|
18796
18774
|
listMetaCollectionEntitiesWithOptions(request: ListMetaCollectionEntitiesRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionEntitiesResponse>;
|
|
18797
18775
|
listMetaCollectionEntities(request: ListMetaCollectionEntitiesRequest): Promise<ListMetaCollectionEntitiesResponse>;
|
|
18798
18776
|
/**
|
|
18799
|
-
*
|
|
18777
|
+
* You can configure only one of the Creator, Administrator, and Follower parameters.
|
|
18800
18778
|
*
|
|
18801
18779
|
* @param request ListMetaCollectionsRequest
|
|
18802
18780
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18804,7 +18782,7 @@ export default class Client extends OpenApi {
|
|
|
18804
18782
|
*/
|
|
18805
18783
|
listMetaCollectionsWithOptions(request: ListMetaCollectionsRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionsResponse>;
|
|
18806
18784
|
/**
|
|
18807
|
-
*
|
|
18785
|
+
* You can configure only one of the Creator, Administrator, and Follower parameters.
|
|
18808
18786
|
*
|
|
18809
18787
|
* @param request ListMetaCollectionsRequest
|
|
18810
18788
|
* @return ListMetaCollectionsResponse
|
|
@@ -18919,8 +18897,7 @@ export default class Client extends OpenApi {
|
|
|
18919
18897
|
publishDataServiceApiWithOptions(request: PublishDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<PublishDataServiceApiResponse>;
|
|
18920
18898
|
publishDataServiceApi(request: PublishDataServiceApiRequest): Promise<PublishDataServiceApiResponse>;
|
|
18921
18899
|
/**
|
|
18922
|
-
*
|
|
18923
|
-
* DataWorks allows you to create or update real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
18900
|
+
* The operation that you want to perform.
|
|
18924
18901
|
*
|
|
18925
18902
|
* @param request QueryDISyncTaskConfigProcessResultRequest
|
|
18926
18903
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18928,33 +18905,13 @@ export default class Client extends OpenApi {
|
|
|
18928
18905
|
*/
|
|
18929
18906
|
queryDISyncTaskConfigProcessResultWithOptions(request: QueryDISyncTaskConfigProcessResultRequest, runtime: $Util.RuntimeOptions): Promise<QueryDISyncTaskConfigProcessResultResponse>;
|
|
18930
18907
|
/**
|
|
18931
|
-
*
|
|
18932
|
-
* DataWorks allows you to create or update real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
18908
|
+
* The operation that you want to perform.
|
|
18933
18909
|
*
|
|
18934
18910
|
* @param request QueryDISyncTaskConfigProcessResultRequest
|
|
18935
18911
|
* @return QueryDISyncTaskConfigProcessResultResponse
|
|
18936
18912
|
*/
|
|
18937
18913
|
queryDISyncTaskConfigProcessResult(request: QueryDISyncTaskConfigProcessResultRequest): Promise<QueryDISyncTaskConfigProcessResultResponse>;
|
|
18938
|
-
/**
|
|
18939
|
-
* * You must use FML statements to query information about the data modeling engine when you call this operation.
|
|
18940
|
-
* * The information about the data modeling engine can be queried by page, except for data layers, business processes, and data domains. You can add an offset to the end of an FML statement.
|
|
18941
|
-
* The num LIMIT num statement specifies the offset when the information about the data modeling engine is queried, and the number of pages to return each time. The offset value must be a multiple of the number of pages.
|
|
18942
|
-
* * A maximum of 1,000 entries can be returned each time you call the operation.
|
|
18943
|
-
*
|
|
18944
|
-
* @param request QueryPublicModelEngineRequest
|
|
18945
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
18946
|
-
* @return QueryPublicModelEngineResponse
|
|
18947
|
-
*/
|
|
18948
18914
|
queryPublicModelEngineWithOptions(request: QueryPublicModelEngineRequest, runtime: $Util.RuntimeOptions): Promise<QueryPublicModelEngineResponse>;
|
|
18949
|
-
/**
|
|
18950
|
-
* * You must use FML statements to query information about the data modeling engine when you call this operation.
|
|
18951
|
-
* * The information about the data modeling engine can be queried by page, except for data layers, business processes, and data domains. You can add an offset to the end of an FML statement.
|
|
18952
|
-
* The num LIMIT num statement specifies the offset when the information about the data modeling engine is queried, and the number of pages to return each time. The offset value must be a multiple of the number of pages.
|
|
18953
|
-
* * A maximum of 1,000 entries can be returned each time you call the operation.
|
|
18954
|
-
*
|
|
18955
|
-
* @param request QueryPublicModelEngineRequest
|
|
18956
|
-
* @return QueryPublicModelEngineResponse
|
|
18957
|
-
*/
|
|
18958
18915
|
queryPublicModelEngine(request: QueryPublicModelEngineRequest): Promise<QueryPublicModelEngineResponse>;
|
|
18959
18916
|
removeProjectMemberFromRoleWithOptions(request: RemoveProjectMemberFromRoleRequest, runtime: $Util.RuntimeOptions): Promise<RemoveProjectMemberFromRoleResponse>;
|
|
18960
18917
|
removeProjectMemberFromRole(request: RemoveProjectMemberFromRoleRequest): Promise<RemoveProjectMemberFromRoleResponse>;
|
|
@@ -18992,7 +18949,7 @@ export default class Client extends OpenApi {
|
|
|
18992
18949
|
scanSensitiveDataWithOptions(request: ScanSensitiveDataRequest, runtime: $Util.RuntimeOptions): Promise<ScanSensitiveDataResponse>;
|
|
18993
18950
|
scanSensitiveData(request: ScanSensitiveDataRequest): Promise<ScanSensitiveDataResponse>;
|
|
18994
18951
|
/**
|
|
18995
|
-
*
|
|
18952
|
+
* The operation that you want to perform. Set the value to **SearchMetaTables**.
|
|
18996
18953
|
*
|
|
18997
18954
|
* @param request SearchMetaTablesRequest
|
|
18998
18955
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19000,7 +18957,7 @@ export default class Client extends OpenApi {
|
|
|
19000
18957
|
*/
|
|
19001
18958
|
searchMetaTablesWithOptions(request: SearchMetaTablesRequest, runtime: $Util.RuntimeOptions): Promise<SearchMetaTablesResponse>;
|
|
19002
18959
|
/**
|
|
19003
|
-
*
|
|
18960
|
+
* The operation that you want to perform. Set the value to **SearchMetaTables**.
|
|
19004
18961
|
*
|
|
19005
18962
|
* @param request SearchMetaTablesRequest
|
|
19006
18963
|
* @return SearchMetaTablesResponse
|
|
@@ -19084,7 +19041,7 @@ export default class Client extends OpenApi {
|
|
|
19084
19041
|
*/
|
|
19085
19042
|
updateConnection(request: UpdateConnectionRequest): Promise<UpdateConnectionResponse>;
|
|
19086
19043
|
/**
|
|
19087
|
-
*
|
|
19044
|
+
* The operation that you want to perform. Set the value to **UpdateDIProjectConfig**.
|
|
19088
19045
|
*
|
|
19089
19046
|
* @param request UpdateDIProjectConfigRequest
|
|
19090
19047
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19092,7 +19049,7 @@ export default class Client extends OpenApi {
|
|
|
19092
19049
|
*/
|
|
19093
19050
|
updateDIProjectConfigWithOptions(request: UpdateDIProjectConfigRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDIProjectConfigResponse>;
|
|
19094
19051
|
/**
|
|
19095
|
-
*
|
|
19052
|
+
* The operation that you want to perform. Set the value to **UpdateDIProjectConfig**.
|
|
19096
19053
|
*
|
|
19097
19054
|
* @param request UpdateDIProjectConfigRequest
|
|
19098
19055
|
* @return UpdateDIProjectConfigResponse
|
|
@@ -19126,7 +19083,7 @@ export default class Client extends OpenApi {
|
|
|
19126
19083
|
updateMetaCategoryWithOptions(request: UpdateMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaCategoryResponse>;
|
|
19127
19084
|
updateMetaCategory(request: UpdateMetaCategoryRequest): Promise<UpdateMetaCategoryResponse>;
|
|
19128
19085
|
/**
|
|
19129
|
-
*
|
|
19086
|
+
* You must configure at least one of the Name and Comment parameters when you update a collection.
|
|
19130
19087
|
*
|
|
19131
19088
|
* @param request UpdateMetaCollectionRequest
|
|
19132
19089
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19134,7 +19091,7 @@ export default class Client extends OpenApi {
|
|
|
19134
19091
|
*/
|
|
19135
19092
|
updateMetaCollectionWithOptions(request: UpdateMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaCollectionResponse>;
|
|
19136
19093
|
/**
|
|
19137
|
-
*
|
|
19094
|
+
* You must configure at least one of the Name and Comment parameters when you update a collection.
|
|
19138
19095
|
*
|
|
19139
19096
|
* @param request UpdateMetaCollectionRequest
|
|
19140
19097
|
* @return UpdateMetaCollectionResponse
|