tencentcloud-sdk-nodejs-intl-en 3.0.1161 → 3.0.1163

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.
@@ -2969,134 +2969,59 @@ class KillOpsMakePlanInstancesRequest extends AbstractModel {
2969
2969
  }
2970
2970
 
2971
2971
  /**
2972
- * DescribeEventCases request structure.
2972
+ * AddProjectUserRole response structure.
2973
2973
  * @class
2974
2974
  */
2975
- class DescribeEventCasesRequest extends AbstractModel {
2975
+ class AddProjectUserRoleResponse extends AbstractModel {
2976
2976
  constructor(){
2977
2977
  super();
2978
2978
 
2979
2979
  /**
2980
- * Project ID
2981
- * @type {string || null}
2982
- */
2983
- this.ProjectId = null;
2984
-
2985
- /**
2986
- * Event Instance Catalog, Example Value:
2987
- - Expired: expired
2988
- - Not Expired: consuming
2989
- - All: all
2990
-
2991
- * @type {string || null}
2992
- */
2993
- this.Category = null;
2994
-
2995
- /**
2996
- * Page Number
2997
- * @type {number || null}
2998
- */
2999
- this.PageNumber = null;
3000
-
3001
- /**
3002
- * Number of items per page
3003
- * @type {number || null}
3004
- */
3005
- this.PageSize = null;
3006
-
3007
- /**
3008
- * Event name
3009
- * @type {string || null}
3010
- */
3011
- this.EventName = null;
3012
-
3013
- /**
3014
- * Event type
3015
- * @type {string || null}
3016
- */
3017
- this.EventType = null;
3018
-
3019
- /**
3020
- * Event Segmentation Type
3021
- * @type {string || null}
3022
- */
3023
- this.EventSubType = null;
3024
-
3025
- /**
3026
- * Event Broadcast Type
3027
- * @type {string || null}
3028
- */
3029
- this.EventBroadcastType = null;
3030
-
3031
- /**
3032
- * Event Instance Status, Example Value:
3033
- - Consumed: COMSUMED
3034
- - Expired: EXPIRED
3035
- - Pending Consumption: ACTIVE
3036
- - Consuming: CONSUMING
3037
- * @type {string || null}
3038
- */
3039
- this.Status = null;
3040
-
3041
- /**
3042
- * Minimum Creation Time of Event Instance
3043
- * @type {string || null}
3044
- */
3045
- this.CreationTimeStart = null;
3046
-
3047
- /**
3048
- * Maximum Creation Time of Event Instance
3049
- * @type {string || null}
3050
- */
3051
- this.CreationTimeEnd = null;
3052
-
3053
- /**
3054
- * Minimum Trigger Time of Event Instance
3055
- * @type {string || null}
2980
+ * Returned data
2981
+ * @type {boolean || null}
3056
2982
  */
3057
- this.EventTriggeredTimeStart = null;
2983
+ this.Data = null;
3058
2984
 
3059
2985
  /**
3060
- * Maximum Trigger Time of Event Instance
2986
+ * 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.
3061
2987
  * @type {string || null}
3062
2988
  */
3063
- this.EventTriggeredTimeEnd = null;
2989
+ this.RequestId = null;
3064
2990
 
3065
- /**
3066
- * Minimum Consumption Time of Event Instance
3067
- * @type {string || null}
3068
- */
3069
- this.LogTimeStart = null;
2991
+ }
3070
2992
 
3071
- /**
3072
- * Maximum Consumption Time of Event Instance
3073
- * @type {string || null}
3074
- */
3075
- this.LogTimeEnd = null;
2993
+ /**
2994
+ * @private
2995
+ */
2996
+ deserialize(params) {
2997
+ if (!params) {
2998
+ return;
2999
+ }
3000
+ this.Data = 'Data' in params ? params.Data : null;
3001
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
3076
3002
 
3077
- /**
3078
- * Event Instance Data Timestamp
3079
- * @type {string || null}
3080
- */
3081
- this.Dimension = null;
3003
+ }
3004
+ }
3082
3005
 
3083
- /**
3084
- * Event Instance Validity Period
3085
- * @type {string || null}
3086
- */
3087
- this.TimeToLive = null;
3006
+ /**
3007
+ * ModifyDimensionWeight response structure.
3008
+ * @class
3009
+ */
3010
+ class ModifyDimensionWeightResponse extends AbstractModel {
3011
+ constructor(){
3012
+ super();
3088
3013
 
3089
3014
  /**
3090
- * Sort Fields
3091
- * @type {string || null}
3015
+ * Update Weight Successfully?
3016
+ * @type {boolean || null}
3092
3017
  */
3093
- this.SortItem = null;
3018
+ this.Data = null;
3094
3019
 
3095
3020
  /**
3096
- * Sorting Order
3021
+ * 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.
3097
3022
  * @type {string || null}
3098
3023
  */
3099
- this.SortType = null;
3024
+ this.RequestId = null;
3100
3025
 
3101
3026
  }
3102
3027
 
@@ -3107,25 +3032,8 @@ class DescribeEventCasesRequest extends AbstractModel {
3107
3032
  if (!params) {
3108
3033
  return;
3109
3034
  }
3110
- this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
3111
- this.Category = 'Category' in params ? params.Category : null;
3112
- this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
3113
- this.PageSize = 'PageSize' in params ? params.PageSize : null;
3114
- this.EventName = 'EventName' in params ? params.EventName : null;
3115
- this.EventType = 'EventType' in params ? params.EventType : null;
3116
- this.EventSubType = 'EventSubType' in params ? params.EventSubType : null;
3117
- this.EventBroadcastType = 'EventBroadcastType' in params ? params.EventBroadcastType : null;
3118
- this.Status = 'Status' in params ? params.Status : null;
3119
- this.CreationTimeStart = 'CreationTimeStart' in params ? params.CreationTimeStart : null;
3120
- this.CreationTimeEnd = 'CreationTimeEnd' in params ? params.CreationTimeEnd : null;
3121
- this.EventTriggeredTimeStart = 'EventTriggeredTimeStart' in params ? params.EventTriggeredTimeStart : null;
3122
- this.EventTriggeredTimeEnd = 'EventTriggeredTimeEnd' in params ? params.EventTriggeredTimeEnd : null;
3123
- this.LogTimeStart = 'LogTimeStart' in params ? params.LogTimeStart : null;
3124
- this.LogTimeEnd = 'LogTimeEnd' in params ? params.LogTimeEnd : null;
3125
- this.Dimension = 'Dimension' in params ? params.Dimension : null;
3126
- this.TimeToLive = 'TimeToLive' in params ? params.TimeToLive : null;
3127
- this.SortItem = 'SortItem' in params ? params.SortItem : null;
3128
- this.SortType = 'SortType' in params ? params.SortType : null;
3035
+ this.Data = 'Data' in params ? params.Data : null;
3036
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
3129
3037
 
3130
3038
  }
3131
3039
  }
@@ -4325,11 +4233,11 @@ class InstanceLifeDetailDto extends AbstractModel {
4325
4233
 
4326
4234
  /**
4327
4235
  * Indicates the status of an instance.
4328
- -Indicates waiting for event.
4236
+ -[0] Indicates waiting for event.
4329
4237
  -[12] indicates waiting for upstream.
4330
4238
  -[6, 7, 9, 10, 18] indicates awaiting execution.
4331
- -1, 19, 22 indicate running.
4332
- -21: skip running.
4239
+ -[1, 19, 22] indicate running.
4240
+ -[21] skip running.
4333
4241
  -[3] indicates retry on failure.
4334
4242
  -[8, 4, 5, 13] indicates a failure.
4335
4243
  -[2] indicates a success.
@@ -4348,14 +4256,14 @@ Note: This field may return null, indicating that no valid value can be obtained
4348
4256
  /**
4349
4257
  * Instance lifecycle phase status.
4350
4258
 
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.
4259
+ -WAIT_UPSTREAM indicates waiting for an event or upstream status.
4260
+ -WAIT_RUN indicates waiting for running status.
4261
+ -RUNNING indicates the running state.
4262
+ -COMPLETE indicates terminal state - completed.
4263
+ -FAILED indicates terminal state - retry after failure.
4264
+ -EXPIRED indicates terminal state - failure.
4265
+ -SKIP_RUNNING indicates terminal state - a branch skipped by the upstream branch node.
4266
+ -HISTORY indicates compatibility with historical instances before march 30, 2024. no need to pay attention to this enumeration type for instances afterward.
4359
4267
  Note: This field may return null, indicating that no valid values can be obtained.
4360
4268
  * @type {string || null}
4361
4269
  */
@@ -5489,6 +5397,88 @@ class DescribeDependOpsTasksRequest extends AbstractModel {
5489
5397
  }
5490
5398
  }
5491
5399
 
5400
+ /**
5401
+ * Role permission objects.
5402
+ * @class
5403
+ */
5404
+ class RolePrivilege extends AbstractModel {
5405
+ constructor(){
5406
+ super();
5407
+
5408
+ /**
5409
+ * id
5410
+ Note: This field may return null, indicating that no valid values can be obtained.
5411
+ * @type {string || null}
5412
+ */
5413
+ this.PrivilegeId = null;
5414
+
5415
+ /**
5416
+ * Name
5417
+
5418
+ Note: This field may return null, indicating that no valid values can be obtained.
5419
+ * @type {string || null}
5420
+ */
5421
+ this.PrivilegeName = null;
5422
+
5423
+ /**
5424
+ * Path
5425
+
5426
+ Note: This field may return null, indicating that no valid values can be obtained.
5427
+ * @type {string || null}
5428
+ */
5429
+ this.RestPath = null;
5430
+
5431
+ /**
5432
+ * Method.
5433
+
5434
+ Note: This field may return null, indicating that no valid values can be obtained.
5435
+ * @type {string || null}
5436
+ */
5437
+ this.RestMethod = null;
5438
+
5439
+ /**
5440
+ * Description
5441
+
5442
+ Note: This field may return null, indicating that no valid values can be obtained.
5443
+ * @type {string || null}
5444
+ */
5445
+ this.Description = null;
5446
+
5447
+ /**
5448
+ * Module ID
5449
+
5450
+ Note: This field may return null, indicating that no valid values can be obtained.
5451
+ * @type {string || null}
5452
+ */
5453
+ this.ModuleId = null;
5454
+
5455
+ /**
5456
+ * Permission type: N, R, RW, RWD.
5457
+ Note: This field may return null, indicating that no valid values can be obtained.
5458
+ * @type {string || null}
5459
+ */
5460
+ this.Type = null;
5461
+
5462
+ }
5463
+
5464
+ /**
5465
+ * @private
5466
+ */
5467
+ deserialize(params) {
5468
+ if (!params) {
5469
+ return;
5470
+ }
5471
+ this.PrivilegeId = 'PrivilegeId' in params ? params.PrivilegeId : null;
5472
+ this.PrivilegeName = 'PrivilegeName' in params ? params.PrivilegeName : null;
5473
+ this.RestPath = 'RestPath' in params ? params.RestPath : null;
5474
+ this.RestMethod = 'RestMethod' in params ? params.RestMethod : null;
5475
+ this.Description = 'Description' in params ? params.Description : null;
5476
+ this.ModuleId = 'ModuleId' in params ? params.ModuleId : null;
5477
+ this.Type = 'Type' in params ? params.Type : null;
5478
+
5479
+ }
5480
+ }
5481
+
5492
5482
  /**
5493
5483
  * Table Binding Rule Group Information
5494
5484
  * @class
@@ -6629,14 +6619,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
6629
6619
  this.ExecutorGroupName = null;
6630
6620
 
6631
6621
  /**
6632
- * Standard data time.
6622
+ * Instance data time.
6633
6623
  Note: This field may return null, indicating that no valid values can be obtained.
6634
6624
  * @type {string || null}
6635
6625
  */
6636
6626
  this.CurRunDate = null;
6637
6627
 
6638
6628
  /**
6639
- * Next standard data time.
6629
+ * Next instance data time.
6640
6630
  Note: This field may return null, indicating that no valid values can be obtained.
6641
6631
  * @type {string || null}
6642
6632
  */
@@ -6664,7 +6654,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
6664
6654
  this.TotalRunNum = null;
6665
6655
 
6666
6656
  /**
6667
- * Lifecycle no.
6657
+ * Instance lifetime number, which identifies one-time execution of the instance.
6658
+
6659
+ For example: the number of the first run of a periodic instance is 0. after the user reruns the instance later, the number of the second execution is 1.
6668
6660
  Note: This field may return null, indicating that no valid values can be obtained.
6669
6661
  * @type {number || null}
6670
6662
  */
@@ -6673,9 +6665,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
6673
6665
  /**
6674
6666
  * Instance type.
6675
6667
 
6676
- -0 indicates the supplementary entry type.
6677
- -1 indicates a periodic instance.
6678
- -2 indicates a non-periodic instance.
6668
+ -0 indicates Replenished Instance.
6669
+ -1 indicates Periodic Instance.
6670
+ -2 indicates Non-Periodic Instance.
6679
6671
  Note: This field may return null, indicating that no valid values can be obtained.
6680
6672
  * @type {number || null}
6681
6673
  */
@@ -6684,11 +6676,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
6684
6676
  /**
6685
6677
  * Indicates the status of an instance.
6686
6678
 
6687
- -Indicates waiting for event.
6679
+ -[0] Indicates waiting for event.
6688
6680
  -[12] indicates waiting for upstream.
6689
6681
  -[6, 7, 9, 10, 18] indicates awaiting execution.
6690
- -1, 19, 22 indicate running.
6691
- -21: skip running.
6682
+ -[1, 19, 22] indicate running.
6683
+ -[21]: skip running.
6692
6684
  -[3] indicates retry on failure.
6693
6685
  -[8, 4, 5, 13] indicates a failure.
6694
6686
  -[2] indicates a success.
@@ -6729,11 +6721,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
6729
6721
  * Instance running trigger type.
6730
6722
 
6731
6723
  -RERUN indicates rerunning.
6732
- -ADDITION indicates supplementary recording.
6724
+ -ADDITION indicates data replenishment.
6733
6725
  -PERIODIC indicates a period.
6734
6726
  -APERIODIC indicates non-periodic.
6735
6727
  -RERUN_SKIP_RUN indicates re-run - empty run.
6736
- -ADDITION_SKIP_RUN indicates a supplementary run - empty run.
6728
+ -ADDITION_SKIP_RUN indicates a data replenishment run - empty run.
6737
6729
  -PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
6738
6730
  -APERIODIC_SKIP_RUN indicates a non-periodic empty run.
6739
6731
  -MANUAL_TRIGGER indicates manual triggering.
@@ -7383,24 +7375,140 @@ class SearchConditionInstanceNew extends AbstractModel {
7383
7375
  }
7384
7376
 
7385
7377
  /**
7386
- * DescribeThirdTaskRunLog request structure.
7378
+ * Basic role object.
7387
7379
  * @class
7388
7380
  */
7389
- class DescribeThirdTaskRunLogRequest extends AbstractModel {
7381
+ class BaseRole extends AbstractModel {
7390
7382
  constructor(){
7391
7383
  super();
7392
7384
 
7393
7385
  /**
7394
- * Task ID
7386
+ * Role id.
7395
7387
  * @type {string || null}
7396
7388
  */
7397
- this.TaskId = null;
7389
+ this.RoleId = null;
7398
7390
 
7399
7391
  /**
7400
- * Instance data time
7392
+ * Role name.
7393
+ Note: This field may return null, indicating that no valid values can be obtained.
7401
7394
  * @type {string || null}
7402
7395
  */
7403
- this.CurRunDate = null;
7396
+ this.RoleName = null;
7397
+
7398
+ /**
7399
+ * Role nickname.
7400
+ Note: This field may return null, indicating that no valid values can be obtained.
7401
+ * @type {string || null}
7402
+ */
7403
+ this.DisplayName = null;
7404
+
7405
+ /**
7406
+ * Description
7407
+
7408
+ Note: This field may return null, indicating that no valid values can be obtained.
7409
+ * @type {string || null}
7410
+ */
7411
+ this.Description = null;
7412
+
7413
+ /**
7414
+ * Role type divides into System, Tenant, Project, Commercial.
7415
+ Note: This field may return null, indicating that no valid values can be obtained.
7416
+ * @type {string || null}
7417
+ */
7418
+ this.RoleType = null;
7419
+
7420
+ /**
7421
+ * System preset.
7422
+ Note: This field may return null, indicating that no valid values can be obtained.
7423
+ * @type {boolean || null}
7424
+ */
7425
+ this.SystemDefault = null;
7426
+
7427
+ /**
7428
+ * Custom parameter.
7429
+
7430
+ Note: This field may return null, indicating that no valid values can be obtained.
7431
+ * @type {string || null}
7432
+ */
7433
+ this.Parameters = null;
7434
+
7435
+ /**
7436
+ * Specifies member statistics.
7437
+ Note: This field may return null, indicating that no valid values can be obtained.
7438
+ * @type {number || null}
7439
+ */
7440
+ this.MemberCount = null;
7441
+
7442
+ /**
7443
+ * Permission
7444
+
7445
+ Note: This field may return null, indicating that no valid values can be obtained.
7446
+ * @type {Array.<RolePrivilege> || null}
7447
+ */
7448
+ this.Privileges = null;
7449
+
7450
+ /**
7451
+ * Operator.
7452
+ Note: This field may return null, indicating that no valid values can be obtained.
7453
+ * @type {BaseUser || null}
7454
+ */
7455
+ this.Operator = null;
7456
+
7457
+ /**
7458
+ * Operation time
7459
+
7460
+ Note: This field may return null, indicating that no valid values can be obtained.
7461
+ * @type {number || null}
7462
+ */
7463
+ this.OperateTime = null;
7464
+
7465
+ /**
7466
+ * Creation time
7467
+
7468
+ Note: This field may return null, indicating that no valid values can be obtained.
7469
+ * @type {number || null}
7470
+ */
7471
+ this.CreateTime = null;
7472
+
7473
+ /**
7474
+ * Creation time
7475
+
7476
+ Note: This field may return null, indicating that no valid values can be obtained.
7477
+ * @type {string || null}
7478
+ */
7479
+ this.CreateTimeStr = null;
7480
+
7481
+ /**
7482
+ * Update time.
7483
+
7484
+ Note: This field may return null, indicating that no valid values can be obtained.
7485
+ * @type {string || null}
7486
+ */
7487
+ this.UpdateTimeStr = null;
7488
+
7489
+ /**
7490
+ * Project ID
7491
+
7492
+ Note: This field may return null, indicating that no valid values can be obtained.
7493
+ * @type {string || null}
7494
+ */
7495
+ this.ProjectId = null;
7496
+
7497
+ /**
7498
+ * Update time.
7499
+
7500
+ Note: This field may return null, indicating that no valid values can be obtained.
7501
+ * @type {string || null}
7502
+ */
7503
+ this.UpdateTime = null;
7504
+
7505
+ /**
7506
+ * Creator
7507
+
7508
+ Note: This field may return null, indicating that no valid values can be obtained.
7509
+ * @type {string || null}
7510
+ */
7511
+ this.Creator = null;
7404
7512
 
7405
7513
  }
7406
7514
 
@@ -7411,8 +7519,36 @@ class DescribeThirdTaskRunLogRequest extends AbstractModel {
7411
7519
  if (!params) {
7412
7520
  return;
7413
7521
  }
7414
- this.TaskId = 'TaskId' in params ? params.TaskId : null;
7415
- this.CurRunDate = 'CurRunDate' in params ? params.CurRunDate : null;
7522
+ this.RoleId = 'RoleId' in params ? params.RoleId : null;
7523
+ this.RoleName = 'RoleName' in params ? params.RoleName : null;
7524
+ this.DisplayName = 'DisplayName' in params ? params.DisplayName : null;
7525
+ this.Description = 'Description' in params ? params.Description : null;
7526
+ this.RoleType = 'RoleType' in params ? params.RoleType : null;
7527
+ this.SystemDefault = 'SystemDefault' in params ? params.SystemDefault : null;
7528
+ this.Parameters = 'Parameters' in params ? params.Parameters : null;
7529
+ this.MemberCount = 'MemberCount' in params ? params.MemberCount : null;
7530
+
7531
+ if (params.Privileges) {
7532
+ this.Privileges = new Array();
7533
+ for (let z in params.Privileges) {
7534
+ let obj = new RolePrivilege();
7535
+ obj.deserialize(params.Privileges[z]);
7536
+ this.Privileges.push(obj);
7537
+ }
7538
+ }
7539
+
7540
+ if (params.Operator) {
7541
+ let obj = new BaseUser();
7542
+ obj.deserialize(params.Operator)
7543
+ this.Operator = obj;
7544
+ }
7545
+ this.OperateTime = 'OperateTime' in params ? params.OperateTime : null;
7546
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
7547
+ this.CreateTimeStr = 'CreateTimeStr' in params ? params.CreateTimeStr : null;
7548
+ this.UpdateTimeStr = 'UpdateTimeStr' in params ? params.UpdateTimeStr : null;
7549
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
7550
+ this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
7551
+ this.Creator = 'Creator' in params ? params.Creator : null;
7416
7552
 
7417
7553
  }
7418
7554
  }
@@ -8118,25 +8254,30 @@ Note: This field may return null, indicating that no valid value can be obtained
8118
8254
  }
8119
8255
 
8120
8256
  /**
8121
- * DescribeTableLineage response structure.
8257
+ * AddProjectUserRole request structure.
8122
8258
  * @class
8123
8259
  */
8124
- class DescribeTableLineageResponse extends AbstractModel {
8260
+ class AddProjectUserRoleRequest extends AbstractModel {
8125
8261
  constructor(){
8126
8262
  super();
8127
8263
 
8128
8264
  /**
8129
- * Table Lineage Information
8130
- Note: This field may return null, indicating that no valid value can be obtained.
8131
- * @type {TableLineageInfo || null}
8265
+ * Project ID
8266
+ * @type {string || null}
8132
8267
  */
8133
- this.TableLineage = null;
8268
+ this.ProjectId = null;
8134
8269
 
8135
8270
  /**
8136
- * 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.
8137
- * @type {string || null}
8271
+ * User UIN
8272
+ * @type {Array.<string> || null}
8138
8273
  */
8139
- this.RequestId = null;
8274
+ this.UserIds = null;
8275
+
8276
+ /**
8277
+ * Role id
8278
+ * @type {Array.<string> || null}
8279
+ */
8280
+ this.RoleIds = null;
8140
8281
 
8141
8282
  }
8142
8283
 
@@ -8147,13 +8288,9 @@ Note: This field may return null, indicating that no valid value can be obtained
8147
8288
  if (!params) {
8148
8289
  return;
8149
8290
  }
8150
-
8151
- if (params.TableLineage) {
8152
- let obj = new TableLineageInfo();
8153
- obj.deserialize(params.TableLineage)
8154
- this.TableLineage = obj;
8155
- }
8156
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
8291
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
8292
+ this.UserIds = 'UserIds' in params ? params.UserIds : null;
8293
+ this.RoleIds = 'RoleIds' in params ? params.RoleIds : null;
8157
8294
 
8158
8295
  }
8159
8296
  }
@@ -8595,6 +8732,41 @@ class MoveTasksToFolderRequest extends AbstractModel {
8595
8732
  }
8596
8733
  }
