tencentcloud-sdk-nodejs-intl-en 3.0.1153 → 3.0.1155

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.
@@ -2312,6 +2312,46 @@ class SubmitTaskRequest extends AbstractModel {
2312
2312
  }
2313
2313
  }
2314
2314
 
2315
+ /**
2316
+ * ListInstances response structure.
2317
+ * @class
2318
+ */
2319
+ class ListInstancesResponse extends AbstractModel {
2320
+ constructor(){
2321
+ super();
2322
+
2323
+ /**
2324
+ * Instance result set.
2325
+ * @type {InstancePageVO || null}
2326
+ */
2327
+ this.Data = null;
2328
+
2329
+ /**
2330
+ * 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.
2331
+ * @type {string || null}
2332
+ */
2333
+ this.RequestId = null;
2334
+
2335
+ }
2336
+
2337
+ /**
2338
+ * @private
2339
+ */
2340
+ deserialize(params) {
2341
+ if (!params) {
2342
+ return;
2343
+ }
2344
+
2345
+ if (params.Data) {
2346
+ let obj = new InstancePageVO();
2347
+ obj.deserialize(params.Data)
2348
+ this.Data = obj;
2349
+ }
2350
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
2351
+
2352
+ }
2353
+ }
2354
+
2315
2355
  /**
2316
2356
  * DescribeTableMetas request structure.
2317
2357
  * @class
@@ -4149,6 +4189,43 @@ class TablePropertyScore extends AbstractModel {
4149
4189
  }
4150
4190
  }
4151
4191
 
4192
+ /**
4193
+ * Group Robot Subscription Configuration
4194
+ * @class
4195
+ */
4196
+ class SubscribeWebHook extends AbstractModel {
4197
+ constructor(){
4198
+ super();
4199
+
4200
+ /**
4201
+ * Group Robot Type, currently supports Feishu
4202
+ Note: This field may return null, indicating that no valid value can be obtained.
4203
+ * @type {string || null}
4204
+ */
4205
+ this.HookType = null;
4206
+
4207
+ /**
4208
+ * Group Robot Webhook Address, configuration method refer to https://intl.cloud.tencent.com/document/product/1254/70736?from_cn_redirect=1
4209
+ Note: This field may return null, indicating that no valid value can be obtained.
4210
+ * @type {string || null}
4211
+ */
4212
+ this.HookAddress = null;
4213
+
4214
+ }
4215
+
4216
+ /**
4217
+ * @private
4218
+ */
4219
+ deserialize(params) {
4220
+ if (!params) {
4221
+ return;
4222
+ }
4223
+ this.HookType = 'HookType' in params ? params.HookType : null;
4224
+ this.HookAddress = 'HookAddress' in params ? params.HookAddress : null;
4225
+
4226
+ }
4227
+ }
4228
+
4152
4229
  /**
4153
4230
  * GetOfflineInstanceList request structure.
4154
4231
  * @class
@@ -4247,7 +4324,16 @@ class InstanceLifeDetailDto extends AbstractModel {
4247
4324
  super();
4248
4325
 
4249
4326
  /**
4250
- * Instance StatusNote: This field may return null, indicating that no valid value can be obtained.
4327
+ * Indicates the status of an instance.
4328
+ -Indicates waiting for event.
4329
+ -[12] indicates waiting for upstream.
4330
+ -[6, 7, 9, 10, 18] indicates awaiting execution.
4331
+ -1, 19, 22 indicate running.
4332
+ -21: skip running.
4333
+ -[3] indicates retry on failure.
4334
+ -[8, 4, 5, 13] indicates a failure.
4335
+ -[2] indicates a success.
4336
+ Note: This field may return null, indicating that no valid values can be obtained.
4251
4337
  * @type {string || null}
4252
4338
  */
4253
4339
  this.State = null;
@@ -4260,8 +4346,17 @@ Note: This field may return null, indicating that no valid value can be obtained
4260
4346
  this.StartTime = null;
4261
4347
 
4262
4348
  /**
4263
- * Instance Lifecycle Phase Status
4264
- Note: This field may return null, indicating that no valid value can be obtained.
4349
+ * Instance lifecycle phase status.
4350
+
4351
+ -WAIT_UPSTREAM indicates waiting for event/upstream status.
4352
+ -WAIT_RUN indicates a waiting for running status.
4353
+ -RUNNING indicates a running state.
4354
+ -COMPLETE indicates the final state - completed.
4355
+ -FAILED indicates the final state - retry on failure.
4356
+ -EXPIRED indicates the final state - failure.
4357
+ -SKIP_RUNNING indicates the final state - a branch skipped by the upstream branch node.
4358
+ -HISTORY indicates compatibility with historical instances.
4359
+ Note: This field may return null, indicating that no valid values can be obtained.
4265
4360
  * @type {string || null}
4266
4361
  */
4267
4362
  this.DetailState = null;
@@ -6419,24 +6514,255 @@ class RegisterEventRequest extends AbstractModel {
6419
6514
  }
6420
6515
 
6421
6516
  /**
6422
- * DLC table creation attribute
6517
+ * Details of a scheduled instance.
6423
6518
  * @class
6424
6519
  */
