tencentcloud-sdk-nodejs-intl-en 3.0.1364 → 3.0.1365

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.
@@ -5446,6 +5446,27 @@ Output stream:
5446
5446
  */
5447
5447
  this.TableGuid = null;
5448
5448
 
5449
+ /**
5450
+ * Catalog name
5451
+ Note: This field may return null, indicating that no valid values can be obtained.
5452
+ * @type {string || null}
5453
+ */
5454
+ this.CatalogName = null;
5455
+
5456
+ /**
5457
+ * Data source name
5458
+ Note: This field may return null, indicating that no valid values can be obtained.
5459
+ * @type {string || null}
5460
+ */
5461
+ this.DatasourceName = null;
5462
+
5463
+ /**
5464
+ * Catalog (if any).Database (if any).Table name
5465
+ Note: This field may return null, indicating that no valid values can be obtained.
5466
+ * @type {string || null}
5467
+ */
5468
+ this.QualifiedName = null;
5469
+
5449
5470
  }
5450
5471
 
5451
5472
  /**
@@ -5463,6 +5484,9 @@ Output stream:
5463
5484
  this.TablePhysicalId = 'TablePhysicalId' in params ? params.TablePhysicalId : null;
5464
5485
  this.DbGuid = 'DbGuid' in params ? params.DbGuid : null;
5465
5486
  this.TableGuid = 'TableGuid' in params ? params.TableGuid : null;
5487
+ this.CatalogName = 'CatalogName' in params ? params.CatalogName : null;
5488
+ this.DatasourceName = 'DatasourceName' in params ? params.DatasourceName : null;
5489
+ this.QualifiedName = 'QualifiedName' in params ? params.QualifiedName : null;
5466
5490
 
5467
5491
  }
5468
5492
  }
@@ -11778,198 +11802,191 @@ class CreateTaskSchedulerConfiguration extends AbstractModel {
11778
11802
  super();
11779
11803
 
11780
11804
  /**
11781
- * Period type: defaults to DAY_CYCLE.
11782
-
11783
- Supported types.
11784
-
11785
- ONEOFF_CYCLE: specifies a one-time cycle.
11786
- YEAR_CYCLE: specifies the year cycle.
11787
- MONTH_CYCLE: specifies the monthly cycle.
11788
- WEEK_CYCLE: specifies the week cycle.
11789
- DAY_CYCLE: specifies the day cycle.
11790
- HOUR_CYCLE: specifies the hour cycle.
11791
- MINUTE_CYCLE: specifies the minute cycle.
11792
- CRONTAB_CYCLE: specifies the crontab expression type.
11805
+ * <p>Period type: Defaults to DAY_CYCLE</p><p>Supported types are </p><ul><li>ONEOFF_CYCLE: One-time</li><li>YEAR_CYCLE: Year</li><li>MONTH_CYCLE: Month</li><li>WEEK_CYCLE: Week</li><li>DAY_CYCLE: Day</li><li>HOUR_CYCLE: Hour</li><li>MINUTE_CYCLE: Minute</li><li>CRONTAB_CYCLE: crontab expression</li></ul>
11793
11806
  * @type {string || null}
11794
11807
  */
11795
11808
  this.CycleType = null;
11796
11809
 
11797
11810
  /**
11798
- * Time zone, defaults to UTC+8.
11811
+ * <p>Time zone, defaults to UTC+8</p>
11799
11812
  * @type {string || null}
11800
11813
  */
11801
11814
  this.ScheduleTimeZone = null;
11802
11815
 
11803
11816
  /**
11804
- * Cron expression, defaults to 0 0 0 * * ? *.
11817
+ * <p>Cron expression, defaults to 0 0 0 * * ? *</p>
11805
11818
  * @type {string || null}
11806
11819
  */
11807
11820
  this.CrontabExpression = null;
11808
11821
 
11809
11822
  /**
11810
- * Effective date, defaults to 00:00:00 of the current date.
11823
+ * <p>Effective date, defaults to 00:00:00 of the current date</p>
11811
11824
  * @type {string || null}
11812
11825
  */
11813
11826
  this.StartTime = null;
11814
11827
 
11815
11828
  /**
11816
- * End date, defaults to 2099-12-31 23:59:59.
11829
+ * <p>End date, defaults to 2099-12-31 23:59:59</p>
11817
11830
  * @type {string || null}
11818
11831
  */