8597
8734
 
8735
+ /**
8736
+ * Sort
8737
+ * @class
8738
+ */
8739
+ class OrderFields extends AbstractModel {
8740
+ constructor(){
8741
+ super();
8742
+
8743
+ /**
8744
+ * Field
8745
+ * @type {string || null}
8746
+ */
8747
+ this.Name = null;
8748
+
8749
+ /**
8750
+ * Sort
8751
+ * @type {string || null}
8752
+ */
8753
+ this.Direction = null;
8754
+
8755
+ }
8756
+
8757
+ /**
8758
+ * @private
8759
+ */
8760
+ deserialize(params) {
8761
+ if (!params) {
8762
+ return;
8763
+ }
8764
+ this.Name = 'Name' in params ? params.Name : null;
8765
+ this.Direction = 'Direction' in params ? params.Direction : null;
8766
+
8767
+ }
8768
+ }
8769
+
8598
8770
  /**
8599
8771
  * MoveTasksToFolder response structure.
8600
8772
  * @class
@@ -9800,97 +9972,30 @@ class ResumeIntegrationTaskResponse extends AbstractModel {
9800
9972
  }
9801
9973
 
9802
9974
  /**
9803
- * Workflow
9975
+ * UpdateProjectUserRole request structure.
9804
9976
  * @class
9805
9977
  */
