tencentcloud-sdk-nodejs-intl-en 3.0.1263 → 3.0.1265

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.
@@ -2960,6 +2960,57 @@ Note: This field may return null, indicating that no valid values can be obtaine
2960
2960
  }
2961
2961
  }
2962
2962
 
2963
+ /**
2964
+ * DescribeDLCTableList response structure.
2965
+ * @class
2966
+ */
2967
+ class DescribeDLCTableListResponse extends AbstractModel {
2968
+ constructor(){
2969
+ super();
2970
+
2971
+ /**
2972
+ * DLC metadata list information
2973
+ Note: This field may return null, indicating that no valid values can be obtained.
2974
+ * @type {Array.<DLCTable> || null}
2975
+ */
2976
+ this.TableList = null;
2977
+
2978
+ /**
2979
+ * Statistical value
2980
+ * @type {number || null}
2981
+ */
2982
+ this.TotalCount = null;
2983
+
2984
+ /**
2985
+ * 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.
2986
+ * @type {string || null}
2987
+ */
2988
+ this.RequestId = null;
2989
+
2990
+ }
2991
+
2992
+ /**
2993
+ * @private
2994
+ */
2995
+ deserialize(params) {
2996
+ if (!params) {
2997
+ return;
2998
+ }
2999
+
3000
+ if (params.TableList) {
3001
+ this.TableList = new Array();
3002
+ for (let z in params.TableList) {
3003
+ let obj = new DLCTable();
3004
+ obj.deserialize(params.TableList[z]);
3005
+ this.TableList.push(obj);
3006
+ }
3007
+ }
3008
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
3009
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
3010
+
3011
+ }
3012
+ }
3013
+
2963
3014
  /**
2964
3015
  * GenerateCreateMangedTableSql request structure.
2965
3016
  * @class
@@ -5888,6 +5939,113 @@ class DescribeDataEngineRequest extends AbstractModel {
5888
5939
  }
5889
5940
  }
5890
5941
 
5942
+ /**
5943
+ * DMask policy information.
5944
+ * @class
5945
+ */
5946
+ class DataMaskStrategyInfo extends AbstractModel {
5947
+ constructor(){
5948
+ super();
5949
+
5950
+ /**
5951
+ * Policy name
5952
+ * @type {string || null}
5953
+ */
5954
+ this.StrategyName = null;
5955
+
5956
+ /**
5957
+ * MASK_SHOW_FIRST_4, MASK_SHOW_LAST_4, MASK_HASH, MASK_DATE_SHOW_YEAR, MASK_NULL, MASK_DEFAULT.
5958
+ * @type {string || null}
5959
+ */
5960
+ this.StrategyType = null;
5961
+
5962
+ /**
5963
+ * Policy description
5964
+ * @type {string || null}
5965
+ */
5966
+ this.StrategyDesc = null;
5967
+
5968
+ /**
5969
+ * User group policy list.
5970
+ Note: This field may return null, indicating that no valid values can be obtained.
5971
+ * @type {Array.<GroupInfo> || null}
5972
+ */
5973
+ this.Groups = null;
5974
+
5975
+ /**
5976
+ * User sub-account uin list, concatenated by ;.
5977
+ * @type {string || null}
5978
+ */
5979
+ this.Users = null;
5980
+
5981
+ /**
5982
+ * Policy ID
5983
+ * @type {string || null}
5984
+ */
5985
+ this.StrategyId = null;
5986
+
5987
+ }
5988
+
5989
+ /**
5990
+ * @private
5991
+ */
5992
+ deserialize(params) {
5993
+ if (!params) {
5994
+ return;
5995
+ }
5996
+ this.StrategyName = 'StrategyName' in params ? params.StrategyName : null;
5997
+ this.StrategyType = 'StrategyType' in params ? params.StrategyType : null;
5998
+ this.StrategyDesc = 'StrategyDesc' in params ? params.StrategyDesc : null;
5999
+
6000
+ if (params.Groups) {
6001
+ this.Groups = new Array();
6002
+ for (let z in params.Groups) {
6003
+ let obj = new GroupInfo();
6004
+ obj.deserialize(params.Groups[z]);
6005
+ this.Groups.push(obj);
6006
+ }
6007
+ }
6008
+ this.Users = 'Users' in params ? params.Users : null;
6009
+ this.StrategyId = 'StrategyId' in params ? params.StrategyId : null;
6010
+
6011
+ }
6012
+ }
6013
+
6014
+ /**
6015
+ * DMask user group information.
6016
+ * @class
6017
+ */
6018
+ class GroupInfo extends AbstractModel {
6019
+ constructor(){
6020
+ super();
6021
+
6022
+ /**
6023
+ * User group ID.
6024
+ * @type {number || null}
6025
+ */
6026
+ this.WorkGroupId = null;
6027
+
6028
+ /**
6029
+ * Policy type.
6030
+ * @type {string || null}
6031
+ */
6032
+ this.StrategyType = null;
6033
+
6034
+ }
6035
+
6036
+ /**
6037
+ * @private
6038
+ */
6039
+ deserialize(params) {
6040
+ if (!params) {
6041
+ return;
6042
+ }
6043
+ this.WorkGroupId = 'WorkGroupId' in params ? params.WorkGroupId : null;
6044
+ this.StrategyType = 'StrategyType' in params ? params.StrategyType : null;
6045
+
6046
+ }
6047
+ }
6048
+
5891
6049
  /**
5892
6050
  * RollbackDataEngineImage response structure.
5893
6051
  * @class
@@ -7501,6 +7659,39 @@ class DescribeStoreLocationRequest extends AbstractModel {
7501
7659
  }
7502
7660
  }
7503
7661
 
7662
+ /**
7663
+ * CreateDataMaskStrategy request structure.
7664
+ * @class
7665
+ */
7666
+ class CreateDataMaskStrategyRequest extends AbstractModel {
7667
+ constructor(){
7668
+ super();
7669
+
7670
+ /**
7671
+ * Masking policy description.
7672
+ * @type {DataMaskStrategyInfo || null}
7673
+ */
7674
+ this.Strategy = null;
7675
+
7676
+ }
7677
+
7678
+ /**
7679
+ * @private
7680
+ */
7681
+ deserialize(params) {
7682
+ if (!params) {
7683
+ return;
7684
+ }
7685
+
7686
+ if (params.Strategy) {
7687
+ let obj = new DataMaskStrategyInfo();
7688
+ obj.deserialize(params.Strategy)
7689
+ this.Strategy = obj;
7690
+ }
7691
+
7692
+ }
7693
+ }
7694
+
7504
7695
  /**
7505
7696
  * DescribeDLCCatalogAccess response structure.
7506
7697
  * @class
@@ -8578,31 +8769,18 @@ class UpgradeDataEngineImageResponse extends AbstractModel {
8578
8769
  }
8579
8770
 
8580
8771
  /**
8581
- * DescribeDLCTableList response structure.
8772
+ * AttachDataMaskPolicy request structure.
8582
8773
  * @class
8583
8774
  */
