tencentcloud-sdk-nodejs-intl-en 3.0.386 → 3.0.389

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.386",
3
+ "version": "3.0.389",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -128,6 +128,7 @@ const DisableClsLogTopicResponse = models.DisableClsLogTopicResponse;
128
128
  const Hsts = models.Hsts;
129
129
  const DescribeIpStatusRequest = models.DescribeIpStatusRequest;
130
130
  const DetailDomain = models.DetailDomain;
131
+ const RuleEngine = models.RuleEngine;
131
132
  const GetDisableRecordsResponse = models.GetDisableRecordsResponse;
132
133
  const Ipv6Access = models.Ipv6Access;
133
134
  const ResponseHeader = models.ResponseHeader;
@@ -261,7 +262,9 @@ class CdnClient extends AbstractClient {
261
262
  }
262
263
 
263
264
  /**
264
- * This API is used to query the status of the edge servers and intermediate nodes on the domain name acceleration platform. Note: edge servers are not generally available. This API can only be used by allowlisted accounts.
265
+ * This API is used to query the status of the edge nodes and intermediate nodes. Note: Edge nodes are only available for beta users now.
266
+
267
+ >? If you have migrated your ECDN service to CDN, you can use the <a href="https://intl.cloud.tencent.com/document/api/228/41954?from_cn_redirect=1">corresponding CDN API</a>.
265
268
  * @param {DescribeIpStatusRequest} req
266
269
  * @param {function(string, DescribeIpStatusResponse):void} cb
267
270
  * @public
@@ -4580,9 +4580,11 @@ class AddCdnDomainRequest extends AbstractModel {
4580
4580
 
4581
4581
  /**
4582
4582
  * Acceleration domain name service type
4583
- web: static acceleration
4584
- download: download acceleration
4585
- media: streaming media VOD acceleration
4583
+ `web`: Webpage file downloads
4584
+ `download`: Large file downloads
4585
+ `media`: Audio and video on demand acceleration
4586
+ `hybrid`: Dynamic and static content acceleration
4587
+ `dynamic`: Dynamic content acceleration
4586
4588
  * @type {string || null}
4587
4589
  */
4588
4590
  this.ServiceType = null;
@@ -4779,7 +4781,7 @@ Overseas acceleration service must be enabled to use overseas acceleration and g
4779
4781
  this.OfflineCache = null;
4780
4782
 
4781
4783
  /**
4782
- * QUIC is in beta now. Please submit an application to join the beta. For more information, please see QUIC product documents.
4784
+ * QUIC access, which is a paid service. You can check the product document and Billing Overview for more information.
4783
4785
  * @type {Quic || null}
4784
4786
  */
4785
4787
  this.Quic = null;
@@ -5316,7 +5318,7 @@ When you change it to from `mainland`/`overseas` to `global`, configurations of
5316
5318
  this.OriginCombine = null;
5317
5319
 
5318
5320
  /**
5319
- * QUIC is in beta now. Please submit an application to join the beta. For more information, please see QUIC product documents.
5321
+ * QUIC access, which is a paid service. You can check the product document and Billing Overview for more information.
5320
5322
  * @type {Quic || null}
5321
5323
  */
5322
5324
  this.Quic = null;
@@ -7038,6 +7040,13 @@ Note: this field may return null, indicating that no valid values can be obtaine
7038
7040
  */
7039
7041
  this.Message = null;
7040
7042
 
7043
+ /**
7044
+ * Certificate source
7045
+ Note: This field may return `null`, indicating that no valid values can be obtained.
7046
+ * @type {string || null}
7047
+ */
7048
+ this.From = null;
7049
+
7041
7050
  }
7042
7051
 
7043
7052
  /**
@@ -7054,6 +7063,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
7054
7063
  this.ExpireTime = 'ExpireTime' in params ? params.ExpireTime : null;
7055
7064
  this.DeployTime = 'DeployTime' in params ? params.DeployTime : null;
7056
7065
  this.Message = 'Message' in params ? params.Message : null;
7066
+ this.From = 'From' in params ? params.From : null;
7057
7067
 
7058
7068
  }
7059
7069
  }
@@ -7488,10 +7498,12 @@ offline: disabled
7488
7498
  this.ProjectId = null;
7489
7499
 
7490
7500
  /**
7491
- * Domain name service type
7492
- web: static acceleration
7493
- download: download acceleration
7494
- media: streaming VOD acceleration
7501
+ * Acceleration domain name service type
7502
+ `web`: Webpage file downloads
7503
+ `download`: Large file downloads
7504
+ `media`: Audio and video on demand acceleration
7505
+ `hybrid`: Dynamic and static content acceleration
7506
+ `dynamic`: Dynamic content acceleration
7495
7507
  * @type {string || null}
7496
7508
  */
7497
7509
  this.ServiceType = null;
@@ -7877,6 +7889,13 @@ Note: this field may return `null`, indicating that no valid values can be obtai
7877
7889
  */
7878
7890
  this.ShareCname = null;
7879
7891
 