11819
11832
  this.EndTime = null;
11820
11833
 
11821
11834
  /**
11822
- * Execution time: the left-closed interval. Default: 00:00.
11835
+ * <p>Execution time left-closed interval, default 00:00</p>
11823
11836
  * @type {string || null}
11824
11837
  */
11825
11838
  this.ExecutionStartTime = null;
11826
11839
 
11827
11840
  /**
11828
- * Execution time: the right closed interval. Default: 23:59.
11841
+ * <p>Execution time right closed interval, default 23:59</p>
11829
11842
  * @type {string || null}
11830
11843
  */
11831
11844
  this.ExecutionEndTime = null;
11832
11845
 
11833
11846
  /**
11834
- * Calendar scheduling value: 0 or 1, where 1 means ON and 0 means OFF. Default is 0.
11847
+ * <p>Calendar scheduling value is 0 and 1, where 1 is on and 0 is shutdown, with a default value of 0.</p>
11835
11848
  * @type {string || null}
11836
11849
  */
11837
11850
  this.CalendarOpen = null;
11838
11851
 
11839
11852
  /**
11840
- * Calendar scheduling: the calendar ID.
11853
+ * <p>Calendar scheduling Calendar ID</p>
11841
11854
  * @type {string || null}
11842
11855
  */
11843
11856
  this.CalendarId = null;
11844
11857
 
11845
11858
  /**
11846
- * Self-Dependent. Valid values: parallel, serial, orderly. Default value: serial.
11859
+ * <p>Self-dependent, default value serial, value: parallel, serial, orderly</p>
11847
11860
  * @type {string || null}
11848
11861
  */
11849
11862
  this.SelfDepend = null;
11850
11863
 
11851
11864
  /**
11852
- * Specifies the upstream dependency list.
11865
+ * <p>Upstream dependency array</p>
11853
11866
  * @type {Array.<DependencyTaskBrief> || null}
11854
11867
  */
11855
11868
  this.UpstreamDependencyConfigList = null;
11856
11869
 
11857
11870
  /**
11858
- * List of Events
11871
+ * <p>Event array</p>
11859
11872
  * @type {Array.<EventListener> || null}
11860
11873
  */
11861
11874
  this.EventListenerList = null;
11862
11875
 
11863
11876
  /**
11864
- * Rerun & Refill Configuration: Default: ALL;
11865
-
11866
- * ALL: Rerun or refill is allowed regardless of whether the task succeeds or fails.
11867
-
11868
- * FAILURE: Rerun or refill is allowed only if the task fails; not allowed if the task succeeds.
11869
-
11870
- * NONE: Rerun or refill is not allowed regardless of success or failure.
11877
+ * <p>Rerun & replenishment configuration, defaults to ALL; , ALL allows rerun or replenishment after successful or failed running, FAILURE cannot rerun or replenish after successful running but allows rerun or replenishment after running FAILURE, NONE does not allow rerun or replenishment after either successful or failed running;</p>
11871
11878
  * @type {string || null}
11872
11879
  */
11873
11880
  this.AllowRedoType = null;
11874
11881
 
11875
11882
  /**
11876
- * Output parameter list.
11883
+ * <p>Output parameter array</p>
11877
11884
  * @type {Array.<OutTaskParameter> || null}
11878
11885
  */
11879
11886
  this.ParamTaskOutList = null;
11880
11887
 
11881
11888
  /**
11882
- * Input parameter list.
11889
+ * <p>Input parameter array</p>
11883
11890
  * @type {Array.<InTaskParameter> || null}
11884
11891
  */
11885
11892
  this.ParamTaskInList = null;
11886
11893
 
11887
11894
  /**
11888
- * Output registration.
11895
+ * <p>Output registration</p>
11889
11896
  * @type {Array.<TaskDataRegistry> || null}
11890
11897
  */
11891
11898
  this.TaskOutputRegistryList = null;
11892
11899
 
11893
11900
  /**
11894
- * **Instance generation policy**.
11895
- T_PLUS_0: specifies t+0 generation. default policy.
11896
- T_PLUS_1: specifies t+1 generation.
11901
+ * <p><strong>Instance Generation Policy</strong></p><ul><li>T_PLUS_0: T+0 generation, default policy</li><li>T_PLUS_1: T+1 generation</li></ul>
11897
11902
  * @type {string || null}
11898
11903
  */
