tencentcloud-sdk-nodejs-intl-en 3.0.327 → 3.0.331

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.
@@ -16,6 +16,34 @@
16
16
  */
17
17
  const AbstractModel = require("../../common/abstract_model");
18
18
 
19
+ /**
20
+ * ModifyInstanceTag response structure.
21
+ * @class
22
+ */
23
+ class ModifyInstanceTagResponse extends AbstractModel {
24
+ constructor(){
25
+ super();
26
+
27
+ /**
28
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
29
+ * @type {string || null}
30
+ */
31
+ this.RequestId = null;
32
+
33
+ }
34
+
35
+ /**
36
+ * @private
37
+ */
38
+ deserialize(params) {
39
+ if (!params) {
40
+ return;
41
+ }
42
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
43
+
44
+ }
45
+ }
46
+
19
47
  /**
20
48
  * Purchasable instance type
21
49
  * @class
@@ -2895,18 +2923,42 @@ class SwitchForUpgradeRequest extends AbstractModel {
2895
2923
  }
2896
2924
 
2897
2925
  /**
2898
- * ModifyInstanceTag response structure.
2926
+ * ModifyBackupDownloadRestriction request structure.
2899
2927
  * @class
2900
2928
  */
2901
- class ModifyInstanceTagResponse extends AbstractModel {
2929
+ class ModifyBackupDownloadRestrictionRequest extends AbstractModel {
2902
2930
  constructor(){
2903
2931
  super();
2904
2932
 
2905
2933
  /**
2906
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2934
+ * Valid values: `NoLimit` (backups can be downloaded over both private and public networks with any IPs), `LimitOnlyIntranet` (backups can be downloaded over the private network with any private IPs), `Customize` (backups can be downloaded over specified VPCs with specified IPs). The `LimitVpc` and `LimitIp` parameters are valid only when this parameter is set to `Customize`.
2907
2935
  * @type {string || null}
2908
2936
  */
2909
- this.RequestId = null;
2937
+ this.LimitType = null;
2938
+
2939
+ /**
2940
+ * Valid value: `In` (backups can only be downloaded over the VPCs specified in `LimitVpc`). Default value: `In`.
2941
+ * @type {string || null}
2942
+ */
2943
+ this.VpcComparisonSymbol = null;
2944
+
2945
+ /**
2946
+ * Valid values: `In` (backups can only be downloaded with the IPs specified in `LimitIp`), `NotIn` (backups cannot be downloaded with the IPs specified in `LimitIp`). Default value: `In`.
2947
+ * @type {string || null}
2948
+ */
2949
+ this.IpComparisonSymbol = null;
2950
+
2951
+ /**
2952
+ * VPCs used to restrict backup download.
2953
+ * @type {Array.<BackupLimitVpcItem> || null}
2954
+ */
2955
+ this.LimitVpc = null;
2956
+
2957
+ /**
2958
+ * IPs used to restrict backup download.
2959
+ * @type {Array.<string> || null}
2960
+ */
2961
+ this.LimitIp = null;
2910
2962
 
2911
2963
  }
2912
2964
 
@@ -2917,7 +2969,19 @@ class ModifyInstanceTagResponse extends AbstractModel {
2917
2969
  if (!params) {
2918
2970
  return;
2919
2971
  }
2920
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
2972
+ this.LimitType = 'LimitType' in params ? params.LimitType : null;
2973
+ this.VpcComparisonSymbol = 'VpcComparisonSymbol' in params ? params.VpcComparisonSymbol : null;
2974
+ this.IpComparisonSymbol = 'IpComparisonSymbol' in params ? params.IpComparisonSymbol : null;
2975
+
2976
+ if (params.LimitVpc) {
2977
+ this.LimitVpc = new Array();
2978
+ for (let z in params.LimitVpc) {
2979
+ let obj = new BackupLimitVpcItem();
2980
+ obj.deserialize(params.LimitVpc[z]);
2981
+ this.LimitVpc.push(obj);
2982
+ }
2983
+ }
2984
+ this.LimitIp = 'LimitIp' in params ? params.LimitIp : null;
2921
2985
 
2922
2986
  }
2923
2987
  }
@@ -3049,6 +3113,56 @@ class ModifyAccountMaxUserConnectionsRequest extends AbstractModel {
3049
3113
  }
3050
3114
  }