7892
+ /**
7893
+ * Rule engine
7894
+ Note: This field may return `null`, indicating that no valid values can be obtained.
7895
+ * @type {RuleEngine || null}
7896
+ */
7897
+ this.RuleEngine = null;
7898
+
7880
7899
  }
7881
7900
 
7882
7901
  /**
@@ -8183,6 +8202,50 @@ Note: this field may return `null`, indicating that no valid values can be obtai
8183
8202
  this.ShareCname = obj;
8184
8203
  }
8185
8204
 
8205
+ if (params.RuleEngine) {
8206
+ let obj = new RuleEngine();
8207
+ obj.deserialize(params.RuleEngine)
8208
+ this.RuleEngine = obj;
8209
+ }
8210
+
8211
+ }
8212
+ }
8213
+
8214
+ /**
8215
+ * Rule engine configuration
8216
+ * @class
8217
+ */
8218
+ class RuleEngine extends AbstractModel {
8219
+ constructor(){
8220
+ super();
8221
+
8222
+ /**
8223
+ * Specifies whether to enable rule engine
8224
+ `on`: Enable
8225
+ `off`: Disable
8226
+ * @type {string || null}
8227
+ */
8228
+ this.Switch = null;
8229
+
8230
+ /**
8231
+ * Rule
8232
+ Note: This field may return `null`, indicating that no valid values can be obtained.
8233
+ * @type {string || null}
8234
+ */
8235
+ this.Content = null;
8236
+
8237
+ }
8238
+
8239
+ /**
8240
+ * @private
8241
+ */
8242
+ deserialize(params) {
8243
+ if (!params) {
8244
+ return;
8245
+ }
8246
+ this.Switch = 'Switch' in params ? params.Switch : null;
8247
+ this.Content = 'Content' in params ? params.Content : null;
8248
+
8186
8249
  }
8187
8250
  }
8188
8251
 