8584
- class DescribeDLCTableListResponse extends AbstractModel {
8775
+ class AttachDataMaskPolicyRequest extends AbstractModel {
8585
8776
  constructor(){
8586
8777
  super();
8587
8778
 
8588
8779
  /**
8589
- * DLC metadata list information
8590
- Note: This field may return null, indicating that no valid values can be obtained.
8591
- * @type {Array.<DLCTable> || null}
8780
+ * Collection of DMask permission objects that should be bound.
8781
+ * @type {Array.<DataMaskStrategyPolicy> || null}
8592
8782
  */
8593
- this.TableList = null;
8594
-
8595
- /**
8596
- * Statistical value
8597
- * @type {number || null}
8598
- */
8599
- this.TotalCount = null;
8600
-
8601
- /**
8602
- * 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.
8603
- * @type {string || null}
8604
- */
8605
- this.RequestId = null;
8783
+ this.DataMaskStrategyPolicySet = null;
8606
8784
 
8607
8785
  }
8608
8786
 
@@ -8614,16 +8792,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
8614
8792
  return;
8615
8793
  }
8616
8794
 
8617
- if (params.TableList) {
8618
- this.TableList = new Array();
8619
- for (let z in params.TableList) {
8620
- let obj = new DLCTable();
8621
- obj.deserialize(params.TableList[z]);
8622
- this.TableList.push(obj);
8795
+ if (params.DataMaskStrategyPolicySet) {
8796
+ this.DataMaskStrategyPolicySet = new Array();
8797
+ for (let z in params.DataMaskStrategyPolicySet) {
8798
+ let obj = new DataMaskStrategyPolicy();
8799
+ obj.deserialize(params.DataMaskStrategyPolicySet[z]);
8800
+ this.DataMaskStrategyPolicySet.push(obj);
8623
8801
  }
8624
8802
  }
8625
- this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
8626
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
8627
8803
 
8628
8804
  }
8629
8805
  }
@@ -9171,6 +9347,41 @@ class BindWorkGroupsToUserResponse extends AbstractModel {
9171
9347
  }
9172
9348
  }