9806
- class WorkflowExtOpsDto extends AbstractModel {
9978
+ class UpdateProjectUserRoleRequest extends AbstractModel {
9807
9979
  constructor(){
9808
9980
  super();
9809
9981
 
9810
9982
  /**
9811
- * Number of Tasks Count
9812
- Note: This field may return null, indicating that no valid value can be obtained.
9813
- * @type {number || null}
9814
- */
9815
- this.TaskCount = null;
9816
-
9817
- /**
9818
- * File NameNote: This field may return null, indicating that no valid value can be obtained.
9819
- * @type {string || null}
9820
- */
9821
- this.FolderName = null;
9822
-
9823
- /**
9824
- * Workflow IDNote: This field may return null, indicating that no valid value can be obtained.
9825
- * @type {string || null}
9826
- */
9827
- this.WorkFlowId = null;
9828
-
9829
- /**
9830
- * Person in ChargeNote: This field may return null, indicating that no valid value can be obtained.
9831
- * @type {string || null}
9832
- */
9833
- this.Owner = null;
9834
-
9835
- /**
9836
- * Person in charge userId\nNote: This field may return null, indicating that no valid value can be obtained.
9837
- * @type {string || null}
9838
- */
9839
- this.OwnerId = null;
9840
-
9841
- /**
9842
- * Project IDNote: This field may return null, indicating that no valid value can be obtained.
9983
+ * Project ID
9843
9984
  * @type {string || null}
9844
9985
  */
9845
9986
  this.ProjectId = null;
9846
9987
 
9847
9988
  /**
9848
- * Project IdentifierNote: This field may return null, indicating that no valid value can be obtained.
9849
- * @type {string || null}
9850
- */
9851
- this.ProjectIdent = null;
9852
-
9853
- /**
9854
- * Project nameNote: This field may return null, indicating that no valid value can be obtained.
9855
- * @type {string || null}
9856
- */
9857
- this.ProjectName = null;
9858
-
9859
- /**
9860
- * Workflow DescriptionNote: This field may return null, indicating that no valid value can be obtained.
9861
- * @type {string || null}
9862
- */
9863
- this.WorkFlowDesc = null;
9864
-
9865
- /**
9866
- * Workflow nameNote: This field may return null, indicating that no valid value can be obtained.
9867
- * @type {string || null}
9868
- */
9869
- this.WorkFlowName = null;
9870
-
9871
- /**
9872
- * Workflow file id\nNote: This field may return null, indicating that no valid value can be obtained.
9873
- * @type {string || null}
9874
- */
9875
- this.FolderId = null;
9876
-
9877
- /**
9878
- * Workflow statusNote: This field may return null, indicating that no valid value can be obtained.
9879
- * @type {string || null}
9989
+ * User ID
9990
+ * @type {Array.<string> || null}
9880
9991
  */
9881
- this.Status = null;
9992
+ this.UserIds = null;
9882
9993
 
9883
9994
  /**
9884
- * Workflow creation time\nNote: This field may return null, indicating that no valid value can be obtained.
9885
- * @type {string || null}
9995
+ * Role ID
9996
+ * @type {Array.<string> || null}
9886
9997
  */
9887
- this.CreateTime = null;
9888
-
9889
- /**
9890
- * Last update time\nNote: This field may return null, indicating that no valid value can be obtained.
9891
- * @type {string || null}
9892
- */
9893
- this.ModifyTime = null;
9998
+ this.RoleIds = null;
9894
9999
 
9895
10000
  }
9896
10001
 
@@ -9901,20 +10006,9 @@ Note: This field may return null, indicating that no valid value can be obtained
9901
10006
  if (!params) {
9902
10007
  return;
9903
10008
  }
9904
- this.TaskCount = 'TaskCount' in params ? params.TaskCount : null;
9905
- this.FolderName = 'FolderName' in params ? params.FolderName : null;
9906
- this.WorkFlowId = 'WorkFlowId' in params ? params.WorkFlowId : null;
9907
- this.Owner = 'Owner' in params ? params.Owner : null;
9908
- this.OwnerId = 'OwnerId' in params ? params.OwnerId : null;
9909
10009
  this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
9910
- this.ProjectIdent = 'ProjectIdent' in params ? params.ProjectIdent : null;
9911
- this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
9912
- this.WorkFlowDesc = 'WorkFlowDesc' in params ? params.WorkFlowDesc : null;
9913
- this.WorkFlowName = 'WorkFlowName' in params ? params.WorkFlowName : null;
9914
- this.FolderId = 'FolderId' in params ? params.FolderId : null;
9915
- this.Status = 'Status' in params ? params.Status : null;
9916
- this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
9917
- this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
10010
+ this.UserIds = 'UserIds' in params ? params.UserIds : null;
10011
+ this.RoleIds = 'RoleIds' in params ? params.RoleIds : null;
9918
10012
 
9919
10013
  }
9920
10014
  }