@@ -15088,6 +15151,7 @@ module.exports = {
15088
15151
  Hsts: Hsts,
15089
15152
  DescribeIpStatusRequest: DescribeIpStatusRequest,
15090
15153
  DetailDomain: DetailDomain,
15154
+ RuleEngine: RuleEngine,
15091
15155
  GetDisableRecordsResponse: GetDisableRecordsResponse,
15092
15156
  Ipv6Access: Ipv6Access,
15093
15157
  ResponseHeader: ResponseHeader,
@@ -16,9 +16,11 @@
16
16
  */
17
17
  const models = require("./models");
18
18
  const AbstractClient = require('../../common/abstract_client')
19
- const LookupAttribute = models.LookupAttribute;
20
19
  const DescribeEventsResponse = models.DescribeEventsResponse;
21
20
  const Resource = models.Resource;
21
+ const DescribeAuditTracksResponse = models.DescribeAuditTracksResponse;
22
+ const DescribeAuditTracksRequest = models.DescribeAuditTracksRequest;
23
+ const LookupAttribute = models.LookupAttribute;
22
24
  const Event = models.Event;
23
25
  const DescribeEventsRequest = models.DescribeEventsRequest;
24
26
 
@@ -33,6 +35,17 @@ class CloudauditClient extends AbstractClient {
33
35
  super("cloudaudit.tencentcloudapi.com", "2019-03-19", credential, region, profile);
34
36
  }
35
37
 
38
+ /**
39
+ * This API is used to query the CloudAudit tracking set list.
40
+ * @param {DescribeAuditTracksRequest} req
41
+ * @param {function(string, DescribeAuditTracksResponse):void} cb
42
+ * @public
43
+ */
44
+ DescribeAuditTracks(req, cb) {
45
+ let resp = new DescribeAuditTracksResponse();
46
+ this.request("DescribeAuditTracks", req, resp, cb);
47
+ }
48
+
36
49
  /**
37
50
  * This API is used to query CloudAudit logs.
38
51
  * @param {DescribeEventsRequest} req
@@ -16,43 +16,6 @@
16
16
  */
17
17
  const AbstractModel = require("../../common/abstract_model");
18
18
 
19
- /**
20
- * Search criterion
21
- * @class
22
- */
23
- class LookupAttribute extends AbstractModel {
24
- constructor(){
25
- super();
26
-
27
- /**
28
- * Valid values: RequestId, EventName, ReadOnly, Username, ResourceType, ResourceName, AccessKeyId, and EventId
29
- Note: `null` may be returned for this field, indicating that no valid values can be obtained.
30
- * @type {string || null}
31
- */
32
- this.AttributeKey = null;
33
-
34
- /**
35
- * Value of `AttributeValue`
36
- Note: `null` may be returned for this field, indicating that no valid values can be obtained.
37
- * @type {string || null}
38
- */
39
- this.AttributeValue = null;
40
-
41
- }
42
-
43
- /**
44
- * @private
45
- */
46
- deserialize(params) {
47
- if (!params) {
48
- return;
49
- }
50
- this.AttributeKey = 'AttributeKey' in params ? params.AttributeKey : null;
51
- this.AttributeValue = 'AttributeValue' in params ? params.AttributeValue : null;
52
-
53
- }
54
- }
55
-
56
19
  /**
57
20
  * DescribeEvents response structure.
58
21
  * @class
@@ -155,6 +118,92 @@ Note: `null` may be returned for this field, indicating that no valid values can
155
118
  }
156
119
  }
157
120
 
121
+ /**
122
+ * DescribeAuditTracks response structure.
123
+ * @class
124
+ */
125
+ class DescribeAuditTracksResponse extends AbstractModel {
126
+ constructor(){
127
+ super();
128
+
129
+ /**
130
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
131
+ * @type {string || null}
132
+ */
133
+ this.RequestId = null;
134
+
135
+ }
136
+
137
+ /**
138
+ * @private
139
+ */
140
+ deserialize(params) {
141
+ if (!params) {
142
+ return;
143
+ }
144
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
145
+
146
+ }
147
+ }
148
+
149
+ /**
150
+ * DescribeAuditTracks request structure.
151
+ * @class
152
+ */
153
+ class DescribeAuditTracksRequest extends AbstractModel {
154
+ constructor(){
155
+ super();
156
+
157
+ }
158
+
159
+ /**
160
+ * @private
161
+ */
162
+ deserialize(params) {
163
+ if (!params) {
164
+ return;
165
+ }
166
+
167
+ }
168
+ }
169
+
170
+ /**
171
+ * Search criterion
172
+ * @class
173
+ */
174
+ class LookupAttribute extends AbstractModel {
175
+ constructor(){
176
+ super();
177
+
178
+ /**
179
+ * Valid values: RequestId, EventName, ReadOnly, Username, ResourceType, ResourceName, AccessKeyId, and EventId
180
+ Note: `null` may be returned for this field, indicating that no valid values can be obtained.
181
+ * @type {string || null}
182
+ */
183
+ this.AttributeKey = null;
184
+
185
+ /**
186
+ * Value of `AttributeValue`
187
+ Note: `null` may be returned for this field, indicating that no valid values can be obtained.
188
+ * @type {string || null}
189
+ */
190
+ this.AttributeValue = null;
191
+
192
+ }
193
+
194
+ /**
195
+ * @private
196
+ */
197
+ deserialize(params) {
198
+ if (!params) {
199
+ return;
200
+ }
201
+ this.AttributeKey = 'AttributeKey' in params ? params.AttributeKey : null;
202
+ this.AttributeValue = 'AttributeValue' in params ? params.AttributeValue : null;
203
+
204
+ }
205
+ }
206
+
158
207
  /**
159
208
  * Log details
160
209
  * @class
@@ -374,9 +423,11 @@ class DescribeEventsRequest extends AbstractModel {
374
423
  }
375
424
 
376
425
  module.exports = {
377
- LookupAttribute: LookupAttribute,
378
426
  DescribeEventsResponse: DescribeEventsResponse,
379
427
  Resource: Resource,
428
+ DescribeAuditTracksResponse: DescribeAuditTracksResponse,
429
+ DescribeAuditTracksRequest: DescribeAuditTracksRequest,
430
+ LookupAttribute: LookupAttribute,
380
431
  Event: Event,
381
432
  DescribeEventsRequest: DescribeEventsRequest,
382
433
 
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.386";
1
+ const sdkVersion = "3.0.389";
2
2
  module.exports = sdkVersion
@@ -1272,8 +1272,8 @@ class LoginSettings extends AbstractModel {
1272
1272
  super();
1273
1273
 
1274
1274
  /**
1275
- * Login password of the instance. The password requirements vary among different operating systems: <br><li>For Linux instances, the password must be 8-30 characters long and contain at least two of the following types: [a-z], [A-Z], [0-9] and [( ) \` ~ ! @ # $ % ^ & * - + = | { } [ ] : ; ' , . ? / ]. <br><li>For Windows instances, the password must be 12-30 characters long and contain at least three of the following categories: [a-z], [A-Z], [0-9] and [( ) \` ~ ! @ # $ % ^ & * - + = | { } [ ] : ; ' , . ? /]. <br><br>If this parameter is not specified, a random password will be generated and sent to you via the Message Center.
1276
- Note: this field may return null, indicating that no valid value is obtained.
1275
+ * Login password of the instance. <br><li>For Linux instances, the password must include 8-30 characters, and contain at least two of the following character sets: [a-z], [A-Z], [0-9] and [()\`~!@#$%^&*-+=|{}[]:;',.?/]. <br><li>For Windows instances, the password must include 12-30 characters, and contain at least three of the following character sets: [a-z], [A-Z], [0-9] and [()\`~!@#$%^&*-+=|{}[]:;',.?/]. <br><br>If it's not specified, the user needs to set the login password using the **Reset password** option in the CVM console or calling the API `ResetInstancesPassword` to complete the creation of the CVM instance(s).
1276
+ Note: This field may return `null`, indicating that no valid values can be obtained.
1277
1277
  * @type {string || null}
1278
1278
  */
1279
1279
  this.Password = null;
@@ -2640,7 +2640,7 @@ class ModifyInstancesAttributeRequest extends AbstractModel {
2640
2640
  this.SecurityGroups = null;
2641
2641
 
2642
2642
  /**
2643
- *
2643
+ * Whether the termination protection is enabled. Values: <br><li>`TRUE`: enable instance protection, which means that this instance can not be deleted by an API action.<br><li>`FALSE`: do not enable the instance protection.<br><br>Default Value: `FALSE`.
2644
2644
  * @type {boolean || null}
2645
2645
  */
2646
2646
  this.DisableApiTermination = null;
@@ -6854,7 +6854,7 @@ class RunInstancesRequest extends AbstractModel {
6854
6854
  this.InstanceName = null;
6855
6855
 
6856
6856
  /**
6857
- * Login settings of the instance. You can use this parameter to set the login method, password, and key of the instance or keep the login settings of the original image. By default, a random password will be generated and sent to you via the Message Center.
6857
+ * Instance login settings. You can use this parameter to set the login method, login password and SSH key, or keep the original login settings of the image. If it's not specified, the user needs to set the login password using the "Reset password" option in the CVM console or calling the API `ResetInstancesPassword` to complete the creation of the CVM instance(s).
6858
6858
  * @type {LoginSettings || null}
6859
6859
  */
6860
6860
  this.LoginSettings = null;
@@ -6942,7 +6942,7 @@ false (default value): send a normal request and create instance(s) if all the r
6942
6942
  this.LaunchTemplate = null;
6943
6943
 
6944
6944
  /**
6945
- *
6945
+ * Specify the CHC physical server that used to create the CHC CVM.
6946
6946
  * @type {Array.<string> || null}
6947
6947
  */
6948
6948
  this.ChcIds = null;
@@ -3105,6 +3105,22 @@ Note: This field may return null, indicating that no valid values can be obtaine
3105
3105
  */
3106
3106
  this.ForwardHost = null;
3107
3107
 
3108
+ /**
3109
+ * Specifies whether to enable Server Name Indication (SNI). Valid values: `ON` (enable) and `OFF` (disable).
3110
+ Note: This field may return `null`, indicating that no valid value can be obtained.
3111
+ Note: This field may return `null`, indicating that no valid value can be obtained.
3112
+ * @type {string || null}
3113
+ */
3114
+ this.ServerNameIndicationSwitch = null;
3115
+
3116
+ /**
3117
+ * Server Name Indication (SNI). This field is required when `ServerNameIndicationSwitch` is `ON`.
3118
+ Note: This field may return `null`, indicating that no valid value can be obtained.
3119
+ Note: This field may return `null`, indicating that no valid value can be obtained.
3120
+ * @type {string || null}
3121
+ */
3122
+ this.ServerNameIndication = null;
3123
+
3108
3124
  }
3109
3125
 
3110
3126
  /**
@@ -3139,6 +3155,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
3139
3155
  }
3140
3156
  this.BindStatus = 'BindStatus' in params ? params.BindStatus : null;
3141
3157
  this.ForwardHost = 'ForwardHost' in params ? params.ForwardHost : null;
3158
+ this.ServerNameIndicationSwitch = 'ServerNameIndicationSwitch' in params ? params.ServerNameIndicationSwitch : null;
3159
+ this.ServerNameIndication = 'ServerNameIndication' in params ? params.ServerNameIndication : null;
3142
3160
 
3143
3161
  }
3144
3162
  }
@@ -4176,12 +4194,24 @@ If `ForwardProtocol=default`, the `ForwardProtocol` of the listener will be used
4176
4194
  this.ForwardProtocol = null;
4177
4195
 
4178
4196
  /**
4179
- * The `host` carried in the request forwarded from the acceleration connection to the origin server.
4180
- If `ForwardHost=default`, the domain name of rule will be used. For other cases, the value set in this field will be used.
4197
+ * The forwarding host, which is carried in the request forwarded from the acceleration connection to the origin server.
4198
+ If `ForwardHost=default`, the domain name configured with the forwarding rule will be used. For other cases, the value set in this field will be used.
4181
4199
  * @type {string || null}
4182
4200
  */
4183
4201
  this.ForwardHost = null;
4184
4202
 
4203
+ /**
4204
+ * Specifies whether to enable Server Name Indication (SNI). Valid values: `ON` (enable) and `OFF` (disable).
4205
+ * @type {string || null}
4206
+ */
4207
+ this.ServerNameIndicationSwitch = null;
4208
+
4209
+ /**
4210
+ * Server Name Indication (SNI). This field is required when `ServerNameIndicationSwitch` is `ON`.
4211
+ * @type {string || null}
4212
+ */
4213
+ this.ServerNameIndication = null;
4214
+
4185
4215
  }
4186
4216
 
4187
4217
  /**
@@ -4204,6 +4234,8 @@ If `ForwardHost=default`, the domain name of rule will be used. For other cases,
4204
4234
  this.Path = 'Path' in params ? params.Path : null;
4205
4235
  this.ForwardProtocol = 'ForwardProtocol' in params ? params.ForwardProtocol : null;
4206
4236
  this.ForwardHost = 'ForwardHost' in params ? params.ForwardHost : null;
4237
+ this.ServerNameIndicationSwitch = 'ServerNameIndicationSwitch' in params ? params.ServerNameIndicationSwitch : null;
4238
+ this.ServerNameIndication = 'ServerNameIndication' in params ? params.ServerNameIndication : null;
4207
4239
 
4208
4240
  }
4209
4241
  }
@@ -5566,6 +5598,12 @@ class RealServer extends AbstractModel {
5566
5598
  */
5567
5599
  this.ProjectId = null;
5568
5600
 
5601
+ /**
5602
+ * Indicates whether the origin server IP or domain name is in the blocklist. Valid values: `0` (no) and `1` (yes).
5603
+ * @type {number || null}
5604
+ */
5605
+ this.InBanBlacklist = null;
5606
+
5569
5607
  }
