tencentcloud-sdk-nodejs-intl-en 3.0.1346 → 3.0.1347
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/package.json +1 -1
- package/tencentcloud/cdb/v20170320/cdb_client.js +13 -0
- package/tencentcloud/cdb/v20170320/models.js +79 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/mdl/v20200326/models.js +14 -7
- package/tencentcloud/vod/v20180717/models.js +25 -19
- package/tencentcloud/wedata/v20250806/models.js +372 -22
- package/tencentcloud/wedata/v20250806/wedata_client.js +17 -2
package/package.json
CHANGED
|
@@ -298,6 +298,7 @@ const ReadonlyNode = models.ReadonlyNode;
|
|
|
298
298
|
const DescribeRemoteBackupConfigResponse = models.DescribeRemoteBackupConfigResponse;
|
|
299
299
|
const AdjustCdbProxyAddressResponse = models.AdjustCdbProxyAddressResponse;
|
|
300
300
|
const CreateAuditLogFileRequest = models.CreateAuditLogFileRequest;
|
|
301
|
+
const DescribeSSLStatusResponse = models.DescribeSSLStatusResponse;
|
|
301
302
|
const DescribeDBImportRecordsRequest = models.DescribeDBImportRecordsRequest;
|
|
302
303
|
const CreateDBImportJobResponse = models.CreateDBImportJobResponse;
|
|
303
304
|
const DescribeTagsOfInstanceIdsRequest = models.DescribeTagsOfInstanceIdsRequest;
|
|
@@ -402,6 +403,7 @@ const DescribeAuditRuleTemplatesRequest = models.DescribeAuditRuleTemplatesReque
|
|
|
402
403
|
const RollbackTables = models.RollbackTables;
|
|
403
404
|
const AuditRuleTemplateInfo = models.AuditRuleTemplateInfo;
|
|
404
405
|
const LocalBinlogConfigDefault = models.LocalBinlogConfigDefault;
|
|
406
|
+
const DescribeSSLStatusRequest = models.DescribeSSLStatusRequest;
|
|
405
407
|
const DescribeSlowLogDataRequest = models.DescribeSlowLogDataRequest;
|
|
406
408
|
const ReleaseIsolatedDBInstancesResponse = models.ReleaseIsolatedDBInstancesResponse;
|
|
407
409
|
const DeleteAuditLogFileRequest = models.DeleteAuditLogFileRequest;
|
|
@@ -1602,6 +1604,17 @@ Note that when modifying account permissions, you need to pass in the full permi
|
|
|
1602
1604
|
this.request("DescribeDBImportRecords", req, resp, cb);
|
|
1603
1605
|
}
|
|
1604
1606
|
|
|
1607
|
+
/**
|
|
1608
|
+
* This API is used to query the SSL enabling status. If the SSL is enabled, the certificate download link will be returned synchronously.
|
|
1609
|
+
* @param {DescribeSSLStatusRequest} req
|
|
1610
|
+
* @param {function(string, DescribeSSLStatusResponse):void} cb
|
|
1611
|
+
* @public
|
|
1612
|
+
*/
|
|
1613
|
+
DescribeSSLStatus(req, cb) {
|
|
1614
|
+
let resp = new DescribeSSLStatusResponse();
|
|
1615
|
+
this.request("DescribeSSLStatus", req, resp, cb);
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1605
1618
|
/**
|
|
1606
1619
|
* This API (DescribeDBSwitchRecords) is used to query the instance switch records.
|
|
1607
1620
|
* @param {DescribeDBSwitchRecordsRequest} req
|
|
@@ -15753,6 +15753,48 @@ class CreateAuditLogFileRequest extends AbstractModel {
|
|
|
15753
15753
|
}
|
|
15754
15754
|
}
|
|
15755
15755
|
|
|
15756
|
+
/**
|
|
15757
|
+
* DescribeSSLStatus response structure.
|
|
15758
|
+
* @class
|
|
15759
|
+
*/
|
|
15760
|
+
class DescribeSSLStatusResponse extends AbstractModel {
|
|
15761
|
+
constructor(){
|
|
15762
|
+
super();
|
|
15763
|
+
|
|
15764
|
+
/**
|
|
15765
|
+
* Whether SSL is enabled. ON indicates enabled; OFF indicates not enabled.
|
|
15766
|
+
* @type {string || null}
|
|
15767
|
+
*/
|
|
15768
|
+
this.Status = null;
|
|
15769
|
+
|
|
15770
|
+
/**
|
|
15771
|
+
* Certificate download link.
|
|
15772
|
+
* @type {string || null}
|
|
15773
|
+
*/
|
|
15774
|
+
this.Url = null;
|
|
15775
|
+
|
|
15776
|
+
/**
|
|
15777
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
15778
|
+
* @type {string || null}
|
|
15779
|
+
*/
|
|
15780
|
+
this.RequestId = null;
|
|
15781
|
+
|
|
15782
|
+
}
|
|
15783
|
+
|
|
15784
|
+
/**
|
|
15785
|
+
* @private
|
|
15786
|
+
*/
|
|
15787
|
+
deserialize(params) {
|
|
15788
|
+
if (!params) {
|
|
15789
|
+
return;
|
|
15790
|
+
}
|
|
15791
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
15792
|
+
this.Url = 'Url' in params ? params.Url : null;
|
|
15793
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
15794
|
+
|
|
15795
|
+
}
|
|
15796
|
+
}
|
|
15797
|
+
|
|
15756
15798
|
/**
|
|
15757
15799
|
* DescribeDBImportRecords request structure.
|
|
15758
15800
|
* @class
|
|
@@ -21104,6 +21146,41 @@ class LocalBinlogConfigDefault extends AbstractModel {
|
|
|
21104
21146
|
}
|
|
21105
21147
|
}
|
|
21106
21148
|
|
|
21149
|
+
/**
|
|
21150
|
+
* DescribeSSLStatus request structure.
|
|
21151
|
+
* @class
|
|
21152
|
+
*/
|
|
21153
|
+
class DescribeSSLStatusRequest extends AbstractModel {
|
|
21154
|
+
constructor(){
|
|
21155
|
+
super();
|
|
21156
|
+
|
|
21157
|
+
/**
|
|
21158
|
+
* Instance ID, which can be obtained through the [DescribeDBInstances](https://www.tencentcloud.com/document/product/236/15872) API. Note: Either the instance ID or read-only group ID parameter needs to be specified. To query the enabling status of the SSL for two-node or three-node instances, you need to specify the instance ID parameter. Single-node (cloud disk) and Cluster Edition instances do not support enabling SSL; thus, queries are not supported.
|
|
21159
|
+
* @type {string || null}
|
|
21160
|
+
*/
|
|
21161
|
+
this.InstanceId = null;
|
|
21162
|
+
|
|
21163
|
+
/**
|
|
21164
|
+
* Read-only group ID, which can be obtained through the [DescribeRoGroups](https://www.tencentcloud.com/document/product/236/35704) API. Note: Either the instance ID or read-only group ID parameter needs to be specified. To query the enabling status of the SSL for read-only instances or groups, you need to specify the RoGroupId parameter. Note that the value should be the read-only group ID. Single-node (cloud disk) and Cluster Edition instances do not support enabling SSL; thus, queries are not supported.
|
|
21165
|
+
* @type {string || null}
|
|
21166
|
+
*/
|
|
21167
|
+
this.RoGroupId = null;
|
|
21168
|
+
|
|
21169
|
+
}
|
|
21170
|
+
|
|
21171
|
+
/**
|
|
21172
|
+
* @private
|
|
21173
|
+
*/
|
|
21174
|
+
deserialize(params) {
|
|
21175
|
+
if (!params) {
|
|
21176
|
+
return;
|
|
21177
|
+
}
|
|
21178
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
21179
|
+
this.RoGroupId = 'RoGroupId' in params ? params.RoGroupId : null;
|
|
21180
|
+
|
|
21181
|
+
}
|
|
21182
|
+
}
|
|
21183
|
+
|
|
21107
21184
|
/**
|
|
21108
21185
|
* DescribeSlowLogData request structure.
|
|
21109
21186
|
* @class
|
|
@@ -21984,6 +22061,7 @@ module.exports = {
|
|
|
21984
22061
|
DescribeRemoteBackupConfigResponse: DescribeRemoteBackupConfigResponse,
|
|
21985
22062
|
AdjustCdbProxyAddressResponse: AdjustCdbProxyAddressResponse,
|
|
21986
22063
|
CreateAuditLogFileRequest: CreateAuditLogFileRequest,
|
|
22064
|
+
DescribeSSLStatusResponse: DescribeSSLStatusResponse,
|
|
21987
22065
|
DescribeDBImportRecordsRequest: DescribeDBImportRecordsRequest,
|
|
21988
22066
|
CreateDBImportJobResponse: CreateDBImportJobResponse,
|
|
21989
22067
|
DescribeTagsOfInstanceIdsRequest: DescribeTagsOfInstanceIdsRequest,
|
|
@@ -22088,6 +22166,7 @@ module.exports = {
|
|
|
22088
22166
|
RollbackTables: RollbackTables,
|
|
22089
22167
|
AuditRuleTemplateInfo: AuditRuleTemplateInfo,
|
|
22090
22168
|
LocalBinlogConfigDefault: LocalBinlogConfigDefault,
|
|
22169
|
+
DescribeSSLStatusRequest: DescribeSSLStatusRequest,
|
|
22091
22170
|
DescribeSlowLogDataRequest: DescribeSlowLogDataRequest,
|
|
22092
22171
|
ReleaseIsolatedDBInstancesResponse: ReleaseIsolatedDBInstancesResponse,
|
|
22093
22172
|
DeleteAuditLogFileRequest: DeleteAuditLogFileRequest,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1347";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -3074,11 +3074,17 @@ class TimedMetadataInfo extends AbstractModel {
|
|
|
3074
3074
|
super();
|
|
3075
3075
|
|
|
3076
3076
|
/**
|
|
3077
|
-
* Base64-encoded
|
|
3077
|
+
* Base64-encoded ID3 metadata information, with a maximum limit of 1024 characters. When both ID3 and Tag have values, the ID3 value takes precedence
|
|
3078
3078
|
* @type {string || null}
|
|
3079
3079
|
*/
|
|
3080
3080
|
this.ID3 = null;
|
|
3081
3081
|
|
|
3082
|
+
/**
|
|
3083
|
+
* Label, the maximum supported length is 1024 characters for the label,
|
|
3084
|
+
* @type {string || null}
|
|
3085
|
+
*/
|
|
3086
|
+
this.Tag = null;
|
|
3087
|
+
|
|
3082
3088
|
}
|
|
3083
3089
|
|
|
3084
3090
|
/**
|
|
@@ -3089,6 +3095,7 @@ class TimedMetadataInfo extends AbstractModel {
|
|
|
3089
3095
|
return;
|
|
3090
3096
|
}
|
|
3091
3097
|
this.ID3 = 'ID3' in params ? params.ID3 : null;
|
|
3098
|
+
this.Tag = 'Tag' in params ? params.Tag : null;
|
|
3092
3099
|
|
|
3093
3100
|
}
|
|
3094
3101
|
}
|
|
@@ -3619,7 +3626,7 @@ class ModifyStreamLiveWatermarkRequest extends AbstractModel {
|
|
|
3619
3626
|
this.TextSettings = null;
|
|
3620
3627
|
|
|
3621
3628
|
/**
|
|
3622
|
-
*
|
|
3629
|
+
*
|
|
3623
3630
|
* @type {AbWatermarkSettingsReq || null}
|
|
3624
3631
|
*/
|
|
3625
3632
|
this.AbWatermarkSettings = null;
|
|
@@ -4675,7 +4682,7 @@ Valid values: 6000, 7000, 8000, 10000, 12000, 14000, 16000, 20000, 24000, 28000,
|
|
|
4675
4682
|
}
|
|
4676
4683
|
|
|
4677
4684
|
/**
|
|
4678
|
-
*
|
|
4685
|
+
*
|
|
4679
4686
|
* @class
|
|
4680
4687
|
*/
|
|
4681
4688
|
class InputTracks extends AbstractModel {
|
|
@@ -5180,7 +5187,7 @@ class CreateStreamLiveChannelRequest extends AbstractModel {
|
|
|
5180
5187
|
}
|
|
5181
5188
|
|
|
5182
5189
|
/**
|
|
5183
|
-
*
|
|
5190
|
+
*
|
|
5184
5191
|
* @class
|
|
5185
5192
|
*/
|
|
5186
5193
|
class MotionGraphicsSetting extends AbstractModel {
|
|
@@ -5865,7 +5872,7 @@ class DescribeStreamLiveChannelAlertsResponse extends AbstractModel {
|
|
|
5865
5872
|
}
|
|
5866
5873
|
|
|
5867
5874
|
/**
|
|
5868
|
-
*
|
|
5875
|
+
*
|
|
5869
5876
|
* @class
|
|
5870
5877
|
*/
|
|
5871
5878
|
class ThumbnailSettings extends AbstractModel {
|
|
@@ -7616,7 +7623,7 @@ class DeleteStreamLiveInputResponse extends AbstractModel {
|
|
|
7616
7623
|
}
|
|
7617
7624
|
|
|
7618
7625
|
/**
|
|
7619
|
-
*
|
|
7626
|
+
*
|
|
7620
7627
|
* @class
|
|
7621
7628
|
*/
|
|
7622
7629
|
class MotionGraphicsActivateSetting extends AbstractModel {
|
|
@@ -7840,7 +7847,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
7840
7847
|
}
|
|
7841
7848
|
|
|
7842
7849
|
/**
|
|
7843
|
-
*
|
|
7850
|
+
*
|
|
7844
7851
|
* @class
|
|
7845
7852
|
*/
|
|
7846
7853
|
class LSqueezeSetting extends AbstractModel {
|
|
@@ -31851,13 +31851,13 @@ class ApplyUploadRequest extends AbstractModel {
|
|
|
31851
31851
|
super();
|
|
31852
31852
|
|
|
31853
31853
|
/**
|
|
31854
|
-
* Media type. For
|
|
31854
|
+
* Media type. For available values, refer to [Upload Capability Summary](https://www.tencentcloud.com/document/product/266/9760?from_cn_redirect=1#.E6.96.87.E4.BB.B6.E7.B1.BB.E5.9E.8B).
|
|
31855
31855
|
* @type {string || null}
|
|
31856
31856
|
*/
|
|
31857
31857
|
this.MediaType = null;
|
|
31858
31858
|
|
|
31859
31859
|
/**
|
|
31860
|
-
* <b>The VOD [application](https://
|
|
31860
|
+
* <b>The VOD [application](https://www.tencentcloud.com/document/product/266/14574?from_cn_redirect=1) ID. For customers who activate VOD service from December 25, 2023, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.</b>
|
|
31861
31861
|
* @type {number || null}
|
|
31862
31862
|
*/
|
|
31863
31863
|
this.SubAppId = null;
|
|
@@ -31869,54 +31869,61 @@ class ApplyUploadRequest extends AbstractModel {
|
|
|
31869
31869
|
this.MediaName = null;
|
|
31870
31870
|
|
|
31871
31871
|
/**
|
|
31872
|
-
* Cover
|
|
31872
|
+
* Cover Type. For available values, refer to [Upload Capability Summary](https://www.tencentcloud.com/document/product/266/9760?from_cn_redirect=1#.E6.96.87.E4.BB.B6.E7.B1.BB.E5.9E.8B).
|
|
31873
31873
|
* @type {string || null}
|
|
31874
31874
|
*/
|
|
31875
31875
|
this.CoverType = null;
|
|
31876
31876
|
|
|
31877
31877
|
/**
|
|
31878
|
-
* Subsequent task
|
|
31878
|
+
* Subsequent media task processing operations allow automatic task initiation after media upload is completed. The parameter value is the task flow template name. VOD supports [creating a task flow template](https://www.tencentcloud.com/document/product/266/33819?from_cn_redirect=1) and template naming.
|
|
31879
31879
|
* @type {string || null}
|
|
31880
31880
|
*/
|
|
31881
31881
|
this.Procedure = null;
|
|
31882
31882
|
|
|
31883
31883
|
/**
|
|
31884
|
-
*
|
|
31884
|
+
* Media file expiry time, format according to ISO 8601 standard representation. See [ISO date format description](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F) for details.
|
|
31885
31885
|
* @type {string || null}
|
|
31886
31886
|
*/
|
|
31887
31887
|
this.ExpireTime = null;
|
|
31888
31888
|
|
|
31889
31889
|
/**
|
|
31890
|
-
*
|
|
31890
|
+
* Designated upload park, applicable only to the user with special requirement for upload target region.
|
|
31891
31891
|
* @type {string || null}
|
|
31892
31892
|
*/
|
|
31893
31893
|
this.StorageRegion = null;
|
|
31894
31894
|
|
|
31895
31895
|
/**
|
|
31896
|
-
* Category ID,
|
|
31897
|
-
<li>Default value: 0,
|
|
31896
|
+
* Category ID, used to categorize and manage media. You can create a category and obtain the category ID via the [create category](https://www.tencentcloud.com/document/product/266/7812?from_cn_redirect=1) API.
|
|
31897
|
+
<li>Default value: 0, indicating other categories.</li>
|
|
31898
31898
|
* @type {number || null}
|
|
31899
31899
|
*/
|
|
31900
31900
|
this.ClassId = null;
|
|
31901
31901
|
|
|
31902
31902
|
/**
|
|
31903
|
-
* Source context,
|
|
31903
|
+
* Source context, used to pass through user request information. The [callback on upload completion](https://www.tencentcloud.com/document/product/266/7830?from_cn_redirect=1) will return the value of this field, up to 250 characters.
|
|
31904
31904
|
* @type {string || null}
|
|
31905
31905
|
*/
|
|
31906
31906
|
this.SourceContext = null;
|
|
31907
31907
|
|
|
31908
31908
|
/**
|
|
31909
|
-
* Session context,
|
|
31909
|
+
* Session context, used for passing through user request information. When specifying the Procedure parameter, the [task flow status change callback](https://www.tencentcloud.com/document/product/266/9636?from_cn_redirect=1) will return the value of this field, with a maximum of 1000 characters.
|
|
31910
31910
|
* @type {string || null}
|
|
31911
31911
|
*/
|
|
31912
31912
|
this.SessionContext = null;
|
|
31913
31913
|
|
|
31914
31914
|
/**
|
|
31915
|
-
* Reserved
|
|
31915
|
+
* Reserved field, used when special purpose.
|
|
31916
31916
|
* @type {string || null}
|
|
31917
31917
|
*/
|
|
31918
31918
|
this.ExtInfo = null;
|
|
31919
31919
|
|
|
31920
|
+
/**
|
|
31921
|
+
* Media storage path, starting with /.
|
|
31922
|
+
Only sub-apps in [FileID + Path mode](https://www.tencentcloud.com/document/product/266/126825?from_cn_redirect=1) can specify the storage path.
|
|
31923
|
+
* @type {string || null}
|
|
31924
|
+
*/
|
|
31925
|
+
this.MediaStoragePath = null;
|
|
31926
|
+
|
|
31920
31927
|
}
|
|
31921
31928
|
|
|
31922
31929
|
/**
|
|
@@ -31937,6 +31944,7 @@ class ApplyUploadRequest extends AbstractModel {
|
|
|
31937
31944
|
this.SourceContext = 'SourceContext' in params ? params.SourceContext : null;
|
|
31938
31945
|
this.SessionContext = 'SessionContext' in params ? params.SessionContext : null;
|
|
31939
31946
|
this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
|
|
31947
|
+
this.MediaStoragePath = 'MediaStoragePath' in params ? params.MediaStoragePath : null;
|
|
31940
31948
|
|
|
31941
31949
|
}
|
|
31942
31950
|
}
|
|
@@ -46154,39 +46162,37 @@ class ApplyUploadResponse extends AbstractModel {
|
|
|
46154
46162
|
super();
|
|
46155
46163
|
|
|
46156
46164
|
/**
|
|
46157
|
-
*
|
|
46165
|
+
* Bucket for uploading the API URL bucket_name.
|
|
46158
46166
|
* @type {string || null}
|
|
46159
46167
|
*/
|
|
46160
46168
|
this.StorageBucket = null;
|
|
46161
46169
|
|
|
46162
46170
|
/**
|
|
46163
|
-
* Storage
|
|
46171
|
+
* Storage campus for uploading the Host Region of the port.
|
|
46164
46172
|
* @type {string || null}
|
|
46165
46173
|
*/
|
|
46166
46174
|
this.StorageRegion = null;
|
|
46167
46175
|
|
|
46168
46176
|
/**
|
|
46169
|
-
* VOD session
|
|
46177
|
+
* VOD session for confirmation of API parameters VodSessionKey.
|
|
46170
46178
|
* @type {string || null}
|
|
46171
46179
|
*/
|
|
46172
46180
|
this.VodSessionKey = null;
|
|
46173
46181
|
|
|
46174
46182
|
/**
|
|
46175
|
-
* Media storage path
|
|
46176
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
46183
|
+
* Media storage path for the object key (Key) used by the upload API to store media.
|
|
46177
46184
|
* @type {string || null}
|
|
46178
46185
|
*/
|
|
46179
46186
|
this.MediaStoragePath = null;
|
|
46180
46187
|
|
|
46181
46188
|
/**
|
|
46182
|
-
* Cover storage path
|
|
46183
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
46189
|
+
* Cover storage path for uploading the object Key of the cover via API.
|
|
46184
46190
|
* @type {string || null}
|
|
46185
46191
|
*/
|
|
46186
46192
|
this.CoverStoragePath = null;
|
|
46187
46193
|
|
|
46188
46194
|
/**
|
|
46189
|
-
* Temporary
|
|
46195
|
+
* Temporary credentials for uploading API permission verification.
|
|
46190
46196
|
* @type {TempCertificate || null}
|
|
46191
46197
|
*/
|
|
46192
46198
|
this.TempCertificate = null;
|
|
@@ -13060,6 +13060,171 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
13060
13060
|
}
|
|
13061
13061
|
}
|
|
13062
13062
|
|
|
13063
|
+
/**
|
|
13064
|
+
* Query job run list returned parameter
|
|
13065
|
+
* @class
|
|
13066
|
+
*/
|
|
13067
|
+
class ListTriggerTaskRunBrief extends AbstractModel {
|
|
13068
|
+
constructor(){
|
|
13069
|
+
super();
|
|
13070
|
+
|
|
13071
|
+
/**
|
|
13072
|
+
* Running ID of the task
|
|
13073
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13074
|
+
* @type {string || null}
|
|
13075
|
+
*/
|
|
13076
|
+
this.ExecutionId = null;
|
|
13077
|
+
|
|
13078
|
+
/**
|
|
13079
|
+
* Workflow ID
|
|
13080
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13081
|
+
* @type {string || null}
|
|
13082
|
+
*/
|
|
13083
|
+
this.WorkflowId = null;
|
|
13084
|
+
|
|
13085
|
+
/**
|
|
13086
|
+
* Running ID of the workflow
|
|
13087
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13088
|
+
* @type {string || null}
|
|
13089
|
+
*/
|
|
13090
|
+
this.WorkflowExecutionId = null;
|
|
13091
|
+
|
|
13092
|
+
/**
|
|
13093
|
+
* Task ID.
|
|
13094
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13095
|
+
* @type {string || null}
|
|
13096
|
+
*/
|
|
13097
|
+
this.TaskId = null;
|
|
13098
|
+
|
|
13099
|
+
/**
|
|
13100
|
+
* Trigger Type
|
|
13101
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13102
|
+
* @type {string || null}
|
|
13103
|
+
*/
|
|
13104
|
+
this.TriggerType = null;
|
|
13105
|
+
|
|
13106
|
+
/**
|
|
13107
|
+
* Waiting duration, in seconds
|
|
13108
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13109
|
+
* @type {string || null}
|
|
13110
|
+
*/
|
|
13111
|
+
this.WaitTime = null;
|
|
13112
|
+
|
|
13113
|
+
/**
|
|
13114
|
+
* Operating Account
|
|
13115
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13116
|
+
* @type {string || null}
|
|
13117
|
+
*/
|
|
13118
|
+
this.ExecuteUserUin = null;
|
|
13119
|
+
|
|
13120
|
+
/**
|
|
13121
|
+
* Planned scheduling time
|
|
13122
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13123
|
+
* @type {string || null}
|
|
13124
|
+
*/
|
|
13125
|
+
this.ScheduleTime = null;
|
|
13126
|
+
|
|
13127
|
+
/**
|
|
13128
|
+
* Start time
|
|
13129
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13130
|
+
* @type {string || null}
|
|
13131
|
+
*/
|
|
13132
|
+
this.ExecutionStartTime = null;
|
|
13133
|
+
|
|
13134
|
+
/**
|
|
13135
|
+
* Running end time
|
|
13136
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13137
|
+
* @type {string || null}
|
|
13138
|
+
*/
|
|
13139
|
+
this.ExecutionEndTime = null;
|
|
13140
|
+
|
|
13141
|
+
/**
|
|
13142
|
+
* Running time
|
|
13143
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13144
|
+
* @type {string || null}
|
|
13145
|
+
*/
|
|
13146
|
+
this.ExecutionTime = null;
|
|
13147
|
+
|
|
13148
|
+
/**
|
|
13149
|
+
* Times of automatic retry
|
|
13150
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13151
|
+
* @type {number || null}
|
|
13152
|
+
*/
|
|
13153
|
+
this.RetryTimes = null;
|
|
13154
|
+
|
|
13155
|
+
/**
|
|
13156
|
+
* Error code description
|
|
13157
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13158
|
+
* @type {string || null}
|
|
13159
|
+
*/
|
|
13160
|
+
this.ErrorCodeStr = null;
|
|
13161
|
+
|
|
13162
|
+
/**
|
|
13163
|
+
* Task name.
|
|
13164
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13165
|
+
* @type {string || null}
|
|
13166
|
+
*/
|
|
13167
|
+
this.TaskName = null;
|
|
13168
|
+
|
|
13169
|
+
/**
|
|
13170
|
+
* Workflow name.
|
|
13171
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13172
|
+
* @type {string || null}
|
|
13173
|
+
*/
|
|
13174
|
+
this.WorkflowName = null;
|
|
13175
|
+
|
|
13176
|
+
/**
|
|
13177
|
+
* Number of manual rerun attempts by the user
|
|
13178
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13179
|
+
* @type {number || null}
|
|
13180
|
+
*/
|
|
13181
|
+
this.RerunTimes = null;
|
|
13182
|
+
|
|
13183
|
+
/**
|
|
13184
|
+
* Task running status
|
|
13185
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13186
|
+
* @type {string || null}
|
|
13187
|
+
*/
|
|
13188
|
+
this.TaskExecutionState = null;
|
|
13189
|
+
|
|
13190
|
+
/**
|
|
13191
|
+
* Whether it is the most recent run
|
|
13192
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13193
|
+
* @type {boolean || null}
|
|
13194
|
+
*/
|
|
13195
|
+
this.IsLatestExecution = null;
|
|
13196
|
+
|
|
13197
|
+
}
|
|
13198
|
+
|
|
13199
|
+
/**
|
|
13200
|
+
* @private
|
|
13201
|
+
*/
|
|
13202
|
+
deserialize(params) {
|
|
13203
|
+
if (!params) {
|
|
13204
|
+
return;
|
|
13205
|
+
}
|
|
13206
|
+
this.ExecutionId = 'ExecutionId' in params ? params.ExecutionId : null;
|
|
13207
|
+
this.WorkflowId = 'WorkflowId' in params ? params.WorkflowId : null;
|
|
13208
|
+
this.WorkflowExecutionId = 'WorkflowExecutionId' in params ? params.WorkflowExecutionId : null;
|
|
13209
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
13210
|
+
this.TriggerType = 'TriggerType' in params ? params.TriggerType : null;
|
|
13211
|
+
this.WaitTime = 'WaitTime' in params ? params.WaitTime : null;
|
|
13212
|
+
this.ExecuteUserUin = 'ExecuteUserUin' in params ? params.ExecuteUserUin : null;
|
|
13213
|
+
this.ScheduleTime = 'ScheduleTime' in params ? params.ScheduleTime : null;
|
|
13214
|
+
this.ExecutionStartTime = 'ExecutionStartTime' in params ? params.ExecutionStartTime : null;
|
|
13215
|
+
this.ExecutionEndTime = 'ExecutionEndTime' in params ? params.ExecutionEndTime : null;
|
|
13216
|
+
this.ExecutionTime = 'ExecutionTime' in params ? params.ExecutionTime : null;
|
|
13217
|
+
this.RetryTimes = 'RetryTimes' in params ? params.RetryTimes : null;
|
|
13218
|
+
this.ErrorCodeStr = 'ErrorCodeStr' in params ? params.ErrorCodeStr : null;
|
|
13219
|
+
this.TaskName = 'TaskName' in params ? params.TaskName : null;
|
|
13220
|
+
this.WorkflowName = 'WorkflowName' in params ? params.WorkflowName : null;
|
|
13221
|
+
this.RerunTimes = 'RerunTimes' in params ? params.RerunTimes : null;
|
|
13222
|
+
this.TaskExecutionState = 'TaskExecutionState' in params ? params.TaskExecutionState : null;
|
|
13223
|
+
this.IsLatestExecution = 'IsLatestExecution' in params ? params.IsLatestExecution : null;
|
|
13224
|
+
|
|
13225
|
+
}
|
|
13226
|
+
}
|
|
13227
|
+
|
|
13063
13228
|
/**
|
|
13064
13229
|
* GetTriggerTask request structure.
|
|
13065
13230
|
* @class
|
|
@@ -16541,43 +16706,48 @@ class StopSQLScriptRunRequest extends AbstractModel {
|
|
|
16541
16706
|
}
|
|
16542
16707
|
|
|
16543
16708
|
/**
|
|
16544
|
-
*
|
|
16709
|
+
* Query workflow results
|
|
16545
16710
|
* @class
|
|
16546
16711
|
*/
|
|
16547
|
-
class
|
|
16712
|
+
class ListTriggerTaskRunResult extends AbstractModel {
|
|
16548
16713
|
constructor(){
|
|
16549
16714
|
super();
|
|
16550
16715
|
|
|
16551
16716
|
/**
|
|
16552
|
-
* Total number of
|
|
16717
|
+
* Total number of records
|
|
16718
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
16553
16719
|
* @type {number || null}
|
|
16554
16720
|
*/
|
|
16555
16721
|
this.TotalCount = null;
|
|
16556
16722
|
|
|
16557
16723
|
/**
|
|
16558
|
-
*
|
|
16724
|
+
* Number of pages.
|
|
16725
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
16559
16726
|
* @type {number || null}
|
|
16560
16727
|
*/
|
|
16561
16728
|
this.TotalPageNumber = null;
|
|
16562
16729
|
|
|
16563
16730
|
/**
|
|
16564
|
-
*
|
|
16565
|
-
|
|
16566
|
-
*/
|
|
16567
|
-
this.Items = null;
|
|
16568
|
-
|
|
16569
|
-
/**
|
|
16570
|
-
* Page number.
|
|
16731
|
+
* Page number
|
|
16732
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
16571
16733
|
* @type {number || null}
|
|
16572
16734
|
*/
|
|
16573
16735
|
this.PageNumber = null;
|
|
16574
16736
|
|
|
16575
16737
|
/**
|
|
16576
|
-
*
|
|
16738
|
+
* Page size.
|
|
16739
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
16577
16740
|
* @type {number || null}
|
|
16578
16741
|
*/
|
|
16579
16742
|
this.PageSize = null;
|
|
16580
16743
|
|
|
16744
|
+
/**
|
|
16745
|
+
* Task running information collection
|
|
16746
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
16747
|
+
* @type {Array.<ListTriggerTaskRunBrief> || null}
|
|
16748
|
+
*/
|
|
16749
|
+
this.Items = null;
|
|
16750
|
+
|
|
16581
16751
|
}
|
|
16582
16752
|
|
|
16583
16753
|
/**
|
|
@@ -16589,17 +16759,17 @@ class TaskInstanceExecutions extends AbstractModel {
|
|
|
16589
16759
|
}
|
|
16590
16760
|
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
16591
16761
|
this.TotalPageNumber = 'TotalPageNumber' in params ? params.TotalPageNumber : null;
|
|
16762
|
+
this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
|
|
16763
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
16592
16764
|
|
|
16593
16765
|
if (params.Items) {
|
|
16594
16766
|
this.Items = new Array();
|
|
16595
16767
|
for (let z in params.Items) {
|
|
16596
|
-
let obj = new
|
|
16768
|
+
let obj = new ListTriggerTaskRunBrief();
|
|
16597
16769
|
obj.deserialize(params.Items[z]);
|
|
16598
16770
|
this.Items.push(obj);
|
|
16599
16771
|
}
|
|
16600
16772
|
}
|
|
16601
|
-
this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
|
|
16602
|
-
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
16603
16773
|
|
|
16604
16774
|
}
|
|
16605
16775
|
}
|
|
@@ -17164,6 +17334,78 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
17164
17334
|
}
|
|
17165
17335
|
}
|
|
17166
17336
|
|
|
17337
|
+
/**
|
|
17338
|
+
* ListTriggerTaskRuns request structure.
|
|
17339
|
+
* @class
|
|
17340
|
+
*/
|
|
17341
|
+
class ListTriggerTaskRunsRequest extends AbstractModel {
|
|
17342
|
+
constructor(){
|
|
17343
|
+
super();
|
|
17344
|
+
|
|
17345
|
+
/**
|
|
17346
|
+
* Project ID.
|
|
17347
|
+
* @type {string || null}
|
|
17348
|
+
*/
|
|
17349
|
+
this.ProjectId = null;
|
|
17350
|
+
|
|
17351
|
+
/**
|
|
17352
|
+
* Filtering parameters: Keyword for task name or ID query, WorkflowId for workflow ID query, FolderId for folder query, InChargeUin for responsible person query, WorkflowExecutionId for workflow execution ID, ExecutionId for task execution ID, TaskId for task ID, ScheduleTimeGreaterEqual / ScheduleTimeLessEqual for planned scheduling time interval
|
|
17353
|
+
* @type {Array.<Filter> || null}
|
|
17354
|
+
*/
|
|
17355
|
+
this.Filters = null;
|
|
17356
|
+
|
|
17357
|
+
/**
|
|
17358
|
+
* Sorting field, sorting field name as follows: start time: CreateTime, end time: EndTime, scheduled dispatch time: ScheduleTime
|
|
17359
|
+
* @type {Array.<OrderField> || null}
|
|
17360
|
+
*/
|
|
17361
|
+
this.OrderFields = null;
|
|
17362
|
+
|
|
17363
|
+
/**
|
|
17364
|
+
* Page number
|
|
17365
|
+
* @type {number || null}
|
|
17366
|
+
*/
|
|
17367
|
+
this.PageNumber = null;
|
|
17368
|
+
|
|
17369
|
+
/**
|
|
17370
|
+
* Page size.
|
|
17371
|
+
* @type {number || null}
|
|
17372
|
+
*/
|
|
17373
|
+
this.PageSize = null;
|
|
17374
|
+
|
|
17375
|
+
}
|
|
17376
|
+
|
|
17377
|
+
/**
|
|
17378
|
+
* @private
|
|
17379
|
+
*/
|
|
17380
|
+
deserialize(params) {
|
|
17381
|
+
if (!params) {
|
|
17382
|
+
return;
|
|
17383
|
+
}
|
|
17384
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
17385
|
+
|
|
17386
|
+
if (params.Filters) {
|
|
17387
|
+
this.Filters = new Array();
|
|
17388
|
+
for (let z in params.Filters) {
|
|
17389
|
+
let obj = new Filter();
|
|
17390
|
+
obj.deserialize(params.Filters[z]);
|
|
17391
|
+
this.Filters.push(obj);
|
|
17392
|
+
}
|
|
17393
|
+
}
|
|
17394
|
+
|
|
17395
|
+
if (params.OrderFields) {
|
|
17396
|
+
this.OrderFields = new Array();
|
|
17397
|
+
for (let z in params.OrderFields) {
|
|
17398
|
+
let obj = new OrderField();
|
|
17399
|
+
obj.deserialize(params.OrderFields[z]);
|
|
17400
|
+
this.OrderFields.push(obj);
|
|
17401
|
+
}
|
|
17402
|
+
}
|
|
17403
|
+
this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
|
|
17404
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
17405
|
+
|
|
17406
|
+
}
|
|
17407
|
+
}
|
|
17408
|
+
|
|
17167
17409
|
/**
|
|
17168
17410
|
* Dependency configuration policy.
|
|
17169
17411
|
* @class
|
|
@@ -27699,6 +27941,46 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
27699
27941
|
}
|
|
27700
27942
|
}
|
|
27701
27943
|
|
|
27944
|
+
/**
|
|
27945
|
+
* PauseOpsTasksAsync response structure.
|
|
27946
|
+
* @class
|
|
27947
|
+
*/
|
|
27948
|
+
class PauseOpsTasksAsyncResponse extends AbstractModel {
|
|
27949
|
+
constructor(){
|
|
27950
|
+
super();
|
|
27951
|
+
|
|
27952
|
+
/**
|
|
27953
|
+
* Asynchronous operation result.
|
|
27954
|
+
* @type {OpsAsyncResponse || null}
|
|
27955
|
+
*/
|
|
27956
|
+
this.Data = null;
|
|
27957
|
+
|
|
27958
|
+
/**
|
|
27959
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
27960
|
+
* @type {string || null}
|
|
27961
|
+
*/
|
|
27962
|
+
this.RequestId = null;
|
|
27963
|
+
|
|
27964
|
+
}
|
|
27965
|
+
|
|
27966
|
+
/**
|
|
27967
|
+
* @private
|
|
27968
|
+
*/
|
|
27969
|
+
deserialize(params) {
|
|
27970
|
+
if (!params) {
|
|
27971
|
+
return;
|
|
27972
|
+
}
|
|
27973
|
+
|
|
27974
|
+
if (params.Data) {
|
|
27975
|
+
let obj = new OpsAsyncResponse();
|
|
27976
|
+
obj.deserialize(params.Data)
|
|
27977
|
+
this.Data = obj;
|
|
27978
|
+
}
|
|
27979
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
27980
|
+
|
|
27981
|
+
}
|
|
27982
|
+
}
|
|
27983
|
+
|
|
27702
27984
|
/**
|
|
27703
27985
|
* DeleteWorkflowPermissions response structure.
|
|
27704
27986
|
* @class
|
|
@@ -28463,16 +28745,16 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
28463
28745
|
}
|
|
28464
28746
|
|
|
28465
28747
|
/**
|
|
28466
|
-
*
|
|
28748
|
+
* ListTriggerTaskRuns response structure.
|
|
28467
28749
|
* @class
|
|
28468
28750
|
*/
|
|
28469
|
-
class
|
|
28751
|
+
class ListTriggerTaskRunsResponse extends AbstractModel {
|
|
28470
28752
|
constructor(){
|
|
28471
28753
|
super();
|
|
28472
28754
|
|
|
28473
28755
|
/**
|
|
28474
|
-
*
|
|
28475
|
-
* @type {
|
|
28756
|
+
* Task run query result
|
|
28757
|
+
* @type {ListTriggerTaskRunResult || null}
|
|
28476
28758
|
*/
|
|
28477
28759
|
this.Data = null;
|
|
28478
28760
|
|
|
@@ -28493,7 +28775,7 @@ class PauseOpsTasksAsyncResponse extends AbstractModel {
|
|
|
28493
28775
|
}
|
|
28494
28776
|
|
|
28495
28777
|
if (params.Data) {
|
|
28496
|
-
let obj = new
|
|
28778
|
+
let obj = new ListTriggerTaskRunResult();
|
|
28497
28779
|
obj.deserialize(params.Data)
|
|
28498
28780
|
this.Data = obj;
|
|
28499
28781
|
}
|
|
@@ -31195,6 +31477,70 @@ class ParamInfo extends AbstractModel {
|
|
|
31195
31477
|
}
|
|
31196
31478
|
}
|
|
31197
31479
|
|
|
31480
|
+
/**
|
|
31481
|
+
* Instance execution list.
|
|
31482
|
+
* @class
|
|
31483
|
+
*/
|
|
31484
|
+
class TaskInstanceExecutions extends AbstractModel {
|
|
31485
|
+
constructor(){
|
|
31486
|
+
super();
|
|
31487
|
+
|
|
31488
|
+
/**
|
|
31489
|
+
* Total number of results
|
|
31490
|
+
* @type {number || null}
|
|
31491
|
+
*/
|
|
31492
|
+
this.TotalCount = null;
|
|
31493
|
+
|
|
31494
|
+
/**
|
|
31495
|
+
* Total pages
|
|
31496
|
+
* @type {number || null}
|
|
31497
|
+
*/
|
|
31498
|
+
this.TotalPageNumber = null;
|
|
31499
|
+
|
|
31500
|
+
/**
|
|
31501
|
+
* Record list
|
|
31502
|
+
* @type {Array.<InstanceExecution> || null}
|
|
31503
|
+
*/
|
|
31504
|
+
this.Items = null;
|
|
31505
|
+
|
|
31506
|
+
/**
|
|
31507
|
+
* Page number.
|
|
31508
|
+
* @type {number || null}
|
|
31509
|
+
*/
|
|
31510
|
+
this.PageNumber = null;
|
|
31511
|
+
|
|
31512
|
+
/**
|
|
31513
|
+
* Pagination size.
|
|
31514
|
+
* @type {number || null}
|
|
31515
|
+
*/
|
|
31516
|
+
this.PageSize = null;
|
|
31517
|
+
|
|
31518
|
+
}
|
|
31519
|
+
|
|
31520
|
+
/**
|
|
31521
|
+
* @private
|
|
31522
|
+
*/
|
|
31523
|
+
deserialize(params) {
|
|
31524
|
+
if (!params) {
|
|
31525
|
+
return;
|
|
31526
|
+
}
|
|
31527
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
31528
|
+
this.TotalPageNumber = 'TotalPageNumber' in params ? params.TotalPageNumber : null;
|
|
31529
|
+
|
|
31530
|
+
if (params.Items) {
|
|
31531
|
+
this.Items = new Array();
|
|
31532
|
+
for (let z in params.Items) {
|
|
31533
|
+
let obj = new InstanceExecution();
|
|
31534
|
+
obj.deserialize(params.Items[z]);
|
|
31535
|
+
this.Items.push(obj);
|
|
31536
|
+
}
|
|
31537
|
+
}
|
|
31538
|
+
this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
|
|
31539
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
31540
|
+
|
|
31541
|
+
}
|
|
31542
|
+
}
|
|
31543
|
+
|
|
31198
31544
|
/**
|
|
31199
31545
|
* Update task object input parameters.
|
|
31200
31546
|
* @class
|
|
@@ -35405,6 +35751,7 @@ module.exports = {
|
|
|
35405
35751
|
AssociateResourceGroupToProjectResponse: AssociateResourceGroupToProjectResponse,
|
|
35406
35752
|
CreateResourceGroupResponse: CreateResourceGroupResponse,
|
|
35407
35753
|
TriggerWorkflowRunBrief: TriggerWorkflowRunBrief,
|
|
35754
|
+
ListTriggerTaskRunBrief: ListTriggerTaskRunBrief,
|
|
35408
35755
|
GetTriggerTaskRequest: GetTriggerTaskRequest,
|
|
35409
35756
|
DeleteSQLScriptRequest: DeleteSQLScriptRequest,
|
|
35410
35757
|
ListTasksResponse: ListTasksResponse,
|
|
@@ -35463,7 +35810,7 @@ module.exports = {
|
|
|
35463
35810
|
CodeStudioFileActionResult: CodeStudioFileActionResult,
|
|
35464
35811
|
CreateResourceFileResponse: CreateResourceFileResponse,
|
|
35465
35812
|
StopSQLScriptRunRequest: StopSQLScriptRunRequest,
|
|
35466
|
-
|
|
35813
|
+
ListTriggerTaskRunResult: ListTriggerTaskRunResult,
|
|
35467
35814
|
ListAlarmRulesResult: ListAlarmRulesResult,
|
|
35468
35815
|
EnableProjectRequest: EnableProjectRequest,
|
|
35469
35816
|
ListTaskInstanceExecutionsResponse: ListTaskInstanceExecutionsResponse,
|
|
@@ -35477,6 +35824,7 @@ module.exports = {
|
|
|
35477
35824
|
CreateCodePermissionsResponse: CreateCodePermissionsResponse,
|
|
35478
35825
|
DisableProjectRequest: DisableProjectRequest,
|
|
35479
35826
|
GetTriggerWorkflowResponse: GetTriggerWorkflowResponse,
|
|
35827
|
+
ListTriggerTaskRunsRequest: ListTriggerTaskRunsRequest,
|
|
35480
35828
|
DependencyStrategyTask: DependencyStrategyTask,
|
|
35481
35829
|
Task: Task,
|
|
35482
35830
|
CreateTaskBaseAttribute: CreateTaskBaseAttribute,
|
|
@@ -35660,6 +36008,7 @@ module.exports = {
|
|
|
35660
36008
|
CreateResourceFileRequest: CreateResourceFileRequest,
|
|
35661
36009
|
WorkflowPermission: WorkflowPermission,
|
|
35662
36010
|
DeleteTaskFolderResponse: DeleteTaskFolderResponse,
|
|
36011
|
+
PauseOpsTasksAsyncResponse: PauseOpsTasksAsyncResponse,
|
|
35663
36012
|
DeleteWorkflowPermissionsResponse: DeleteWorkflowPermissionsResponse,
|
|
35664
36013
|
ListLineagePage: ListLineagePage,
|
|
35665
36014
|
GetOpsAlarmRuleRequest: GetOpsAlarmRuleRequest,
|
|
@@ -35674,7 +36023,7 @@ module.exports = {
|
|
|
35674
36023
|
ParentDependencyConfigPage: ParentDependencyConfigPage,
|
|
35675
36024
|
ListUpstreamOpsTasksResponse: ListUpstreamOpsTasksResponse,
|
|
35676
36025
|
CreateTriggerWorkflowResponse: CreateTriggerWorkflowResponse,
|
|
35677
|
-
|
|
36026
|
+
ListTriggerTaskRunsResponse: ListTriggerTaskRunsResponse,
|
|
35678
36027
|
GetSQLFolderResponse: GetSQLFolderResponse,
|
|
35679
36028
|
LineagePair: LineagePair,
|
|
35680
36029
|
DeleteOpsAlarmRuleResponse: DeleteOpsAlarmRuleResponse,
|
|
@@ -35730,6 +36079,7 @@ module.exports = {
|
|
|
35730
36079
|
SetSuccessTaskInstancesAsyncResponse: SetSuccessTaskInstancesAsyncResponse,
|
|
35731
36080
|
UpdateSQLScriptRequest: UpdateSQLScriptRequest,
|
|
35732
36081
|
ParamInfo: ParamInfo,
|
|
36082
|
+
TaskInstanceExecutions: TaskInstanceExecutions,
|
|
35733
36083
|
UpdateTriggerTaskPart: UpdateTriggerTaskPart,
|
|
35734
36084
|
DeleteTriggerTaskRequest: DeleteTriggerTaskRequest,
|
|
35735
36085
|
DeleteDataSourceResponse: DeleteDataSourceResponse,
|
|
@@ -214,6 +214,7 @@ const RunSQLScriptRequest = models.RunSQLScriptRequest;
|
|
|
214
214
|
const AssociateResourceGroupToProjectResponse = models.AssociateResourceGroupToProjectResponse;
|
|
215
215
|
const CreateResourceGroupResponse = models.CreateResourceGroupResponse;
|
|
216
216
|
const TriggerWorkflowRunBrief = models.TriggerWorkflowRunBrief;
|
|
217
|
+
const ListTriggerTaskRunBrief = models.ListTriggerTaskRunBrief;
|
|
217
218
|
const GetTriggerTaskRequest = models.GetTriggerTaskRequest;
|
|
218
219
|
const DeleteSQLScriptRequest = models.DeleteSQLScriptRequest;
|
|
219
220
|
const ListTasksResponse = models.ListTasksResponse;
|
|
@@ -272,7 +273,7 @@ const DependencyConfigPage = models.DependencyConfigPage;
|
|
|
272
273
|
const CodeStudioFileActionResult = models.CodeStudioFileActionResult;
|
|
273
274
|
const CreateResourceFileResponse = models.CreateResourceFileResponse;
|
|
274
275
|
const StopSQLScriptRunRequest = models.StopSQLScriptRunRequest;
|
|
275
|
-
const
|
|
276
|
+
const ListTriggerTaskRunResult = models.ListTriggerTaskRunResult;
|
|
276
277
|
const ListAlarmRulesResult = models.ListAlarmRulesResult;
|
|
277
278
|
const EnableProjectRequest = models.EnableProjectRequest;
|
|
278
279
|
const ListTaskInstanceExecutionsResponse = models.ListTaskInstanceExecutionsResponse;
|
|
@@ -286,6 +287,7 @@ const CreateWorkflowPermissionsResult = models.CreateWorkflowPermissionsResult;
|
|
|
286
287
|
const CreateCodePermissionsResponse = models.CreateCodePermissionsResponse;
|
|
287
288
|
const DisableProjectRequest = models.DisableProjectRequest;
|
|
288
289
|
const GetTriggerWorkflowResponse = models.GetTriggerWorkflowResponse;
|
|
290
|
+
const ListTriggerTaskRunsRequest = models.ListTriggerTaskRunsRequest;
|
|
289
291
|
const DependencyStrategyTask = models.DependencyStrategyTask;
|
|
290
292
|
const Task = models.Task;
|
|
291
293
|
const CreateTaskBaseAttribute = models.CreateTaskBaseAttribute;
|
|
@@ -469,6 +471,7 @@ const DeleteProjectRequest = models.DeleteProjectRequest;
|
|
|
469
471
|
const CreateResourceFileRequest = models.CreateResourceFileRequest;
|
|
470
472
|
const WorkflowPermission = models.WorkflowPermission;
|
|
471
473
|
const DeleteTaskFolderResponse = models.DeleteTaskFolderResponse;
|
|
474
|
+
const PauseOpsTasksAsyncResponse = models.PauseOpsTasksAsyncResponse;
|
|
472
475
|
const DeleteWorkflowPermissionsResponse = models.DeleteWorkflowPermissionsResponse;
|
|
473
476
|
const ListLineagePage = models.ListLineagePage;
|
|
474
477
|
const GetOpsAlarmRuleRequest = models.GetOpsAlarmRuleRequest;
|
|
@@ -483,7 +486,7 @@ const UpdateOpsAlarmRuleRequest = models.UpdateOpsAlarmRuleRequest;
|
|
|
483
486
|
const ParentDependencyConfigPage = models.ParentDependencyConfigPage;
|
|
484
487
|
const ListUpstreamOpsTasksResponse = models.ListUpstreamOpsTasksResponse;
|
|
485
488
|
const CreateTriggerWorkflowResponse = models.CreateTriggerWorkflowResponse;
|
|
486
|
-
const
|
|
489
|
+
const ListTriggerTaskRunsResponse = models.ListTriggerTaskRunsResponse;
|
|
487
490
|
const GetSQLFolderResponse = models.GetSQLFolderResponse;
|
|
488
491
|
const LineagePair = models.LineagePair;
|
|
489
492
|
const DeleteOpsAlarmRuleResponse = models.DeleteOpsAlarmRuleResponse;
|
|
@@ -539,6 +542,7 @@ const CreateOpsAlarmRuleRequest = models.CreateOpsAlarmRuleRequest;
|
|
|
539
542
|
const SetSuccessTaskInstancesAsyncResponse = models.SetSuccessTaskInstancesAsyncResponse;
|
|
540
543
|
const UpdateSQLScriptRequest = models.UpdateSQLScriptRequest;
|
|
541
544
|
const ParamInfo = models.ParamInfo;
|
|
545
|
+
const TaskInstanceExecutions = models.TaskInstanceExecutions;
|
|
542
546
|
const UpdateTriggerTaskPart = models.UpdateTriggerTaskPart;
|
|
543
547
|
const DeleteTriggerTaskRequest = models.DeleteTriggerTaskRequest;
|
|
544
548
|
const DeleteDataSourceResponse = models.DeleteDataSourceResponse;
|
|
@@ -1360,6 +1364,17 @@ class WedataClient extends AbstractClient {
|
|
|
1360
1364
|
this.request("ListUpstreamTaskInstances", req, resp, cb);
|
|
1361
1365
|
}
|
|
1362
1366
|
|
|
1367
|
+
/**
|
|
1368
|
+
* Query workflow operation
|
|
1369
|
+
* @param {ListTriggerTaskRunsRequest} req
|
|
1370
|
+
* @param {function(string, ListTriggerTaskRunsResponse):void} cb
|
|
1371
|
+
* @public
|
|
1372
|
+
*/
|
|
1373
|
+
ListTriggerTaskRuns(req, cb) {
|
|
1374
|
+
let resp = new ListTriggerTaskRunsResponse();
|
|
1375
|
+
this.request("ListTriggerTaskRuns", req, resp, cb);
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1363
1378
|
/**
|
|
1364
1379
|
* This API is used to retrieve task details.
|
|
1365
1380
|
* @param {GetTaskRequest} req
|