@@ -10029,11 +10123,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
10029
10123
  /**
10030
10124
  * **Instance status**.
10031
10125
 
10032
- -Indicates waiting for event.
10126
+ -[0] Indicates waiting for event.
10033
10127
  -[12] indicates waiting for upstream.
10034
10128
  -[6, 7, 9, 10, 18] indicates awaiting execution.
10035
- -1, 19, 22 indicate running.
10036
- -21: skip running.
10129
+ -[1, 19, 22] indicate running.
10130
+ -[21] skip running.
10037
10131
  -[3] indicates retry on failure.
10038
10132
  -[8, 4, 5, 13] indicates a failure.
10039
10133
  -[2] indicates a success.
@@ -10045,12 +10139,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
10045
10139
  /**
10046
10140
  * Instance running trigger type.
10047
10141
 
10048
- -RERUN indicates rerunning.
10142
+ -RERUN indicates data replenishment.
10049
10143
  -ADDITION indicates supplementary recording.
10050
10144
  -PERIODIC indicates a period.
10051
10145
  -APERIODIC indicates non-periodic.
10052
10146
  -RERUN_SKIP_RUN means empty run for re-run.
10053
- -ADDITION_SKIP_RUN indicates a supplementary run - empty run.
10147
+ -ADDITION_SKIP_RUN indicates data replenishment - empty run.
10054
10148
  -PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
10055
10149
  -APERIODIC_SKIP_RUN indicates a non-periodic empty run.
10056
10150
  -MANUAL_TRIGGER indicates manual triggering.
@@ -10119,7 +10213,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
10119
10213
  this.LineCount = null;
10120
10214
 
10121
10215
  /**
10122
- * Execute platform log pagination query parameters, transparently input for each request. the value is an empty string when querying the first page.
10216
+ * Used when performing a paging query for logs. it has no specific business meaning.
10217
+
10218
+ Specifies that the value is null for the first query.
10219
+ Specifies that you can use the field value of ExtInfo in the returned information from the previous query for the second and subsequent queries.
10123
10220
  Note: This field may return null, indicating that no valid values can be obtained.
10124
10221
  * @type {string || null}
10125
10222
  */
@@ -10294,6 +10391,126 @@ class DescribeInstanceLogListRequest extends AbstractModel {
10294
10391
  }
10295
10392
  }
10296
10393
 
10394
+ /**
10395
+ * Workflow
10396
+ * @class
10397
+ */
10398
+ class WorkflowExtOpsDto extends AbstractModel {
10399
+ constructor(){
10400
+ super();
10401
+
10402
+ /**
10403
+ * Number of Tasks Count
10404
+ Note: This field may return null, indicating that no valid value can be obtained.
10405
+ * @type {number || null}
10406
+ */
10407
+ this.TaskCount = null;
10408
+
10409
+ /**
10410
+ * File NameNote: This field may return null, indicating that no valid value can be obtained.
10411
+ * @type {string || null}
10412
+ */
10413
+ this.FolderName = null;
10414
+
10415
+ /**
10416
+ * Workflow IDNote: This field may return null, indicating that no valid value can be obtained.
10417
+ * @type {string || null}
10418
+ */
10419
+ this.WorkFlowId = null;
10420
+
10421
+ /**
10422
+ * Person in ChargeNote: This field may return null, indicating that no valid value can be obtained.
10423
+ * @type {string || null}
10424
+ */
10425
+ this.Owner = null;
10426
+
10427
+ /**
10428
+ * Person in charge userId\nNote: This field may return null, indicating that no valid value can be obtained.
10429
+ * @type {string || null}
10430
+ */
10431
+ this.OwnerId = null;
10432
+
10433
+ /**
10434
+ * Project IDNote: This field may return null, indicating that no valid value can be obtained.
10435
+ * @type {string || null}
10436
+ */
10437
+ this.ProjectId = null;
10438
+
10439
+ /**
10440
+ * Project IdentifierNote: This field may return null, indicating that no valid value can be obtained.
10441
+ * @type {string || null}
10442
+ */
10443
+ this.ProjectIdent = null;
10444
+
10445
+ /**
10446
+ * Project nameNote: This field may return null, indicating that no valid value can be obtained.
10447
+ * @type {string || null}
10448
+ */
10449
+ this.ProjectName = null;
10450
+
10451
+ /**
10452
+ * Workflow DescriptionNote: This field may return null, indicating that no valid value can be obtained.
10453
+ * @type {string || null}
10454
+ */
10455
+ this.WorkFlowDesc = null;
10456
+
10457
+ /**
10458
+ * Workflow nameNote: This field may return null, indicating that no valid value can be obtained.
10459
+ * @type {string || null}
10460
+ */
10461
+ this.WorkFlowName = null;
10462
+
10463
+ /**
10464
+ * Workflow file id\nNote: This field may return null, indicating that no valid value can be obtained.
10465
+ * @type {string || null}
10466
+ */
10467
+ this.FolderId = null;
10468
+
10469
+ /**
10470
+ * Workflow statusNote: This field may return null, indicating that no valid value can be obtained.
10471
+ * @type {string || null}
10472
+ */
10473
+ this.Status = null;
10474
+
10475
+ /**
10476
+ * Workflow creation time\nNote: This field may return null, indicating that no valid value can be obtained.
10477
+ * @type {string || null}
10478
+ */
10479
+ this.CreateTime = null;
10480
+
10481
+ /**
10482
+ * Last update time\nNote: This field may return null, indicating that no valid value can be obtained.
10483
+ * @type {string || null}
10484
+ */
10485
+ this.ModifyTime = null;
10486
+
10487
+ }
10488
+
10489
+ /**
10490
+ * @private
10491
+ */
10492
+ deserialize(params) {
10493
+ if (!params) {
10494
+ return;
10495
+ }
10496
+ this.TaskCount = 'TaskCount' in params ? params.TaskCount : null;
10497
+ this.FolderName = 'FolderName' in params ? params.FolderName : null;
10498
+ this.WorkFlowId = 'WorkFlowId' in params ? params.WorkFlowId : null;
10499
+ this.Owner = 'Owner' in params ? params.Owner : null;
10500
+ this.OwnerId = 'OwnerId' in params ? params.OwnerId : null;
10501
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
10502
+ this.ProjectIdent = 'ProjectIdent' in params ? params.ProjectIdent : null;
10503
+ this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
10504
+ this.WorkFlowDesc = 'WorkFlowDesc' in params ? params.WorkFlowDesc : null;
10505
+ this.WorkFlowName = 'WorkFlowName' in params ? params.WorkFlowName : null;
10506
+ this.FolderId = 'FolderId' in params ? params.FolderId : null;
10507
+ this.Status = 'Status' in params ? params.Status : null;
10508
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
10509
+ this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
10510
+
10511
+ }
10512
+ }
10513
+
10297
10514
  /**
10298
10515
  * Integrated Task Node
10299
10516
  * @class
@@ -12679,6 +12896,78 @@ class DeleteResourceFileResponse extends AbstractModel {
12679
12896
  }
12680
12897
  }
12681
12898
 
12899
+ /**
12900
+ * Pagination information of the role list.
12901
+ * @class
12902
+ */
12903
+ class PageRoles extends AbstractModel {
12904
+ constructor(){
12905
+ super();
12906
+
12907
+ /**
12908
+ * Role information.
12909
+ Note: This field may return null, indicating that no valid values can be obtained.
12910
+ * @type {Array.<BaseRole> || null}
12911
+ */
12912
+ this.Rows = null;
12913
+
12914
+ /**
12915
+ * Page number
12916
+
12917
+ Note: This field may return null, indicating that no valid values can be obtained.
12918
+ * @type {number || null}
12919
+ */
12920
+ this.PageNumber = null;
12921
+
12922
+ /**
12923
+ * Pagination size
12924
+
12925
+ Note: This field may return null, indicating that no valid values can be obtained.
12926
+ * @type {number || null}
12927
+ */
12928
+ this.PageSize = null;
12929
+
12930
+ /**
12931
+ * Total number
12932
+
12933
+ Note: This field may return null, indicating that no valid values can be obtained.
12934
+ * @type {number || null}
12935
+ */
12936
+ this.TotalCount = null;
12937
+
12938
+ /**
12939
+ * Total pagination pages.
12940
+ Note: This field may return null, indicating that no valid values can be obtained.
12941
+ * @type {number || null}
12942
+ */
12943
+ this.TotalPageNumber = null;
12944
+
12945
+ }
12946
+
12947
+ /**
12948
+ * @private
12949
+ */
12950
+ deserialize(params) {
12951
+ if (!params) {
12952
+ return;
12953
+ }
12954
+
12955
+ if (params.Rows) {
12956
+ this.Rows = new Array();
12957
+ for (let z in params.Rows) {
12958
+ let obj = new BaseRole();
12959
+ obj.deserialize(params.Rows[z]);
12960
+ this.Rows.push(obj);
12961
+ }
12962
+ }
12963
+ this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
12964
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
12965
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
12966
+ this.TotalPageNumber = 'TotalPageNumber' in params ? params.TotalPageNumber : null;
12967
+
12968
+ }
12969
+ }
12970
+
12682
12971
  /**
12683
12972
  * SubmitTask response structure.
12684
12973
  * @class
@@ -13225,6 +13514,46 @@ false Deletion Failed
13225
13514
  }
13226
13515
  }
13227
13516
 
13517
+ /**
13518
+ * DescribeRoleList response structure.
13519
+ * @class
13520
+ */
13521
+ class DescribeRoleListResponse extends AbstractModel {
13522
+ constructor(){
13523
+ super();
13524
+
13525
+ /**
13526
+ * This API is used to provide the Role List
13527
+ * @type {PageRoles || null}
13528
+ */
13529
+ this.Data = null;
13530
+
13531
+ /**
13532
+ * 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.
13533
+ * @type {string || null}
13534
+ */
13535
+ this.RequestId = null;
13536
+
13537
+ }
13538
+
13539
+ /**
13540
+ * @private
13541
+ */
13542
+ deserialize(params) {
13543
+ if (!params) {
13544
+ return;
13545
+ }
13546
+
13547
+ if (params.Data) {
13548
+ let obj = new PageRoles();
13549
+ obj.deserialize(params.Data)
13550
+ this.Data = obj;
13551
+ }
13552
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
13553
+
13554
+ }
13555
+ }
13556
+
13228
13557
  /**
13229
13558
  * DescribeOpsWorkflows request structure.
13230
13559
  * @class
@@ -20135,7 +20464,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
20135
20464
  this.TaskCycleType = null;
20136
20465
 
20137
20466
  /**
20138
- * Standard data time.
20467
+ * Instance data time.
20139
20468
  Note: This field may return null, indicating that no valid values can be obtained.
20140
20469
  * @type {string || null}
20141
20470
  */