5570
5608
 
5571
5609
  /**
@@ -5579,6 +5617,7 @@ class RealServer extends AbstractModel {
5579
5617
  this.RealServerId = 'RealServerId' in params ? params.RealServerId : null;
5580
5618
  this.RealServerName = 'RealServerName' in params ? params.RealServerName : null;
5581
5619
  this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
5620
+ this.InBanBlacklist = 'InBanBlacklist' in params ? params.InBanBlacklist : null;
5582
5621
 
5583
5622
  }
5584
5623
  }
@@ -6607,11 +6646,23 @@ If this field is not passed in, it indicates that the ForwardProtocol of the cor
6607
6646
  this.ForwardProtocol = null;
6608
6647
 
6609
6648
  /**
6610
- * Remote host to which the acceleration connection forwards. If this parameter is not specified, the default host will be used, i.e., the host with which the client initiates HTTP requests.
6649
+ * The forwarding host. If it’s not specified, the default host is used, that is the host with which the client initiates HTTP requests.
6611
6650
  * @type {string || null}
6612
6651
  */
6613
6652
  this.ForwardHost = null;
6614
6653
 
6654
+ /**
6655
+ * Specifies whether to enable Server Name Indication (SNI). Valid values: `ON` (enable) and `OFF` (disable).
6656
+ * @type {string || null}
6657
+ */
6658
+ this.ServerNameIndicationSwitch = null;
6659
+
6660
+ /**
6661
+ * Server Name Indication (SNI). This field is required when `ServerNameIndicationSwitch` is `ON`.
6662
+ * @type {string || null}
6663
+ */
6664
+ this.ServerNameIndication = null;
6665
+
6615
6666
  }