6425
- class Property extends AbstractModel {
6520
+ class InstanceDetailVO extends AbstractModel {
6426
6521
  constructor(){
6427
6522
  super();
6428
6523
 
6429
6524
  /**
6430
- * Key Value
6525
+ * Unique id of an instance.
6526
+ Note: This field may return null, indicating that no valid values can be obtained.
6431
6527
  * @type {string || null}
6432
6528
  */
6433
- this.Key = null;
6529
+ this.InstanceKey = null;
6434
6530
 
6435
6531
  /**
6436
- * Value
6532
+ * Project ID.
6533
+
6534
+ Note: This field may return null, indicating that no valid values can be obtained.
6437
6535
  * @type {string || null}
6438
6536
  */
6439
- this.Value = null;
6537
+ this.ProjectId = null;
6538
+
6539
+ /**
6540
+ * Folder ID.
6541
+
6542
+ Note: This field may return null, indicating that no valid values can be obtained.
6543
+ * @type {string || null}
6544
+ */
6545
+ this.FolderId = null;
6546
+
6547
+ /**
6548
+ * Folder name.
6549
+ Note: This field may return null, indicating that no valid values can be obtained.
6550
+ * @type {string || null}
6551
+ */
6552
+ this.FolderName = null;
6553
+
6554
+ /**
6555
+ * Workflow ID.
6556
+ Note: This field may return null, indicating that no valid values can be obtained.
6557
+ * @type {string || null}
6558
+ */
6559
+ this.WorkflowId = null;
6560
+
6561
+ /**
6562
+ * Workflow name.
6563
+ Note: This field may return null, indicating that no valid values can be obtained.
6564
+ * @type {string || null}
6565
+ */
6566
+ this.WorkflowName = null;
6567
+
6568
+ /**
6569
+ * Responsible person list.
6570
+
6571
+ Note: This field may return null, indicating that no valid values can be obtained.
6572
+ * @type {Array.<string> || null}
6573
+ */
6574
+ this.InChargeList = null;
6575
+
6576
+ /**
6577
+ * Task ID
6578
+
6579
+ Note: This field may return null, indicating that no valid values can be obtained.
6580
+ * @type {string || null}
6581
+ */
6582
+ this.TaskId = null;
6583
+
6584
+ /**
6585
+ * Task Name
6586
+
6587
+ Note: This field may return null, indicating that no valid values can be obtained.
6588
+ * @type {string || null}
6589
+ */
6590
+ this.TaskName = null;
6591
+
6592
+ /**
6593
+ * Task cycle type.
6594
+ Support filtering multiple items with an or relationship between conditions.
6595
+ * O: ONEOFF_CYCLE
6596
+ * Y: YEAR_CYCLE
6597
+ * M: MONTH_CYCLE
6598
+ * W: WEEK_CYCLE
6599
+ * D: DAY_CYCLE
6600
+ * H: HOUR_CYCLE
6601
+ * I: MINUTE_CYCLE
6602
+ * C: CRONTAB_CYCLE
6603
+ Note: This field may return null, indicating that no valid values can be obtained.
6604
+ * @type {string || null}
6605
+ */
6606
+ this.TaskCycleType = null;
6607
+
6608
+ /**
6609
+ * Task type
6610
+
6611
+ Note: This field may return null, indicating that no valid values can be obtained.
6612
+ * @type {TaskTypeOpsDto || null}
6613
+ */
6614
+ this.TaskType = null;
6615
+
6616
+ /**
6617
+ * Execution resource group ID.
6618
+ Note: This field may return null, indicating that no valid values can be obtained.
6619
+ * @type {string || null}
6620
+ */
6621
+ this.ExecutorGroupId = null;
6622
+
6623
+ /**
6624
+ * Resource group name
6625
+
6626
+ Note: This field may return null, indicating that no valid values can be obtained.
6627
+ * @type {string || null}
6628
+ */
6629
+ this.ExecutorGroupName = null;
6630
+
6631
+ /**
6632
+ * Standard data time.
6633
+ Note: This field may return null, indicating that no valid values can be obtained.
6634
+ * @type {string || null}
6635
+ */
6636
+ this.CurRunDate = null;
6637
+
6638
+ /**
6639
+ * Next standard data time.
6640
+ Note: This field may return null, indicating that no valid values can be obtained.
6641
+ * @type {string || null}
6642
+ */
6643
+ this.NextCurDate = null;
6644
+
6645
+ /**
6646
+ * Limit on the number of retries issued each time a run fails.
6647
+ Note: This field may return null, indicating that no valid values can be obtained.
6648
+ * @type {number || null}
6649
+ */
6650
+ this.TryLimit = null;
6651
+
6652
+ /**
6653
+ * Current number of issued run attempts.
6654
+ Note: This field may return null, indicating that no valid values can be obtained.
6655
+ * @type {number || null}
6656
+ */
6657
+ this.Tries = null;
6658
+
6659
+ /**
6660
+ * Cumulative running times.
6661
+ Note: This field may return null, indicating that no valid values can be obtained.
6662
+ * @type {number || null}
6663
+ */
6664
+ this.TotalRunNum = null;
6665
+
6666
+ /**
6667
+ * Lifecycle no.
6668
+ Note: This field may return null, indicating that no valid values can be obtained.
6669
+ * @type {number || null}
6670
+ */
6671
+ this.LifeRoundNum = null;
6672
+
6673
+ /**
6674
+ * Instance type.
6675
+
6676
+ -0 indicates the supplementary entry type.
6677
+ -1 indicates a periodic instance.
6678
+ -2 indicates a non-periodic instance.
6679
+ Note: This field may return null, indicating that no valid values can be obtained.
6680
+ * @type {number || null}
6681
+ */
6682
+ this.InstanceType = null;
6683
+
6684
+ /**
6685
+ * Indicates the status of an instance.
6686
+
6687
+ -Indicates waiting for event.
6688
+ -[12] indicates waiting for upstream.
6689
+ -[6, 7, 9, 10, 18] indicates awaiting execution.
6690
+ -1, 19, 22 indicate running.
6691
+ -21: skip running.
6692
+ -[3] indicates retry on failure.
6693
+ -[8, 4, 5, 13] indicates a failure.
6694
+ -[2] indicates a success.
6695
+ Note: This field may return null, indicating that no valid values can be obtained.
6696
+ * @type {number || null}
6697
+ */
6698
+ this.InstanceState = null;
6699
+
6700
+ /**
6701
+ * Planned scheduling time.
6702
+ Note: This field may return null, indicating that no valid values can be obtained.
6703
+ * @type {string || null}
6704
+ */
6705
+ this.SchedulerTime = null;
6706
+
6707
+ /**
6708
+ * Start time of operation.
6709
+ Note: This field may return null, indicating that no valid values can be obtained.
6710
+ * @type {string || null}
6711
+ */
6712
+ this.StartTime = null;
6713
+
6714
+ /**
6715
+ * Indicates the operation completion time.
6716
+ Note: This field may return null, indicating that no valid values can be obtained.
6717
+ * @type {string || null}
6718
+ */
6719
+ this.EndTime = null;
6720
+
6721
+ /**
6722
+ * Time spent.
6723
+ Note: This field may return null, indicating that no valid values can be obtained.
6724
+ * @type {string || null}
6725
+ */
6726
+ this.CostTime = null;
6727
+
6728
+ /**
6729
+ * Instance running trigger type.
6730
+
6731
+ -RERUN indicates rerunning.
6732
+ -ADDITION indicates supplementary recording.
6733
+ -PERIODIC indicates a period.
6734
+ -APERIODIC indicates non-periodic.
6735
+ -RERUN_SKIP_RUN indicates re-run - empty run.
6736
+ -ADDITION_SKIP_RUN indicates a supplementary run - empty run.
6737
+ -PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
6738
+ -APERIODIC_SKIP_RUN indicates a non-periodic empty run.
6739
+ -MANUAL_TRIGGER indicates manual triggering.
6740
+ -RERUN_MANUAL_TRIGGER indicates manual triggering - rerun.
6741
+ Note: This field may return null, indicating that no valid values can be obtained.
6742
+ * @type {string || null}
6743
+ */
6744
+ this.InstanceRunType = null;
6745
+
6746
+ /**
6747
+ * Dispatch execution ID.
6748
+ Note: This field may return null, indicating that no valid values can be obtained.
6749
+ * @type {string || null}
6750
+ */
6751
+ this.ExecutionJobId = null;
6752
+
6753
+ /**
6754
+ * Instance lifecycle list.
6755
+ Note: This field may return null, indicating that no valid values can be obtained.
6756
+ * @type {Array.<InstanceLifeCycleVO> || null}
6757
+ */
6758
+ this.InstanceLifeCycleList = null;
6759
+
6760
+ /**
6761
+ * The last execution log of the instance.
6762
+ Note: This field may return null, indicating that no valid values can be obtained.
6763
+ * @type {InstanceLogVO || null}
6764
+ */
6765
+ this.LatestLog = null;
6440
6766
 
6441
6767
  }
6442
6768
 
@@ -6447,8 +6773,53 @@ class Property extends AbstractModel {
6447
6773
  if (!params) {
6448
6774
  return;
6449
6775
  }
6450
- this.Key = 'Key' in params ? params.Key : null;
6451
- this.Value = 'Value' in params ? params.Value : null;
6776
+ this.InstanceKey = 'InstanceKey' in params ? params.InstanceKey : null;
6777
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
6778
+ this.FolderId = 'FolderId' in params ? params.FolderId : null;
6779
+ this.FolderName = 'FolderName' in params ? params.FolderName : null;
6780
+ this.WorkflowId = 'WorkflowId' in params ? params.WorkflowId : null;
6781
+ this.WorkflowName = 'WorkflowName' in params ? params.WorkflowName : null;
6782
+ this.InChargeList = 'InChargeList' in params ? params.InChargeList : null;
6783
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
6784
+ this.TaskName = 'TaskName' in params ? params.TaskName : null;
6785
+ this.TaskCycleType = 'TaskCycleType' in params ? params.TaskCycleType : null;
6786
+
6787
+ if (params.TaskType) {
6788
+ let obj = new TaskTypeOpsDto();
6789
+ obj.deserialize(params.TaskType)
6790
+ this.TaskType = obj;
6791
+ }
6792
+ this.ExecutorGroupId = 'ExecutorGroupId' in params ? params.ExecutorGroupId : null;
6793
+ this.ExecutorGroupName = 'ExecutorGroupName' in params ? params.ExecutorGroupName : null;
6794
+ this.CurRunDate = 'CurRunDate' in params ? params.CurRunDate : null;
6795
+ this.NextCurDate = 'NextCurDate' in params ? params.NextCurDate : null;
6796
+ this.TryLimit = 'TryLimit' in params ? params.TryLimit : null;
6797
+ this.Tries = 'Tries' in params ? params.Tries : null;
6798
+ this.TotalRunNum = 'TotalRunNum' in params ? params.TotalRunNum : null;
6799
+ this.LifeRoundNum = 'LifeRoundNum' in params ? params.LifeRoundNum : null;
6800
+ this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
6801
+ this.InstanceState = 'InstanceState' in params ? params.InstanceState : null;
6802
+ this.SchedulerTime = 'SchedulerTime' in params ? params.SchedulerTime : null;
6803
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
6804
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
6805
+ this.CostTime = 'CostTime' in params ? params.CostTime : null;
6806
+ this.InstanceRunType = 'InstanceRunType' in params ? params.InstanceRunType : null;
6807
+ this.ExecutionJobId = 'ExecutionJobId' in params ? params.ExecutionJobId : null;
6808
+
6809
+ if (params.InstanceLifeCycleList) {
6810
+ this.InstanceLifeCycleList = new Array();
6811
+ for (let z in params.InstanceLifeCycleList) {
6812
+ let obj = new InstanceLifeCycleVO();
6813
+ obj.deserialize(params.InstanceLifeCycleList[z]);
6814
+ this.InstanceLifeCycleList.push(obj);
6815
+ }
6816
+ }
6817
+
6818
+ if (params.LatestLog) {
6819
+ let obj = new InstanceLogVO();
6820
+ obj.deserialize(params.LatestLog)
6821
+ this.LatestLog = obj;
6822
+ }
6452
6823
 
6453
6824
  }
6454
6825
  }
@@ -8518,6 +8889,85 @@ Note: This field may return null, indicating that no valid value can be obtained
8518
8889
  }
8519
8890
  }
8520
8891
 