9173
9349
 
9350
+ /**
9351
+ * CreateDataMaskStrategy response structure.
9352
+ * @class
9353
+ */
9354
+ class CreateDataMaskStrategyResponse extends AbstractModel {
9355
+ constructor(){
9356
+ super();
9357
+
9358
+ /**
9359
+ * Policy ID
9360
+ * @type {string || null}
9361
+ */
9362
+ this.StrategyId = null;
9363
+
9364
+ /**
9365
+ * 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.
9366
+ * @type {string || null}
9367
+ */
9368
+ this.RequestId = null;
9369
+
9370
+ }
9371
+
9372
+ /**
9373
+ * @private
9374
+ */
9375
+ deserialize(params) {
9376
+ if (!params) {
9377
+ return;
9378
+ }
9379
+ this.StrategyId = 'StrategyId' in params ? params.StrategyId : null;
9380
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
9381
+
9382
+ }
9383
+ }
9384
+
9174
9385
  /**
9175
9386
  * DescribeStoreLocation response structure.
9176
9387
  * @class
@@ -12000,19 +12211,19 @@ class Policy extends AbstractModel {
12000
12211
  super();
12001
12212
 
12002
12213
  /**
12003
- * The name of the target database. `*` represents all databases in the current catalog. To grant admin permissions, it must be `*`; to grant data connection permissions, it must be null; to grant other permissions, it can be any database.
12214
+ * The database name requiring authorization. use * to represent all databases under the current Catalog. for administrator level authorization type, only * is allowed. for data connection level authorization type, leave it blank. for other types, any specified database is allowed.
12004
12215
  * @type {string || null}
12005
12216
  */
12006
12217
  this.Database = null;
12007
12218
 
12008
12219
  /**
12009
- * The name of the target data source. To grant admin permission, it must be `*` (all resources at this level); to grant data source and database permissions, it must be `COSDataCatalog` or `*`; to grant table permissions, it can be a custom data source; if it is left empty, `DataLakeCatalog` is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console.
12220
+ * Specifies the name of the data source requiring authorization. at administrator level, only * is supported (representing all resources at this level). for database-level or data source-level authentication, only COSDataCatalog or * is supported. for table-level authentication, user-defined data sources can be filled. defaults to DataLakeCatalog if left blank. note: if authenticating a user-defined data source, the permissions DLC can manage are a subset of the account provided when the user accesses the data source.
12010
12221
  * @type {string || null}
12011
12222
  */
12012
12223
  this.Catalog = null;
12013
12224
 
12014
12225
  /**
12015
- * The name of the target table. `*` represents all tables in the current database. To grant admin permissions, it must be `*`; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table.
12226
+ * Specifies the table name requiring authorization. use * to represent all tables in the current Database. for administrator-level authorization type, only * is allowed. for data connection level or Database-level authorization type, leave it blank. for other types, any specific data table can be specified.
12016
12227
  * @type {string || null}
12017
12228
  */
12018
12229
  this.Table = null;