6616
6667
 
6617
6668
  /**
@@ -6635,6 +6686,8 @@ If this field is not passed in, it indicates that the ForwardProtocol of the cor
6635
6686
  }
6636
6687
  this.ForwardProtocol = 'ForwardProtocol' in params ? params.ForwardProtocol : null;
6637
6688
  this.ForwardHost = 'ForwardHost' in params ? params.ForwardHost : null;
6689
+ this.ServerNameIndicationSwitch = 'ServerNameIndicationSwitch' in params ? params.ServerNameIndicationSwitch : null;
6690
+ this.ServerNameIndication = 'ServerNameIndication' in params ? params.ServerNameIndication : null;
6638
6691
 
6639
6692
  }
6640
6693
  }
@@ -6906,8 +6959,8 @@ Note: This field may return `null`, indicating that no valid values can be obtai
6906
6959
  this.IPAddressVersion = null;
6907
6960
 
6908
6961
  /**
6909
- * Package type of connection groups. Valid values: `Thunder` (general connection group), `Accelerator` (game accelerator connection group), and `CrossBorder` (cross-MLC-border connection group).
6910
- Note: This field may return `null`, indicating that no valid values can be obtained.
6962
+ * Package type of connection groups. Valid values: `Thunder` (general connection group), `Accelerator` (silver connection group), and `CrossBorder` (cross-MLC-border connection group).
6963
+ Note: This field may return `null`, indicating that no valid value can be obtained.
6911
6964
  * @type {string || null}
6912
6965
  */
6913
6966
  this.PackageType = null;
@@ -7589,7 +7642,7 @@ The default value is 0.
7589
7642
  this.RealServerCertificateId = null;
7590
7643
 
7591
7644
  /**
7592
- * Domain name of the origin server certificate.
7645
+ * This field has been disused. Use ServerNameIndication instead.
7593
7646
  * @type {string || null}
7594
7647
  */
7595
7648
  this.RealServerCertificateDomain = null;