11899
11904
  this.InitStrategy = null;
11900
11905
 
11901
11906
  /**
11902
- * Scheduling type: 0 for normal scheduling, 1 for dry-run scheduling. Default is 0.
11907
+ * <p>Scheduling type: 0 normal scheduling 1 dry-run scheduling, default is 0</p>
11903
11908
  * @type {string || null}
11904
11909
  */
11905
11910
  this.ScheduleRunType = null;
11906
11911
 
11907
11912
  /**
11908
- * Task scheduling priority. Valid values: 4 (high), 5 (medium), 6 (low). Default: 6.
11913
+ * <p>Task scheduling priority Execution priority 4 High 5 Medium 6 Low, Default:6</p>
11909
11914
  * @type {string || null}
11910
11915
  */
11911
11916
  this.RunPriority = null;
11912
11917
 
11913
11918
  /**
11914
- * Retry Policy: Retry Wait Time (in minutes): Default 5
11919
+ * <p>Retry policy Retry wait time, in minutes: Default: 5</p>
11915
11920
  * @type {string || null}
11916
11921
  */
11917
11922
  this.RetryWait = null;
11918
11923
 
11919
11924
  /**
11920
- * Retry Policy: maximum attempts. Default: 4.
11925
+ * <p>Retry policy Maximum attempts, Default: 4</p>
11921
11926
  * @type {string || null}
11922
11927
  */
11923
11928
  this.MaxRetryAttempts = null;
11924
11929
 
11925
11930
  /**
11926
- * Timeout Handling Policy: Execution Timeout (in minutes), default: -1
11931
+ * <p>Timeout handling strategy Runtime timeout (unit: minutes) Default is -1</p>
11927
11932
  * @type {string || null}
11928
11933
  */
11929
11934
  this.ExecutionTTL = null;
11930
11935
 
11931
11936
  /**
11932
- * Timeout Handling Policy: Wait Duration Timeout (in minutes), default: -1
11937
+ * <p>Timeout handling strategy Wait duration timeout (unit: minutes) Default value is -1</p>
11933
11938
  * @type {string || null}
11934
11939
  */
11935
11940
  this.WaitExecutionTotalTTL = null;
11936
11941
 
11937
11942
  /**
11938
- * Scheduling type: 0 normal scheduling 1 dry-run scheduling, defaults to 0.
11943
+ * <p>Scheduling type: 0 normal scheduling 1 dry-run scheduling, default is 0</p>
11939
11944
  * @type {number || null}
11940
11945
  */
11941
11946
  this.ScheduleType = null;
11942
11947
 
11943
11948
  /**
11944
- * Task scheduling priority. execution priority. valid values: 4 (high), 5 (medium), 6 (low). default: 6.
11949
+ * <p>Task scheduling priority Execution priority 4 High 5 Medium 6 Low, Default:6</p>
11945
11950
  * @type {number || null}
11946
11951
  */
11947
11952
  this.RunPriorityType = null;
11948
11953
 
11949
11954
  /**
11950
- * Retry policy retry wait time, in minutes: default: 5.
11955
+ * <p>Retry policy Retry wait time, in minutes: Default: 5</p>
11951
11956
  * @type {number || null}
11952
11957
  */
11953
11958
  this.RetryWaitMinute = null;
11954
11959
 
11955
11960
  /**
11956
- * Maximum attempts of the retry policy. default: 4.
11961
+ * <p>Retry policy Maximum attempts, Default: 4</p>
11957
11962
  * @type {number || null}
11958
11963
  */
11959
11964
  this.MaxRetryNumber = null;
11960
11965
 
11961
11966
  /**
11962
- * Timeout handling strategy runtime timeout (unit: minutes) defaults to -1.
11967
+ * <p>Timeout handling strategy Runtime timeout (unit: minutes) Default is -1</p>
11963
11968
  * @type {number || null}
11964
11969
  */
11965
11970
  this.ExecutionTTLMinute = null;
11966
11971
 
11967
11972
  /**
11968
- * Timeout handling strategy wait duration timeout (unit: minutes) defaults to -1.
11973
+ * <p>Timeout handling strategy Wait duration timeout (unit: minutes) Default value is -1</p>
11969
11974
  * @type {number || null}
11970
11975
  */