3051
3115
 
3116
+ /**
3117
+ * ModifyAccountDescription request structure.
3118
+ * @class
3119
+ */
3120
+ class ModifyAccountDescriptionRequest extends AbstractModel {
3121
+ constructor(){
3122
+ super();
3123
+
3124
+ /**
3125
+ * Instance ID in the format of cdb-c1nl9rpv. It is the same as the instance ID displayed on the TencentDB Console page.
3126
+ * @type {string || null}
3127
+ */
3128
+ this.InstanceId = null;
3129
+
3130
+ /**
3131
+ * TencentDB account
3132
+ * @type {Array.<Account> || null}
3133
+ */
3134
+ this.Accounts = null;
3135
+
3136
+ /**
3137
+ * Database account remarks
3138
+ * @type {string || null}
3139
+ */
3140
+ this.Description = null;
3141
+
3142
+ }
3143
+
3144
+ /**
3145
+ * @private
3146
+ */
3147
+ deserialize(params) {
3148
+ if (!params) {
3149
+ return;
3150
+ }
3151
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
3152
+
3153
+ if (params.Accounts) {
3154
+ this.Accounts = new Array();
3155
+ for (let z in params.Accounts) {
3156
+ let obj = new Account();
3157
+ obj.deserialize(params.Accounts[z]);
3158
+ this.Accounts.push(obj);
3159
+ }
3160
+ }
3161
+ this.Description = 'Description' in params ? params.Description : null;
3162
+
3163
+ }
3164
+ }
3165
+
3052
3166
  /**
3053
3167
  * ReleaseIsolatedDBInstances request structure.
3054
3168
  * @class
@@ -4912,6 +5026,69 @@ class DescribeDBSwitchRecordsResponse extends AbstractModel {
4912
5026
  }
4913
5027
  }
4914
5028
 
5029
+ /**
5030
+ * Slow log details
5031
+ * @class
5032
+ */
5033
+ class SlowLogInfo extends AbstractModel {
5034
+ constructor(){
5035
+ super();
5036
+
5037
+ /**
5038
+ * Backup filename
5039
+ * @type {string || null}
5040
+ */
5041
+ this.Name = null;
5042
+
5043
+ /**
5044
+ * Backup file size in bytes
5045
+ * @type {number || null}
5046
+ */
5047
+ this.Size = null;
5048
+
5049
+ /**
5050
+ * Backup snapshot time in the format of yyyy-MM-dd HH:mm:ss, such as 2016-03-17 02:10:37
5051
+ * @type {string || null}
5052
+ */
5053
+ this.Date = null;
5054
+
5055
+ /**
5056
+ * Download address on the private network
5057
+ * @type {string || null}
5058
+ */
5059
+ this.IntranetUrl = null;
5060
+
5061
+ /**
5062
+ * Download address on the public network
5063
+ * @type {string || null}
5064
+ */
5065
+ this.InternetUrl = null;
5066
+
5067
+ /**
5068
+ * Log type. Value range: slowlog (slow log)
5069
+ * @type {string || null}
5070
+ */
5071
+ this.Type = null;
5072
+
5073
+ }
5074
+
5075
+ /**
5076
+ * @private
5077
+ */
5078
+ deserialize(params) {
5079
+ if (!params) {
5080
+ return;
5081
+ }
5082
+ this.Name = 'Name' in params ? params.Name : null;
5083
+ this.Size = 'Size' in params ? params.Size : null;
5084
+ this.Date = 'Date' in params ? params.Date : null;
5085
+ this.IntranetUrl = 'IntranetUrl' in params ? params.IntranetUrl : null;
5086
+ this.InternetUrl = 'InternetUrl' in params ? params.InternetUrl : null;
5087
+ this.Type = 'Type' in params ? params.Type : null;
5088
+
5089
+ }
5090
+ }
5091
+
4915
5092
  /**
4916
5093
  * Name of the table for rollback
4917
5094
  * @class
@@ -7486,6 +7663,56 @@ class DescribeAsyncRequestInfoRequest extends AbstractModel {
7486
7663
  }
7487
7664
  }
7488
7665
 
7666
+ /**
7667
+ * DescribeInstanceParams response structure.
7668
+ * @class
7669
+ */
7670
+ class DescribeInstanceParamsResponse extends AbstractModel {
7671
+ constructor(){
7672
+ super();
7673
+
7674
+ /**
7675
+ * Number of instance parameters.
7676
+ * @type {number || null}
7677
+ */
7678
+ this.TotalCount = null;
7679
+
7680
+ /**
7681
+ * Parameter details.
7682
+ * @type {Array.<ParameterDetail> || null}
7683
+ */
7684
+ this.Items = null;
7685
+
7686
+ /**
7687
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
7688
+ * @type {string || null}
7689
+ */
7690
+ this.RequestId = null;
7691
+
7692
+ }
7693
+
7694
+ /**
7695
+ * @private
7696
+ */
7697
+ deserialize(params) {
7698
+ if (!params) {
7699
+ return;
7700
+ }
7701
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
7702
+
7703
+ if (params.Items) {
7704
+ this.Items = new Array();
7705
+ for (let z in params.Items) {
7706
+ let obj = new ParameterDetail();
7707
+ obj.deserialize(params.Items[z]);
7708
+ this.Items.push(obj);
7709
+ }
7710
+ }
7711
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7712
+
7713
+ }
7714
+ }
7715
+
7489
7716
  /**
7490
7717
  * Table permission
7491
7718
  * @class
@@ -9034,30 +9261,48 @@ class ModifyDBInstanceNameResponse extends AbstractModel {
9034
9261
  }
9035
9262
 
9036
9263
  /**
9037
- * ModifyAccountDescription request structure.
9264
+ * DescribeBackupDownloadRestriction response structure.
9038
9265
  * @class
9039
9266
  */