8892
+ /**
8893
+ * Instance list pagination entity.
8894
+ * @class
8895
+ */
8896
+ class InstancePageVO extends AbstractModel {
8897
+ constructor(){
8898
+ super();
8899
+
8900
+ /**
8901
+ * Total number of entries.
8902
+ Note: This field may return null, indicating that no valid values can be obtained.
8903
+ * @type {number || null}
8904
+ */
8905
+ this.TotalCount = null;
8906
+
8907
+ /**
8908
+ * Total number of pages.
8909
+ Note: This field may return null, indicating that no valid values can be obtained.
8910
+ * @type {number || null}
8911
+ */
8912
+ this.TotalPage = null;
8913
+
8914
+ /**
8915
+ * Page number
8916
+
8917
+ Note: This field may return null, indicating that no valid values can be obtained.
8918
+ * @type {number || null}
8919
+ */
8920
+ this.PageNumber = null;
8921
+
8922
+ /**
8923
+ * Entries per page.
8924
+ Note: This field may return null, indicating that no valid values can be obtained.
8925
+ * @type {number || null}
8926
+ */
8927
+ this.PageSize = null;
8928
+
8929
+ /**
8930
+ * Total number of pages.
8931
+ Note: This field may return null, indicating that no valid values can be obtained.
8932
+ * @type {number || null}
8933
+ */
8934
+ this.PageCount = null;
8935
+
8936
+ /**
8937
+ * Data List
8938
+
8939
+ Note: This field may return null, indicating that no valid values can be obtained.
8940
+ * @type {Array.<InstanceVO> || null}
8941
+ */
8942
+ this.Items = null;
8943
+
8944
+ }
8945
+
8946
+ /**
8947
+ * @private
8948
+ */
8949
+ deserialize(params) {
8950
+ if (!params) {
8951
+ return;
8952
+ }
8953
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
8954
+ this.TotalPage = 'TotalPage' in params ? params.TotalPage : null;
8955
+ this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
8956
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
8957
+ this.PageCount = 'PageCount' in params ? params.PageCount : null;
8958
+
8959
+ if (params.Items) {
8960
+ this.Items = new Array();
8961
+ for (let z in params.Items) {
8962
+ let obj = new InstanceVO();
8963
+ obj.deserialize(params.Items[z]);
8964
+ this.Items.push(obj);
8965
+ }
8966
+ }
8967
+
8968
+ }
8969
+ }
8970
+
8521
8971
  /**
8522
8972
  * Instance List Structure
8523
8973
  * @class
@@ -9553,6 +10003,162 @@ class BatchResult extends AbstractModel {
9553
10003
  }
9554
10004
  }
9555
10005
 
10006
+ /**
10007
+ * Instance log content.
10008
+ * @class
10009
+ */
10010
+ class InstanceLogVO extends AbstractModel {
10011
+ constructor(){
10012
+ super();
10013
+
10014
+ /**
10015
+ * Unique id of an instance.
10016
+ Note: This field may return null, indicating that no valid values can be obtained.
10017
+ * @type {string || null}
10018
+ */
10019
+ this.InstanceKey = null;
10020
+
10021
+ /**
10022
+ * Project ID.
10023
+
10024
+ Note: This field may return null, indicating that no valid values can be obtained.
10025
+ * @type {string || null}
10026
+ */
10027
+ this.ProjectId = null;
10028
+
10029
+ /**
10030
+ * **Instance status**.
10031
+
10032
+ -Indicates waiting for event.
10033
+ -[12] indicates waiting for upstream.
10034
+ -[6, 7, 9, 10, 18] indicates awaiting execution.
10035
+ -1, 19, 22 indicate running.
10036
+ -21: skip running.
10037
+ -[3] indicates retry on failure.
10038
+ -[8, 4, 5, 13] indicates a failure.
10039
+ -[2] indicates a success.
10040
+ Note: This field may return null, indicating that no valid values can be obtained.
10041
+ * @type {number || null}
10042
+ */
10043
+ this.InstanceState = null;
10044
+
10045
+ /**
10046
+ * Instance running trigger type.
10047
+
10048
+ -RERUN indicates rerunning.
10049
+ -ADDITION indicates supplementary recording.
10050
+ -PERIODIC indicates a period.
10051
+ -APERIODIC indicates non-periodic.
10052
+ -RERUN_SKIP_RUN means empty run for re-run.
10053
+ -ADDITION_SKIP_RUN indicates a supplementary run - empty run.
10054
+ -PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
10055
+ -APERIODIC_SKIP_RUN indicates a non-periodic empty run.
10056
+ -MANUAL_TRIGGER indicates manual triggering.
10057
+ -RERUN_MANUAL_TRIGGER indicates manual triggering - rerun.
10058
+ Note: This field may return null, indicating that no valid values can be obtained.
10059
+ * @type {string || null}
10060
+ */
10061
+ this.RunType = null;
10062
+
10063
+ /**
10064
+ * Start time of running.
10065
+ Note: This field may return null, indicating that no valid values can be obtained.
10066
+ * @type {string || null}
10067
+ */
10068
+ this.StartTime = null;
10069
+
10070
+ /**
10071
+ * Indicates the operation completion time.
10072
+ Note: This field may return null, indicating that no valid values can be obtained.
10073
+ * @type {string || null}
10074
+ */
10075
+ this.EndTime = null;
10076
+
10077
+ /**
10078
+ * Run code content.
10079
+ Note: This field may return null, indicating that no valid values can be obtained.
10080
+ * @type {string || null}
10081
+ */
10082
+ this.CodeInfo = null;
10083
+
10084
+ /**
10085
+ * File size for running code.
10086
+ Unit: KB.
10087
+ Note: This field may return null, indicating that no valid values can be obtained.
10088
+ * @type {string || null}
10089
+ */
10090
+ this.CodeFileSize = null;
10091
+
10092
+ /**
10093
+ * Log node information.
10094
+ Note: This field may return null, indicating that no valid values can be obtained.
10095
+ * @type {string || null}
10096
+ */
10097
+ this.BrokerIp = null;
10098
+
10099
+ /**
10100
+ * Log content.
10101
+ Note: This field may return null, indicating that no valid values can be obtained.
10102
+ * @type {string || null}
10103
+ */
10104
+ this.LogInfo = null;
10105
+
10106
+ /**
10107
+ * Log file size.
10108
+ KB.
10109
+ Note: This field may return null, indicating that no valid values can be obtained.
10110
+ * @type {string || null}
10111
+ */
10112
+ this.LogFileSize = null;
10113
+
10114
+ /**
10115
+ * Row count of returned logs this time.
10116
+ Note: This field may return null, indicating that no valid values can be obtained.
10117
+ * @type {number || null}
10118
+ */
10119
+ this.LineCount = null;
10120
+
10121
+ /**
10122
+ * Execute platform log pagination query parameters, transparently input for each request. the value is an empty string when querying the first page.
10123
+ Note: This field may return null, indicating that no valid values can be obtained.
10124
+ * @type {string || null}
10125
+ */
10126
+ this.ExtInfo = null;
10127
+
10128
+ /**
10129
+ * Paging query for logs. indicates whether it is the last page.
10130
+ Note: This field may return null, indicating that no valid values can be obtained.
10131
+ * @type {boolean || null}
10132
+ */
10133
+ this.IsEnd = null;
10134
+
10135
+ }
10136
+
10137
+ /**
10138
+ * @private
10139
+ */
10140
+ deserialize(params) {
10141
+ if (!params) {
10142
+ return;
10143
+ }
10144
+ this.InstanceKey = 'InstanceKey' in params ? params.InstanceKey : null;
10145
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
10146
+ this.InstanceState = 'InstanceState' in params ? params.InstanceState : null;
10147
+ this.RunType = 'RunType' in params ? params.RunType : null;
10148
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
10149
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
10150
+ this.CodeInfo = 'CodeInfo' in params ? params.CodeInfo : null;
10151
+ this.CodeFileSize = 'CodeFileSize' in params ? params.CodeFileSize : null;
10152
+ this.BrokerIp = 'BrokerIp' in params ? params.BrokerIp : null;
10153
+ this.LogInfo = 'LogInfo' in params ? params.LogInfo : null;
10154
+ this.LogFileSize = 'LogFileSize' in params ? params.LogFileSize : null;
10155
+ this.LineCount = 'LineCount' in params ? params.LineCount : null;
10156
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
10157
+ this.IsEnd = 'IsEnd' in params ? params.IsEnd : null;
10158
+
10159
+ }
10160
+ }
10161
+
9556
10162
  /**
9557
10163
  * Batch Run Integration Task Configuration
9558
10164
  * @class
@@ -16881,6 +17487,41 @@ Note: This field may return null, indicating that no valid value can be obtained
16881
17487
  }
16882
17488
  }
16883
17489
 
17490
+ /**
17491
+ * DLC table creation attribute
17492
+ * @class
17493
+ */
17494
+ class Property extends AbstractModel {
17495
+ constructor(){
17496
+ super();
17497
+
17498
+ /**
17499
+ * Key Value
17500
+ * @type {string || null}
17501
+ */
17502
+ this.Key = null;
17503
+
17504
+ /**
17505
+ * Value
17506
+ * @type {string || null}
17507
+ */
17508
+ this.Value = null;
17509
+
17510
+ }
17511
+
17512
+ /**
17513
+ * @private
17514
+ */
17515
+ deserialize(params) {
17516
+ if (!params) {
17517
+ return;
17518
+ }
17519
+ this.Key = 'Key' in params ? params.Key : null;
17520
+ this.Value = 'Value' in params ? params.Value : null;
17521
+
17522
+ }
17523
+ }
17524
+
16884
17525
  /**
16885
17526
  * ModifyRuleTemplate request structure.
16886
17527
  * @class
@@ -17142,26 +17783,25 @@ Note: This field may return null, indicating that no valid value can be obtained
17142
17783
  }
17143
17784
 
17144
17785
  /**
17145
- * Group Robot Subscription Configuration
17786
+ * GetInstanceLog response structure.
17146
17787
  * @class
17147
17788
  */
17148
- class SubscribeWebHook extends AbstractModel {
17789
+ class GetInstanceLogResponse extends AbstractModel {
17149
17790
  constructor(){
17150
17791
  super();
17151
17792
 
17152
17793
  /**
17153
- * Group Robot Type, currently supports Feishu
17154
- Note: This field may return null, indicating that no valid value can be obtained.
17155
- * @type {string || null}
17794
+ * Scheduling instance details.
17795
+ Note: This field may return null, indicating that no valid values can be obtained.
17796
+ * @type {InstanceLogVO || null}
17156
17797
  */
17157
- this.HookType = null;
17798
+ this.Data = null;
17158
17799
 
17159
17800
  /**
17160
- * Group Robot Webhook Address, configuration method refer to https://intl.cloud.tencent.com/document/product/1254/70736?from_cn_redirect=1
17161
- Note: This field may return null, indicating that no valid value can be obtained.
17801
+ * 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.
17162
17802
  * @type {string || null}
17163
17803
  */
17164
- this.HookAddress = null;
17804
+ this.RequestId = null;
17165
17805
 
17166
17806
  }
17167
17807
 
@@ -17172,8 +17812,13 @@ Note: This field may return null, indicating that no valid value can be obtained
17172
17812
  if (!params) {
17173
17813
  return;
17174
17814
  }
17175
- this.HookType = 'HookType' in params ? params.HookType : null;
17176
- this.HookAddress = 'HookAddress' in params ? params.HookAddress : null;
17815
+
17816
+ if (params.Data) {
17817
+ let obj = new InstanceLogVO();
17818
+ obj.deserialize(params.Data)
17819
+ this.Data = obj;
17820
+ }
17821
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
17177
17822
 
17178
17823
  }
17179
17824
  }
@@ -19136,6 +19781,47 @@ class DescribeProjectRequest extends AbstractModel {
19136
19781
  }
19137
19782
  }
19138
19783
 
