@alicloud/dataworks-public20200518 6.2.2 → 6.2.3
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 +984 -123
- package/dist/client.js +50 -8
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +998 -123
package/dist/client.js
CHANGED
|
@@ -4351,6 +4351,7 @@ class GetFileResponseBodyDataNodeConfiguration extends $dara.Model {
|
|
|
4351
4351
|
dependentType: 'DependentType',
|
|
4352
4352
|
endEffectDate: 'EndEffectDate',
|
|
4353
4353
|
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
4354
|
+
imageId: 'ImageId',
|
|
4354
4355
|
inputList: 'InputList',
|
|
4355
4356
|
inputParameters: 'InputParameters',
|
|
4356
4357
|
outputList: 'OutputList',
|
|
@@ -4376,6 +4377,7 @@ class GetFileResponseBodyDataNodeConfiguration extends $dara.Model {
|
|
|
4376
4377
|
dependentType: 'string',
|
|
4377
4378
|
endEffectDate: 'number',
|
|
4378
4379
|
ignoreParentSkipRunningProperty: 'string',
|
|
4380
|
+
imageId: 'string',
|
|
4379
4381
|
inputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputList },
|
|
4380
4382
|
inputParameters: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputParameters },
|
|
4381
4383
|
outputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationOutputList },
|
|
@@ -16271,6 +16273,7 @@ class CreateFileRequest extends $dara.Model {
|
|
|
16271
16273
|
fileName: 'FileName',
|
|
16272
16274
|
fileType: 'FileType',
|
|
16273
16275
|
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
16276
|
+
imageId: 'ImageId',
|
|
16274
16277
|
inputList: 'InputList',
|
|
16275
16278
|
inputParameters: 'InputParameters',
|
|
16276
16279
|
outputParameters: 'OutputParameters',
|
|
@@ -16308,6 +16311,7 @@ class CreateFileRequest extends $dara.Model {
|
|
|
16308
16311
|
fileName: 'string',
|
|
16309
16312
|
fileType: 'number',
|
|
16310
16313
|
ignoreParentSkipRunningProperty: 'boolean',
|
|
16314
|
+
imageId: 'string',
|
|
16311
16315
|
inputList: 'string',
|
|
16312
16316
|
inputParameters: 'string',
|
|
16313
16317
|
outputParameters: 'string',
|
|
@@ -39091,6 +39095,7 @@ class UpdateFileRequest extends $dara.Model {
|
|
|
39091
39095
|
fileId: 'FileId',
|
|
39092
39096
|
fileName: 'FileName',
|
|
39093
39097
|
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
39098
|
+
imageId: 'ImageId',
|
|
39094
39099
|
inputList: 'InputList',
|
|
39095
39100
|
inputParameters: 'InputParameters',
|
|
39096
39101
|
outputList: 'OutputList',
|
|
@@ -39127,6 +39132,7 @@ class UpdateFileRequest extends $dara.Model {
|
|
|
39127
39132
|
fileId: 'number',
|
|
39128
39133
|
fileName: 'string',
|
|
39129
39134
|
ignoreParentSkipRunningProperty: 'boolean',
|
|
39135
|
+
imageId: 'string',
|
|
39130
39136
|
inputList: 'string',
|
|
39131
39137
|
inputParameters: 'string',
|
|
39132
39138
|
outputList: 'string',
|
|
@@ -42429,6 +42435,9 @@ class Client extends openapi_core_1.default {
|
|
|
42429
42435
|
if (!$dara.isNull(request.ignoreParentSkipRunningProperty)) {
|
|
42430
42436
|
body["IgnoreParentSkipRunningProperty"] = request.ignoreParentSkipRunningProperty;
|
|
42431
42437
|
}
|
|
42438
|
+
if (!$dara.isNull(request.imageId)) {
|
|
42439
|
+
body["ImageId"] = request.imageId;
|
|
42440
|
+
}
|
|
42432
42441
|
if (!$dara.isNull(request.inputList)) {
|
|
42433
42442
|
body["InputList"] = request.inputList;
|
|
42434
42443
|
}
|
|
@@ -48756,7 +48765,10 @@ class Client extends openapi_core_1.default {
|
|
|
48756
48765
|
return await this.getMetaTableColumnWithOptions(request, runtime);
|
|
48757
48766
|
}
|
|
48758
48767
|
/**
|
|
48759
|
-
*
|
|
48768
|
+
* Queries the complete information about a table, including information about fields in the table.
|
|
48769
|
+
*
|
|
48770
|
+
* @remarks
|
|
48771
|
+
* You can call this operation to query only the information about a table of the E-MapReduce (EMR) compute engine type.
|
|
48760
48772
|
*
|
|
48761
48773
|
* @param request - GetMetaTableFullInfoRequest
|
|
48762
48774
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -48787,7 +48799,10 @@ class Client extends openapi_core_1.default {
|
|
|
48787
48799
|
}
|
|
48788
48800
|
}
|
|
48789
48801
|
/**
|
|
48790
|
-
*
|
|
48802
|
+
* Queries the complete information about a table, including information about fields in the table.
|
|
48803
|
+
*
|
|
48804
|
+
* @remarks
|
|
48805
|
+
* You can call this operation to query only the information about a table of the E-MapReduce (EMR) compute engine type.
|
|
48791
48806
|
*
|
|
48792
48807
|
* @param request - GetMetaTableFullInfoRequest
|
|
48793
48808
|
* @returns GetMetaTableFullInfoResponse
|
|
@@ -49904,6 +49919,8 @@ class Client extends openapi_core_1.default {
|
|
|
49904
49919
|
return await this.getQualityEntityWithOptions(request, runtime);
|
|
49905
49920
|
}
|
|
49906
49921
|
/**
|
|
49922
|
+
* Queries the subscribers of a partition filter expression.
|
|
49923
|
+
*
|
|
49907
49924
|
* @param request - GetQualityFollowerRequest
|
|
49908
49925
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
49909
49926
|
* @returns GetQualityFollowerResponse
|
|
@@ -49942,6 +49959,8 @@ class Client extends openapi_core_1.default {
|
|
|
49942
49959
|
}
|
|
49943
49960
|
}
|
|
49944
49961
|
/**
|
|
49962
|
+
* Queries the subscribers of a partition filter expression.
|
|
49963
|
+
*
|
|
49945
49964
|
* @param request - GetQualityFollowerRequest
|
|
49946
49965
|
* @returns GetQualityFollowerResponse
|
|
49947
49966
|
*/
|
|
@@ -50193,6 +50212,12 @@ class Client extends openapi_core_1.default {
|
|
|
50193
50212
|
return await this.getTopicWithOptions(request, runtime);
|
|
50194
50213
|
}
|
|
50195
50214
|
/**
|
|
50215
|
+
* Queries baseline instances affected by an event.
|
|
50216
|
+
*
|
|
50217
|
+
* @remarks
|
|
50218
|
+
* ## Debugging
|
|
50219
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=dataworks-public\\&api=GetTopicInfluence\\&type=RPC\\&version=2020-05-18)
|
|
50220
|
+
*
|
|
50196
50221
|
* @param request - GetTopicInfluenceRequest
|
|
50197
50222
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
50198
50223
|
* @returns GetTopicInfluenceResponse
|
|
@@ -50225,6 +50250,12 @@ class Client extends openapi_core_1.default {
|
|
|
50225
50250
|
}
|
|
50226
50251
|
}
|
|
50227
50252
|
/**
|
|
50253
|
+
* Queries baseline instances affected by an event.
|
|
50254
|
+
*
|
|
50255
|
+
* @remarks
|
|
50256
|
+
* ## Debugging
|
|
50257
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=dataworks-public\\&api=GetTopicInfluence\\&type=RPC\\&version=2020-05-18)
|
|
50258
|
+
*
|
|
50228
50259
|
* @param request - GetTopicInfluenceRequest
|
|
50229
50260
|
* @returns GetTopicInfluenceResponse
|
|
50230
50261
|
*/
|
|
@@ -50674,7 +50705,7 @@ class Client extends openapi_core_1.default {
|
|
|
50674
50705
|
return await this.listCalcEnginesWithOptions(request, runtime);
|
|
50675
50706
|
}
|
|
50676
50707
|
/**
|
|
50677
|
-
*
|
|
50708
|
+
* Queries the check results of extension point events.
|
|
50678
50709
|
*
|
|
50679
50710
|
* @param request - ListCheckProcessesRequest
|
|
50680
50711
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -50726,7 +50757,7 @@ class Client extends openapi_core_1.default {
|
|
|
50726
50757
|
}
|
|
50727
50758
|
}
|
|
50728
50759
|
/**
|
|
50729
|
-
*
|
|
50760
|
+
* Queries the check results of extension point events.
|
|
50730
50761
|
*
|
|
50731
50762
|
* @param request - ListCheckProcessesRequest
|
|
50732
50763
|
* @returns ListCheckProcessesResponse
|
|
@@ -51923,6 +51954,8 @@ class Client extends openapi_core_1.default {
|
|
|
51923
51954
|
return await this.listFileTypeWithOptions(request, runtime);
|
|
51924
51955
|
}
|
|
51925
51956
|
/**
|
|
51957
|
+
* Queries a list of file versions.
|
|
51958
|
+
*
|
|
51926
51959
|
* @param request - ListFileVersionsRequest
|
|
51927
51960
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
51928
51961
|
* @returns ListFileVersionsResponse
|
|
@@ -51967,6 +52000,8 @@ class Client extends openapi_core_1.default {
|
|
|
51967
52000
|
}
|
|
51968
52001
|
}
|
|
51969
52002
|
/**
|
|
52003
|
+
* Queries a list of file versions.
|
|
52004
|
+
*
|
|
51970
52005
|
* @param request - ListFileVersionsRequest
|
|
51971
52006
|
* @returns ListFileVersionsResponse
|
|
51972
52007
|
*/
|
|
@@ -51975,6 +52010,8 @@ class Client extends openapi_core_1.default {
|
|
|
51975
52010
|
return await this.listFileVersionsWithOptions(request, runtime);
|
|
51976
52011
|
}
|
|
51977
52012
|
/**
|
|
52013
|
+
* Queries a list of files.
|
|
52014
|
+
*
|
|
51978
52015
|
* @param request - ListFilesRequest
|
|
51979
52016
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
51980
52017
|
* @returns ListFilesResponse
|
|
@@ -52046,6 +52083,8 @@ class Client extends openapi_core_1.default {
|
|
|
52046
52083
|
}
|
|
52047
52084
|
}
|
|
52048
52085
|
/**
|
|
52086
|
+
* Queries a list of files.
|
|
52087
|
+
*
|
|
52049
52088
|
* @param request - ListFilesRequest
|
|
52050
52089
|
* @returns ListFilesResponse
|
|
52051
52090
|
*/
|
|
@@ -52269,7 +52308,7 @@ class Client extends openapi_core_1.default {
|
|
|
52269
52308
|
return await this.listInstanceHistoryWithOptions(request, runtime);
|
|
52270
52309
|
}
|
|
52271
52310
|
/**
|
|
52272
|
-
*
|
|
52311
|
+
* Queries a list of instances.
|
|
52273
52312
|
*
|
|
52274
52313
|
* @param request - ListInstancesRequest
|
|
52275
52314
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -52345,7 +52384,7 @@ class Client extends openapi_core_1.default {
|
|
|
52345
52384
|
}
|
|
52346
52385
|
}
|
|
52347
52386
|
/**
|
|
52348
|
-
*
|
|
52387
|
+
* Queries a list of instances.
|
|
52349
52388
|
*
|
|
52350
52389
|
* @param request - ListInstancesRequest
|
|
52351
52390
|
* @returns ListInstancesResponse
|
|
@@ -56581,7 +56620,7 @@ class Client extends openapi_core_1.default {
|
|
|
56581
56620
|
return await this.updateBusinessWithOptions(request, runtime);
|
|
56582
56621
|
}
|
|
56583
56622
|
/**
|
|
56584
|
-
*
|
|
56623
|
+
* Updates the configurations of submodules in a workspace. You can configure SPARK parameters.
|
|
56585
56624
|
*
|
|
56586
56625
|
* @param tmpReq - UpdateClusterConfigsRequest
|
|
56587
56626
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -56631,7 +56670,7 @@ class Client extends openapi_core_1.default {
|
|
|
56631
56670
|
}
|
|
56632
56671
|
}
|
|
56633
56672
|
/**
|
|
56634
|
-
*
|
|
56673
|
+
* Updates the configurations of submodules in a workspace. You can configure SPARK parameters.
|
|
56635
56674
|
*
|
|
56636
56675
|
* @param request - UpdateClusterConfigsRequest
|
|
56637
56676
|
* @returns UpdateClusterConfigsResponse
|
|
@@ -57166,6 +57205,9 @@ class Client extends openapi_core_1.default {
|
|
|
57166
57205
|
if (!$dara.isNull(request.ignoreParentSkipRunningProperty)) {
|
|
57167
57206
|
body["IgnoreParentSkipRunningProperty"] = request.ignoreParentSkipRunningProperty;
|
|
57168
57207
|
}
|
|
57208
|
+
if (!$dara.isNull(request.imageId)) {
|
|
57209
|
+
body["ImageId"] = request.imageId;
|
|
57210
|
+
}
|
|
57169
57211
|
if (!$dara.isNull(request.inputList)) {
|
|
57170
57212
|
body["InputList"] = request.inputList;
|
|
57171
57213
|
}
|