@@ -12030,28 +12241,28 @@ class Policy extends AbstractModel {
12030
12241
  this.PolicyType = null;
12031
12242
 
12032
12243
  /**
12033
- * The name of the target function. `*` represents all functions in the current catalog. To grant admin permissions, it must be `*`; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.
12244
+ * Name of the function requiring authorization. use * to represent all functions in the current Catalog. for administrator-level authorization type, only * is allowed. for data connection-level authorization type, leave it blank. for other types, any function can be specified.
12034
12245
  Note: This field may return null, indicating that no valid values can be obtained.
12035
12246
  * @type {string || null}
12036
12247
  */
12037
12248
  this.Function = null;
12038
12249
 
12039
12250
  /**
12040
- * The name of the target view. `*` represents all views in the current database. To grant admin permissions, it must be `*`; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.
12251
+ * Authorization is required for the view. fill in * to represent all views under the current Database. when the authorization type is administrator level, only * is allowed. when the authorization type is data connection level or Database level, only blank is allowed. for other types, any view can be specified.
12041
12252
  Note: This field may return null, indicating that no valid values can be obtained.
12042
12253
  * @type {string || null}
12043
12254
  */
12044
12255
  this.View = null;
12045
12256
 
12046
12257
  /**
12047
- * The name of the target column. `*` represents all columns. To grant admin permissions, it must be `*`.
12258
+ * Columns requiring authorization. use * to represent all current columns. when the authorization type is administrator level, only * is allowed.
12048
12259
  Note: This field may return null, indicating that no valid values can be obtained.
12049
12260
  * @type {string || null}
12050
12261
  */
12051
12262
  this.Column = null;
12052
12263
 
12053
12264
  /**
12054
- * The name of the target data engine. `*` represents all engines. To grant admin permissions, it must be `*`.
12265
+ * The data engine requiring authorization. use * to represent all current engines. when the authorization type is administrator level, only * is allowed.
12055
12266
  Note: This field may return null, indicating that no valid values can be obtained.
12056
12267
  * @type {string || null}
12057
12268
  */
@@ -12113,6 +12324,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
12113
12324
  */
12114
12325
  this.Id = null;
12115
12326
 
12327
+ /**
12328
+ * Specifies the engine type.
12329
+
12330
+ * @type {string || null}
12331
+ */
12332
+ this.EngineGeneration = null;
12333
+
12116
12334
  }
12117
12335
 