@@ -20177,7 +20506,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
20177
20506
  /**
20178
20507
  * Indicates the status of an instance.
20179
20508
 
20180
- -Indicates waiting for event.
20509
+ -[0]Indicates waiting for event.
20181
20510
  -[12] indicates waiting for upstream.
20182
20511
  -[6, 7, 9, 10, 18] indicates awaiting execution.
20183
20512
  -[1, 19, 22]: running.
@@ -21022,6 +21351,168 @@ class ProjectBaseInfoOpsRequest extends AbstractModel {
21022
21351
  }
21023
21352
  }
21024
21353
 
21354
+ /**
21355
+ * DescribeEventCases request structure.
21356
+ * @class
21357
+ */
21358
+ class DescribeEventCasesRequest extends AbstractModel {
21359
+ constructor(){
21360
+ super();
21361
+
21362
+ /**
21363
+ * Project ID
21364
+ * @type {string || null}
21365
+ */
21366
+ this.ProjectId = null;
21367
+
21368
+ /**
21369
+ * Event Instance Catalog, Example Value:
21370
+ - Expired: expired
21371
+ - Not Expired: consuming
21372
+ - All: all
21373
+
21374
+ * @type {string || null}
21375
+ */
21376
+ this.Category = null;
21377
+
21378
+ /**
21379
+ * Page Number
21380
+ * @type {number || null}
21381
+ */
21382
+ this.PageNumber = null;
21383
+
21384
+ /**
21385
+ * Number of items per page
21386
+ * @type {number || null}
21387
+ */
21388
+ this.PageSize = null;
21389
+
21390
+ /**
21391
+ * Event name
21392
+ * @type {string || null}
21393
+ */
21394
+ this.EventName = null;
21395
+
21396
+ /**
21397
+ * Event type
21398
+ * @type {string || null}
21399
+ */
21400
+ this.EventType = null;
21401
+
21402
+ /**
21403
+ * Event Segmentation Type
21404
+ * @type {string || null}
21405
+ */
21406
+ this.EventSubType = null;
21407
+
21408
+ /**
21409
+ * Event Broadcast Type
21410
+ * @type {string || null}
21411
+ */
21412
+ this.EventBroadcastType = null;
21413
+
21414
+ /**
21415
+ * Event Instance Status, Example Value:
21416
+ - Consumed: COMSUMED
21417
+ - Expired: EXPIRED
21418
+ - Pending Consumption: ACTIVE
21419
+ - Consuming: CONSUMING
21420
+ * @type {string || null}
21421
+ */
21422
+ this.Status = null;
21423
+
21424
+ /**
21425
+ * Minimum Creation Time of Event Instance
21426
+ * @type {string || null}
21427
+ */
21428
+ this.CreationTimeStart = null;
21429
+
21430
+ /**
21431
+ * Maximum Creation Time of Event Instance
21432
+ * @type {string || null}
21433
+ */
21434
+ this.CreationTimeEnd = null;
21435
+
21436
+ /**
21437
+ * Minimum Trigger Time of Event Instance
21438
+ * @type {string || null}
21439
+ */
21440
+ this.EventTriggeredTimeStart = null;
21441
+
21442
+ /**
21443
+ * Maximum Trigger Time of Event Instance
21444
+ * @type {string || null}
21445
+ */
21446
+ this.EventTriggeredTimeEnd = null;
21447
+
21448
+ /**
21449
+ * Minimum Consumption Time of Event Instance
21450
+ * @type {string || null}
21451
+ */
21452
+ this.LogTimeStart = null;
21453
+
21454
+ /**
21455
+ * Maximum Consumption Time of Event Instance
21456
+ * @type {string || null}
21457
+ */
21458
+ this.LogTimeEnd = null;
21459
+
21460
+ /**
21461
+ * Event Instance Data Timestamp
21462
+ * @type {string || null}
21463
+ */
21464
+ this.Dimension = null;
21465
+
21466
+ /**
21467
+ * Event Instance Validity Period
21468
+ * @type {string || null}
21469
+ */
21470
+ this.TimeToLive = null;
21471
+
21472
+ /**
21473
+ * Sort Fields
21474
+ * @type {string || null}
21475
+ */
21476
+ this.SortItem = null;
21477
+
21478
+ /**
21479
+ * Sorting Order
21480
+ * @type {string || null}
21481
+ */
21482
+ this.SortType = null;
21483
+
21484
+ }
21485
+
21486
+ /**
21487
+ * @private
21488
+ */
21489
+ deserialize(params) {
21490
+ if (!params) {
21491
+ return;
21492
+ }
21493
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
21494
+ this.Category = 'Category' in params ? params.Category : null;
21495
+ this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
21496
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
21497
+ this.EventName = 'EventName' in params ? params.EventName : null;
21498
+ this.EventType = 'EventType' in params ? params.EventType : null;
21499
+ this.EventSubType = 'EventSubType' in params ? params.EventSubType : null;
21500
+ this.EventBroadcastType = 'EventBroadcastType' in params ? params.EventBroadcastType : null;
21501
+ this.Status = 'Status' in params ? params.Status : null;
21502
+ this.CreationTimeStart = 'CreationTimeStart' in params ? params.CreationTimeStart : null;
21503
+ this.CreationTimeEnd = 'CreationTimeEnd' in params ? params.CreationTimeEnd : null;
21504
+ this.EventTriggeredTimeStart = 'EventTriggeredTimeStart' in params ? params.EventTriggeredTimeStart : null;
21505
+ this.EventTriggeredTimeEnd = 'EventTriggeredTimeEnd' in params ? params.EventTriggeredTimeEnd : null;
21506
+ this.LogTimeStart = 'LogTimeStart' in params ? params.LogTimeStart : null;
21507
+ this.LogTimeEnd = 'LogTimeEnd' in params ? params.LogTimeEnd : null;
21508
+ this.Dimension = 'Dimension' in params ? params.Dimension : null;
21509
+ this.TimeToLive = 'TimeToLive' in params ? params.TimeToLive : null;
21510
+ this.SortItem = 'SortItem' in params ? params.SortItem : null;
21511
+ this.SortType = 'SortType' in params ? params.SortType : null;
21512
+
21513
+ }
21514
+ }
21515
+
21025
21516
  /**
21026
21517
  * DeleteRule response structure.
21027
21518
  * @class
@@ -22048,15 +22539,15 @@ class ListInstancesRequest extends AbstractModel {
22048
22539
  this.ProjectId = null;
22049
22540
 
22050
22541
  /**
22051
- * Instance plan scheduling time.
22052
- Filter start time. the time format is yyyy-MM-dd HH:MM:ss.
22542
+ * Filter criteria for instance planned scheduling time.
22543
+ Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
22053
22544
  * @type {string || null}
22054
22545
  */