@@ -8288,8 +8341,8 @@ Other values: specified project
8288
8341
  /**
8289
8342
  * Filter condition
8290
8343
  Each request can have a maximum of 5 filter conditions for `Filter.Values`.
8291
- RealServerRegion - String - Required: No - Filter by origin server region. You can also check the value of `RegionId` returned by the `DescribeDestRegions` API.
8292
- PackageType - String - Required: No - Filter by type of connection groups, which can be `Thunder` (general connection group) or `Accelerator` (game accelerator connection group).
8344
+ `RealServerRegion` - String - Required: No - Filter by origin server region. You can also check the value of `RegionId` returned by the `DescribeDestRegions` API.
8345
+ `PackageType` - String - Required: No - Filter by type of connection groups, which can be `Thunder` (general connection group) or `Accelerator` (silver connection group).
8293
8346
  * @type {Array.<Filter> || null}
8294
8347
  */
8295
8348
  this.Filters = null;
@@ -10970,9 +11023,9 @@ Note: this field may return `null`, indicating that no valid value can be obtain
10970
11023
  this.NetworkType = null;
10971
11024
 
10972
11025
  /**
10973
- * Package type of connection groups. Valid values: `Thunder` (general), `Accelerator` (specific for games),
11026
+ * Package type of connections. Valid values: `Thunder` (general connection), `Accelerator` (silver connection),
10974
11027
  and `CrossBorder` (cross-MLC-border connection).
10975
- Note: this field may return `null`, indicating that no valid value can be obtained.
11028
+ Note: This field may return `null`, indicating that no valid value can be obtained.
10976
11029
  * @type {string || null}
10977
11030
  */
10978
11031
  this.PackageType = null;
@@ -10999,6 +11052,13 @@ Note: this field may return `null`, indicating that no valid value can be obtain
10999
11052
  */
11000
11053
  this.Http3Supported = null;
11001
11054
 
11055
+ /**
11056
+ * Indicates whether the origin server IP or domain name is in the blocklist. Valid values: `0` (no) and `1` (yes).
11057
+ Note: This field may return `null`, indicating that no valid value can be obtained.
11058
+ * @type {number || null}
11059
+ */
11060
+ this.InBanBlacklist = null;
11061
+
11002
11062
  }
11003
11063
 
11004
11064
  /**
@@ -11067,6 +11127,7 @@ Note: this field may return `null`, indicating that no valid value can be obtain
11067
11127
  }
11068
11128
  }
11069
11129
  this.Http3Supported = 'Http3Supported' in params ? params.Http3Supported : null;
11130
+ this.InBanBlacklist = 'InBanBlacklist' in params ? params.InBanBlacklist : null;
11070
11131
 
11071
11132
  }
11072
11133
  }
@@ -2792,6 +2792,13 @@ Note: This field may return `null`, indicating that no valid values can be obtai
2792
2792
  */
2793
2793
  this.TagInstances = null;
2794
2794
 
2795
+ /**
2796
+ * Information on the filter dimension associated with a policy.
2797
+ Note: This field may return `null`, indicating that no valid values can be obtained.
2798
+ * @type {string || null}
2799
+ */
2800
+ this.FilterDimensionsParam = null;
2801
+
2795
2802
  }
2796
2803
 
2797
2804
  /**
@@ -2869,6 +2876,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
2869
2876
  this.TagInstances.push(obj);
2870
2877
  }
2871
2878
  }
2879
+ this.FilterDimensionsParam = 'FilterDimensionsParam' in params ? params.FilterDimensionsParam : null;
2872
2880
 
2873
2881
  }
2874
2882
  }
@@ -3912,8 +3920,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
3912
3920
  this.EndTime = null;
3913
3921
 
3914
3922
  /**
3915
- * Notification channel list. Valid values: EMAIL (email), SMS (SMS), CALL (phone), WECHAT (WeChat)
3916
- Note: this field may return null, indicating that no valid values can be obtained.
3923
+ * Notification channel list. Valid values: `EMAIL` (email), `SMS` (SMS), `CALL` (phone), `WECHAT` (WeChat), `RTX` (WeCom)
3924
+ Note: This field may return `null`, indicating that no valid values can be obtained.
3917
3925
  * @type {Array.<string> || null}
3918
3926
  */
3919
3927
  this.NoticeWay = null;
@@ -3967,6 +3975,13 @@ Note: this field may return null, indicating that no valid values can be obtaine
3967
3975
  */
3968
3976
  this.NeedPhoneArriveNotice = null;
3969
3977
 
3978
+ /**
3979
+ * Dial type. `SYNC` (simultaneous dial), `CIRCLE` (polled dial). Default value: `CIRCLE`.
3980
+ Note: This field may return `null`, indicating that no valid values can be obtained.
3981
+ * @type {string || null}
3982
+ */
3983
+ this.PhoneCallType = null;
3984
+
3970
3985
  }
3971
3986
 