12118
12336
  /**
@@ -12139,6 +12357,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
12139
12357
  this.SourceId = 'SourceId' in params ? params.SourceId : null;
12140
12358
  this.SourceName = 'SourceName' in params ? params.SourceName : null;
12141
12359
  this.Id = 'Id' in params ? params.Id : null;
12360
+ this.EngineGeneration = 'EngineGeneration' in params ? params.EngineGeneration : null;
12142
12361
 
12143
12362
  }
12144
12363
  }
@@ -13591,6 +13810,56 @@ class CreateTasksResponse extends AbstractModel {
13591
13810
  }
13592
13811
  }
13593
13812
 
13813
+ /**
13814
+ * Masking policy permission object.
13815
+ * @class
13816
+ */
13817
+ class DataMaskStrategyPolicy extends AbstractModel {
13818
+ constructor(){
13819
+ super();
13820
+
13821
+ /**
13822
+ * Masking permission object.
13823
+ Note: This field may return null, indicating that no valid values can be obtained.
13824
+ * @type {Policy || null}
13825
+ */
13826
+ this.PolicyInfo = null;
13827
+
13828
+ /**
13829
+ * Masking policy ID. specifies the ID of the data masking policy.
13830
+ Note: This field may return null, indicating that no valid values can be obtained.
13831
+ * @type {string || null}
13832
+ */
13833
+ this.DataMaskStrategyId = null;
13834
+
13835
+ /**
13836
+ * Bound field type.
13837
+ Note: This field may return null, indicating that no valid values can be obtained.
13838
+ * @type {string || null}
13839
+ */
13840
+ this.ColumnType = null;
13841
+
13842
+ }
13843
+
13844
+ /**
13845
+ * @private
13846
+ */
13847
+ deserialize(params) {
13848
+ if (!params) {
13849
+ return;
13850
+ }
13851
+
13852
+ if (params.PolicyInfo) {
13853
+ let obj = new Policy();
13854
+ obj.deserialize(params.PolicyInfo)
13855
+ this.PolicyInfo = obj;
13856
+ }
13857
+ this.DataMaskStrategyId = 'DataMaskStrategyId' in params ? params.DataMaskStrategyId : null;
13858
+ this.ColumnType = 'ColumnType' in params ? params.ColumnType : null;
13859
+
13860
+ }
13861
+ }
13862
+
13594
13863
  /**
13595
13864
  * GrantDLCCatalogAccess response structure.
13596
13865
  * @class
@@ -15027,6 +15296,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
15027
15296
  }
15028
15297
  }
15029
15298
 
15299
+ /**
15300
+ * AttachDataMaskPolicy response structure.
15301
+ * @class
15302
+ */
15303
+ class AttachDataMaskPolicyResponse extends AbstractModel {
15304
+ constructor(){
15305
+ super();
15306
+
15307
+ /**
15308
+ * 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.
15309
+ * @type {string || null}
15310
+ */
15311
+ this.RequestId = null;
15312
+
15313
+ }
15314
+
15315
+ /**
15316
+ * @private
15317
+ */
15318
+ deserialize(params) {
15319
+ if (!params) {
15320
+ return;
15321
+ }
15322
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
15323
+
15324
+ }
15325
+ }
15326
+
15030
15327
  /**
15031
15328
  * DescribeSessionImageVersion request structure.
15032
15329
  * @class
@@ -16033,6 +16330,7 @@ module.exports = {
16033
16330
  DataEngineBasicInfo: DataEngineBasicInfo,
16034
16331
  DetachWorkGroupPolicyResponse: DetachWorkGroupPolicyResponse,
16035
16332
  DescribeSparkSessionBatchSqlLogResponse: DescribeSparkSessionBatchSqlLogResponse,
16333
+ DescribeDLCTableListResponse: DescribeDLCTableListResponse,
16036
16334
  GenerateCreateMangedTableSqlRequest: GenerateCreateMangedTableSqlRequest,
16037
16335
  DescribeUserTypeRequest: DescribeUserTypeRequest,
16038
16336
  SwitchDataEngineResponse: SwitchDataEngineResponse,
@@ -16088,6 +16386,8 @@ module.exports = {
16088
16386
  PermissionResponseInfo: PermissionResponseInfo,
16089
16387
  DescribeJobsResponse: DescribeJobsResponse,
16090
16388
  DescribeDataEngineRequest: DescribeDataEngineRequest,
16389
+ DataMaskStrategyInfo: DataMaskStrategyInfo,
16390
+ GroupInfo: GroupInfo,
16091
16391
  RollbackDataEngineImageResponse: RollbackDataEngineImageResponse,
16092
16392
  QueryResultRequest: QueryResultRequest,
16093
16393
  LakeFsInfo: LakeFsInfo,
@@ -16118,6 +16418,7 @@ module.exports = {
16118
16418
  DeleteUsersFromWorkGroupResponse: DeleteUsersFromWorkGroupResponse,
16119
16419
  AddUsersToWorkGroupRequest: AddUsersToWorkGroupRequest,
16120
16420
  DescribeStoreLocationRequest: DescribeStoreLocationRequest,
16421
+ CreateDataMaskStrategyRequest: CreateDataMaskStrategyRequest,
16121
16422
  DescribeDLCCatalogAccessResponse: DescribeDLCCatalogAccessResponse,
16122
16423
  AddUsersToWorkGroupResponse: AddUsersToWorkGroupResponse,
16123
16424
  CreateResultDownloadResponse: CreateResultDownloadResponse,
@@ -16136,7 +16437,7 @@ module.exports = {
16136
16437
  TaskResponseInfo: TaskResponseInfo,
16137
16438
  RevokeDLCCatalogAccessRequest: RevokeDLCCatalogAccessRequest,
16138
16439
  UpgradeDataEngineImageResponse: UpgradeDataEngineImageResponse,
16139
- DescribeDLCTableListResponse: DescribeDLCTableListResponse,
16440
+ AttachDataMaskPolicyRequest: AttachDataMaskPolicyRequest,
16140
16441
  DMSSds: DMSSds,
16141
16442
  OpendThirdAccessUserInfo: OpendThirdAccessUserInfo,
16142
16443
  WorkGroupInfo: WorkGroupInfo,
@@ -16146,6 +16447,7 @@ module.exports = {
16146
16447
  DropDMSDatabaseRequest: DropDMSDatabaseRequest,
16147
16448
  DescribeDataEngineImageVersionsRequest: DescribeDataEngineImageVersionsRequest,
16148
16449
  BindWorkGroupsToUserResponse: BindWorkGroupsToUserResponse,
16450
+ CreateDataMaskStrategyResponse: CreateDataMaskStrategyResponse,
16149
16451
  DescribeStoreLocationResponse: DescribeStoreLocationResponse,
16150
16452
  DescribeJobRequest: DescribeJobRequest,
16151
16453
  DropDLCTableResponse: DropDLCTableResponse,
@@ -16233,6 +16535,7 @@ module.exports = {
16233
16535
  UpdateRowFilterResponse: UpdateRowFilterResponse,
16234
16536
  UserInfo: UserInfo,
16235
16537
  CreateTasksResponse: CreateTasksResponse,
16538
+ DataMaskStrategyPolicy: DataMaskStrategyPolicy,
16236
16539
  GrantDLCCatalogAccessResponse: GrantDLCCatalogAccessResponse,
16237
16540
  CreateSparkAppRequest: CreateSparkAppRequest,
16238
16541
  DataEngineScaleInfo: DataEngineScaleInfo,
@@ -16248,6 +16551,7 @@ module.exports = {
16248
16551
  CreateInternalTableResponse: CreateInternalTableResponse,
16249
16552
  DataEngineInfo: DataEngineInfo,
16250
16553
  DescribeSessionImageVersionResponse: DescribeSessionImageVersionResponse,
16554
+ AttachDataMaskPolicyResponse: AttachDataMaskPolicyResponse,
16251
16555
  DescribeSessionImageVersionRequest: DescribeSessionImageVersionRequest,
16252
16556
  AlterDMSDatabaseRequest: AlterDMSDatabaseRequest,
16253
16557
  CheckDataEngineImageCanBeUpgradeRequest: CheckDataEngineImageCanBeUpgradeRequest,
@@ -78,6 +78,7 @@ module.exports = {
78
78
  mdc: require("./mdc"),
79
79
  mdl: require("./mdl"),
80
80
  mdp: require("./mdp"),
81
+ message: require("./message"),
81
82
  mongodb: require("./mongodb"),
82
83
  monitor: require("./monitor"),
83
84
  mps: require("./mps"),
@@ -139,6 +139,7 @@ const ChannelOutputsStatistics = models.ChannelOutputsStatistics;
139
139
  const AdditionalRateSetting = models.AdditionalRateSetting;
140
140
  const PlanSettings = models.PlanSettings;
141
141
  const DescribeStreamLiveInputSecurityGroupsResponse = models.DescribeStreamLiveInputSecurityGroupsResponse;
142
+ const AbWatermarkSettingsReq = models.AbWatermarkSettingsReq;
142
143
  const EventNotifySetting = models.EventNotifySetting;
143
144
  const DeleteStreamLiveInputResponse = models.DeleteStreamLiveInputResponse;
144
145
  const StartStreamLiveChannelRequest = models.StartStreamLiveChannelRequest;
@@ -2399,6 +2399,12 @@ class CreateStreamLiveWatermarkRequest extends AbstractModel {
2399
2399
  */