22055
22546
  this.ScheduleTimeFrom = null;
22056
22547
 
22057
22548
  /**
22058
- * Instance plan scheduling time.
22059
- Filter expiration time. time format: yyyy-MM-dd HH:MM:ss.
22549
+ * Filter criteria for instance planned scheduling time.
22550
+ Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
22060
22551
  * @type {string || null}
22061
22552
  */
22062
22553
  this.ScheduleTimeTo = null;
@@ -22076,12 +22567,12 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
22076
22567
  this.PageSize = null;
22077
22568
 
22078
22569
  /**
22079
- * Field used to sort query results.
22570
+ * Sorting field for query results.
22080
22571
 
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.
22572
+ -SCHEDULE_DATE indicates sorting based on the planned scheduling time.
22573
+ -START_TIME indicates sorting by the instance's start execution time.
22574
+ -END_TIME indicates sorting based on the instance execution end time.
22575
+ -COST_TIME indicates sorting based on instance execution duration.
22085
22576
  * @type {string || null}
22086
22577
  */
22087
22578
  this.SortColumn = null;
@@ -22098,9 +22589,9 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
22098
22589
  /**
22099
22590
  * Instance type.
22100
22591
 
22101
- -0 indicates the supplementary entry type.
22102
- -1 indicates a periodic instance.
22103
- -2 indicates a non-periodic instance.
22592
+ -0 indicates Replenished Instance.
22593
+ -1 indicates Periodic Instance.
22594
+ -2 indicates Non-Periodic instance.
22104
22595
  * @type {number || null}
22105
22596
  */
22106
22597
  this.InstanceType = null;
@@ -22109,10 +22600,10 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
22109
22600
  * Instance execution status.
22110
22601
  Support filtering multiple items with an "or" relationship between conditions.
22111
22602
 
22112
- -Indicates waiting for event.
22603
+ -[0] Indicates waiting for event.
22113
22604
  -[12] indicates waiting for upstream.
22114
22605
  -[6, 7, 9, 10, 18] indicates awaiting execution.
22115
- -1, 19, 22 indicate running.
22606
+ -[1, 19, 22] indicate running.
22116
22607
  -[21] indicates skipping running.
22117
22608
  -[3] indicates retry on failure.
22118
22609
  -[8, 4, 5, 13] indicates a failure.
@@ -22185,15 +22676,15 @@ The DescribeNormalIntegrationExecutorGroups API can be used to obtain the list o
22185
22676
  this.ExecutorGroupIdList = null;
22186
22677
 
22187
22678
  /**
22188
- * **Start time**.
22189
- Filter start time. the time format is yyyy-MM-dd HH:MM:ss.
22679
+ * Instance execution start time filter criteria.
22680
+ Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
22190
22681
  * @type {string || null}
22191
22682
  */
22192
22683
  this.StartTimeFrom = null;
22193
22684
 
22194
22685
  /**
22195
- * **Start time**.
22196
- Filter expiration time. time format: yyyy-MM-dd HH:MM:ss.
22686
+ * Instance execution start time filter criteria.
22687
+ Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
22197
22688
  * @type {string || null}
22198
22689
  */
22199
22690
  this.StartTimeTo = null;
@@ -22960,11 +23451,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
22960
23451
  /**
22961
23452
  * Instance status.
22962
23453
 
22963
- -Indicates waiting for event.
23454
+ -[0] Indicates waiting for event.
22964
23455
  -[12] indicates waiting for upstream.
22965
23456
  -[6, 7, 9, 10, 18] indicates awaiting execution.
22966
- -1, 19, 22 indicate running.
22967
- -21: skip running.
23457
+ -[1, 19, 22] indicate running.
23458
+ -[21] skip running.
22968
23459
  -[3] indicates retry on failure.
22969
23460
  -[8, 4, 5, 13] indicates a failure.
22970
23461
  -[2] indicates a success.
@@ -22974,7 +23465,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
22974
23465
  this.InstanceState = null;
22975
23466
 
22976
23467
  /**
22977
- * Lifecycle no.
23468
+ * Instance lifetime number, which identifies one-time execution of the instance.
23469
+
23470
+ For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
22978
23471
  Note: This field may return null, indicating that no valid values can be obtained.
22979
23472
  * @type {number || null}
22980
23473
  */
@@ -22984,11 +23477,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
22984
23477
  * Instance running trigger type.
22985
23478
 
22986
23479
  -RERUN indicates rerunning.
22987
- -ADDITION indicates supplementary recording.
23480
+ -ADDITION indicates data replenishment.
22988
23481
  -PERIODIC indicates a period.
22989
23482
  -APERIODIC indicates non-periodic.
22990
23483
  -RERUN_SKIP_RUN means empty run for re-run.
22991
- -ADDITION_SKIP_RUN indicates a supplementary run - empty run.
23484
+ -ADDITION_SKIP_RUN indicates data replenishment - empty run.
22992
23485
  -PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
22993
23486
  -APERIODIC_SKIP_RUN indicates a non-periodic empty run.
22994
23487
  -MANUAL_TRIGGER indicates manual triggering.
@@ -23022,6 +23515,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
23022
23515
 
23023
23516
  /**
23024
23517
  * Dispatch execution ID.
23518
+ The unified execution platform dispatches execution to the new version executor with a unique ID to identify a specific execution, while the existing old executors do not have this ID when dispatching execution.
23519
+ If it is unknown whether the executor version supports this ID, contact tencent cloud's operations team.
23025
23520
  Note: This field may return null, indicating that no valid values can be obtained.
23026
23521
  * @type {string || null}
23027
23522
  */
@@ -25091,24 +25586,118 @@ class SubmitTaskTestRunResponse extends AbstractModel {
25091
25586
  }
25092
25587
 
25093
25588
  /**
25094
- * ModifyDimensionWeight response structure.
25589
+ * UpdateProjectUserRole response structure.
25095
25590
  * @class
25096
25591
  */
