@alicloud/dataworks-public20200518 6.2.0 → 6.2.1
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 +163 -81
- package/dist/client.js +47 -17
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +183 -81
package/src/client.ts
CHANGED
|
@@ -5497,6 +5497,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
5497
5497
|
* false
|
|
5498
5498
|
*/
|
|
5499
5499
|
stop?: boolean;
|
|
5500
|
+
timeout?: number;
|
|
5500
5501
|
static names(): { [key: string]: string } {
|
|
5501
5502
|
return {
|
|
5502
5503
|
advancedSettings: 'AdvancedSettings',
|
|
@@ -5531,6 +5532,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
5531
5532
|
startEffectDate: 'StartEffectDate',
|
|
5532
5533
|
startImmediately: 'StartImmediately',
|
|
5533
5534
|
stop: 'Stop',
|
|
5535
|
+
timeout: 'Timeout',
|
|
5534
5536
|
};
|
|
5535
5537
|
}
|
|
5536
5538
|
|
|
@@ -5568,6 +5570,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
5568
5570
|
startEffectDate: 'number',
|
|
5569
5571
|
startImmediately: 'boolean',
|
|
5570
5572
|
stop: 'boolean',
|
|
5573
|
+
timeout: 'number',
|
|
5571
5574
|
};
|
|
5572
5575
|
}
|
|
5573
5576
|
|
|
@@ -8817,6 +8820,9 @@ export class CreateTableRequest extends $tea.Model {
|
|
|
8817
8820
|
/**
|
|
8818
8821
|
* @remarks
|
|
8819
8822
|
* A reserved parameter.
|
|
8823
|
+
*
|
|
8824
|
+
* @example
|
|
8825
|
+
* reserved
|
|
8820
8826
|
*/
|
|
8821
8827
|
clientToken?: string;
|
|
8822
8828
|
/**
|
|
@@ -8829,6 +8835,9 @@ export class CreateTableRequest extends $tea.Model {
|
|
|
8829
8835
|
/**
|
|
8830
8836
|
* @remarks
|
|
8831
8837
|
* The comment.
|
|
8838
|
+
*
|
|
8839
|
+
* @example
|
|
8840
|
+
* comment
|
|
8832
8841
|
*/
|
|
8833
8842
|
comment?: string;
|
|
8834
8843
|
/**
|
|
@@ -11137,7 +11146,7 @@ export class DeleteFromMetaCategoryResponse extends $tea.Model {
|
|
|
11137
11146
|
export class DeleteLineageRelationRequest extends $tea.Model {
|
|
11138
11147
|
/**
|
|
11139
11148
|
* @remarks
|
|
11140
|
-
*
|
|
11149
|
+
* Destination entity unique identifier
|
|
11141
11150
|
*
|
|
11142
11151
|
* This parameter is required.
|
|
11143
11152
|
*
|
|
@@ -11147,16 +11156,23 @@ export class DeleteLineageRelationRequest extends $tea.Model {
|
|
|
11147
11156
|
destEntityQualifiedName?: string;
|
|
11148
11157
|
/**
|
|
11149
11158
|
* @remarks
|
|
11150
|
-
*
|
|
11159
|
+
* Lineage relationship unique identifier
|
|
11151
11160
|
*
|
|
11152
11161
|
* @example
|
|
11153
11162
|
* dfazcdfdfccdedd
|
|
11154
11163
|
*/
|
|
11155
11164
|
relationshipGuid?: string;
|
|
11165
|
+
/**
|
|
11166
|
+
* @remarks
|
|
11167
|
+
* Relationship type
|
|
11168
|
+
*
|
|
11169
|
+
* @example
|
|
11170
|
+
* sql
|
|
11171
|
+
*/
|
|
11156
11172
|
relationshipType?: string;
|
|
11157
11173
|
/**
|
|
11158
11174
|
* @remarks
|
|
11159
|
-
*
|
|
11175
|
+
* Source entity unique identifier
|
|
11160
11176
|
*
|
|
11161
11177
|
* This parameter is required.
|
|
11162
11178
|
*
|
|
@@ -11190,7 +11206,7 @@ export class DeleteLineageRelationRequest extends $tea.Model {
|
|
|
11190
11206
|
export class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
11191
11207
|
/**
|
|
11192
11208
|
* @remarks
|
|
11193
|
-
*
|
|
11209
|
+
* Error code
|
|
11194
11210
|
*
|
|
11195
11211
|
* @example
|
|
11196
11212
|
* 1010040007
|
|
@@ -11198,7 +11214,7 @@ export class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
11198
11214
|
errorCode?: string;
|
|
11199
11215
|
/**
|
|
11200
11216
|
* @remarks
|
|
11201
|
-
*
|
|
11217
|
+
* Error message
|
|
11202
11218
|
*
|
|
11203
11219
|
* @example
|
|
11204
11220
|
* qualifiedName should be in format as entity-table.entity-guid
|
|
@@ -11206,7 +11222,7 @@ export class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
11206
11222
|
errorMessage?: string;
|
|
11207
11223
|
/**
|
|
11208
11224
|
* @remarks
|
|
11209
|
-
*
|
|
11225
|
+
* HTTP status code
|
|
11210
11226
|
*
|
|
11211
11227
|
* @example
|
|
11212
11228
|
* 200
|
|
@@ -11214,7 +11230,7 @@ export class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
11214
11230
|
httpStatusCode?: number;
|
|
11215
11231
|
/**
|
|
11216
11232
|
* @remarks
|
|
11217
|
-
*
|
|
11233
|
+
* Request ID: used for locating logs and troubleshooting
|
|
11218
11234
|
*
|
|
11219
11235
|
* @example
|
|
11220
11236
|
* 64B-587A-8CED-969E1973887FXXX-TT
|
|
@@ -11222,11 +11238,11 @@ export class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
11222
11238
|
requestId?: string;
|
|
11223
11239
|
/**
|
|
11224
11240
|
* @remarks
|
|
11225
|
-
*
|
|
11241
|
+
* Operation result:
|
|
11226
11242
|
*
|
|
11227
|
-
* true:
|
|
11243
|
+
* true: Success
|
|
11228
11244
|
*
|
|
11229
|
-
* false:
|
|
11245
|
+
* false: Failure
|
|
11230
11246
|
*
|
|
11231
11247
|
* @example
|
|
11232
11248
|
* true
|
|
@@ -11234,11 +11250,11 @@ export class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
11234
11250
|
status?: boolean;
|
|
11235
11251
|
/**
|
|
11236
11252
|
* @remarks
|
|
11237
|
-
*
|
|
11253
|
+
* Whether the call was successful. Values are as follows:
|
|
11238
11254
|
*
|
|
11239
|
-
* true
|
|
11255
|
+
* true: success
|
|
11240
11256
|
*
|
|
11241
|
-
* false
|
|
11257
|
+
* false: failed
|
|
11242
11258
|
*
|
|
11243
11259
|
* @example
|
|
11244
11260
|
* true
|
|
@@ -23478,7 +23494,7 @@ export class GetMetaTableColumnResponse extends $tea.Model {
|
|
|
23478
23494
|
export class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
23479
23495
|
/**
|
|
23480
23496
|
* @remarks
|
|
23481
|
-
* The ID of the
|
|
23497
|
+
* The ID of the EMR cluster. You can log in to the EMR management console to obtain the cluster ID.
|
|
23482
23498
|
*
|
|
23483
23499
|
* @example
|
|
23484
23500
|
* C-010A704DA760****
|
|
@@ -23486,7 +23502,7 @@ export class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
23486
23502
|
clusterId?: string;
|
|
23487
23503
|
/**
|
|
23488
23504
|
* @remarks
|
|
23489
|
-
*
|
|
23505
|
+
* Data type, currently only supports the value `emr`.
|
|
23490
23506
|
*
|
|
23491
23507
|
* @example
|
|
23492
23508
|
* emr
|
|
@@ -23494,7 +23510,7 @@ export class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
23494
23510
|
dataSourceType?: string;
|
|
23495
23511
|
/**
|
|
23496
23512
|
* @remarks
|
|
23497
|
-
* The name of the
|
|
23513
|
+
* The name of the EMR database. You can obtain the database name by calling the [ListMetaDB](https://help.aliyun.com/document_detail/185662.html) interface.
|
|
23498
23514
|
*
|
|
23499
23515
|
* @example
|
|
23500
23516
|
* abc
|
|
@@ -23502,7 +23518,7 @@ export class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
23502
23518
|
databaseName?: string;
|
|
23503
23519
|
/**
|
|
23504
23520
|
* @remarks
|
|
23505
|
-
* The number
|
|
23521
|
+
* The page number requested for pagination.
|
|
23506
23522
|
*
|
|
23507
23523
|
* @example
|
|
23508
23524
|
* 1
|
|
@@ -23510,7 +23526,7 @@ export class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
23510
23526
|
pageNum?: number;
|
|
23511
23527
|
/**
|
|
23512
23528
|
* @remarks
|
|
23513
|
-
* The number of
|
|
23529
|
+
* The number of items per page, with a default of 10 and a maximum of 100.
|
|
23514
23530
|
*
|
|
23515
23531
|
* @example
|
|
23516
23532
|
* 10
|
|
@@ -23518,7 +23534,7 @@ export class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
23518
23534
|
pageSize?: number;
|
|
23519
23535
|
/**
|
|
23520
23536
|
* @remarks
|
|
23521
|
-
* The
|
|
23537
|
+
* The unique identifier of the table. You can obtain the unique identifier by calling the [GetMetaDBTableList](https://help.aliyun.com/document_detail/173916.html) interface.
|
|
23522
23538
|
*
|
|
23523
23539
|
* @example
|
|
23524
23540
|
* odps.engine_name.table_name
|
|
@@ -23526,7 +23542,7 @@ export class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
23526
23542
|
tableGuid?: string;
|
|
23527
23543
|
/**
|
|
23528
23544
|
* @remarks
|
|
23529
|
-
* The name of the
|
|
23545
|
+
* The name of the EMR table. You can obtain the table name by calling the [GetMetaDBTableList](https://help.aliyun.com/document_detail/173916.html) interface.
|
|
23530
23546
|
*
|
|
23531
23547
|
* @example
|
|
23532
23548
|
* abc
|
|
@@ -23564,12 +23580,12 @@ export class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
23564
23580
|
export class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
23565
23581
|
/**
|
|
23566
23582
|
* @remarks
|
|
23567
|
-
*
|
|
23583
|
+
* Business data.
|
|
23568
23584
|
*/
|
|
23569
23585
|
data?: GetMetaTableFullInfoResponseBodyData;
|
|
23570
23586
|
/**
|
|
23571
23587
|
* @remarks
|
|
23572
|
-
*
|
|
23588
|
+
* Error code.
|
|
23573
23589
|
*
|
|
23574
23590
|
* @example
|
|
23575
23591
|
* 1031203110005
|
|
@@ -23577,7 +23593,7 @@ export class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
|
23577
23593
|
errorCode?: string;
|
|
23578
23594
|
/**
|
|
23579
23595
|
* @remarks
|
|
23580
|
-
*
|
|
23596
|
+
* Error message.
|
|
23581
23597
|
*
|
|
23582
23598
|
* @example
|
|
23583
23599
|
* The specified parameters are invalid.
|
|
@@ -23585,7 +23601,7 @@ export class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
|
23585
23601
|
errorMessage?: string;
|
|
23586
23602
|
/**
|
|
23587
23603
|
* @remarks
|
|
23588
|
-
*
|
|
23604
|
+
* HTTP status code.
|
|
23589
23605
|
*
|
|
23590
23606
|
* @example
|
|
23591
23607
|
* 200
|
|
@@ -23593,7 +23609,7 @@ export class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
|
23593
23609
|
httpStatusCode?: number;
|
|
23594
23610
|
/**
|
|
23595
23611
|
* @remarks
|
|
23596
|
-
*
|
|
23612
|
+
* Request ID. Used for locating logs and troubleshooting issues.
|
|
23597
23613
|
*
|
|
23598
23614
|
* @example
|
|
23599
23615
|
* 0bc1411515937****
|
|
@@ -23601,7 +23617,7 @@ export class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
|
23601
23617
|
requestId?: string;
|
|
23602
23618
|
/**
|
|
23603
23619
|
* @remarks
|
|
23604
|
-
*
|
|
23620
|
+
* Whether the call was successful.
|
|
23605
23621
|
*
|
|
23606
23622
|
* @example
|
|
23607
23623
|
* true
|
|
@@ -24615,27 +24631,41 @@ export class GetMetaTablePartitionResponse extends $tea.Model {
|
|
|
24615
24631
|
|
|
24616
24632
|
export class GetMetaTableProducingTasksRequest extends $tea.Model {
|
|
24617
24633
|
/**
|
|
24634
|
+
* @remarks
|
|
24635
|
+
* The ID of the EMR cluster. This parameter takes effect only if the DataSourceType parameter is set to emr.
|
|
24636
|
+
*
|
|
24618
24637
|
* @example
|
|
24619
24638
|
* C-A_SAMPLE_CLUSTER_ID
|
|
24620
24639
|
*/
|
|
24621
24640
|
clusterId?: string;
|
|
24622
24641
|
/**
|
|
24642
|
+
* @remarks
|
|
24643
|
+
* The type of the metatable. Valid values: odps and emr. The value odps indicates that the metatable is a MaxCompute metatable. The value emr indicates that the metatable is an E-MapReduce (EMR) metatable.
|
|
24644
|
+
*
|
|
24623
24645
|
* @example
|
|
24624
24646
|
* odps
|
|
24625
24647
|
*/
|
|
24626
24648
|
dataSourceType?: string;
|
|
24627
24649
|
/**
|
|
24650
|
+
* @remarks
|
|
24651
|
+
* The name of the database.
|
|
24652
|
+
*
|
|
24628
24653
|
* @example
|
|
24629
24654
|
* default
|
|
24630
24655
|
*/
|
|
24631
24656
|
dbName?: string;
|
|
24632
24657
|
/**
|
|
24658
|
+
* @remarks
|
|
24659
|
+
* The name of the schema.
|
|
24660
|
+
*
|
|
24633
24661
|
* @example
|
|
24634
24662
|
* myschema
|
|
24635
24663
|
*/
|
|
24636
24664
|
schemaName?: string;
|
|
24637
24665
|
/**
|
|
24638
24666
|
* @remarks
|
|
24667
|
+
* The GUID of the MaxCompute metatable.
|
|
24668
|
+
*
|
|
24639
24669
|
* This parameter is required.
|
|
24640
24670
|
*
|
|
24641
24671
|
* @example
|
|
@@ -24643,6 +24673,9 @@ export class GetMetaTableProducingTasksRequest extends $tea.Model {
|
|
|
24643
24673
|
*/
|
|
24644
24674
|
tableGuid?: string;
|
|
24645
24675
|
/**
|
|
24676
|
+
* @remarks
|
|
24677
|
+
* The name of the metatable.
|
|
24678
|
+
*
|
|
24646
24679
|
* @example
|
|
24647
24680
|
* sample_table
|
|
24648
24681
|
*/
|
|
@@ -24675,28 +24708,47 @@ export class GetMetaTableProducingTasksRequest extends $tea.Model {
|
|
|
24675
24708
|
}
|
|
24676
24709
|
|
|
24677
24710
|
export class GetMetaTableProducingTasksResponseBody extends $tea.Model {
|
|
24711
|
+
/**
|
|
24712
|
+
* @remarks
|
|
24713
|
+
* The output tasks of the metatable.
|
|
24714
|
+
*/
|
|
24678
24715
|
data?: GetMetaTableProducingTasksResponseBodyData[];
|
|
24679
24716
|
/**
|
|
24717
|
+
* @remarks
|
|
24718
|
+
* The error code.
|
|
24719
|
+
*
|
|
24680
24720
|
* @example
|
|
24681
24721
|
* "0"
|
|
24682
24722
|
*/
|
|
24683
24723
|
errorCode?: string;
|
|
24684
24724
|
/**
|
|
24725
|
+
* @remarks
|
|
24726
|
+
* The error message.
|
|
24727
|
+
*
|
|
24685
24728
|
* @example
|
|
24686
24729
|
* SUCCESS
|
|
24687
24730
|
*/
|
|
24688
24731
|
errorMessage?: string;
|
|
24689
24732
|
/**
|
|
24733
|
+
* @remarks
|
|
24734
|
+
* The HTTP status code returned.
|
|
24735
|
+
*
|
|
24690
24736
|
* @example
|
|
24691
24737
|
* 200
|
|
24692
24738
|
*/
|
|
24693
24739
|
httpStatusCode?: number;
|
|
24694
24740
|
/**
|
|
24741
|
+
* @remarks
|
|
24742
|
+
* The request ID.
|
|
24743
|
+
*
|
|
24695
24744
|
* @example
|
|
24696
24745
|
* 00000-00000-00000-00000
|
|
24697
24746
|
*/
|
|
24698
24747
|
requestId?: string;
|
|
24699
24748
|
/**
|
|
24749
|
+
* @remarks
|
|
24750
|
+
* Indicates whether the request was successful. Valid values: true and false. The value true indicates that the request was successful. The value false indicates that the request failed.
|
|
24751
|
+
*
|
|
24700
24752
|
* @example
|
|
24701
24753
|
* true
|
|
24702
24754
|
*/
|
|
@@ -47330,6 +47382,7 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
47330
47382
|
* false
|
|
47331
47383
|
*/
|
|
47332
47384
|
stop?: boolean;
|
|
47385
|
+
timeout?: number;
|
|
47333
47386
|
static names(): { [key: string]: string } {
|
|
47334
47387
|
return {
|
|
47335
47388
|
advancedSettings: 'AdvancedSettings',
|
|
@@ -47363,6 +47416,7 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
47363
47416
|
startEffectDate: 'StartEffectDate',
|
|
47364
47417
|
startImmediately: 'StartImmediately',
|
|
47365
47418
|
stop: 'Stop',
|
|
47419
|
+
timeout: 'Timeout',
|
|
47366
47420
|
};
|
|
47367
47421
|
}
|
|
47368
47422
|
|
|
@@ -47399,6 +47453,7 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
47399
47453
|
startEffectDate: 'number',
|
|
47400
47454
|
startImmediately: 'boolean',
|
|
47401
47455
|
stop: 'boolean',
|
|
47456
|
+
timeout: 'number',
|
|
47402
47457
|
};
|
|
47403
47458
|
}
|
|
47404
47459
|
|
|
@@ -49497,6 +49552,9 @@ export class UpdateTableRequest extends $tea.Model {
|
|
|
49497
49552
|
/**
|
|
49498
49553
|
* @remarks
|
|
49499
49554
|
* The comment.
|
|
49555
|
+
*
|
|
49556
|
+
* @example
|
|
49557
|
+
* comment
|
|
49500
49558
|
*/
|
|
49501
49559
|
comment?: string;
|
|
49502
49560
|
/**
|
|
@@ -51695,6 +51753,9 @@ export class CreateTableRequestColumns extends $tea.Model {
|
|
|
51695
51753
|
/**
|
|
51696
51754
|
* @remarks
|
|
51697
51755
|
* The display name of the field.
|
|
51756
|
+
*
|
|
51757
|
+
* @example
|
|
51758
|
+
* columnName in chinese
|
|
51698
51759
|
*/
|
|
51699
51760
|
columnNameCn?: string;
|
|
51700
51761
|
/**
|
|
@@ -51710,6 +51771,9 @@ export class CreateTableRequestColumns extends $tea.Model {
|
|
|
51710
51771
|
/**
|
|
51711
51772
|
* @remarks
|
|
51712
51773
|
* The comment of the field.
|
|
51774
|
+
*
|
|
51775
|
+
* @example
|
|
51776
|
+
* comment
|
|
51713
51777
|
*/
|
|
51714
51778
|
comment?: string;
|
|
51715
51779
|
/**
|
|
@@ -60442,6 +60506,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
60442
60506
|
* 4155787800000
|
|
60443
60507
|
*/
|
|
60444
60508
|
endEffectDate?: number;
|
|
60509
|
+
ignoreParentSkipRunningProperty?: string;
|
|
60445
60510
|
/**
|
|
60446
60511
|
* @remarks
|
|
60447
60512
|
* The output names of the parent files on which the current file depends.
|
|
@@ -60546,6 +60611,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
60546
60611
|
* false
|
|
60547
60612
|
*/
|
|
60548
60613
|
stop?: boolean;
|
|
60614
|
+
timeout?: number;
|
|
60549
60615
|
static names(): { [key: string]: string } {
|
|
60550
60616
|
return {
|
|
60551
60617
|
applyScheduleImmediately: 'ApplyScheduleImmediately',
|
|
@@ -60556,6 +60622,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
60556
60622
|
dependentNodeIdList: 'DependentNodeIdList',
|
|
60557
60623
|
dependentType: 'DependentType',
|
|
60558
60624
|
endEffectDate: 'EndEffectDate',
|
|
60625
|
+
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
60559
60626
|
inputList: 'InputList',
|
|
60560
60627
|
inputParameters: 'InputParameters',
|
|
60561
60628
|
outputList: 'OutputList',
|
|
@@ -60567,6 +60634,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
60567
60634
|
startEffectDate: 'StartEffectDate',
|
|
60568
60635
|
startImmediately: 'StartImmediately',
|
|
60569
60636
|
stop: 'Stop',
|
|
60637
|
+
timeout: 'Timeout',
|
|
60570
60638
|
};
|
|
60571
60639
|
}
|
|
60572
60640
|
|
|
@@ -60580,6 +60648,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
60580
60648
|
dependentNodeIdList: 'string',
|
|
60581
60649
|
dependentType: 'string',
|
|
60582
60650
|
endEffectDate: 'number',
|
|
60651
|
+
ignoreParentSkipRunningProperty: 'string',
|
|
60583
60652
|
inputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputList },
|
|
60584
60653
|
inputParameters: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputParameters },
|
|
60585
60654
|
outputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationOutputList },
|
|
@@ -60591,6 +60660,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
60591
60660
|
startEffectDate: 'number',
|
|
60592
60661
|
startImmediately: 'boolean',
|
|
60593
60662
|
stop: 'boolean',
|
|
60663
|
+
timeout: 'number',
|
|
60594
60664
|
};
|
|
60595
60665
|
}
|
|
60596
60666
|
|
|
@@ -61850,6 +61920,11 @@ export class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
61850
61920
|
* kzh
|
|
61851
61921
|
*/
|
|
61852
61922
|
nodeName?: string;
|
|
61923
|
+
/**
|
|
61924
|
+
* @example
|
|
61925
|
+
* 111
|
|
61926
|
+
*/
|
|
61927
|
+
owner?: string;
|
|
61853
61928
|
/**
|
|
61854
61929
|
* @remarks
|
|
61855
61930
|
* The parameters related to the node.
|
|
@@ -61858,6 +61933,11 @@ export class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
61858
61933
|
* bizdate=$bizdate tbods=$tbods tbdw=$tbdw tbpmic=$tbpmic tbpidx=$tbpidx tbptcif=$tbptcif
|
|
61859
61934
|
*/
|
|
61860
61935
|
paramValues?: string;
|
|
61936
|
+
/**
|
|
61937
|
+
* @example
|
|
61938
|
+
* 1
|
|
61939
|
+
*/
|
|
61940
|
+
periodNumber?: number;
|
|
61861
61941
|
/**
|
|
61862
61942
|
* @remarks
|
|
61863
61943
|
* The priority of the instance. Valid values: 1, 3, 5, 7, and 8. A greater value indicates a higher priority. Default value: 1.
|
|
@@ -61957,7 +62037,9 @@ export class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
61957
62037
|
modifyTime: 'ModifyTime',
|
|
61958
62038
|
nodeId: 'NodeId',
|
|
61959
62039
|
nodeName: 'NodeName',
|
|
62040
|
+
owner: 'Owner',
|
|
61960
62041
|
paramValues: 'ParamValues',
|
|
62042
|
+
periodNumber: 'PeriodNumber',
|
|
61961
62043
|
priority: 'Priority',
|
|
61962
62044
|
relatedFlowId: 'RelatedFlowId',
|
|
61963
62045
|
repeatInterval: 'RepeatInterval',
|
|
@@ -61989,7 +62071,9 @@ export class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
61989
62071
|
modifyTime: 'number',
|
|
61990
62072
|
nodeId: 'number',
|
|
61991
62073
|
nodeName: 'string',
|
|
62074
|
+
owner: 'string',
|
|
61992
62075
|
paramValues: 'string',
|
|
62076
|
+
periodNumber: 'number',
|
|
61993
62077
|
priority: 'number',
|
|
61994
62078
|
relatedFlowId: 'number',
|
|
61995
62079
|
repeatInterval: 'number',
|
|
@@ -63802,7 +63886,7 @@ export class GetMetaTableColumnResponseBodyData extends $tea.Model {
|
|
|
63802
63886
|
export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
63803
63887
|
/**
|
|
63804
63888
|
* @remarks
|
|
63805
|
-
* The description of the
|
|
63889
|
+
* The description of the column.
|
|
63806
63890
|
*
|
|
63807
63891
|
* @example
|
|
63808
63892
|
* data comment
|
|
@@ -63810,7 +63894,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
|
63810
63894
|
caption?: string;
|
|
63811
63895
|
/**
|
|
63812
63896
|
* @remarks
|
|
63813
|
-
* The
|
|
63897
|
+
* The unique identifier of the column.
|
|
63814
63898
|
*
|
|
63815
63899
|
* @example
|
|
63816
63900
|
* odps.engine_name.table_name.1
|
|
@@ -63818,7 +63902,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
|
63818
63902
|
columnGuid?: string;
|
|
63819
63903
|
/**
|
|
63820
63904
|
* @remarks
|
|
63821
|
-
* The name of the
|
|
63905
|
+
* The name of the column.
|
|
63822
63906
|
*
|
|
63823
63907
|
* @example
|
|
63824
63908
|
* 1
|
|
@@ -63826,7 +63910,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
|
63826
63910
|
columnName?: string;
|
|
63827
63911
|
/**
|
|
63828
63912
|
* @remarks
|
|
63829
|
-
* The
|
|
63913
|
+
* The type of the column.
|
|
63830
63914
|
*
|
|
63831
63915
|
* @example
|
|
63832
63916
|
* string
|
|
@@ -63834,7 +63918,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
|
63834
63918
|
columnType?: string;
|
|
63835
63919
|
/**
|
|
63836
63920
|
* @remarks
|
|
63837
|
-
* The
|
|
63921
|
+
* The comment for the column.
|
|
63838
63922
|
*
|
|
63839
63923
|
* @example
|
|
63840
63924
|
* comment
|
|
@@ -63842,10 +63926,9 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
|
63842
63926
|
comment?: string;
|
|
63843
63927
|
/**
|
|
63844
63928
|
* @remarks
|
|
63845
|
-
*
|
|
63846
|
-
*
|
|
63847
|
-
*
|
|
63848
|
-
* * false: The field is not a foreign key.
|
|
63929
|
+
* Whether the field is a foreign key, with values as follows:
|
|
63930
|
+
* - true, it is a foreign key.
|
|
63931
|
+
* - false, it is not a foreign key.
|
|
63849
63932
|
*
|
|
63850
63933
|
* @example
|
|
63851
63934
|
* true
|
|
@@ -63853,10 +63936,9 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
|
63853
63936
|
isForeignKey?: boolean;
|
|
63854
63937
|
/**
|
|
63855
63938
|
* @remarks
|
|
63856
|
-
* Indicates whether the
|
|
63857
|
-
*
|
|
63858
|
-
*
|
|
63859
|
-
* * false: The field is not a partition field.
|
|
63939
|
+
* Indicates whether the column is a partition column, with the following values:
|
|
63940
|
+
* - true: It is a partition column.
|
|
63941
|
+
* - false: It is not a partition column.
|
|
63860
63942
|
*
|
|
63861
63943
|
* @example
|
|
63862
63944
|
* true
|
|
@@ -63864,10 +63946,9 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
|
63864
63946
|
isPartitionColumn?: boolean;
|
|
63865
63947
|
/**
|
|
63866
63948
|
* @remarks
|
|
63867
|
-
* Indicates whether the
|
|
63868
|
-
*
|
|
63869
|
-
*
|
|
63870
|
-
* * false: The field is not the primary key.
|
|
63949
|
+
* Indicates whether the column is a primary key, with the following values:
|
|
63950
|
+
* - true: It is a primary key.
|
|
63951
|
+
* - false: It is not a primary key.
|
|
63871
63952
|
*
|
|
63872
63953
|
* @example
|
|
63873
63954
|
* false
|
|
@@ -63875,7 +63956,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
|
63875
63956
|
isPrimaryKey?: boolean;
|
|
63876
63957
|
/**
|
|
63877
63958
|
* @remarks
|
|
63878
|
-
* The
|
|
63959
|
+
* The position of the column in the order.
|
|
63879
63960
|
*
|
|
63880
63961
|
* @example
|
|
63881
63962
|
* 1
|
|
@@ -63925,12 +64006,12 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
63925
64006
|
clusterId?: string;
|
|
63926
64007
|
/**
|
|
63927
64008
|
* @remarks
|
|
63928
|
-
*
|
|
64009
|
+
* A list of columns.
|
|
63929
64010
|
*/
|
|
63930
64011
|
columnList?: GetMetaTableFullInfoResponseBodyDataColumnList[];
|
|
63931
64012
|
/**
|
|
63932
64013
|
* @remarks
|
|
63933
|
-
* The
|
|
64014
|
+
* The comment of the table.
|
|
63934
64015
|
*
|
|
63935
64016
|
* @example
|
|
63936
64017
|
* comment
|
|
@@ -63938,7 +64019,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
63938
64019
|
comment?: string;
|
|
63939
64020
|
/**
|
|
63940
64021
|
* @remarks
|
|
63941
|
-
* The time when the
|
|
64022
|
+
* The time when the table was created. The result is displayed as a timestamp, which you can convert to the corresponding date based on your timezone.
|
|
63942
64023
|
*
|
|
63943
64024
|
* @example
|
|
63944
64025
|
* 1589870293000
|
|
@@ -63946,7 +64027,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
63946
64027
|
createTime?: number;
|
|
63947
64028
|
/**
|
|
63948
64029
|
* @remarks
|
|
63949
|
-
* The
|
|
64030
|
+
* The storage space occupied by the table, in bytes (B).
|
|
63950
64031
|
*
|
|
63951
64032
|
* @example
|
|
63952
64033
|
* 10
|
|
@@ -63962,10 +64043,9 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
63962
64043
|
databaseName?: string;
|
|
63963
64044
|
/**
|
|
63964
64045
|
* @remarks
|
|
63965
|
-
*
|
|
63966
|
-
*
|
|
63967
|
-
*
|
|
63968
|
-
* * 1: indicates that the metatable resides in the production environment.
|
|
64046
|
+
* Environment type, with the following values:
|
|
64047
|
+
* - 0 indicates a table in the development environment.
|
|
64048
|
+
* - 1 indicates a table in the production environment.
|
|
63969
64049
|
*
|
|
63970
64050
|
* @example
|
|
63971
64051
|
* 1
|
|
@@ -63973,12 +64053,11 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
63973
64053
|
envType?: number;
|
|
63974
64054
|
/**
|
|
63975
64055
|
* @remarks
|
|
63976
|
-
*
|
|
63977
|
-
*
|
|
63978
|
-
*
|
|
63979
|
-
*
|
|
63980
|
-
*
|
|
63981
|
-
* * 3: indicates that the metatable is visible only to the metatable owner.
|
|
64056
|
+
* Indicates whether the table is visible, with the following values:
|
|
64057
|
+
* - 0: The table is visible to workspace members.
|
|
64058
|
+
* - 1: The table is visible within the tenant.
|
|
64059
|
+
* - 2: The table is visible across tenants.
|
|
64060
|
+
* - 3: The table is only visible to the responsible person.
|
|
63982
64061
|
*
|
|
63983
64062
|
* @example
|
|
63984
64063
|
* 1
|
|
@@ -63986,7 +64065,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
63986
64065
|
isVisible?: number;
|
|
63987
64066
|
/**
|
|
63988
64067
|
* @remarks
|
|
63989
|
-
* The time
|
|
64068
|
+
* The last time the table was accessed. The result is displayed as a timestamp, which you can convert to the corresponding date based on your timezone.
|
|
63990
64069
|
*
|
|
63991
64070
|
* @example
|
|
63992
64071
|
* 1589870294000
|
|
@@ -63994,7 +64073,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
63994
64073
|
lastAccessTime?: number;
|
|
63995
64074
|
/**
|
|
63996
64075
|
* @remarks
|
|
63997
|
-
* The time
|
|
64076
|
+
* The last time the table structure was changed. The result is displayed as a timestamp, which you can convert to the corresponding date based on your timezone.
|
|
63998
64077
|
*
|
|
63999
64078
|
* @example
|
|
64000
64079
|
* 1589870294000
|
|
@@ -64002,7 +64081,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64002
64081
|
lastDdlTime?: number;
|
|
64003
64082
|
/**
|
|
64004
64083
|
* @remarks
|
|
64005
|
-
* The time
|
|
64084
|
+
* The last time the table was updated. The result is displayed as a timestamp, which you can convert to the corresponding date based on your timezone.
|
|
64006
64085
|
*
|
|
64007
64086
|
* @example
|
|
64008
64087
|
* 1589870294000
|
|
@@ -64010,7 +64089,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64010
64089
|
lastModifyTime?: number;
|
|
64011
64090
|
/**
|
|
64012
64091
|
* @remarks
|
|
64013
|
-
* The lifecycle of the
|
|
64092
|
+
* The lifecycle of the table, in days.
|
|
64014
64093
|
*
|
|
64015
64094
|
* @example
|
|
64016
64095
|
* 5
|
|
@@ -64018,7 +64097,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64018
64097
|
lifeCycle?: number;
|
|
64019
64098
|
/**
|
|
64020
64099
|
* @remarks
|
|
64021
|
-
* The storage
|
|
64100
|
+
* The storage location of the Hive table.
|
|
64022
64101
|
*
|
|
64023
64102
|
* @example
|
|
64024
64103
|
* hdfs://localhost:777/user/hadoop/test.txt
|
|
@@ -64026,7 +64105,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64026
64105
|
location?: string;
|
|
64027
64106
|
/**
|
|
64028
64107
|
* @remarks
|
|
64029
|
-
* The ID of the
|
|
64108
|
+
* The ID of the table owner.
|
|
64030
64109
|
*
|
|
64031
64110
|
* @example
|
|
64032
64111
|
* 123
|
|
@@ -64034,7 +64113,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64034
64113
|
ownerId?: string;
|
|
64035
64114
|
/**
|
|
64036
64115
|
* @remarks
|
|
64037
|
-
*
|
|
64116
|
+
* Partition keys.
|
|
64038
64117
|
*
|
|
64039
64118
|
* @example
|
|
64040
64119
|
* abc
|
|
@@ -64042,7 +64121,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64042
64121
|
partitionKeys?: string;
|
|
64043
64122
|
/**
|
|
64044
64123
|
* @remarks
|
|
64045
|
-
* The ID of the workspace
|
|
64124
|
+
* The ID of the workspace where the table is located.
|
|
64046
64125
|
*
|
|
64047
64126
|
* @example
|
|
64048
64127
|
* 22
|
|
@@ -64050,7 +64129,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64050
64129
|
projectId?: number;
|
|
64051
64130
|
/**
|
|
64052
64131
|
* @remarks
|
|
64053
|
-
* The name of the workspace
|
|
64132
|
+
* The name of the workspace where the table is located.
|
|
64054
64133
|
*
|
|
64055
64134
|
* @example
|
|
64056
64135
|
* test
|
|
@@ -64059,7 +64138,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64059
64138
|
schema?: string;
|
|
64060
64139
|
/**
|
|
64061
64140
|
* @remarks
|
|
64062
|
-
* The
|
|
64141
|
+
* The unique identifier of the table.
|
|
64063
64142
|
*
|
|
64064
64143
|
* @example
|
|
64065
64144
|
* odps.engine_name.table_name
|
|
@@ -64067,7 +64146,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64067
64146
|
tableGuid?: string;
|
|
64068
64147
|
/**
|
|
64069
64148
|
* @remarks
|
|
64070
|
-
* The name of the
|
|
64149
|
+
* The name of the table.
|
|
64071
64150
|
*
|
|
64072
64151
|
* @example
|
|
64073
64152
|
* table_name
|
|
@@ -64075,7 +64154,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64075
64154
|
tableName?: string;
|
|
64076
64155
|
/**
|
|
64077
64156
|
* @remarks
|
|
64078
|
-
* The ID
|
|
64157
|
+
* The tenant ID.
|
|
64079
64158
|
*
|
|
64080
64159
|
* @example
|
|
64081
64160
|
* 12345
|
|
@@ -64083,7 +64162,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
64083
64162
|
tenantId?: number;
|
|
64084
64163
|
/**
|
|
64085
64164
|
* @remarks
|
|
64086
|
-
* The total number of
|
|
64165
|
+
* The total number of columns.
|
|
64087
64166
|
*
|
|
64088
64167
|
* @example
|
|
64089
64168
|
* 22
|
|
@@ -64732,10 +64811,17 @@ export class GetMetaTablePartitionResponseBodyData extends $tea.Model {
|
|
|
64732
64811
|
|
|
64733
64812
|
export class GetMetaTableProducingTasksResponseBodyData extends $tea.Model {
|
|
64734
64813
|
/**
|
|
64814
|
+
* @remarks
|
|
64815
|
+
* The ID of the output task.
|
|
64816
|
+
*
|
|
64735
64817
|
* @example
|
|
64736
64818
|
* 9876543210
|
|
64737
64819
|
*/
|
|
64738
64820
|
taskId?: string;
|
|
64821
|
+
/**
|
|
64822
|
+
* @remarks
|
|
64823
|
+
* The name of the output task.
|
|
64824
|
+
*/
|
|
64739
64825
|
taskName?: string;
|
|
64740
64826
|
static names(): { [key: string]: string } {
|
|
64741
64827
|
return {
|
|
@@ -83732,6 +83818,9 @@ export class UpdateTableRequestColumns extends $tea.Model {
|
|
|
83732
83818
|
/**
|
|
83733
83819
|
* @remarks
|
|
83734
83820
|
* The display name of the field.
|
|
83821
|
+
*
|
|
83822
|
+
* @example
|
|
83823
|
+
* 名称
|
|
83735
83824
|
*/
|
|
83736
83825
|
columnNameCn?: string;
|
|
83737
83826
|
/**
|
|
@@ -83747,6 +83836,9 @@ export class UpdateTableRequestColumns extends $tea.Model {
|
|
|
83747
83836
|
/**
|
|
83748
83837
|
* @remarks
|
|
83749
83838
|
* The comment of the field.
|
|
83839
|
+
*
|
|
83840
|
+
* @example
|
|
83841
|
+
* comment
|
|
83750
83842
|
*/
|
|
83751
83843
|
comment?: string;
|
|
83752
83844
|
/**
|
|
@@ -84171,7 +84263,8 @@ export default class Client extends OpenApi {
|
|
|
84171
84263
|
* Assigns a role to a member of a DataWorks workspace. Before you call this operation, you must add your account to a DataWorks workspace as a member.
|
|
84172
84264
|
*
|
|
84173
84265
|
* @remarks
|
|
84174
|
-
*
|
|
84266
|
+
* For information about how to add an account to a DataWorks workspace as a member, see [Add workspace members and assign roles to them](https://help.aliyun.com/document_detail/136941.html).
|
|
84267
|
+
* * If you assign a built-in workspace-level role to a member of a DataWorks workspace, the member is automatically granted the permissions of the mapped role of the MaxCompute compute engine in the development environment. For more information, see [Appendix: Mappings between the built-in workspace-level roles of DataWorks and the roles of MaxCompute](https://help.aliyun.com/document_detail/449397.html).
|
|
84175
84268
|
*
|
|
84176
84269
|
* @param request - AddProjectMemberToRoleRequest
|
|
84177
84270
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -84217,7 +84310,8 @@ export default class Client extends OpenApi {
|
|
|
84217
84310
|
* Assigns a role to a member of a DataWorks workspace. Before you call this operation, you must add your account to a DataWorks workspace as a member.
|
|
84218
84311
|
*
|
|
84219
84312
|
* @remarks
|
|
84220
|
-
*
|
|
84313
|
+
* For information about how to add an account to a DataWorks workspace as a member, see [Add workspace members and assign roles to them](https://help.aliyun.com/document_detail/136941.html).
|
|
84314
|
+
* * If you assign a built-in workspace-level role to a member of a DataWorks workspace, the member is automatically granted the permissions of the mapped role of the MaxCompute compute engine in the development environment. For more information, see [Appendix: Mappings between the built-in workspace-level roles of DataWorks and the roles of MaxCompute](https://help.aliyun.com/document_detail/449397.html).
|
|
84221
84315
|
*
|
|
84222
84316
|
* @param request - AddProjectMemberToRoleRequest
|
|
84223
84317
|
* @returns AddProjectMemberToRoleResponse
|
|
@@ -85865,6 +85959,10 @@ export default class Client extends OpenApi {
|
|
|
85865
85959
|
body["Stop"] = request.stop;
|
|
85866
85960
|
}
|
|
85867
85961
|
|
|
85962
|
+
if (!Util.isUnset(request.timeout)) {
|
|
85963
|
+
body["Timeout"] = request.timeout;
|
|
85964
|
+
}
|
|
85965
|
+
|
|
85868
85966
|
let req = new $OpenApi.OpenApiRequest({
|
|
85869
85967
|
body: OpenApiUtil.parseToMap(body),
|
|
85870
85968
|
});
|
|
@@ -87978,10 +88076,10 @@ export default class Client extends OpenApi {
|
|
|
87978
88076
|
}
|
|
87979
88077
|
|
|
87980
88078
|
/**
|
|
87981
|
-
*
|
|
88079
|
+
* Delete lineage, supports deleting user-defined lineage relationships
|
|
87982
88080
|
*
|
|
87983
88081
|
* @remarks
|
|
87984
|
-
* This
|
|
88082
|
+
* This API is currently in the trial phase. Users who wish to experience it can apply, and after the administrator adds them to the trial list, they can call this API.
|
|
87985
88083
|
*
|
|
87986
88084
|
* @param request - DeleteLineageRelationRequest
|
|
87987
88085
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -88024,10 +88122,10 @@ export default class Client extends OpenApi {
|
|
|
88024
88122
|
}
|
|
88025
88123
|
|
|
88026
88124
|
/**
|
|
88027
|
-
*
|
|
88125
|
+
* Delete lineage, supports deleting user-defined lineage relationships
|
|
88028
88126
|
*
|
|
88029
88127
|
* @remarks
|
|
88030
|
-
* This
|
|
88128
|
+
* This API is currently in the trial phase. Users who wish to experience it can apply, and after the administrator adds them to the trial list, they can call this API.
|
|
88031
88129
|
*
|
|
88032
88130
|
* @param request - DeleteLineageRelationRequest
|
|
88033
88131
|
* @returns DeleteLineageRelationResponse
|
|
@@ -92216,7 +92314,7 @@ export default class Client extends OpenApi {
|
|
|
92216
92314
|
}
|
|
92217
92315
|
|
|
92218
92316
|
/**
|
|
92219
|
-
*
|
|
92317
|
+
* Invoke the GetMetaTableFullInfo interface to obtain the complete information of a table (including field information).
|
|
92220
92318
|
*
|
|
92221
92319
|
* @param request - GetMetaTableFullInfoRequest
|
|
92222
92320
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -92243,7 +92341,7 @@ export default class Client extends OpenApi {
|
|
|
92243
92341
|
}
|
|
92244
92342
|
|
|
92245
92343
|
/**
|
|
92246
|
-
*
|
|
92344
|
+
* Invoke the GetMetaTableFullInfo interface to obtain the complete information of a table (including field information).
|
|
92247
92345
|
*
|
|
92248
92346
|
* @param request - GetMetaTableFullInfoRequest
|
|
92249
92347
|
* @returns GetMetaTableFullInfoResponse
|
|
@@ -92552,7 +92650,7 @@ export default class Client extends OpenApi {
|
|
|
92552
92650
|
}
|
|
92553
92651
|
|
|
92554
92652
|
/**
|
|
92555
|
-
*
|
|
92653
|
+
* Queries the output tasks of a metatable.
|
|
92556
92654
|
*
|
|
92557
92655
|
* @param request - GetMetaTableProducingTasksRequest
|
|
92558
92656
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -92603,7 +92701,7 @@ export default class Client extends OpenApi {
|
|
|
92603
92701
|
}
|
|
92604
92702
|
|
|
92605
92703
|
/**
|
|
92606
|
-
*
|
|
92704
|
+
* Queries the output tasks of a metatable.
|
|
92607
92705
|
*
|
|
92608
92706
|
* @param request - GetMetaTableProducingTasksRequest
|
|
92609
92707
|
* @returns GetMetaTableProducingTasksResponse
|
|
@@ -100854,6 +100952,10 @@ export default class Client extends OpenApi {
|
|
|
100854
100952
|
body["Stop"] = request.stop;
|
|
100855
100953
|
}
|
|
100856
100954
|
|
|
100955
|
+
if (!Util.isUnset(request.timeout)) {
|
|
100956
|
+
body["Timeout"] = request.timeout;
|
|
100957
|
+
}
|
|
100958
|
+
|
|
100857
100959
|
let req = new $OpenApi.OpenApiRequest({
|
|
100858
100960
|
body: OpenApiUtil.parseToMap(body),
|
|
100859
100961
|
});
|