3972
3987
  /**
@@ -3987,6 +4002,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
3987
4002
  this.PhoneInnerInterval = 'PhoneInnerInterval' in params ? params.PhoneInnerInterval : null;
3988
4003
  this.PhoneCircleInterval = 'PhoneCircleInterval' in params ? params.PhoneCircleInterval : null;
3989
4004
  this.NeedPhoneArriveNotice = 'NeedPhoneArriveNotice' in params ? params.NeedPhoneArriveNotice : null;
4005
+ this.PhoneCallType = 'PhoneCallType' in params ? params.PhoneCallType : null;
3990
4006
 
3991
4007
  }
3992
4008
  }
@@ -5891,6 +5907,8 @@ class DescribeAlarmPoliciesRequest extends AbstractModel {
5891
5907
  You can also refer to the “Example 2” below.
5892
5908
 
5893
5909
  For more information on the parameter samples of different Tencent Cloud services, see [Product Policy Type and Dimension Information](https://intl.cloud.tencent.com/document/product/248/50397?from_cn_redirect=1).
5910
+
5911
+ Note: If `1` is passed in for `NeedCorrespondence`, the relationship between a policy and an instance needs to be returned. You can pass in up to 20 alarm object dimensions to avoid request timeout.
5894
5912
  * @type {string || null}
5895
5913
  */
5896
5914
  this.Dimensions = null;
@@ -5963,6 +5981,12 @@ It can be queried with the API [DescribeAlarmNotices](https://intl.cloud.tencent
5963
5981
  */
5964
5982
  this.InstanceGroupId = null;
5965
5983
 
5984
+ /**
5985
+ * Whether the relationship between a policy and the input parameter filter dimension is required. `1`: Yes. `0`: No. Default value: `0`.
5986
+ * @type {number || null}
5987
+ */
5988
+ this.NeedCorrespondence = null;
5989
+
5966
5990
  }
5967
5991
 
5968
5992
  /**
@@ -5990,6 +6014,7 @@ It can be queried with the API [DescribeAlarmNotices](https://intl.cloud.tencent
5990
6014
  this.Enable = 'Enable' in params ? params.Enable : null;
5991
6015
  this.NotBindingNoticeRule = 'NotBindingNoticeRule' in params ? params.NotBindingNoticeRule : null;
5992
6016
  this.InstanceGroupId = 'InstanceGroupId' in params ? params.InstanceGroupId : null;
6017
+ this.NeedCorrespondence = 'NeedCorrespondence' in params ? params.NeedCorrespondence : null;
5993
6018
 
5994
6019
  }
5995
6020
  }
@@ -2979,7 +2979,7 @@ class ComposeMediaRequest extends AbstractModel {
2979
2979
  super();
2980
2980
 
2981
2981
  /**
2982
- * List of input media tracks, i.e., information of multiple tracks composed of video, audio, image, and other materials. <li>Multiple input tracks are aligned with the output media file on the time axis. </li><li>The materials of each track at the same time point on the time axis will be superimposed. Specifically, videos or images will be superimposed for video image by track order, where a material with a higher track order will be more on top, while audio materials will be mixed. </li><li>Up to 10 tracks are supported for each type (video, audio, or image).</li>
2982
+ * List of input media tracks, including video, audio, and image tracks. <li>Input tracks are synced to the output media file.</li><li>Input tracks are synced to each other. Videos and images in higher tracks are superimposed over those in lower tracks. Audio tracks are mixed.</li><li>There can be up to 10 tracks for video, audio, and images each.</li><li>The total number of clips in all tracks cannot exceed 500.</li>
2983
2983
  * @type {Array.<MediaTrack> || null}
2984
2984
  */
2985
2985
  this.Tracks = null;
