tencentcloud-sdk-nodejs-intl-en 3.0.521 → 3.0.524

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.
@@ -6,6 +6,7 @@ module.exports = {
6
6
  batch: require("./batch"),
7
7
  billing: require("./billing"),
8
8
  cam: require("./cam"),
9
+ car: require("./car"),
9
10
  cbs: require("./cbs"),
10
11
  cdb: require("./cdb"),
11
12
  cdn: require("./cdn"),
@@ -3289,6 +3289,12 @@ class CreateSSOAccountResponse extends AbstractModel {
3289
3289
  constructor(){
3290
3290
  super();
3291
3291
 
3292
+ /**
3293
+ *
3294
+ * @type {string || null}
3295
+ */
3296
+ this.UserId = null;
3297
+
3292
3298
  /**
3293
3299
  * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
3294
3300
  * @type {string || null}
@@ -3304,6 +3310,7 @@ class CreateSSOAccountResponse extends AbstractModel {
3304
3310
  if (!params) {
3305
3311
  return;
3306
3312
  }
3313
+ this.UserId = 'UserId' in params ? params.UserId : null;
3307
3314
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
3308
3315
 
3309
3316
  }
@@ -4552,7 +4559,7 @@ class UpdateGrafanaNotificationChannelRequest extends AbstractModel {
4552
4559
  this.ChannelId = null;
4553
4560
 
4554
4561
  /**
4555
- * Instance name
4562
+ * Instance ID.
4556
4563
  * @type {string || null}
4557
4564
  */
4558
4565
  this.InstanceId = null;
@@ -4575,6 +4582,12 @@ class UpdateGrafanaNotificationChannelRequest extends AbstractModel {
4575
4582
  */
4576
4583
  this.ExtraOrgIds = null;
4577
4584
 
4585
+ /**
4586
+ *
4587
+ * @type {Array.<string> || null}
4588
+ */
4589
+ this.OrganizationIds = null;
4590
+
4578
4591
  }
4579
4592
 
4580
4593
  /**
@@ -4589,6 +4602,7 @@ class UpdateGrafanaNotificationChannelRequest extends AbstractModel {
4589
4602
  this.ChannelName = 'ChannelName' in params ? params.ChannelName : null;
4590
4603
  this.Receivers = 'Receivers' in params ? params.Receivers : null;
4591
4604
  this.ExtraOrgIds = 'ExtraOrgIds' in params ? params.ExtraOrgIds : null;
4605
+ this.OrganizationIds = 'OrganizationIds' in params ? params.OrganizationIds : null;
4592
4606
 
4593
4607
  }
4594
4608
  }
@@ -5010,7 +5024,7 @@ class DescribeGrafanaEnvironmentsRequest extends AbstractModel {
5010
5024
  super();
5011
5025
 
5012
5026
  /**
5013
- * Instance name
5027
+ * Instance ID.
5014
5028
  * @type {string || null}
5015
5029
  */
5016
5030
  this.InstanceId = null;
@@ -5985,7 +5999,7 @@ class DescribeGrafanaNotificationChannelsRequest extends AbstractModel {
5985
5999
  super();
5986
6000
 
5987
6001
  /**
5988
- * Instance name
6002
+ * Instance ID.
5989
6003
  * @type {string || null}
5990
6004
  */
5991
6005
  this.InstanceId = null;
@@ -6163,6 +6177,12 @@ class InstallPluginsResponse extends AbstractModel {
6163
6177
  constructor(){
6164
6178
  super();
6165
6179
 
6180
+ /**
6181
+ *
6182
+ * @type {Array.<string> || null}
6183
+ */
6184
+ this.PluginIds = null;
6185
+
6166
6186
  /**
6167
6187
  * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
6168
6188
  * @type {string || null}
@@ -6178,6 +6198,7 @@ class InstallPluginsResponse extends AbstractModel {
6178
6198
  if (!params) {
6179
6199
  return;
6180
6200
  }
6201
+ this.PluginIds = 'PluginIds' in params ? params.PluginIds : null;
6181
6202
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
6182
6203
 
6183
6204
  }
@@ -6475,7 +6496,7 @@ class CreateGrafanaIntegrationRequest extends AbstractModel {
6475
6496
  super();
6476
6497
 
6477
6498
  /**
6478
- * Instance name
6499
+ * Instance ID.
6479
6500
  * @type {string || null}
6480
6501
  */
6481
6502
  this.InstanceId = null;
@@ -7104,7 +7125,7 @@ class CreateGrafanaNotificationChannelRequest extends AbstractModel {
7104
7125
  super();
7105
7126
 
7106
7127
  /**
7107
- * Instance name
7128
+ * Instance ID.
7108
7129
  * @type {string || null}
7109
7130
  */
7110
7131
  this.InstanceId = null;
@@ -7133,6 +7154,12 @@ class CreateGrafanaNotificationChannelRequest extends AbstractModel {
7133
7154
  */
7134
7155
  this.ExtraOrgIds = null;
7135
7156
 
7157
+ /**
7158
+ *
7159
+ * @type {Array.<string> || null}
7160
+ */
7161
+ this.OrganizationIds = null;
7162
+
7136
7163
  }
7137
7164
 
7138
7165
  /**
@@ -7147,6 +7174,7 @@ class CreateGrafanaNotificationChannelRequest extends AbstractModel {
7147
7174
  this.OrgId = 'OrgId' in params ? params.OrgId : null;
7148
7175
  this.Receivers = 'Receivers' in params ? params.Receivers : null;
7149
7176
  this.ExtraOrgIds = 'ExtraOrgIds' in params ? params.ExtraOrgIds : null;
7177
+ this.OrganizationIds = 'OrganizationIds' in params ? params.OrganizationIds : null;
7150
7178
 
7151
7179
  }
7152
7180
  }
@@ -7711,7 +7739,7 @@ class UpgradeGrafanaInstanceRequest extends AbstractModel {
7711
7739
  super();
7712
7740
 
7713
7741
  /**
7714
- * Instance name
7742
+ * Instance ID.
7715
7743
  * @type {string || null}
7716
7744
  */
7717
7745
  this.InstanceId = null;
@@ -8016,6 +8044,12 @@ class CreateGrafanaIntegrationResponse extends AbstractModel {
8016
8044
  constructor(){
8017
8045
  super();
8018
8046
 
8047
+ /**
8048
+ *
8049
+ * @type {string || null}
8050
+ */
8051
+ this.IntegrationId = null;
8052
+
8019
8053
  /**
8020
8054
  * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
8021
8055
  * @type {string || null}
@@ -8031,6 +8065,7 @@ class CreateGrafanaIntegrationResponse extends AbstractModel {
8031
8065
  if (!params) {
8032
8066
  return;
8033
8067
  }
8068
+ this.IntegrationId = 'IntegrationId' in params ? params.IntegrationId : null;
8034
8069
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
8035
8070
 
8036
8071
  }
@@ -9578,7 +9613,7 @@ class DescribeGrafanaWhiteListRequest extends AbstractModel {
9578
9613
  super();
9579
9614
 
9580
9615
  /**
9581
- * Instance name
9616
+ * Instance ID.
9582
9617
  * @type {string || null}
9583
9618
  */
9584
9619
  this.InstanceId = null;
@@ -11740,6 +11775,13 @@ Note: this field may return null, indicating that no valid values can be obtaine
11740
11775
  */
11741
11776
  this.PolicyIds = null;
11742
11777
 
11778
+ /**
11779
+ * Backend AMP consumer ID.
11780
+ Note: This field may return null, indicating that no valid values can be obtained.
11781
+ * @type {string || null}
11782
+ */
11783
+ this.AMPConsumerId = null;
11784
+
11743
11785
  /**
11744
11786
  * Channel to push alarm notifications to CLS.
11745
11787
  Note: This field may return `null`, indicating that no valid values can be obtained.
@@ -11782,6 +11824,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
11782
11824
  this.IsPreset = 'IsPreset' in params ? params.IsPreset : null;
11783
11825
  this.NoticeLanguage = 'NoticeLanguage' in params ? params.NoticeLanguage : null;
11784
11826
  this.PolicyIds = 'PolicyIds' in params ? params.PolicyIds : null;
11827
+ this.AMPConsumerId = 'AMPConsumerId' in params ? params.AMPConsumerId : null;
11785
11828
 
11786
11829
  if (params.CLSNotices) {
11787
11830
  this.CLSNotices = new Array();
@@ -12367,7 +12410,7 @@ class UpdateDNSConfigRequest extends AbstractModel {
12367
12410
  super();
12368
12411
 
12369
12412
  /**
12370
- * Instance name
12413
+ * Instance ID.
12371
12414
  * @type {string || null}
12372
12415
  */
12373
12416
  this.InstanceId = null;
@@ -12541,7 +12584,7 @@ class UpdateGrafanaConfigRequest extends AbstractModel {
12541
12584
  super();
12542
12585
 
12543
12586
  /**
12544
- * None
12587
+ * Instance ID.
12545
12588
  * @type {string || null}
12546
12589
  */
12547
12590
  this.InstanceId = null;
@@ -12576,7 +12619,7 @@ class UpdateGrafanaEnvironmentsRequest extends AbstractModel {
12576
12619
  super();
12577
12620
 
12578
12621
  /**
12579
- * Instance name
12622
+ * Instance ID.
12580
12623
  * @type {string || null}
12581
12624
  */
12582
12625
  this.InstanceId = null;
@@ -12611,7 +12654,7 @@ class DescribeGrafanaIntegrationsRequest extends AbstractModel {
12611
12654
  super();
12612
12655
 
12613
12656
  /**
12614
- * Instance name
12657
+ * Instance ID.
12615
12658
  * @type {string || null}
12616
12659
  */
12617
12660
  this.InstanceId = null;
@@ -13211,7 +13254,7 @@ class DescribePolicyGroupInfoReceiverInfo extends AbstractModel {
13211
13254
  this.ReceiverUserList = null;
13212
13255
 
13213
13256
  /**
13214
- * Start time of the alarm period. Value range: [0,86400). Convert the Unix timestamp to Beijing time and then remove the date. For example, 7200 indicates '10:0:0'.
13257
+ * Start time of the alarm period. Value range: [0,86400). Convert the Unix timestamp to Beijing time and then remove the date. For example, 7200 indicates 10:0:0”.
13215
13258
  * @type {number || null}
13216
13259
  */
13217
13260
  this.StartTime = null;
@@ -14013,7 +14056,7 @@ class DescribeGrafanaConfigRequest extends AbstractModel {
14013
14056
  super();
14014
14057
 
14015
14058
  /**
14016
- * None
14059
+ * Instance ID.
14017
14060
  * @type {string || null}
14018
14061
  */
14019
14062
  this.InstanceId = null;
@@ -14547,6 +14590,12 @@ class CreateGrafanaNotificationChannelResponse extends AbstractModel {
14547
14590
  constructor(){
14548
14591
  super();
14549
14592
 
14593
+ /**
14594
+ *
14595
+ * @type {string || null}
14596
+ */
14597
+ this.ChannelId = null;
14598
+
14550
14599
  /**
14551
14600
  * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
14552
14601
  * @type {string || null}
@@ -14562,6 +14611,7 @@ class CreateGrafanaNotificationChannelResponse extends AbstractModel {
14562
14611
  if (!params) {
14563
14612
  return;
14564
14613
  }
14614
+ this.ChannelId = 'ChannelId' in params ? params.ChannelId : null;
14565
14615
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
14566
14616
 
14567
14617
  }
@@ -14766,7 +14816,7 @@ class CleanGrafanaInstanceRequest extends AbstractModel {
14766
14816
  super();
14767
14817
 
14768
14818
  /**
14769
- * Instance name
14819
+ * Instance ID.
14770
14820
  * @type {string || null}
14771
14821
  */
14772
14822
  this.InstanceId = null;
@@ -15312,7 +15362,7 @@ class ReceiverInfo extends AbstractModel {
15312
15362
  super();
15313
15363
 
15314
15364
  /**
15315
- * Start time of the alarm period. Value range: [0,86400). Convert the Unix timestamp to Beijing time and then remove the date. For example, 7200 indicates '10:0:0'.
15365
+ * Start time of the alarm period. Value range: [0,86400). Convert the Unix timestamp to Beijing time and then remove the date. For example, 7200 indicates 10:0:0”.
15316
15366
  * @type {number || null}
15317
15367
  */
15318
15368
  this.StartTime = null;
@@ -15348,7 +15398,7 @@ class ReceiverInfo extends AbstractModel {
15348
15398
  this.SendFor = null;
15349
15399
 
15350
15400
  /**
15351
- * Uid of the alarm call recipient.
15401
+ * UID of the phone call alarm.
15352
15402
  * @type {Array.<number> || null}
15353
15403
  */
15354
15404
  this.UidList = null;
@@ -15384,13 +15434,13 @@ class ReceiverInfo extends AbstractModel {
15384
15434
  this.NeedSendNotice = null;
15385
15435
 
15386
15436
  /**
15387
- * Recipient group list. The list of recipient group IDs that is queried by a platform API.
15437
+ * Recipient group list. The list of recipient group IDs that is queried by API.
15388
15438
  * @type {Array.<number> || null}
15389
15439
  */
15390
15440
  this.ReceiverGroupList = null;
15391
15441
 
15392
15442
  /**
15393
- * Recipient list. The list of recipient IDs that is queried by a platform API.
15443
+ * Recipient list. The list of recipient IDs that is queried by API.
15394
15444
  * @type {Array.<number> || null}
15395
15445
  */
15396
15446
  this.ReceiverUserList = null;
@@ -15976,7 +16026,7 @@ class DescribeDNSConfigRequest extends AbstractModel {
15976
16026
  super();
15977
16027
 
15978
16028
  /**
15979
- * Instance name
16029
+ * Instance ID.
15980
16030
  * @type {string || null}
15981
16031
  */
15982
16032
  this.InstanceId = null;
@@ -817,7 +817,7 @@ class MLIDPassportOCRResponse extends AbstractModel {
817
817
  this.IssuingCountry = null;
818
818
 
819
819
  /**
820
- * Nationality
820
+ * Country/region code
821
821
  * @type {string || null}
822
822
  */
823
823
  this.Nationality = null;