9040
- class ModifyAccountDescriptionRequest extends AbstractModel {
9267
+ class DescribeBackupDownloadRestrictionResponse extends AbstractModel {
9041
9268
  constructor(){
9042
9269
  super();
9043
9270
 
9044
9271
  /**
9045
- * Instance ID in the format of cdb-c1nl9rpv. It is the same as the instance ID displayed on the TencentDB Console page.
9272
+ * Valid values: `NoLimit` (backups can be downloaded over both private and public networks with any IPs), `LimitOnlyIntranet` (backups can be downloaded over the private network with any private IPs), `Customize` (backups can be downloaded over specified VPCs with specified IPs). The `LimitVpc` and `LimitIp` parameters are valid only when this parameter is set to `Customize`.
9046
9273
  * @type {string || null}
9047
9274
  */
9048
- this.InstanceId = null;
9275
+ this.LimitType = null;
9049
9276
 
9050
9277
  /**
9051
- * TencentDB account
9052
- * @type {Array.<Account> || null}
9278
+ * Valid value: `In` (backups can only be downloaded over the VPCs specified in `LimitVpc`).
9279
+ * @type {string || null}
9053
9280
  */
9054
- this.Accounts = null;
9281
+ this.VpcComparisonSymbol = null;
9055
9282
 
9056
9283
  /**
9057
- * Database account remarks
9284
+ * Valid values: `In` (backups can only be downloaded with the IPs specified in `LimitIp`), `NotIn` (backups cannot be downloaded with the IPs specified in `LimitIp`).
9058
9285
  * @type {string || null}
9059
9286
  */
9060
- this.Description = null;
9287
+ this.IpComparisonSymbol = null;
9288
+
9289
+ /**
9290
+ * VPCs used to restrict backup download.
9291
+ * @type {Array.<BackupLimitVpcItem> || null}
9292
+ */
9293
+ this.LimitVpc = null;
9294
+
9295
+ /**
9296
+ * IPs used to restrict backup download.
9297
+ * @type {Array.<string> || null}
9298
+ */
9299
+ this.LimitIp = null;
9300
+
9301
+ /**
9302
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
9303
+ * @type {string || null}
9304
+ */
9305
+ this.RequestId = null;
9061
9306
 
9062
9307
  }
9063
9308
 
@@ -9068,17 +9313,20 @@ class ModifyAccountDescriptionRequest extends AbstractModel {
9068
9313
  if (!params) {
9069
9314
  return;
9070
9315
  }
9071
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
9316
+ this.LimitType = 'LimitType' in params ? params.LimitType : null;
9317
+ this.VpcComparisonSymbol = 'VpcComparisonSymbol' in params ? params.VpcComparisonSymbol : null;
9318
+ this.IpComparisonSymbol = 'IpComparisonSymbol' in params ? params.IpComparisonSymbol : null;
9072
9319
 
9073
- if (params.Accounts) {
9074
- this.Accounts = new Array();
9075
- for (let z in params.Accounts) {
9076
- let obj = new Account();
9077
- obj.deserialize(params.Accounts[z]);
9078
- this.Accounts.push(obj);
9320
+ if (params.LimitVpc) {
9321
+ this.LimitVpc = new Array();
9322
+ for (let z in params.LimitVpc) {
9323
+ let obj = new BackupLimitVpcItem();
9324
+ obj.deserialize(params.LimitVpc[z]);
9325
+ this.LimitVpc.push(obj);
9079
9326
  }
9080
9327
  }
9081
- this.Description = 'Description' in params ? params.Description : null;
9328
+ this.LimitIp = 'LimitIp' in params ? params.LimitIp : null;
9329
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
9082
9330
 
9083
9331
  }
9084
9332
  }
@@ -10086,6 +10334,34 @@ class IsolateDBInstanceRequest extends AbstractModel {
10086
10334
  }
10087
10335
  }
10088
10336
 
10337
+ /**
10338
+ * ModifyBackupDownloadRestriction response structure.
10339
+ * @class
10340
+ */
10341
+ class ModifyBackupDownloadRestrictionResponse extends AbstractModel {
10342
+ constructor(){
10343
+ super();
10344
+
10345
+ /**
10346
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
10347
+ * @type {string || null}
10348
+ */
10349
+ this.RequestId = null;
10350
+
10351
+ }
10352
+
10353
+ /**
10354
+ * @private
10355
+ */
10356
+ deserialize(params) {
10357
+ if (!params) {
10358
+ return;
10359
+ }
10360
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
10361
+
10362
+ }
10363
+ }
10364
+
10089
10365
  /**
10090
10366
  * ModifyTimeWindow request structure.
10091
10367
  * @class
@@ -11394,49 +11670,13 @@ class DescribeParamTemplateInfoRequest extends AbstractModel {
11394
11670
  }
11395
11671
 
11396
11672
  /**
11397
- * Slow log details
11673
+ * DescribeBackupDownloadRestriction request structure.
11398
11674
  * @class
11399
11675
  */
11400
- class SlowLogInfo extends AbstractModel {
11676
+ class DescribeBackupDownloadRestrictionRequest extends AbstractModel {
11401
11677
  constructor(){
11402
11678
  super();
11403
11679
 
11404
- /**
11405
- * Backup filename
11406
- * @type {string || null}
11407
- */
11408
- this.Name = null;
11409
-
11410
- /**
11411
- * Backup file size in bytes
11412
- * @type {number || null}
11413
- */
11414
- this.Size = null;
11415
-
11416
- /**
11417
- * Backup snapshot time in the format of yyyy-MM-dd HH:mm:ss, such as 2016-03-17 02:10:37
11418
- * @type {string || null}
11419
- */
11420
- this.Date = null;
11421
-
11422
- /**
11423
- * Download address on the private network
11424
- * @type {string || null}
11425
- */
11426
- this.IntranetUrl = null;
11427
-
11428
- /**
11429
- * Download address on the public network
11430
- * @type {string || null}
11431
- */
11432
- this.InternetUrl = null;
11433
-
11434
- /**
11435
- * Log type. Value range: slowlog (slow log)
11436
- * @type {string || null}
11437
- */
11438
- this.Type = null;
11439
-
11440
11680
  }
11441
11681
 
11442
11682
  /**
@@ -11446,12 +11686,6 @@ class SlowLogInfo extends AbstractModel {
11446
11686
  if (!params) {
11447
11687
  return;
11448
11688
  }
11449
- this.Name = 'Name' in params ? params.Name : null;
11450
- this.Size = 'Size' in params ? params.Size : null;
11451
- this.Date = 'Date' in params ? params.Date : null;
11452
- this.IntranetUrl = 'IntranetUrl' in params ? params.IntranetUrl : null;
11453
- this.InternetUrl = 'InternetUrl' in params ? params.InternetUrl : null;
11454
- this.Type = 'Type' in params ? params.Type : null;
11455
11689
 
11456
11690
  }
11457
11691
  }
@@ -11682,30 +11916,24 @@ class DescribeDBInstanceInfoRequest extends AbstractModel {
11682
11916
  }
11683
11917
 
11684
11918
  /**
11685
- * DescribeInstanceParams response structure.
11919
+ * VPCs used to restrict backup download
11686
11920
  * @class
11687
11921
  */
11688
- class DescribeInstanceParamsResponse extends AbstractModel {
11922
+ class BackupLimitVpcItem extends AbstractModel {
11689
11923
  constructor(){
11690
11924
  super();
11691
11925
 
11692
11926
  /**
11693
- * Number of instance parameters.
11694
- * @type {number || null}
11695
- */
11696
- this.TotalCount = null;
11697
-
11698
- /**
11699
- * Parameter details.
11700
- * @type {Array.<ParameterDetail> || null}
11927
+ * The region where the backup download restrictions take effect. It must be the same as the common request parameter `Region` of the API.
11928
+ * @type {string || null}
11701
11929
  */
11702
- this.Items = null;
11930
+ this.Region = null;
11703
11931
 
11704
11932
  /**
11705
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
11706
- * @type {string || null}
11933
+ * The list of VPCs used to restrict backup download
11934
+ * @type {Array.<string> || null}
11707
11935
  */
11708
- this.RequestId = null;
11936
+ this.VpcList = null;
11709
11937
 
11710
11938
  }
11711
11939
 
@@ -11716,17 +11944,8 @@ class DescribeInstanceParamsResponse extends AbstractModel {
11716
11944
  if (!params) {
11717
11945
  return;
11718
11946
  }
11719
- this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
11720
-
11721
- if (params.Items) {
11722
- this.Items = new Array();
11723
- for (let z in params.Items) {
11724
- let obj = new ParameterDetail();
11725
- obj.deserialize(params.Items[z]);
11726
- this.Items.push(obj);
11727
- }
11728
- }
11729
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
11947
+ this.Region = 'Region' in params ? params.Region : null;
11948
+ this.VpcList = 'VpcList' in params ? params.VpcList : null;
11730
11949
 
11731
11950
  }
11732
11951
  }
@@ -13079,6 +13298,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
13079
13298
  }
13080
13299
 
13081
13300
  module.exports = {
13301
+ ModifyInstanceTagResponse: ModifyInstanceTagResponse,
13082
13302
  SellType: SellType,
13083
13303
  TaskDetail: TaskDetail,
13084
13304
  DeviceDiskInfo: DeviceDiskInfo,
@@ -13136,10 +13356,11 @@ module.exports = {
13136
13356
  ParameterDetail: ParameterDetail,
13137
13357
  BackupSummaryItem: BackupSummaryItem,
13138
13358
  SwitchForUpgradeRequest: SwitchForUpgradeRequest,
13139
- ModifyInstanceTagResponse: ModifyInstanceTagResponse,
13359
+ ModifyBackupDownloadRestrictionRequest: ModifyBackupDownloadRestrictionRequest,
13140
13360
  CreateParamTemplateResponse: CreateParamTemplateResponse,
13141
13361
  CreateDBInstanceHourResponse: CreateDBInstanceHourResponse,
13142
13362
  ModifyAccountMaxUserConnectionsRequest: ModifyAccountMaxUserConnectionsRequest,
13363
+ ModifyAccountDescriptionRequest: ModifyAccountDescriptionRequest,
13143
13364
  ReleaseIsolatedDBInstancesRequest: ReleaseIsolatedDBInstancesRequest,
13144
13365
  BinlogInfo: BinlogInfo,
13145
13366
  DeleteDeployGroupsResponse: DeleteDeployGroupsResponse,
@@ -13164,6 +13385,7 @@ module.exports = {
13164
13385
  DescribeDBSecurityGroupsRequest: DescribeDBSecurityGroupsRequest,
13165
13386
  ModifyDBInstanceVipVportResponse: ModifyDBInstanceVipVportResponse,
13166
13387
  DescribeDBSwitchRecordsResponse: DescribeDBSwitchRecordsResponse,
13388
+ SlowLogInfo: SlowLogInfo,
13167
13389
  RollbackTableName: RollbackTableName,
13168
13390
  DeleteBackupResponse: DeleteBackupResponse,
13169
13391
  ModifyInstanceParamRequest: ModifyInstanceParamRequest,
@@ -13225,6 +13447,7 @@ module.exports = {
13225
13447
  OpenDBInstanceGTIDRequest: OpenDBInstanceGTIDRequest,
13226
13448
  UpgradeDBInstanceEngineVersionResponse: UpgradeDBInstanceEngineVersionResponse,
13227
13449
  DescribeAsyncRequestInfoRequest: DescribeAsyncRequestInfoRequest,
13450
+ DescribeInstanceParamsResponse: DescribeInstanceParamsResponse,
13228
13451
  TablePrivilege: TablePrivilege,
13229
13452
  BalanceRoGroupLoadRequest: BalanceRoGroupLoadRequest,
13230
13453
  DescribeBackupOverviewResponse: DescribeBackupOverviewResponse,
@@ -13253,7 +13476,7 @@ module.exports = {
13253
13476
  ModifyBackupConfigResponse: ModifyBackupConfigResponse,
13254
13477
  RoVipInfo: RoVipInfo,
13255
13478
  ModifyDBInstanceNameResponse: ModifyDBInstanceNameResponse,
13256
- ModifyAccountDescriptionRequest: ModifyAccountDescriptionRequest,
13479
+ DescribeBackupDownloadRestrictionResponse: DescribeBackupDownloadRestrictionResponse,
13257
13480
  ModifyAccountPasswordRequest: ModifyAccountPasswordRequest,
13258
13481
  DescribeTablesRequest: DescribeTablesRequest,
13259
13482
  InstanceRebootTime: InstanceRebootTime,
@@ -13269,6 +13492,7 @@ module.exports = {
13269
13492
  RoInstanceInfo: RoInstanceInfo,
13270
13493
  CreateAccountsRequest: CreateAccountsRequest,
13271
13494
  IsolateDBInstanceRequest: IsolateDBInstanceRequest,
13495
+ ModifyBackupDownloadRestrictionResponse: ModifyBackupDownloadRestrictionResponse,
13272
13496
  ModifyTimeWindowRequest: ModifyTimeWindowRequest,
13273
13497
  DeviceCpuRateInfo: DeviceCpuRateInfo,
13274
13498
  ModifyAccountPrivilegesRequest: ModifyAccountPrivilegesRequest,
@@ -13298,13 +13522,13 @@ module.exports = {
13298
13522
  DeleteTimeWindowRequest: DeleteTimeWindowRequest,
13299
13523
  DescribeDBInstancesResponse: DescribeDBInstancesResponse,
13300
13524
  DescribeParamTemplateInfoRequest: DescribeParamTemplateInfoRequest,
13301
- SlowLogInfo: SlowLogInfo,
13525
+ DescribeBackupDownloadRestrictionRequest: DescribeBackupDownloadRestrictionRequest,
13302
13526
  DescribeDataBackupOverviewRequest: DescribeDataBackupOverviewRequest,
13303
13527
  DescribeParamTemplateInfoResponse: DescribeParamTemplateInfoResponse,
13304
13528
  ParamRecord: ParamRecord,
13305
13529
  RestartDBInstancesRequest: RestartDBInstancesRequest,
13306
13530
  DescribeDBInstanceInfoRequest: DescribeDBInstanceInfoRequest,
13307
- DescribeInstanceParamsResponse: DescribeInstanceParamsResponse,
13531
+ BackupLimitVpcItem: BackupLimitVpcItem,
13308
13532
  DescribeDBZoneConfigResponse: DescribeDBZoneConfigResponse,
13309
13533
  CreateDeployGroupRequest: CreateDeployGroupRequest,
13310
13534
  DisassociateSecurityGroupsRequest: DisassociateSecurityGroupsRequest,
@@ -80,6 +80,13 @@ Note: `null` may be returned for this field, indicating that no valid values can
80
80
  */
81
81
  this.Events = null;
82
82
 
83
+ /**
84
+ * Total number of events.
85
+ Note: this field may return `null`, indicating that no valid values can be obtained.
86
+ * @type {number || null}
87
+ */
88
+ this.TotalCount = null;
89
+
83
90
  /**
84
91
  * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
85
92
  * @type {string || null}
@@ -106,6 +113,7 @@ Note: `null` may be returned for this field, indicating that no valid values can
106
113
  this.Events.push(obj);
107
114
  }
108
115
  }
116
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
109
117
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
110
118
 
111
119
  }
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.327";
1
+ const sdkVersion = "3.0.331";
2
2
  module.exports = sdkVersion
@@ -65,6 +65,7 @@ const StreamPackageSettingsInfo = models.StreamPackageSettingsInfo;
65
65
  const DescribeStreamLiveChannelsResponse = models.DescribeStreamLiveChannelsResponse;
66
66
  const PlanReq = models.PlanReq;
67
67
  const DescribeStreamLiveRegionsResponse = models.DescribeStreamLiveRegionsResponse;
68
+ const TimedRecordSettings = models.TimedRecordSettings;
68
69
  const StreamLiveRegionInfo = models.StreamLiveRegionInfo;
69
70
  const DescribeStreamLiveChannelRequest = models.DescribeStreamLiveChannelRequest;
70
71
  const DescribeStreamLivePlansRequest = models.DescribeStreamLivePlansRequest;
@@ -89,6 +90,7 @@ const StopStreamLiveChannelResponse = models.StopStreamLiveChannelResponse;
89
90
  const StartStreamLiveChannelResponse = models.StartStreamLiveChannelResponse;
90
91
  const StreamLiveOutputGroupsInfo = models.StreamLiveOutputGroupsInfo;
91
92
  const ChannelOutputsStatistics = models.ChannelOutputsStatistics;
93
+ const PlanSettings = models.PlanSettings;
92
94
  const DescribeStreamLiveInputSecurityGroupsResponse = models.DescribeStreamLiveInputSecurityGroupsResponse;
93
95
  const DeleteStreamLiveInputResponse = models.DeleteStreamLiveInputResponse;
94
96
  const StartStreamLiveChannelRequest = models.StartStreamLiveChannelRequest;