tencentcloud-sdk-nodejs-intl-en 3.0.388 → 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.388",
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,
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.388";
1
+ const sdkVersion = "3.0.389";
2
2
  module.exports = sdkVersion
@@ -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
  }