11971
11976
  this.WaitExecutionTotalTTLMinute = null;
11972
11977
 
11978
+ /**
11979
+ * <ul><li>The task dependency run condition defaults to ALL_SUCCESS. Currently, only workflow scheduling under the project supports configuration.</li><li>ALL_SUCCESS: All successful: When all upstream dependency tasks reach the final state, perform a dependency check. If all upstream tasks are successful, the dependency check passes. Otherwise, if one upstream task skips running, it is marked as skipped. In other cases, it is marked as upstream failure.</li><li>ALL_FAILED: All failed: When all upstream dependency tasks reach the final state, perform a dependency check. If all upstream tasks are in a failed state or marked as upstream failure, the dependency check passes. Otherwise, it is marked as skipped.</li><li>ALL_DONE: All completed: When all upstream dependency tasks reach the final state, perform a dependency check, and the dependency check passes directly.</li><li>ALL_DONE_AT_LEAST_ONE_SUCCESS: All upstream tasks completed with at least one success: When all upstream dependency tasks reach the final state, perform a dependency check. If at least one is successful, the dependency check passes. Otherwise, it skips running.</li><li>ALL_SKIPPED: All upstream tasks skipped: When all upstream dependency tasks reach the final state, perform a dependency check. Only if all upstream tasks are in a skipped state does the dependency check pass. Otherwise, the current node skips running.</li><li>ONE_FAILED: At least one failed: If at least one upstream task fails, perform a dependency check, and the check passes. If all upstream tasks complete but none fail, it skips running.</li><li>ONE_SUCCESS: At least one success: If at least one upstream task succeeds, perform a dependency check, and the check passes. If all upstream tasks complete but none succeed, it skips running.</li><li>ONE_DONE: At least one completed: If at least one upstream task completes, perform a dependency check, and the check passes. Otherwise, it continues waiting for upstream.</li><li>NONE_FAILED: All upstream tasks completed with no failure: When all upstream dependency tasks reach the final state, perform a dependency check. If all upstream tasks are successful or skipped, the check passes. Otherwise, it is marked as upstream failure.</li><li>ALL_DONE_NONE_FAILED_AT_LEAST_ONE_SUCCESS: All upstream tasks completed with no failure and at least one success: When all upstream dependency tasks reach the final state, perform a dependency check. If no upstream task fails and at least one succeeds, the check passes. Otherwise, it skips running.</li><li>NONE_SKIPPED: All upstream tasks completed with no skipped runs: When all upstream dependency tasks reach the final state, perform a dependency check. If all upstream tasks are in a successful, failed, or upstream failure state, the check passes. Otherwise, it skips running.</li><li>ALL_DONE_AT_LEAST_ONE_FAILED: All upstream tasks completed with at least one failure: When all upstream dependency tasks reach the final state, perform a dependency check. If at least one fails, the check passes. Otherwise, it skips running.</li></ul>
11980
+ * @type {string || null}
11981
+ */
11982
+ this.DependencyTriggerPolicy = null;
11983
+
11984
+ /**
11985
+ * <p>Whether to allow downstream dependency 1 Allow 0 Do not allow</p><p>Value ranges from 0 to 1</p><p>Default value: 1</p>
11986
+ * @type {number || null}
11987
+ */
11988
+ this.AllowDownstreamDependency = null;
11989
+
11973
11990
  }
11974
11991
 
11975
11992
  /**
@@ -12048,6 +12065,8 @@ T_PLUS_1: specifies t+1 generation.
12048
12065
  this.MaxRetryNumber = 'MaxRetryNumber' in params ? params.MaxRetryNumber : null;
12049
12066
  this.ExecutionTTLMinute = 'ExecutionTTLMinute' in params ? params.ExecutionTTLMinute : null;
12050
12067
  this.WaitExecutionTotalTTLMinute = 'WaitExecutionTotalTTLMinute' in params ? params.WaitExecutionTotalTTLMinute : null;
12068
+ this.DependencyTriggerPolicy = 'DependencyTriggerPolicy' in params ? params.DependencyTriggerPolicy : null;
12069
+ this.AllowDownstreamDependency = 'AllowDownstreamDependency' in params ? params.AllowDownstreamDependency : null;
12051
12070
 
12052
12071
  }
12053
12072
  }
@@ -17163,7 +17182,7 @@ class CreateTaskResponse extends AbstractModel {
17163
17182
  super();
17164
17183
 
17165
17184
  /**
17166
- * Task ID
17185
+ * <p>Task ID.</p>
17167
17186
  * @type {CreateTaskResult || null}
17168
17187
  */