19784
+ /**
19785
+ * GetTaskInstance response structure.
19786
+ * @class
19787
+ */
19788
+ class GetTaskInstanceResponse extends AbstractModel {
19789
+ constructor(){
19790
+ super();
19791
+
19792
+ /**
19793
+ * Details of scheduling an instance.
19794
+ Note: This field may return null, indicating that no valid values can be obtained.
19795
+ * @type {InstanceDetailVO || null}
19796
+ */
19797
+ this.Data = null;
19798
+
19799
+ /**
19800
+ * 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.
19801
+ * @type {string || null}
19802
+ */
19803
+ this.RequestId = null;
19804
+
19805
+ }
19806
+
19807
+ /**
19808
+ * @private
19809
+ */
19810
+ deserialize(params) {
19811
+ if (!params) {
19812
+ return;
19813
+ }
19814
+
19815
+ if (params.Data) {
19816
+ let obj = new InstanceDetailVO();
19817
+ obj.deserialize(params.Data)
19818
+ this.Data = obj;
19819
+ }
19820
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
19821
+
19822
+ }
19823
+ }
19824
+
19139
19825
  /**
19140
19826
  * CreateIntegrationTask response structure.
19141
19827
  * @class
@@ -19348,6 +20034,246 @@ class DescribeAlarmReceiverRequest extends AbstractModel {
19348
20034
  }
19349
20035
  }
19350
20036
 
20037
+ /**
20038
+ * Scheduling running instance entity.
20039
+ * @class
20040
+ */
20041
+ class InstanceVO extends AbstractModel {
20042
+ constructor(){
20043
+ super();
20044
+
20045
+ /**
20046
+ * Unique identifier of an instance.
20047
+ Note: This field may return null, indicating that no valid values can be obtained.
20048
+ * @type {string || null}
20049
+ */
20050
+ this.InstanceKey = null;
20051
+
20052
+ /**
20053
+ * Project ID.
20054
+
20055
+ Note: This field may return null, indicating that no valid values can be obtained.
20056
+ * @type {string || null}
20057
+ */
20058
+ this.ProjectId = null;
20059
+
20060
+ /**
20061
+ * Folder ID.
20062
+
20063
+ Note: This field may return null, indicating that no valid values can be obtained.
20064
+ * @type {string || null}
20065
+ */
20066
+ this.FolderId = null;
20067
+
20068
+ /**
20069
+ * Folder name.
20070
+ Note: This field may return null, indicating that no valid values can be obtained.
20071
+ * @type {string || null}
20072
+ */
20073
+ this.FolderName = null;
20074
+
20075
+ /**
20076
+ * Workflow ID.
20077
+ Note: This field may return null, indicating that no valid values can be obtained.
20078
+ * @type {string || null}
20079
+ */
20080
+ this.WorkflowId = null;
20081
+
20082
+ /**
20083
+ * Workflow name.
20084
+ Note: This field may return null, indicating that no valid values can be obtained.
20085
+ * @type {string || null}
20086
+ */
20087
+ this.WorkflowName = null;
20088
+
20089
+ /**
20090
+ * Responsible person list.
20091
+
20092
+ Note: This field may return null, indicating that no valid values can be obtained.
20093
+ * @type {Array.<string> || null}
20094
+ */
20095
+ this.InChargeList = null;
20096
+
20097
+ /**
20098
+ * Task ID
20099
+
20100
+ Note: This field may return null, indicating that no valid values can be obtained.
20101
+ * @type {string || null}
20102
+ */
20103
+ this.TaskId = null;
20104
+
20105
+ /**
20106
+ * Task Name
20107
+
20108
+ Note: This field may return null, indicating that no valid values can be obtained.
20109
+ * @type {string || null}
20110
+ */
20111
+ this.TaskName = null;
20112
+
20113
+ /**
20114
+ * Task type
20115
+
20116
+ Note: This field may return null, indicating that no valid values can be obtained.
20117
+ * @type {TaskTypeOpsDto || null}
20118
+ */
20119
+ this.TaskType = null;
20120
+
20121
+ /**
20122
+ * Task cycle type.
20123
+ Supports filtering multiple conditions with an or relationship between them.
20124
+ * O: ONEOFF_CYCLE
20125
+ * Y: YEAR_CYCLE
20126
+ * M: MONTH_CYCLE
20127
+ * W: WEEK_CYCLE
20128
+ * D: DAY_CYCLE
20129
+ * H: HOUR_CYCLE
20130
+ * I: MINUTE_CYCLE
20131
+ * C: CRONTAB_CYCLE
20132
+ Note: This field may return null, indicating that no valid values can be obtained.
20133
+ * @type {string || null}
20134
+ */
20135
+ this.TaskCycleType = null;
20136
+
20137
+ /**
20138
+ * Standard data time.
20139
+ Note: This field may return null, indicating that no valid values can be obtained.
20140
+ * @type {string || null}
20141
+ */
20142
+ this.CurRunDate = null;
20143
+
20144
+ /**
20145
+ * Specifies the limit on the number of retries issued each time a running failure occurs.
20146
+ Note: This field may return null, indicating that no valid values can be obtained.
20147
+ * @type {number || null}
20148
+ */
20149
+ this.TryLimit = null;
20150
+
20151
+ /**
20152
+ * Number of retries after failure.
20153
+ Will be reset to 0 and then recounted when triggered for execution by once again manually rerunning or using a supplementary entry instance and other methods.
20154
+ Note: This field may return null, indicating that no valid values can be obtained.
20155
+ * @type {number || null}
20156
+ */
20157
+ this.Tries = null;
20158
+
20159
+ /**
20160
+ * Cumulative running times.
20161
+ Note: This field may return null, indicating that no valid values can be obtained.
20162
+ * @type {number || null}
20163
+ */
20164
+ this.TotalRunNum = null;
20165
+
20166
+ /**
20167
+ * Instance type.
20168
+
20169
+ -0 indicates the supplementary entry type.
20170
+ -1 indicates a periodic instance.
20171
+ -2 indicates a non-periodic instance.
20172
+ Note: This field may return null, indicating that no valid values can be obtained.
20173
+ * @type {number || null}
20174
+ */
20175
+ this.InstanceType = null;
20176
+
20177
+ /**
20178
+ * Indicates the status of an instance.
20179
+
20180
+ -Indicates waiting for event.
20181
+ -[12] indicates waiting for upstream.
20182
+ -[6, 7, 9, 10, 18] indicates awaiting execution.
20183
+ -[1, 19, 22]: running.
20184
+ -[21] indicates skipping running.
20185
+ -[3] indicates retry on failure.
20186
+ -[8, 4, 5, 13] indicates a failure.
20187
+ -[2] indicates a success.
20188
+ Note: This field may return null, indicating that no valid values can be obtained.
20189
+ * @type {number || null}
20190
+ */
20191
+ this.InstanceState = null;
20192
+
20193
+ /**
20194
+ * Start time.
20195
+ Note: This field may return null, indicating that no valid values can be obtained.
20196
+ * @type {string || null}
20197
+ */
20198
+ this.StartTime = null;
20199
+
20200
+ /**
20201
+ * Operation completion time.
20202
+ Note: This field may return null, indicating that no valid values can be obtained.
20203
+ * @type {string || null}
20204
+ */
20205
+ this.EndTime = null;
20206
+
20207
+ /**
20208
+ * Time spent.
20209
+ Note: This field may return null, indicating that no valid values can be obtained.
20210
+ * @type {string || null}
20211
+ */
20212
+ this.CostTime = null;
20213
+
20214
+ /**
20215
+ * Planned scheduling time.
20216
+ Note: This field may return null, indicating that no valid values can be obtained.
20217
+ * @type {string || null}
20218
+ */
20219
+ this.SchedulerTime = null;
20220
+
20221
+ /**
20222
+ * Execution resource group ID.
20223
+ Note: This field may return null, indicating that no valid values can be obtained.
20224
+ * @type {string || null}
20225
+ */
20226
+ this.ExecutorGroupId = null;
20227
+
20228
+ /**
20229
+ * Resource group name
20230
+
20231
+ Note: This field may return null, indicating that no valid values can be obtained.
20232
+ * @type {string || null}
20233
+ */
20234
+ this.ExecutorGroupName = null;
20235
+
20236
+ }
20237
+
20238
+ /**
20239
+ * @private
20240
+ */
20241
+ deserialize(params) {
20242
+ if (!params) {
20243
+ return;
20244
+ }
20245
+ this.InstanceKey = 'InstanceKey' in params ? params.InstanceKey : null;
20246
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
20247
+ this.FolderId = 'FolderId' in params ? params.FolderId : null;
20248
+ this.FolderName = 'FolderName' in params ? params.FolderName : null;
20249
+ this.WorkflowId = 'WorkflowId' in params ? params.WorkflowId : null;
20250
+ this.WorkflowName = 'WorkflowName' in params ? params.WorkflowName : null;
20251
+ this.InChargeList = 'InChargeList' in params ? params.InChargeList : null;
20252
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
20253
+ this.TaskName = 'TaskName' in params ? params.TaskName : null;
20254
+
20255
+ if (params.TaskType) {
20256
+ let obj = new TaskTypeOpsDto();
20257
+ obj.deserialize(params.TaskType)
20258
+ this.TaskType = obj;
20259
+ }
20260
+ this.TaskCycleType = 'TaskCycleType' in params ? params.TaskCycleType : null;
20261
+ this.CurRunDate = 'CurRunDate' in params ? params.CurRunDate : null;
20262
+ this.TryLimit = 'TryLimit' in params ? params.TryLimit : null;
20263
+ this.Tries = 'Tries' in params ? params.Tries : null;
20264
+ this.TotalRunNum = 'TotalRunNum' in params ? params.TotalRunNum : null;
20265
+ this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
20266
+ this.InstanceState = 'InstanceState' in params ? params.InstanceState : null;
20267
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
20268
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
20269
+ this.CostTime = 'CostTime' in params ? params.CostTime : null;
20270
+ this.SchedulerTime = 'SchedulerTime' in params ? params.SchedulerTime : null;
20271
+ this.ExecutorGroupId = 'ExecutorGroupId' in params ? params.ExecutorGroupId : null;
20272
+ this.ExecutorGroupName = 'ExecutorGroupName' in params ? params.ExecutorGroupName : null;
20273
+
20274
+ }
20275
+ }
20276
+
19351
20277
  /**
19352
20278
  * Integrate Offline Task Instance Information
19353
20279
  * @class
@@ -21107,6 +22033,210 @@ class SuspendIntegrationTaskResponse extends AbstractModel {
21107
22033
  }
21108
22034
  }
21109
22035
 
22036
+ /**
22037
+ * ListInstances request structure.
22038
+ * @class
22039
+ */
22040
+ class ListInstancesRequest extends AbstractModel {
22041
+ constructor(){
22042
+ super();
22043
+
22044
+ /**
22045
+ * **Project ID**.
22046
+ * @type {string || null}
22047
+ */
22048
+ this.ProjectId = null;
22049
+
22050
+ /**
22051
+ * Instance plan scheduling time.
22052
+ Filter start time. the time format is yyyy-MM-dd HH:MM:ss.
22053
+ * @type {string || null}
22054
+ */
22055
+ this.ScheduleTimeFrom = null;
22056
+
22057
+ /**
22058
+ * Instance plan scheduling time.
22059
+ Filter expiration time. time format: yyyy-MM-dd HH:MM:ss.
22060
+ * @type {string || null}
22061
+ */
22062
+ this.ScheduleTimeTo = null;
22063
+
22064
+ /**
22065
+ * Page number, integer.
22066
+ Use in conjunction with pageSize and cannot be less than 1. the default value is 1.
22067
+ * @type {number || null}
22068
+ */
22069
+ this.PageNumber = null;
22070
+
22071
+ /**
22072
+ * Number of items per page, integer.
22073
+ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
22074
+ * @type {number || null}
22075
+ */
22076
+ this.PageSize = null;
22077
+
22078
+ /**
22079
+ * Field used to sort query results.
22080
+
22081
+ -SCHEDULE_DATE indicates the planned scheduling time.
22082
+ -START_TIME indicates the start execution time of an instance.
22083
+ -END_TIME indicates the execution end time of the instance.
22084
+ -COST_TIME indicates the execution duration of an instance.
22085
+ * @type {string || null}
22086
+ */
22087
+ this.SortColumn = null;
22088
+
22089
+ /**
22090
+ * Instance sorting order.
22091
+
22092
+ - ASC
22093
+ - DESC
22094
+ * @type {string || null}
22095
+ */
22096
+ this.SortType = null;
22097
+
22098
+ /**
22099
+ * Instance type.
22100
+
22101
+ -0 indicates the supplementary entry type.
22102
+ -1 indicates a periodic instance.
22103
+ -2 indicates a non-periodic instance.
22104
+ * @type {number || null}
22105
+ */
22106
+ this.InstanceType = null;
22107
+
22108
+ /**
22109
+ * Instance execution status.
22110
+ Support filtering multiple items with an "or" relationship between conditions.
22111
+
22112
+ -Indicates waiting for event.
22113
+ -[12] indicates waiting for upstream.
22114
+ -[6, 7, 9, 10, 18] indicates awaiting execution.
22115
+ -1, 19, 22 indicate running.
22116
+ -[21] indicates skipping running.
22117
+ -[3] indicates retry on failure.
22118
+ -[8, 4, 5, 13] indicates a failure.
22119
+ -[2] indicates a success.
22120
+ * @type {Array.<number> || null}
22121
+ */
22122
+ this.InstanceStateList = null;
22123
+
22124
+ /**
22125
+ * **Task type Id** specifies the identifier for the task type.
22126
+
22127
+ -Supports filtering multiple items with an or relationship between conditions.
22128
+ -You can use the DescribeAllTaskType API to obtain all task types supported by the project.
22129
+ * @type {Array.<number> || null}
22130
+ */
22131
+ this.TaskTypeIdList = null;
22132
+
22133
+ /**
22134
+ * Task cycle type.
22135
+ Supports filtering multiple conditions with an or relationship between them.
22136
+ * O: ONEOFF_CYCLE
22137
+ * Y: YEAR_CYCLE
22138
+ * M: MONTH_CYCLE
22139
+ * W: WEEK_CYCLE
22140
+ * D: DAY_CYCLE
22141
+ * H: HOUR_CYCLE
22142
+ * I: MINUTE_CYCLE
22143
+ * C: CRONTAB_CYCLE
22144
+ * @type {Array.<string> || null}
22145
+ */
22146
+ this.TaskCycleList = null;
22147
+
22148
+ /**
22149
+ * Task name or task ID.
22150
+ Supports fuzzy search filtering. multiple items are separated by english commas.
22151
+ * @type {string || null}
22152
+ */
22153
+ this.Keyword = null;
22154
+
22155
+ /**
22156
+ * Task owner.
22157
+ Support filtering multiple items with an or relationship between conditions.
22158
+ * @type {Array.<string> || null}
22159
+ */
22160
+ this.InChargeList = null;
22161
+
22162
+ /**
22163
+ * File to which the task belongs.
22164
+ Supports filtering multiple conditions with an or relationship between them.
22165
+ The FindAllFolder API can be used to obtain the folder list under a project.
22166
+ * @type {Array.<string> || null}
22167
+ */
22168
+ this.TaskFolderIdList = null;
22169
+
22170
+ /**
22171
+ * **Associated workflow of the task**.
22172
+ Supports filtering multiple conditions with an or relationship between them.
22173
+ The workflow list under a project can be obtained through the DescribeOpsWorkflows api.
22174
+ * @type {Array.<string> || null}
22175
+ */
22176
+ this.WorkflowIdList = null;
22177
+
22178
+ /**
22179
+ * Execution resource group Id.
22180
+ Supports filtering multiple conditions with an or relationship between them.
22181
+ The scheduling resource group list under the project can be obtained through the DescribeNormalSchedulerExecutorGroups api.
22182
+ The DescribeNormalIntegrationExecutorGroups API can be used to obtain the list of all integration resource groups under a project.
22183
+ * @type {Array.<string> || null}
22184
+ */
22185
+ this.ExecutorGroupIdList = null;
22186
+
22187
+ /**
22188
+ * **Start time**.
22189
+ Filter start time. the time format is yyyy-MM-dd HH:MM:ss.
22190
+ * @type {string || null}
22191
+ */
22192
+ this.StartTimeFrom = null;
22193
+
22194
+ /**
22195
+ * **Start time**.
22196
+ Filter expiration time. time format: yyyy-MM-dd HH:MM:ss.
22197
+ * @type {string || null}
22198
+ */
22199
+ this.StartTimeTo = null;
22200
+
22201
+ /**
22202
+ * Time zone.
22203
+ Time zone. specifies the time zone. the default value is UTC+8.
22204
+ * @type {string || null}
22205
+ */
22206
+ this.ScheduleTimeZone = null;
22207
+
22208
+ }
22209
+
22210
+ /**
22211
+ * @private
22212
+ */
22213
+ deserialize(params) {
22214
+ if (!params) {
22215
+ return;
22216
+ }
22217
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
22218
+ this.ScheduleTimeFrom = 'ScheduleTimeFrom' in params ? params.ScheduleTimeFrom : null;
22219
+ this.ScheduleTimeTo = 'ScheduleTimeTo' in params ? params.ScheduleTimeTo : null;
22220
+ this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
22221
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
22222
+ this.SortColumn = 'SortColumn' in params ? params.SortColumn : null;
22223
+ this.SortType = 'SortType' in params ? params.SortType : null;
22224
+ this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
22225
+ this.InstanceStateList = 'InstanceStateList' in params ? params.InstanceStateList : null;
22226
+ this.TaskTypeIdList = 'TaskTypeIdList' in params ? params.TaskTypeIdList : null;
22227
+ this.TaskCycleList = 'TaskCycleList' in params ? params.TaskCycleList : null;
22228
+ this.Keyword = 'Keyword' in params ? params.Keyword : null;
22229
+ this.InChargeList = 'InChargeList' in params ? params.InChargeList : null;
22230
+ this.TaskFolderIdList = 'TaskFolderIdList' in params ? params.TaskFolderIdList : null;
22231
+ this.WorkflowIdList = 'WorkflowIdList' in params ? params.WorkflowIdList : null;
22232
+ this.ExecutorGroupIdList = 'ExecutorGroupIdList' in params ? params.ExecutorGroupIdList : null;
22233
+ this.StartTimeFrom = 'StartTimeFrom' in params ? params.StartTimeFrom : null;
22234
+ this.StartTimeTo = 'StartTimeTo' in params ? params.StartTimeTo : null;
22235
+ this.ScheduleTimeZone = 'ScheduleTimeZone' in params ? params.ScheduleTimeZone : null;
22236
+
22237
+ }
22238
+ }
22239
+
21110
22240
  /**
21111
22241
  * DescribeSchedulerRunTimeInstanceCntByStatus response structure.
21112
22242
  * @class
@@ -21812,6 +22942,155 @@ class CheckIntegrationNodeNameExistsRequest extends AbstractModel {
21812
22942
  }
21813
22943
  }
21814
22944
 
22945
+ /**
22946
+ * Details of a scheduled instance.
22947
+ * @class
22948
+ */
22949
+ class InstanceLifeCycleVO extends AbstractModel {
22950
+ constructor(){
22951
+ super();
22952
+
22953
+ /**
22954
+ * Unique identifier of the instance.
22955
+ Note: This field may return null, indicating that no valid values can be obtained.
22956
+ * @type {string || null}
22957
+ */
22958
+ this.InstanceKey = null;
22959
+
22960
+ /**
22961
+ * Instance status.
22962
+
22963
+ -Indicates waiting for event.
22964
+ -[12] indicates waiting for upstream.
22965
+ -[6, 7, 9, 10, 18] indicates awaiting execution.
22966
+ -1, 19, 22 indicate running.
22967
+ -21: skip running.
22968
+ -[3] indicates retry on failure.
22969
+ -[8, 4, 5, 13] indicates a failure.
22970
+ -[2] indicates a success.
22971
+ Note: This field may return null, indicating that no valid values can be obtained.
22972
+ * @type {number || null}
22973
+ */
22974
+ this.InstanceState = null;
22975
+
22976
+ /**
22977
+ * Lifecycle no.
22978
+ Note: This field may return null, indicating that no valid values can be obtained.
22979
+ * @type {number || null}
22980
+ */
22981
+ this.LifeRoundNum = null;
22982
+
22983
+ /**
22984
+ * Instance running trigger type.
22985
+
22986
+ -RERUN indicates rerunning.
22987
+ -ADDITION indicates supplementary recording.
22988
+ -PERIODIC indicates a period.
22989
+ -APERIODIC indicates non-periodic.
22990
+ -RERUN_SKIP_RUN means empty run for re-run.
22991
+ -ADDITION_SKIP_RUN indicates a supplementary run - empty run.
22992
+ -PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
22993
+ -APERIODIC_SKIP_RUN indicates a non-periodic empty run.
22994
+ -MANUAL_TRIGGER indicates manual triggering.
22995
+ -RERUN_MANUAL_TRIGGER indicates manual triggering - rerun.
22996
+ Note: This field may return null, indicating that no valid values can be obtained.
22997
+ * @type {string || null}
22998
+ */
22999
+ this.RunType = null;
23000
+
23001
+ /**
23002
+ * Number of retries after failure.
23003
+ Note: This field may return null, indicating that no valid values can be obtained.
23004
+ * @type {number || null}
23005
+ */
23006
+ this.Tries = null;
23007
+
23008
+ /**
23009
+ * List of instance lifecycle.
23010
+ Note: This field may return null, indicating that no valid values can be obtained.
23011
+ * @type {Array.<InstanceLifeDetailDto> || null}
23012
+ */
23013
+ this.LifeCycleDetailList = null;
23014
+
23015
+ /**
23016
+ * Instance code file.
23017
+ The file content specifies the code used for running the execution instance this time. only some tasks support it.
23018
+ Note: This field may return null, indicating that no valid values can be obtained.
23019
+ * @type {string || null}
23020
+ */
23021
+ this.CodeFileName = null;
23022
+
23023
+ /**
23024
+ * Dispatch execution ID.
23025
+ Note: This field may return null, indicating that no valid values can be obtained.
23026
+ * @type {string || null}
23027
+ */
23028
+ this.ExecutionJobId = null;
23029
+
23030
+ /**
23031
+ * The execution node where the log resides.
23032
+ Note: This field may return null, indicating that no valid values can be obtained.
23033
+ * @type {string || null}
23034
+ */
23035
+ this.BrokerIp = null;
23036
+
23037
+ /**
23038
+ * Log file name.
23039
+ Note: This field may return null, indicating that no valid values can be obtained.
23040
+ * @type {string || null}
23041
+ */
23042
+ this.OriginFileName = null;
23043
+
23044
+ /**
23045
+ * Instance log type.
23046
+
23047
+ -run: indicates the state of functioning.
23048
+ -kill: terminates.
23049
+ Note: This field may return null, indicating that no valid values can be obtained.
23050
+ * @type {string || null}
23051
+ */
23052
+ this.LogType = null;
23053
+
23054
+ /**
23055
+ * Time spent.
23056
+ Note: This field may return null, indicating that no valid values can be obtained.
23057
+ * @type {string || null}
23058
+ */
23059
+ this.CostTime = null;
23060
+
23061
+ }
23062
+
23063
+ /**
23064
+ * @private
23065
+ */
23066
+ deserialize(params) {
23067
+ if (!params) {
23068
+ return;
23069
+ }
23070
+ this.InstanceKey = 'InstanceKey' in params ? params.InstanceKey : null;
23071
+ this.InstanceState = 'InstanceState' in params ? params.InstanceState : null;
23072
+ this.LifeRoundNum = 'LifeRoundNum' in params ? params.LifeRoundNum : null;
23073
+ this.RunType = 'RunType' in params ? params.RunType : null;
23074
+ this.Tries = 'Tries' in params ? params.Tries : null;
23075
+
23076
+ if (params.LifeCycleDetailList) {
23077
+ this.LifeCycleDetailList = new Array();
23078
+ for (let z in params.LifeCycleDetailList) {
23079
+ let obj = new InstanceLifeDetailDto();
23080
+ obj.deserialize(params.LifeCycleDetailList[z]);
23081
+ this.LifeCycleDetailList.push(obj);
23082
+ }
23083
+ }
23084
+ this.CodeFileName = 'CodeFileName' in params ? params.CodeFileName : null;
23085
+ this.ExecutionJobId = 'ExecutionJobId' in params ? params.ExecutionJobId : null;
23086
+ this.BrokerIp = 'BrokerIp' in params ? params.BrokerIp : null;
23087
+ this.OriginFileName = 'OriginFileName' in params ? params.OriginFileName : null;
23088
+ this.LogType = 'LogType' in params ? params.LogType : null;
23089
+ this.CostTime = 'CostTime' in params ? params.CostTime : null;
23090
+
23091
+ }
23092
+ }
23093
+
21815
23094
  /**
21816
23095
  * DescribeReportTaskDetail request structure.
21817
23096
  * @class
@@ -25827,6 +27106,49 @@ class SourceFieldInfo extends AbstractModel {
25827
27106
  }
25828
27107
  }
25829
27108
 
27109
+ /**
27110
+ * GetTaskInstance request structure.
27111
+ * @class
27112
+ */
27113
+ class GetTaskInstanceRequest extends AbstractModel {
27114
+ constructor(){
27115
+ super();
27116
+
27117
+ /**
27118
+ * **Project ID**.
27119
+ * @type {string || null}
27120
+ */
27121
+ this.ProjectId = null;
27122
+
27123
+ /**
27124
+ * Unique identifier of an instance.
27125
+ * @type {string || null}
27126
+ */
27127
+ this.InstanceKey = null;
27128
+
27129
+ /**
27130
+ * Time zone.
27131
+ Time zone. specifies the time zone. the default value is UTC+8.
27132
+ * @type {string || null}
27133
+ */
27134
+ this.ScheduleTimeZone = null;
27135
+
27136
+ }
27137
+
27138
+ /**
27139
+ * @private
27140
+ */
27141
+ deserialize(params) {
27142
+ if (!params) {
27143
+ return;
27144
+ }
27145
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
27146
+ this.InstanceKey = 'InstanceKey' in params ? params.InstanceKey : null;
27147
+ this.ScheduleTimeZone = 'ScheduleTimeZone' in params ? params.ScheduleTimeZone : null;
27148
+
27149
+ }
27150
+ }
27151
+
25830
27152
  /**
25831
27153
  * DeleteDsFolder request structure.
25832
27154
  * @class
@@ -34615,6 +35937,169 @@ class DescribeDatabaseMetasResponse extends AbstractModel {
34615
35937
  }
34616
35938
  }
34617
35939
 
35940
+ /**
35941
+ * New Parameter for Offline Task
35942
+ * @class
35943
+ */
35944
+ class OfflineTaskAddParam extends AbstractModel {
35945
+ constructor(){
35946
+ super();
35947
+
35948
+ /**
35949
+ * Name
35950
+ * @type {string || null}
35951
+ */
35952
+ this.WorkflowName = null;
35953
+
35954
+ /**
35955
+ * Dependencies: yes, no
35956
+ * @type {string || null}
35957
+ */
35958
+ this.DependencyWorkflow = null;
35959
+
35960
+ /**
35961
+ * Task Start Data Time. Not Empty. Default to Current Time
35962
+ * @type {string || null}
35963
+ */
35964
+ this.StartTime = null;
35965
+
35966
+ /**
35967
+ * Task End Data Time. Not Empty. Default to Current Time
35968
+ * @type {string || null}
35969
+ */
35970
+ this.EndTime = null;
35971
+
35972
+ /**
35973
+ * Cycle Type. One-time task: 6, Minute Task: 1, Hourly task: 2, Daily Task: 3, Weekly Task: 4, Monthly Task: 5, Cron task: 0
35974
+ * @type {number || null}
35975
+ */
35976
+ this.CycleType = null;
35977
+
35978
+ /**
35979
+ * Interval, optional, default is 1. Not null. Default is 1
35980
+ * @type {number || null}
35981
+ */
35982
+ this.CycleStep = null;
35983
+
35984
+ /**
35985
+ * Delayed Execution Time, in minutes
35986
+ * @type {number || null}
35987
+ */
35988
+ this.DelayTime = null;
35989
+
35990
+ /**
35991
+ * Task cron expression, used only for cron tasks, else defaults to empty
35992
+ Note: This field may return null, indicating that no valid value can be obtained.
35993
+ * @type {string || null}
35994
+ */
35995
+ this.CrontabExpression = null;
35996
+
35997
+ /**
35998
+ * Retry Wait
35999
+ * @type {number || null}
36000
+ */
36001
+ this.RetryWait = null;
36002
+
36003
+ /**
36004
+ * Is Retry Allowed
36005
+ * @type {number || null}
36006
+ */
36007
+ this.Retriable = null;
36008
+
36009
+ /**
36010
+ * Retry Limit
36011
+ * @type {number || null}
36012
+ */
36013
+ this.TryLimit = null;
36014
+
36015
+ /**
36016
+ * Priority
36017
+ * @type {number || null}
36018
+ */
36019
+ this.RunPriority = null;
36020
+
36021
+ /**
36022
+ * Product
36023
+ * @type {string || null}
36024
+ */
36025
+ this.ProductName = null;
36026
+
36027
+ /**
36028
+ * 1 Ordered Serialization, one at a time, queued orderly
36029
+ 2 Unordered Serial, one at a time, not queued serial
36030
+ 3 Parallel, multiple at a time parallel
36031
+ * @type {number || null}
36032
+ */
36033
+ this.SelfDepend = null;
36034
+
36035
+ /**
36036
+ * Time Specification, such as 1,3 for monthly tasks, enter 1,3. Not empty. Default ""
36037
+ Monthly Task: for specific days like "1,3", specifying end of month as "L" alone, cannot be mixed with specific dates
36038
+ Note: This field may return null, indicating that no valid value can be obtained.
36039
+ * @type {string || null}
36040
+ */
36041
+ this.TaskAction = null;
36042
+
36043
+ /**
36044
+ * Scheduled Execution End Time
36045
+ Note: This field may return null, indicating that no valid value can be obtained.
36046
+ * @type {string || null}
36047
+ */
36048
+ this.ExecutionEndTime = null;
36049
+
36050
+ /**
36051
+ * Scheduled Execution Start Time
36052
+ Note: This field may return null, indicating that no valid value can be obtained.
36053
+ * @type {string || null}
36054
+ */
36055
+ this.ExecutionStartTime = null;
36056
+
36057
+ /**
36058
+ * Is Auto-submit
36059
+ Note: This field may return null, indicating that no valid value can be obtained.
36060
+ * @type {boolean || null}
36061
+ */
36062
+ this.TaskAutoSubmit = null;
36063
+
36064
+ /**
36065
+ * Instance Generation Method, T_PLUS_0 schedule task on the same day / T_PLUS_1 schedule task the next day
36066
+ Note: This field may return null, indicating that no valid value can be obtained.
36067
+ * @type {string || null}
36068
+ */
36069
+ this.InstanceInitStrategy = null;
36070
+
36071
+ }
36072
+
36073
+ /**
36074
+ * @private
36075
+ */
36076
+ deserialize(params) {
36077
+ if (!params) {
36078
+ return;
36079
+ }
36080
+ this.WorkflowName = 'WorkflowName' in params ? params.WorkflowName : null;
36081
+ this.DependencyWorkflow = 'DependencyWorkflow' in params ? params.DependencyWorkflow : null;
36082
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
36083
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
36084
+ this.CycleType = 'CycleType' in params ? params.CycleType : null;
36085
+ this.CycleStep = 'CycleStep' in params ? params.CycleStep : null;
36086
+ this.DelayTime = 'DelayTime' in params ? params.DelayTime : null;
36087
+ this.CrontabExpression = 'CrontabExpression' in params ? params.CrontabExpression : null;
36088
+ this.RetryWait = 'RetryWait' in params ? params.RetryWait : null;
36089
+ this.Retriable = 'Retriable' in params ? params.Retriable : null;
36090
+ this.TryLimit = 'TryLimit' in params ? params.TryLimit : null;
36091
+ this.RunPriority = 'RunPriority' in params ? params.RunPriority : null;
36092
+ this.ProductName = 'ProductName' in params ? params.ProductName : null;
36093
+ this.SelfDepend = 'SelfDepend' in params ? params.SelfDepend : null;
36094
+ this.TaskAction = 'TaskAction' in params ? params.TaskAction : null;
36095
+ this.ExecutionEndTime = 'ExecutionEndTime' in params ? params.ExecutionEndTime : null;
36096
+ this.ExecutionStartTime = 'ExecutionStartTime' in params ? params.ExecutionStartTime : null;
36097
+ this.TaskAutoSubmit = 'TaskAutoSubmit' in params ? params.TaskAutoSubmit : null;
36098
+ this.InstanceInitStrategy = 'InstanceInitStrategy' in params ? params.InstanceInitStrategy : null;
36099
+
36100
+ }
36101
+ }
36102
+
34618
36103
  /**
34619
36104
  * FreezeTasksByWorkflowIds response structure.
34620
36105
  * @class
@@ -43329,135 +44814,86 @@ class DescribeRuleExecStatRequest extends AbstractModel {
43329
44814
  }
43330
44815
 
43331
44816
  /**
43332
- * New Parameter for Offline Task
44817
+ * GetInstanceLog request structure.
43333
44818
  * @class
43334
44819
  */