@@ -12080,26 +12080,49 @@ class CreateSuperPlayerConfigRequest extends AbstractModel {
12080
12080
  this.Name = null;
12081
12081
 
12082
12082
  /**
12083
- * Switch of DRM-protected adaptive bitstream playback:
12084
- <li>ON: enabled, indicating to play back only output adaptive bitstreams protected by DRM;</li>
12085
- <li>OFF: disabled, indicating to play back unencrypted output adaptive bitstreams.</li>
12086
- Default value: OFF.
12083
+ * Type of audio/video played. Valid values:
12084
+ <li>AdaptiveDynamicStreaming</li>
12085
+ <li>Transcode</li>
12086
+ <li>Original</li>
12087
+ Default value: `AdaptiveDynamicStream`
12088
+ * @type {string || null}
12089
+ */
12090
+ this.AudioVideoType = null;
12091
+
12092
+ /**
12093
+ * Whether to allow only adaptive bitrate streaming playback protected by DRM. Valid values:
12094
+ <li>`ON`: allow only adaptive bitrate streaming playback protected by DRM</li>
12095
+ <li>`OFF`: allow adaptive bitrate streaming playback not protected by DRM</li>
12096
+ Default value: `OFF`
12097
+ This parameter is valid when `AudioVideoType` is `AdaptiveDynamicStream`.
12087
12098
  * @type {string || null}
12088
12099
  */
12089
12100
  this.DrmSwitch = null;
12090
12101
 
12091
12102
  /**
12092
- * ID of the unencrypted adaptive bitrate streaming template that allows output, which is required if `DrmSwitch` is `OFF`.
12103
+ * ID of the adaptive bitrate streaming template allowed for playback not protected by DRM.
12104
+
12105
+ This parameter is required if `AudioVideoType` is `AdaptiveDynamicStream` and `DrmSwitch` is `OFF`.
12093
12106
  * @type {number || null}
12094
12107
  */
12095
12108
  this.AdaptiveDynamicStreamingDefinition = null;
12096
12109
 
12097
12110
  /**
12098
- * Content of the DRM-protected adaptive bitrate streaming template that allows output, which is required if `DrmSwitch` is `ON`.
12111
+ * Content of the adaptive bitrate streaming template allowed for playback protected by DRM.
12112
+
12113
+ This parameter is required if `AudioVideoType` is `AdaptiveDynamicStream` and `DrmSwitch` is `ON`.
12099
12114
  * @type {DrmStreamingsInfo || null}
12100
12115
  */
12101
12116
  this.DrmStreamingsInfo = null;
12102
12117
 
12118
+ /**
12119
+ * ID of the transcoding template allowed for playback
12120
+
12121
+ This parameter is required if `AudioVideoType` is `Transcode`.
12122
+ * @type {number || null}
12123
+ */
12124
+ this.TranscodeDefinition = null;
12125
+
12103
12126
  /**
12104
12127
  * ID of the image sprite generating template that allows output.
12105
12128
  * @type {number || null}
@@ -12155,6 +12178,7 @@ Default value: OFF.
12155
12178
  return;
12156
12179
  }
12157
12180
  this.Name = 'Name' in params ? params.Name : null;
12181
+ this.AudioVideoType = 'AudioVideoType' in params ? params.AudioVideoType : null;
12158
12182
  this.DrmSwitch = 'DrmSwitch' in params ? params.DrmSwitch : null;
12159
12183
  this.AdaptiveDynamicStreamingDefinition = 'AdaptiveDynamicStreamingDefinition' in params ? params.AdaptiveDynamicStreamingDefinition : null;
12160
12184
 
@@ -12163,6 +12187,7 @@ Default value: OFF.
12163
12187
  obj.deserialize(params.DrmStreamingsInfo)
12164
12188
  this.DrmStreamingsInfo = obj;
12165
12189
  }
12190
+ this.TranscodeDefinition = 'TranscodeDefinition' in params ? params.TranscodeDefinition : null;
12166
12191
  this.ImageSpriteDefinition = 'ImageSpriteDefinition' in params ? params.ImageSpriteDefinition : null;
12167
12192
 
12168
12193
  if (params.ResolutionNames) {
@@ -23709,6 +23734,15 @@ class ModifySuperPlayerConfigRequest extends AbstractModel {
23709
23734
  */
23710
23735
  this.Name = null;
23711
23736
 
23737
+ /**
23738
+ * Type of audio/video played. Valid values:
23739
+ <li>AdaptiveDynamicStreaming</li>
23740
+ <li>Transcode</li>
23741
+ <li>Original</li>
23742
+ * @type {string || null}
23743
+ */
23744
+ this.AudioVideoType = null;
23745
+
23712
23746
  /**
23713
23747
  * Switch of DRM-protected adaptive bitstream playback:
23714
23748
  <li>ON: enabled, indicating to play back only output adaptive bitstreams protected by DRM;</li>
@@ -23729,6 +23763,12 @@ class ModifySuperPlayerConfigRequest extends AbstractModel {
23729
23763
  */
23730
23764
  this.DrmStreamingsInfo = null;
23731
23765
 
23766
+ /**
23767
+ * ID of the transcoding template allowed for playback
23768
+ * @type {number || null}
23769
+ */
23770
+ this.TranscodeDefinition = null;
23771
+
23732
23772
  /**
23733
23773
  * ID of the image sprite generating template that allows output.
23734
23774
  * @type {number || null}
@@ -23778,6 +23818,7 @@ class ModifySuperPlayerConfigRequest extends AbstractModel {
23778
23818
  return;
23779
23819
  }
23780
23820
  this.Name = 'Name' in params ? params.Name : null;
23821
+ this.AudioVideoType = 'AudioVideoType' in params ? params.AudioVideoType : null;
23781
23822
  this.DrmSwitch = 'DrmSwitch' in params ? params.DrmSwitch : null;
23782
23823
  this.AdaptiveDynamicStreamingDefinition = 'AdaptiveDynamicStreamingDefinition' in params ? params.AdaptiveDynamicStreamingDefinition : null;
23783
23824
 
@@ -23786,6 +23827,7 @@ class ModifySuperPlayerConfigRequest extends AbstractModel {
23786
23827
  obj.deserialize(params.DrmStreamingsInfo)
23787
23828
  this.DrmStreamingsInfo = obj;
23788
23829
  }
23830
+ this.TranscodeDefinition = 'TranscodeDefinition' in params ? params.TranscodeDefinition : null;
23789
23831
  this.ImageSpriteDefinition = 'ImageSpriteDefinition' in params ? params.ImageSpriteDefinition : null;
23790
23832
 
23791
23833
  if (params.ResolutionNames) {