2400
2400
  this.TextSettings = null;
2401
2401
 
2402
+ /**
2403
+ * AB watermark configuration
2404
+ * @type {AbWatermarkSettingsReq || null}
2405
+ */
2406
+ this.AbWatermarkSettings = null;
2407
+
2402
2408
  }
2403
2409
 
2404
2410
  /**
@@ -2423,6 +2429,12 @@ class CreateStreamLiveWatermarkRequest extends AbstractModel {
2423
2429
  this.TextSettings = obj;
2424
2430
  }
2425
2431
 
2432
+ if (params.AbWatermarkSettings) {
2433
+ let obj = new AbWatermarkSettingsReq();
2434
+ obj.deserialize(params.AbWatermarkSettings)
2435
+ this.AbWatermarkSettings = obj;
2436
+ }
2437
+
2426
2438
  }
2427
2439
  }
2428
2440
 
@@ -3249,6 +3261,12 @@ class ModifyStreamLiveWatermarkRequest extends AbstractModel {
3249
3261
  */
3250
3262
  this.TextSettings = null;
3251
3263
 
3264
+ /**
3265
+ *
3266
+ * @type {AbWatermarkSettingsReq || null}
3267
+ */
3268
+ this.AbWatermarkSettings = null;
3269
+
3252
3270
  }