43335
- class OfflineTaskAddParam extends AbstractModel {
44820
+ class GetInstanceLogRequest extends AbstractModel {
43336
44821
  constructor(){
43337
44822
  super();
43338
44823
 
43339
44824
  /**
43340
- * Name
43341
- * @type {string || null}
43342
- */
43343
- this.WorkflowName = null;
43344
-
43345
- /**
43346
- * Dependencies: yes, no
44825
+ * **Project ID**.
43347
44826
  * @type {string || null}
43348
44827
  */
43349
- this.DependencyWorkflow = null;
43350
-
43351
- /**
43352
- * Task Start Data Time. Not Empty. Default to Current Time
43353
- * @type {string || null}
43354
- */
43355
- this.StartTime = null;
44828
+ this.ProjectId = null;
43356
44829
 
43357
44830
  /**
43358
- * Task End Data Time. Not Empty. Default to Current Time
44831
+ * Unique identifier of an instance.
43359
44832
  * @type {string || null}
43360
44833
  */
43361
- this.EndTime = null;
43362
-
43363
- /**
43364
- * Cycle Type. One-time task: 6, Minute Task: 1, Hourly task: 2, Daily Task: 3, Weekly Task: 4, Monthly Task: 5, Cron task: 0
43365
- * @type {number || null}
43366
- */
43367
- this.CycleType = null;
43368
-
43369
- /**
43370
- * Interval, optional, default is 1. Not null. Default is 1
43371
- * @type {number || null}
43372
- */
43373
- this.CycleStep = null;
44834
+ this.InstanceKey = null;
43374
44835
 
43375
44836
  /**
43376
- * Delayed Execution Time, in minutes
44837
+ * Lifecycle no.
43377
44838
  * @type {number || null}
43378
44839
  */
43379
- this.DelayTime = null;
44840
+ this.LifeRoundNum = null;
43380
44841
 
43381
44842
  /**
43382
- * Task cron expression, used only for cron tasks, else defaults to empty
43383
- Note: This field may return null, indicating that no valid value can be obtained.
44843
+ * Time zone.
44844
+ Time zone. specifies the time zone. the default value is UTC+8.
43384
44845
  * @type {string || null}
43385
44846
  */
43386
- this.CrontabExpression = null;
43387
-
43388
- /**
43389
- * Retry Wait
43390
- * @type {number || null}
43391
- */
43392
- this.RetryWait = null;
43393
-
43394
- /**
43395
- * Is Retry Allowed
43396
- * @type {number || null}
43397
- */
43398
- this.Retriable = null;
43399
-
43400
- /**
43401
- * Retry Limit
43402
- * @type {number || null}
43403
- */
43404
- this.TryLimit = null;
44847
+ this.ScheduleTimeZone = null;
43405
44848
 
43406
44849
  /**
43407
- * Priority
43408
- * @type {number || null}
44850
+ * Indicates the Ip address of the executor where the log is located.
44851
+ * @type {string || null}
43409
44852
  */
43410
- this.RunPriority = null;
44853
+ this.BrokerIp = null;
43411
44854
 
43412
44855
  /**
43413
- * Product
44856
+ * Log file.
44857
+ When executionJobId in instance details is empty but originFileName is not empty, originFileName and brokerIp must be included in the input parameters.
44858
+ If both executionJobId and originFileName are empty, it indicates that the instance has not been dispatched for execution or has not generated logs. for example, branch node or merge node.
43414
44859
  * @type {string || null}
43415
44860
  */
43416
- this.ProductName = null;
44861
+ this.OriginFileName = null;
43417
44862
 
43418
44863
  /**
43419
- * 1 Ordered Serialization, one at a time, queued orderly
43420
- 2 Unordered Serial, one at a time, not queued serial
43421
- 3 Parallel, multiple at a time parallel
43422
- * @type {number || null}
43423
- */
43424
- this.SelfDepend = null;
44864
+ * **Execution ID**.
43425
44865
 
43426
- /**
43427
- * Time Specification, such as 1,3 for monthly tasks, enter 1,3. Not empty. Default ""
43428
- Monthly Task: for specific days like "1,3", specifying end of month as "L" alone, cannot be mixed with specific dates
43429
- Note: This field may return null, indicating that no valid value can be obtained.
44866
+ When executionJobId in instance details is not empty, executionJobId needs to be included in the input parameters. originFileName and brokerIp are not required parameters.
43430
44867
  * @type {string || null}
43431
44868
  */
43432
- this.TaskAction = null;
44869
+ this.ExecutionJobId = null;
43433
44870
 
43434
44871
  /**
43435
- * Scheduled Execution End Time
43436
- Note: This field may return null, indicating that no valid value can be obtained.
43437
- * @type {string || null}
43438
- */
43439
- this.ExecutionEndTime = null;
44872
+ * Log level.
44873
+ Default All.
43440
44874
 
43441
- /**
43442
- * Scheduled Execution Start Time
43443
- Note: This field may return null, indicating that no valid value can be obtained.
44875
+ - Info
44876
+ - Debug
44877
+ - Warn
44878
+ - Error
44879
+ - All
43444
44880
  * @type {string || null}
43445
44881
  */
43446
- this.ExecutionStartTime = null;
44882
+ this.LogLevel = null;
43447
44883
 
43448
44884
  /**
43449
- * Is Auto-submit
43450
- Note: This field may return null, indicating that no valid value can be obtained.
43451
- * @type {boolean || null}
44885
+ * Start row number for obtaining logs.
44886
+ The default is 1.
44887
+ * @type {number || null}
43452
44888
  */
43453
- this.TaskAutoSubmit = null;
44889
+ this.StartLineNum = null;
43454
44890
 
43455
44891
  /**
43456
- * Instance Generation Method, T_PLUS_0 schedule task on the same day / T_PLUS_1 schedule task the next day
43457
- Note: This field may return null, indicating that no valid value can be obtained.
43458
- * @type {string || null}
44892
+ * End line number for obtaining logs.
44893
+ The default value is 10000.
44894
+ * @type {number || null}
43459
44895
  */
43460
- this.InstanceInitStrategy = null;
44896
+ this.EndLineCount = null;
43461
44897
 
43462
44898
  }
43463
44899
 
@@ -43468,25 +44904,16 @@ Note: This field may return null, indicating that no valid value can be obtained
43468
44904
  if (!params) {
43469
44905
  return;
43470
44906
  }
43471
- this.WorkflowName = 'WorkflowName' in params ? params.WorkflowName : null;
43472
- this.DependencyWorkflow = 'DependencyWorkflow' in params ? params.DependencyWorkflow : null;
43473
- this.StartTime = 'StartTime' in params ? params.StartTime : null;
43474
- this.EndTime = 'EndTime' in params ? params.EndTime : null;
43475
- this.CycleType = 'CycleType' in params ? params.CycleType : null;
43476
- this.CycleStep = 'CycleStep' in params ? params.CycleStep : null;
43477
- this.DelayTime = 'DelayTime' in params ? params.DelayTime : null;
43478
- this.CrontabExpression = 'CrontabExpression' in params ? params.CrontabExpression : null;
43479
- this.RetryWait = 'RetryWait' in params ? params.RetryWait : null;
43480
- this.Retriable = 'Retriable' in params ? params.Retriable : null;
43481
- this.TryLimit = 'TryLimit' in params ? params.TryLimit : null;
43482
- this.RunPriority = 'RunPriority' in params ? params.RunPriority : null;
43483
- this.ProductName = 'ProductName' in params ? params.ProductName : null;
43484
- this.SelfDepend = 'SelfDepend' in params ? params.SelfDepend : null;
43485
- this.TaskAction = 'TaskAction' in params ? params.TaskAction : null;
43486
- this.ExecutionEndTime = 'ExecutionEndTime' in params ? params.ExecutionEndTime : null;
43487
- this.ExecutionStartTime = 'ExecutionStartTime' in params ? params.ExecutionStartTime : null;
43488
- this.TaskAutoSubmit = 'TaskAutoSubmit' in params ? params.TaskAutoSubmit : null;
43489
- this.InstanceInitStrategy = 'InstanceInitStrategy' in params ? params.InstanceInitStrategy : null;
44907
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
44908
+ this.InstanceKey = 'InstanceKey' in params ? params.InstanceKey : null;
44909
+ this.LifeRoundNum = 'LifeRoundNum' in params ? params.LifeRoundNum : null;
44910
+ this.ScheduleTimeZone = 'ScheduleTimeZone' in params ? params.ScheduleTimeZone : null;
44911
+ this.BrokerIp = 'BrokerIp' in params ? params.BrokerIp : null;
44912
+ this.OriginFileName = 'OriginFileName' in params ? params.OriginFileName : null;
44913
+ this.ExecutionJobId = 'ExecutionJobId' in params ? params.ExecutionJobId : null;
44914
+ this.LogLevel = 'LogLevel' in params ? params.LogLevel : null;
44915
+ this.StartLineNum = 'StartLineNum' in params ? params.StartLineNum : null;
44916
+ this.EndLineCount = 'EndLineCount' in params ? params.EndLineCount : null;
43490
44917
 
43491
44918
  }
43492
44919
  }
