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