3253
3271
 
3254
3272
  /**
@@ -3273,6 +3291,12 @@ class ModifyStreamLiveWatermarkRequest extends AbstractModel {
3273
3291
  this.TextSettings = obj;
3274
3292
  }
3275
3293
 
3294
+ if (params.AbWatermarkSettings) {
3295
+ let obj = new AbWatermarkSettingsReq();
3296
+ obj.deserialize(params.AbWatermarkSettings)
3297
+ this.AbWatermarkSettings = obj;
3298
+ }
3299
+
3276
3300
  }
3277
3301
  }
3278
3302
 
@@ -5208,7 +5232,7 @@ class DescribeStreamLiveChannelAlertsResponse extends AbstractModel {
5208
5232
  super();
5209
5233
 
5210
5234
  /**
5211
- * Alarm information of the channels two pipelines
5235
+ * Alarm information of the channel's two pipelines
5212
5236
  * @type {ChannelAlertInfos || null}
5213
5237
  */
5214
5238
  this.Infos = null;
@@ -6726,6 +6750,34 @@ class DescribeStreamLiveInputSecurityGroupsResponse extends AbstractModel {
6726
6750
  }
6727
6751
  }
6728
6752
 
6753
+ /**
6754
+ *
6755
+ * @class
6756
+ */
6757
+ class AbWatermarkSettingsReq extends AbstractModel {
6758
+ constructor(){
6759
+ super();
6760
+
6761
+ /**
6762
+ *
6763
+ * @type {string || null}
6764
+ */
6765
+ this.Type = null;
6766
+
6767
+ }
6768
+
6769
+ /**
6770
+ * @private
6771
+ */
6772
+ deserialize(params) {
6773
+ if (!params) {
6774
+ return;
6775
+ }
6776
+ this.Type = 'Type' in params ? params.Type : null;
6777
+
6778
+ }
6779
+ }
6780
+
6729
6781
  /**
6730
6782
  * The callback settings.
6731
6783
  * @class
@@ -8655,6 +8707,7 @@ module.exports = {
8655
8707
  AdditionalRateSetting: AdditionalRateSetting,
8656
8708
  PlanSettings: PlanSettings,
8657
8709
  DescribeStreamLiveInputSecurityGroupsResponse: DescribeStreamLiveInputSecurityGroupsResponse,
8710
+ AbWatermarkSettingsReq: AbWatermarkSettingsReq,
8658
8711
  EventNotifySetting: EventNotifySetting,
8659
8712
  DeleteStreamLiveInputResponse: DeleteStreamLiveInputResponse,
8660
8713
  StartStreamLiveChannelRequest: StartStreamLiveChannelRequest,
@@ -156,6 +156,7 @@ const DescribeStreamPackageSourceAlertsResponse = models.DescribeStreamPackageSo
156
156
  const DeleteStreamPackageLinearAssemblyProgramRequest = models.DeleteStreamPackageLinearAssemblyProgramRequest;
157
157
  const DeleteStreamPackageChannelsResponse = models.DeleteStreamPackageChannelsResponse;
158
158
  const ProgramScheduleInfo = models.ProgramScheduleInfo;
159
+ const SourceTag = models.SourceTag;
159
160
  const DeleteStreamPackageLinearAssemblyProgramsResponse = models.DeleteStreamPackageLinearAssemblyProgramsResponse;
160
161
  const SpliceInsertInfo = models.SpliceInsertInfo;
161
162
  const CreateStreamPackageLinearAssemblyProgramResponse = models.CreateStreamPackageLinearAssemblyProgramResponse;