17169
17188
  this.Data = null;
@@ -22761,25 +22780,26 @@ class CreateTaskRequest extends AbstractModel {
22761
22780
  super();
22762
22781
 
22763
22782
  /**
22764
- * Project ID.
22783
+ * <p>Project ID</p>
22765
22784
  * @type {string || null}
22766
22785
  */
22767
22786
  this.ProjectId = null;
22768
22787
 
22769
22788
  /**
22770
- * The basic attributes of the task.
22789
+ * <p>The
22790
+ basic attributes of the task.</p>
22771
22791
  * @type {CreateTaskBaseAttribute || null}
22772
22792
  */
22773
22793
  this.TaskBaseAttribute = null;
22774
22794
 
22775
22795
  /**
22776
- * Task configurations.
22796
+ * <p>Task configurations.</p>
22777
22797
  * @type {CreateTaskConfiguration || null}
22778
22798
  */
22779
22799
  this.TaskConfiguration = null;
22780
22800
 
22781
22801
  /**
22782
- * Task scheduling configuration.
22802
+ * <p>Task scheduling configuration</p>
22783
22803
  * @type {CreateTaskSchedulerConfiguration || null}
22784
22804
  */
22785
22805
  this.TaskSchedulerConfiguration = null;
@@ -31700,33 +31720,40 @@ class InTaskParameter extends AbstractModel {
31700
31720
  super();
31701
31721
 
31702
31722
  /**
31703
- * Parameter name.
31704
-
31723
+ * <p>Parameter name</p>
31724
+ Note: This field may return null, indicating that no valid values can be obtained.
31705
31725
  * @type {string || null}
31706
31726
  */
31707
31727
  this.ParamKey = null;
31708
31728
 
31709
31729
  /**
31710
- * Parameter Description: The format is ProjectIdentifier.TaskName.ParameterName
31711
- Example: project_wedata_1.sh_250820_104107.pp_out
31730
+ * <p>Parameter description: Format is project ID.task name.parameter name; for example: project_wedata_1.sh_250820_104107.pp_out</p>
31731
+ Note: This field may return null, indicating that no valid values can be obtained.
31712
31732
  * @type {string || null}
31713
31733
  */
31714
31734
  this.ParamDesc = null;
31715
31735
 
31716
31736
  /**
31717
- * Parent Task ID
31718
-
31737
+ * <p>Parent task ID.</p>
31738
+ Note: This field may return null, indicating that no valid values can be obtained.
31719
31739
  * @type {string || null}
31720
31740
  */
31721
31741
  this.FromTaskId = null;
31722
31742
 
31723
31743
  /**
31724
- * Parent task parameter key.
31725
-
31744
+ * <p>Parent task parameter key</p>
31745
+ Note: This field may return null, indicating that no valid values can be obtained.
31726
31746
  * @type {string || null}
31727
31747
  */
31728
31748
  this.FromParamKey = null;
31729
31749
 
31750
+ /**
31751
+ * <p>Task input type, by default uses TASK.</p><p>Enumeration value:</p><ul><li>TASK: Source is the parent task.</li><li>CONSTANT: Constant value, currently only supported by for-each node.</li></ul>
31752
+ Note: This field may return null, indicating that no valid values can be obtained.
31753
+ * @type {string || null}
31754
+ */
31755
+ this.Type = null;
31756
+
31730
31757
  }
31731
31758
 
31732
31759
  /**
@@ -31740,6 +31767,7 @@ Example: project_wedata_1.sh_250820_104107.pp_out
31740
31767
  this.ParamDesc = 'ParamDesc' in params ? params.ParamDesc : null;
31741
31768
  this.FromTaskId = 'FromTaskId' in params ? params.FromTaskId : null;
31742
31769
  this.FromParamKey = 'FromParamKey' in params ? params.FromParamKey : null;
31770
+ this.Type = 'Type' in params ? params.Type : null;
31743
31771
 
31744
31772
  }
31745
31773
  }