25097
- class ModifyDimensionWeightResponse extends AbstractModel {
25592
+ class UpdateProjectUserRoleResponse extends AbstractModel {
25098
25593
  constructor(){
25099
25594
  super();
25100
25595
 
25101
25596
  /**
25102
- * Update Weight Successfully?
25597
+ * 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.
25598
+ * @type {string || null}
25599
+ */
25600
+ this.RequestId = null;
25601
+
25602
+ }
25603
+
25604
+ /**
25605
+ * @private
25606
+ */
25607
+ deserialize(params) {
25608
+ if (!params) {
25609
+ return;
25610
+ }
25611
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
25612
+
25613
+ }
25614
+ }
25615
+
25616
+ /**
25617
+ * DescribeRoleList request structure.
25618
+ * @class
25619
+ */
25620
+ class DescribeRoleListRequest extends AbstractModel {
25621
+ constructor(){
25622
+ super();
25623
+
25624
+ /**
25625
+ * Return all Roles
25103
25626
  * @type {boolean || null}
25104
25627
  */
25105
- this.Data = null;
25628
+ this.ShowAllRoles = null;
25106
25629
 
25107
25630
  /**
25108
- * 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.
25631
+ * Role type (system, tenant, project) that needs to be returned
25632
+ * @type {Array.<string> || null}
25633
+ */
25634
+ this.IncludeRoleTypes = null;
25635
+
25636
+ /**
25637
+ * Specifies the statistics of role binding personnel. Only supported in the private edition.
25638
+ * @type {boolean || null}
25639
+ */
25640
+ this.DescribeMemberCount = null;
25641
+
25642
+ /**
25643
+ * Specifies the operator information. describes the privatized multi-tenancy version.
25644
+ * @type {boolean || null}
25645
+ */
25646
+ this.DescribeOperator = null;
25647
+
25648
+ /**
25649
+ * System Role
25650
+ * @type {boolean || null}
25651
+ */
25652
+ this.DescribeSystemRoleOnly = null;
25653
+
25654
+ /**
25655
+ * Custom Role
25656
+ * @type {boolean || null}
25657
+ */
25658
+ this.DescribeCustomRoleOnly = null;
25659
+
25660
+ /**
25661
+ * Permission to view
25662
+ * @type {boolean || null}
25663
+ */
25664
+ this.DescribePrivileges = null;
25665
+
25666
+ /**
25667
+ * Filter criteria for Role ID
25668
+ * @type {Array.<string> || null}
25669
+ */
25670
+ this.RoleIds = null;
25671
+
25672
+ /**
25673
+ * Project ID
25109
25674
  * @type {string || null}
25110
25675
  */
25111
- this.RequestId = null;
25676
+ this.ProjectId = null;
25677
+
25678
+ /**
25679
+ * Page number
25680
+ * @type {number || null}
25681
+ */
25682
+ this.PageNumber = null;
25683
+
25684
+ /**
25685
+ * Paging information
25686
+ * @type {number || null}
25687
+ */
25688
+ this.PageSize = null;
25689
+
25690
+ /**
25691
+ * Query Field
25692
+ * @type {Array.<Filter> || null}
25693
+ */
25694
+ this.Filters = null;
25695
+
25696
+ /**
25697
+ * Sorting Field
25698
+ * @type {Array.<OrderFields> || null}
25699
+ */
25700
+ this.OrderFields = null;
25112
25701
 
25113
25702
  }
25114
25703
 
@@ -25119,8 +25708,35 @@ class ModifyDimensionWeightResponse extends AbstractModel {
25119
25708
  if (!params) {
25120
25709
  return;
25121
25710
  }
25122
- this.Data = 'Data' in params ? params.Data : null;
25123
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
25711
+ this.ShowAllRoles = 'ShowAllRoles' in params ? params.ShowAllRoles : null;
25712
+ this.IncludeRoleTypes = 'IncludeRoleTypes' in params ? params.IncludeRoleTypes : null;
25713
+ this.DescribeMemberCount = 'DescribeMemberCount' in params ? params.DescribeMemberCount : null;
25714
+ this.DescribeOperator = 'DescribeOperator' in params ? params.DescribeOperator : null;
25715
+ this.DescribeSystemRoleOnly = 'DescribeSystemRoleOnly' in params ? params.DescribeSystemRoleOnly : null;
25716
+ this.DescribeCustomRoleOnly = 'DescribeCustomRoleOnly' in params ? params.DescribeCustomRoleOnly : null;
25717
+ this.DescribePrivileges = 'DescribePrivileges' in params ? params.DescribePrivileges : null;
25718
+ this.RoleIds = 'RoleIds' in params ? params.RoleIds : null;
25719
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
25720
+ this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
25721
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
25722
+
25723
+ if (params.Filters) {
25724
+ this.Filters = new Array();
25725
+ for (let z in params.Filters) {
25726
+ let obj = new Filter();
25727
+ obj.deserialize(params.Filters[z]);
25728
+ this.Filters.push(obj);
25729
+ }
25730
+ }
25731
+
25732
+ if (params.OrderFields) {
25733
+ this.OrderFields = new Array();
25734
+ for (let z in params.OrderFields) {
25735
+ let obj = new OrderFields();
25736
+ obj.deserialize(params.OrderFields[z]);
25737
+ this.OrderFields.push(obj);
25738
+ }
25739
+ }
25124
25740
 
25125
25741
  }
25126
25742
  }
@@ -31605,6 +32221,46 @@ Note: This field may return null, indicating that no valid value can be obtained
31605
32221
  }
31606
32222
  }
31607
32223
 
32224
+ /**
32225
+ * RegisterEvent response structure.
32226
+ * @class
32227
+ */
32228
+ class RegisterEventResponse extends AbstractModel {
32229
+ constructor(){
32230
+ super();
32231
+
32232
+ /**
32233
+ * Success or FailureNote: This field may return null, indicating that no valid value can be obtained.
32234
+ * @type {BatchReturn || null}
32235
+ */
32236
+ this.Data = null;
32237
+
32238
+ /**
32239
+ * 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.
32240
+ * @type {string || null}
32241
+ */
32242
+ this.RequestId = null;
32243
+
32244
+ }
32245
+
32246
+ /**
32247
+ * @private
32248
+ */
32249
+ deserialize(params) {
32250
+ if (!params) {
32251
+ return;
32252
+ }
32253
+
32254
+ if (params.Data) {
32255
+ let obj = new BatchReturn();
32256
+ obj.deserialize(params.Data)
32257
+ this.Data = obj;
32258
+ }
32259
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
32260
+
32261
+ }
32262
+ }
32263
+
31608
32264
  /**
31609
32265
  * CountOpsInstanceState response structure.
31610
32266
  * @class
@@ -43058,6 +43714,41 @@ Note: This field may return null, indicating that no valid value can be obtained
43058
43714
  }
43059
43715
  }
43060
43716
 
43717
+ /**
43718
+ * DescribeThirdTaskRunLog request structure.
43719
+ * @class
43720
+ */
43721
+ class DescribeThirdTaskRunLogRequest extends AbstractModel {
43722
+ constructor(){
43723
+ super();
43724
+
43725
+ /**
43726
+ * Task ID
43727
+ * @type {string || null}
43728
+ */
43729
+ this.TaskId = null;
43730
+
43731
+ /**
43732
+ * Instance data time
43733
+ * @type {string || null}
43734
+ */
43735
+ this.CurRunDate = null;
43736
+
43737
+ }
43738
+
43739
+ /**
43740
+ * @private
43741
+ */
43742
+ deserialize(params) {
43743
+ if (!params) {
43744
+ return;
43745
+ }
43746
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
43747
+ this.CurRunDate = 'CurRunDate' in params ? params.CurRunDate : null;
43748
+
43749
+ }
43750
+ }
43751
+
43061
43752
  /**
43062
43753
  * DescribeIntegrationStatisticsTaskStatus response structure.
43063
43754
  * @class
@@ -44834,7 +45525,9 @@ class GetInstanceLogRequest extends AbstractModel {
44834
45525
  this.InstanceKey = null;
44835
45526
 
44836
45527
  /**
44837
- * Lifecycle no.
45528
+ * Instance lifetime number, which identifies one-time execution of the instance.
45529
+
45530
+ For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
44838
45531
  * @type {number || null}
44839
45532
  */
44840
45533
  this.LifeRoundNum = null;
@@ -44895,6 +45588,15 @@ The default value is 10000.
44895
45588
  */
44896
45589
  this.EndLineCount = null;
44897
45590
 
45591
+ /**
45592
+ * Used when performing a paging query for logs. it has no specific business meaning.
45593
+
45594
+ Specifies that the value is null for the first query.
45595
+ Use the ExtInfo field value in the returned information from the previous query for the second and subsequent queries.
45596
+ * @type {string || null}
45597
+ */
45598
+ this.ExtInfo = null;
45599
+
44898
45600
  }
44899
45601
 
44900
45602
  /**
@@ -44914,6 +45616,7 @@ The default value is 10000.
44914
45616
  this.LogLevel = 'LogLevel' in params ? params.LogLevel : null;
44915
45617
  this.StartLineNum = 'StartLineNum' in params ? params.StartLineNum : null;
44916
45618
  this.EndLineCount = 'EndLineCount' in params ? params.EndLineCount : null;
45619
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
44917
45620
 
44918
45621
  }
44919
45622
  }
@@ -45990,18 +46693,19 @@ Note: This field may return null, indicating that no valid value can be obtained
45990
46693
  }
45991
46694
 
45992
46695
  /**
45993
- * RegisterEvent response structure.
46696
+ * DescribeTableLineage response structure.
45994
46697
  * @class
45995
46698
  */