@@ -45120,6 +46547,7 @@ module.exports = {
45120
46547
  RecordsSpeed: RecordsSpeed,
45121
46548
  ColumnLineageInfo: ColumnLineageInfo,
45122
46549
  SubmitTaskRequest: SubmitTaskRequest,
46550
+ ListInstancesResponse: ListInstancesResponse,
45123
46551
  DescribeTableMetasRequest: DescribeTableMetasRequest,
45124
46552
  RuleExecResultDetail: RuleExecResultDetail,
45125
46553
  DataSourceInfoPage: DataSourceInfoPage,
@@ -45146,6 +46574,7 @@ module.exports = {
45146
46574
  DescribeIntegrationStatisticsRecordsTrendRequest: DescribeIntegrationStatisticsRecordsTrendRequest,
45147
46575
  DescribeDataCheckStatRequest: DescribeDataCheckStatRequest,
45148
46576
  TablePropertyScore: TablePropertyScore,
46577
+ SubscribeWebHook: SubscribeWebHook,
45149
46578
  GetOfflineInstanceListRequest: GetOfflineInstanceListRequest,
45150
46579
  TaskTypeMap: TaskTypeMap,
45151
46580
  InstanceLifeDetailDto: InstanceLifeDetailDto,
@@ -45172,7 +46601,7 @@ module.exports = {
45172
46601
  ModifyWorkflowScheduleRequest: ModifyWorkflowScheduleRequest,
45173
46602
  CreateDsFolderRequest: CreateDsFolderRequest,
45174
46603
  RegisterEventRequest: RegisterEventRequest,
45175
- Property: Property,
46604
+ InstanceDetailVO: InstanceDetailVO,
45176
46605
  MakePlanOpsDtoCollection: MakePlanOpsDtoCollection,
45177
46606
  DescribeTableMetasResponse: DescribeTableMetasResponse,
45178
46607
  UploadContentResponse: UploadContentResponse,
@@ -45205,6 +46634,7 @@ module.exports = {
45205
46634
  DeleteCustomFunctionResponse: DeleteCustomFunctionResponse,
45206
46635
  DimensionScoreInfo: DimensionScoreInfo,
45207
46636
  DescribeTaskScriptResponse: DescribeTaskScriptResponse,
46637
+ InstancePageVO: InstancePageVO,
45208
46638
  CollectionInstanceOpsDto: CollectionInstanceOpsDto,
45209
46639
  DrInstanceOpsDtoPage: DrInstanceOpsDtoPage,
45210
46640
  TableLineageInfo: TableLineageInfo,
@@ -45221,6 +46651,7 @@ module.exports = {
45221
46651
  WorkflowExtOpsDto: WorkflowExtOpsDto,
45222
46652
  LineageParamRecord: LineageParamRecord,
45223
46653
  BatchResult: BatchResult,
46654
+ InstanceLogVO: InstanceLogVO,
45224
46655
  StartTaskInfo: StartTaskInfo,
45225
46656
  DescribeIntegrationStatisticsInstanceTrendResponse: DescribeIntegrationStatisticsInstanceTrendResponse,
45226
46657
  DescribeInstanceLogListRequest: DescribeInstanceLogListRequest,
@@ -45327,12 +46758,13 @@ module.exports = {
45327
46758
  AlarmReceiverInfo: AlarmReceiverInfo,
45328
46759
  GeneralTaskParam: GeneralTaskParam,
45329
46760
  DescribeTableBasicInfoResponse: DescribeTableBasicInfoResponse,
46761
+ Property: Property,
45330
46762
  ModifyRuleTemplateRequest: ModifyRuleTemplateRequest,
45331
46763
  DescribeRuleExecStatResponse: DescribeRuleExecStatResponse,
45332
46764
  TaskByCycle: TaskByCycle,
45333
46765
  DagInstancesResponse: DagInstancesResponse,
45334
46766
  DimensionScore: DimensionScore,
45335
- SubscribeWebHook: SubscribeWebHook,
46767
+ GetInstanceLogResponse: GetInstanceLogResponse,
45336
46768
  DescribeTableLineageInfoRequest: DescribeTableLineageInfoRequest,
45337
46769
  CreateTaskFolderRequest: CreateTaskFolderRequest,
45338
46770
  EngineTaskInfo: EngineTaskInfo,
@@ -45363,10 +46795,12 @@ module.exports = {
45363
46795
  TaskVersionInstance: TaskVersionInstance,
45364
46796
  TableInfo: TableInfo,
45365
46797
  DescribeProjectRequest: DescribeProjectRequest,
46798
+ GetTaskInstanceResponse: GetTaskInstanceResponse,
45366
46799
  CreateIntegrationTaskResponse: CreateIntegrationTaskResponse,
45367
46800
  DescribeIntegrationTasksResponse: DescribeIntegrationTasksResponse,
45368
46801
  DeleteProjectUsersResponse: DeleteProjectUsersResponse,
45369
46802
  DescribeAlarmReceiverRequest: DescribeAlarmReceiverRequest,
46803
+ InstanceVO: InstanceVO,
45370
46804
  SchedulerTaskInstanceInfo: SchedulerTaskInstanceInfo,
45371
46805
  DescribeSchedulerTaskCntByStatusResponse: DescribeSchedulerTaskCntByStatusResponse,
45372
46806
  TaskExtInfo: TaskExtInfo,
@@ -45395,6 +46829,7 @@ module.exports = {
45395
46829
  DescribeStatisticInstanceStatusTrendOpsRequest: DescribeStatisticInstanceStatusTrendOpsRequest,
45396
46830
  RuleExecConfig: RuleExecConfig,
45397
46831
  SuspendIntegrationTaskResponse: SuspendIntegrationTaskResponse,
46832
+ ListInstancesRequest: ListInstancesRequest,
45398
46833
  DescribeSchedulerRunTimeInstanceCntByStatusResponse: DescribeSchedulerRunTimeInstanceCntByStatusResponse,
45399
46834
  CreateTaskFolderResponse: CreateTaskFolderResponse,
45400
46835
  RunForceSucScheduleInstancesRequest: RunForceSucScheduleInstancesRequest,
@@ -45407,6 +46842,7 @@ module.exports = {
45407
46842
  InstanceStatisticInfo: InstanceStatisticInfo,
45408
46843
  CommitRuleGroupTaskRequest: CommitRuleGroupTaskRequest,
45409
46844
  CheckIntegrationNodeNameExistsRequest: CheckIntegrationNodeNameExistsRequest,
46845
+ InstanceLifeCycleVO: InstanceLifeCycleVO,
45410
46846
  DescribeReportTaskDetailRequest: DescribeReportTaskDetailRequest,
45411
46847
  GetOfflineInstanceListResponse: GetOfflineInstanceListResponse,
45412
46848
  DescribeOpsMakePlansRequest: DescribeOpsMakePlansRequest,
@@ -45480,6 +46916,7 @@ module.exports = {
45480
46916
  ProdSchedulerTask: ProdSchedulerTask,
45481
46917
  WorkflowSchedulerOpsDto: WorkflowSchedulerOpsDto,
45482
46918
  SourceFieldInfo: SourceFieldInfo,
46919
+ GetTaskInstanceRequest: GetTaskInstanceRequest,
45483
46920
  DeleteDsFolderRequest: DeleteDsFolderRequest,
45484
46921
  SaveCustomFunctionResponse: SaveCustomFunctionResponse,
45485
46922
  ModifyDsFolderRequest: ModifyDsFolderRequest,
@@ -45596,6 +47033,7 @@ module.exports = {
45596
47033
  FieldConfig: FieldConfig,
45597
47034
  DescribeRealTimeTaskMetricOverviewRequest: DescribeRealTimeTaskMetricOverviewRequest,
45598
47035
  DescribeDatabaseMetasResponse: DescribeDatabaseMetasResponse,
47036
+ OfflineTaskAddParam: OfflineTaskAddParam,
45599
47037
  FreezeTasksByWorkflowIdsResponse: FreezeTasksByWorkflowIdsResponse,
45600
47038
  SubmitWorkflowRequest: SubmitWorkflowRequest,
45601
47039
  DescribeResourceManagePathTreesResponse: DescribeResourceManagePathTreesResponse,
@@ -45738,7 +47176,7 @@ module.exports = {
45738
47176
  FolderOpsDto: FolderOpsDto,
45739
47177
  DescribeTaskLockStatusRequest: DescribeTaskLockStatusRequest,
45740
47178
  DescribeRuleExecStatRequest: DescribeRuleExecStatRequest,
45741
- OfflineTaskAddParam: OfflineTaskAddParam,
47179
+ GetInstanceLogRequest: GetInstanceLogRequest,
45742
47180
  RuleConfig: RuleConfig,
45743
47181
  LogContent: LogContent,
45744
47182
  RealTimeTaskSpeed: RealTimeTaskSpeed,