45996
- class RegisterEventResponse extends AbstractModel {
46699
+ class DescribeTableLineageResponse extends AbstractModel {
45997
46700
  constructor(){
45998
46701
  super();
45999
46702
 
46000
46703
  /**
46001
- * Success or FailureNote: This field may return null, indicating that no valid value can be obtained.
46002
- * @type {BatchReturn || null}
46704
+ * Table Lineage Information
46705
+ Note: This field may return null, indicating that no valid value can be obtained.
46706
+ * @type {TableLineageInfo || null}
46003
46707
  */
46004
- this.Data = null;
46708
+ this.TableLineage = null;
46005
46709
 
46006
46710
  /**
46007
46711
  * 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.
@@ -46019,10 +46723,10 @@ class RegisterEventResponse extends AbstractModel {
46019
46723
  return;
46020
46724
  }
46021
46725
 
46022
- if (params.Data) {
46023
- let obj = new BatchReturn();
46024
- obj.deserialize(params.Data)
46025
- this.Data = obj;
46726
+ if (params.TableLineage) {
46727
+ let obj = new TableLineageInfo();
46728
+ obj.deserialize(params.TableLineage)
46729
+ this.TableLineage = obj;
46026
46730
  }
46027
46731
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
46028
46732
 
@@ -46556,7 +47260,8 @@ module.exports = {
46556
47260
  EventCaseAuditLogOptDto: EventCaseAuditLogOptDto,
46557
47261
  DescribeTableLineageRequest: DescribeTableLineageRequest,
46558
47262
  KillOpsMakePlanInstancesRequest: KillOpsMakePlanInstancesRequest,
46559
- DescribeEventCasesRequest: DescribeEventCasesRequest,
47263
+ AddProjectUserRoleResponse: AddProjectUserRoleResponse,
47264
+ ModifyDimensionWeightResponse: ModifyDimensionWeightResponse,
46560
47265
  BatchResumeIntegrationTasksResponse: BatchResumeIntegrationTasksResponse,
46561
47266
  DescribeFieldBasicInfoResponse: DescribeFieldBasicInfoResponse,
46562
47267
  ColumnItem: ColumnItem,
@@ -46588,6 +47293,7 @@ module.exports = {
46588
47293
  WorkflowTaskCountOpsDto: WorkflowTaskCountOpsDto,
46589
47294
  StageCloudApiRequest: StageCloudApiRequest,
46590
47295
  DescribeDependOpsTasksRequest: DescribeDependOpsTasksRequest,
47296
+ RolePrivilege: RolePrivilege,
46591
47297
  RuleGroupTable: RuleGroupTable,
46592
47298
  DescribeInstanceLogRequest: DescribeInstanceLogRequest,
46593
47299
  DescribeRuleGroupSubscriptionResponse: DescribeRuleGroupSubscriptionResponse,
@@ -46610,7 +47316,7 @@ module.exports = {
46610
47316
  DescribeRuleGroupsByPageRequest: DescribeRuleGroupsByPageRequest,
46611
47317
  BatchDeleteIntegrationTasksResponse: BatchDeleteIntegrationTasksResponse,
46612
47318
  SearchConditionInstanceNew: SearchConditionInstanceNew,
46613
- DescribeThirdTaskRunLogRequest: DescribeThirdTaskRunLogRequest,
47319
+ BaseRole: BaseRole,
46614
47320
  BatchRerunIntegrationTaskInstancesRequest: BatchRerunIntegrationTaskInstancesRequest,
46615
47321
  DescribeWorkflowTaskCountResponse: DescribeWorkflowTaskCountResponse,
46616
47322
  TaskTag: TaskTag,
@@ -46619,7 +47325,7 @@ module.exports = {
46619
47325
  DescribeTopTableStatRequest: DescribeTopTableStatRequest,
46620
47326
  SearchCondition: SearchCondition,
46621
47327
  Rule: Rule,
46622
- DescribeTableLineageResponse: DescribeTableLineageResponse,
47328
+ AddProjectUserRoleRequest: AddProjectUserRoleRequest,
46623
47329
  ModifyRuleGroupSubscriptionRequest: ModifyRuleGroupSubscriptionRequest,
46624
47330
  DescribeDataSourceListResponse: DescribeDataSourceListResponse,
46625
47331
  AgentStatus: AgentStatus,
@@ -46628,6 +47334,7 @@ module.exports = {
46628
47334
  DeleteDsFolderResponse: DeleteDsFolderResponse,
46629
47335
  DescribeDrInstancePageResponse: DescribeDrInstancePageResponse,
46630
47336
  MoveTasksToFolderRequest: MoveTasksToFolderRequest,
47337
+ OrderFields: OrderFields,
46631
47338
  MoveTasksToFolderResponse: MoveTasksToFolderResponse,
46632
47339
  UpdateWorkflowOwnerRequest: UpdateWorkflowOwnerRequest,
46633
47340
  DescribeSchedulerTaskTypeCntResponse: DescribeSchedulerTaskTypeCntResponse,
@@ -46648,13 +47355,14 @@ module.exports = {
46648
47355
  ModifyTaskNameResponse: ModifyTaskNameResponse,
46649
47356
  BatchDeleteOpsTasksRequest: BatchDeleteOpsTasksRequest,
46650
47357
  ResumeIntegrationTaskResponse: ResumeIntegrationTaskResponse,
46651
- WorkflowExtOpsDto: WorkflowExtOpsDto,
47358
+ UpdateProjectUserRoleRequest: UpdateProjectUserRoleRequest,
46652
47359
  LineageParamRecord: LineageParamRecord,
46653
47360
  BatchResult: BatchResult,
46654
47361
  InstanceLogVO: InstanceLogVO,
46655
47362
  StartTaskInfo: StartTaskInfo,
46656
47363
  DescribeIntegrationStatisticsInstanceTrendResponse: DescribeIntegrationStatisticsInstanceTrendResponse,
46657
47364
  DescribeInstanceLogListRequest: DescribeInstanceLogListRequest,
47365
+ WorkflowExtOpsDto: WorkflowExtOpsDto,
46658
47366
  IntegrationNodeInfo: IntegrationNodeInfo,
46659
47367
  DescribeRuleGroupResponse: DescribeRuleGroupResponse,
46660
47368
  DeleteDataSourcesResponse: DeleteDataSourcesResponse,
@@ -46684,6 +47392,7 @@ module.exports = {
46684
47392
  IntegrationTaskInfo: IntegrationTaskInfo,
46685
47393
  DeleteResourceFilesRequest: DeleteResourceFilesRequest,
46686
47394
  DeleteResourceFileResponse: DeleteResourceFileResponse,
47395
+ PageRoles: PageRoles,
46687
47396
  SubmitTaskResponse: SubmitTaskResponse,
46688
47397
  ModifyApproveStatusResponse: ModifyApproveStatusResponse,
46689
47398
  DescribeAlarmEventsResponse: DescribeAlarmEventsResponse,
@@ -46692,6 +47401,7 @@ module.exports = {
46692
47401
  DescribeTableQualityDetailsRequest: DescribeTableQualityDetailsRequest,
46693
47402
  DescribeScheduleInstancesResponse: DescribeScheduleInstancesResponse,
46694
47403
  DeleteProjectParamDsResponse: DeleteProjectParamDsResponse,
47404
+ DescribeRoleListResponse: DescribeRoleListResponse,
46695
47405
  DescribeOpsWorkflowsRequest: DescribeOpsWorkflowsRequest,
46696
47406
  CreateOfflineTaskResponse: CreateOfflineTaskResponse,
46697
47407
  DescribeColumnLineageRequest: DescribeColumnLineageRequest,
@@ -46812,6 +47522,7 @@ module.exports = {
46812
47522
  DeleteTaskAlarmRegularResponse: DeleteTaskAlarmRegularResponse,
46813
47523
  DeleteWorkflowByIdRequest: DeleteWorkflowByIdRequest,
46814
47524
  ProjectBaseInfoOpsRequest: ProjectBaseInfoOpsRequest,
47525
+ DescribeEventCasesRequest: DescribeEventCasesRequest,
46815
47526
  DeleteRuleResponse: DeleteRuleResponse,
46816
47527
  MakePlanTaskOpsDtoCollection: MakePlanTaskOpsDtoCollection,
46817
47528
  SimpleColumnInfo: SimpleColumnInfo,
@@ -46878,7 +47589,8 @@ module.exports = {
46878
47589
  DescribeWorkflowInfoByIdResponse: DescribeWorkflowInfoByIdResponse,
46879
47590
  OpsTaskCanvasInfoList: OpsTaskCanvasInfoList,
46880
47591
  SubmitTaskTestRunResponse: SubmitTaskTestRunResponse,
46881
- ModifyDimensionWeightResponse: ModifyDimensionWeightResponse,
47592
+ UpdateProjectUserRoleResponse: UpdateProjectUserRoleResponse,
47593
+ DescribeRoleListRequest: DescribeRoleListRequest,
46882
47594
  ModifyTaskAlarmRegularResponse: ModifyTaskAlarmRegularResponse,
46883
47595
  InstanceSearchCondition: InstanceSearchCondition,
46884
47596
  CreateRuleResponse: CreateRuleResponse,
@@ -46978,6 +47690,7 @@ module.exports = {
46978
47690
  AlarmIndicatorInfo: AlarmIndicatorInfo,
46979
47691
  DescribeStatisticInstanceStatusTrendOpsResponse: DescribeStatisticInstanceStatusTrendOpsResponse,
46980
47692
  TableMeta: TableMeta,
47693
+ RegisterEventResponse: RegisterEventResponse,
46981
47694
  CountOpsInstanceStateResponse: CountOpsInstanceStateResponse,
46982
47695
  SubscribeReceiver: SubscribeReceiver,
46983
47696
  TriggerDsEventRequest: TriggerDsEventRequest,
@@ -47152,6 +47865,7 @@ module.exports = {
47152
47865
  TableBaseInfo: TableBaseInfo,
47153
47866
  DescribeRuleGroupsByPageResponse: DescribeRuleGroupsByPageResponse,
47154
47867
  TableBasicInfo: TableBasicInfo,
47868
+ DescribeThirdTaskRunLogRequest: DescribeThirdTaskRunLogRequest,
47155
47869
  DescribeIntegrationStatisticsTaskStatusResponse: DescribeIntegrationStatisticsTaskStatusResponse,
47156
47870
  DescribeOpsMakePlanInstancesResponse: DescribeOpsMakePlanInstancesResponse,
47157
47871
  DescribeDatabaseInfoListRequest: DescribeDatabaseInfoListRequest,
@@ -47196,7 +47910,7 @@ module.exports = {
47196
47910
  BaseTenant: BaseTenant,
47197
47911
  DescribeWorkflowExecuteByIdRequest: DescribeWorkflowExecuteByIdRequest,
47198
47912
  WorkflowExtOpsDtoPage: WorkflowExtOpsDtoPage,
47199
- RegisterEventResponse: RegisterEventResponse,
47913
+ DescribeTableLineageResponse: DescribeTableLineageResponse,
47200
47914
  DescribeRuleExecLogRequest: DescribeRuleExecLogRequest,
47201
47915
  BatchRerunIntegrationTaskInstancesResponse: BatchRerunIntegrationTaskInstancesResponse,
47202
47916
  RuleGroupPage: RuleGroupPage,