tencentcloud-sdk-nodejs-intl-en 3.0.609 → 3.0.610
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 +1 -1
- package/tencentcloud/as/v20180419/as_client.js +1 -0
- package/tencentcloud/as/v20180419/models.js +98 -2
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/v20210527/dbbrain_client.js +414 -50
- package/tencentcloud/dbbrain/v20210527/models.js +4952 -707
- package/tencentcloud/ssl/v20191205/models.js +273 -10
- package/tencentcloud/ssl/v20191205/ssl_client.js +2 -0
package/package.json
CHANGED
|
@@ -100,6 +100,7 @@ const DescribeAutoScalingInstancesResponse = models.DescribeAutoScalingInstances
|
|
|
100
100
|
const EnhancedService = models.EnhancedService;
|
|
101
101
|
const RunAutomationServiceEnabled = models.RunAutomationServiceEnabled;
|
|
102
102
|
const DeleteLaunchConfigurationResponse = models.DeleteLaunchConfigurationResponse;
|
|
103
|
+
const IPv6InternetAccessible = models.IPv6InternetAccessible;
|
|
103
104
|
const DescribeScheduledActionsRequest = models.DescribeScheduledActionsRequest;
|
|
104
105
|
const RunSecurityServiceEnabled = models.RunSecurityServiceEnabled;
|
|
105
106
|
const DeleteScheduledActionRequest = models.DeleteScheduledActionRequest;
|
|
@@ -191,6 +191,12 @@ Note: This field is default to empty
|
|
|
191
191
|
*/
|
|
192
192
|
this.HpcClusterId = null;
|
|
193
193
|
|
|
194
|
+
/**
|
|
195
|
+
* IPv6 public network bandwidth configuration. If the IPv6 address is available in the new instance, public network bandwidth can be allocated to the IPv6 address. This parameter is invalid if `Ipv6AddressCount` of the scaling group associated with the launch configuration is 0.
|
|
196
|
+
* @type {IPv6InternetAccessible || null}
|
|
197
|
+
*/
|
|
198
|
+
this.IPv6InternetAccessible = null;
|
|
199
|
+
|
|
194
200
|
}
|
|
195
201
|
|
|
196
202
|
/**
|
|
@@ -263,6 +269,12 @@ Note: This field is default to empty
|
|
|
263
269
|
this.CamRoleName = 'CamRoleName' in params ? params.CamRoleName : null;
|
|
264
270
|
this.HpcClusterId = 'HpcClusterId' in params ? params.HpcClusterId : null;
|
|
265
271
|
|
|
272
|
+
if (params.IPv6InternetAccessible) {
|
|
273
|
+
let obj = new IPv6InternetAccessible();
|
|
274
|
+
obj.deserialize(params.IPv6InternetAccessible)
|
|
275
|
+
this.IPv6InternetAccessible = obj;
|
|
276
|
+
}
|
|
277
|
+
|
|
266
278
|
}
|
|
267
279
|
}
|
|
268
280
|
|
|
@@ -938,6 +950,12 @@ Note: This field is default to empty
|
|
|
938
950
|
*/
|
|
939
951
|
this.HpcClusterId = null;
|
|
940
952
|
|
|
953
|
+
/**
|
|
954
|
+
* IPv6 public network bandwidth configuration.
|
|
955
|
+
* @type {IPv6InternetAccessible || null}
|
|
956
|
+
*/
|
|
957
|
+
this.IPv6InternetAccessible = null;
|
|
958
|
+
|
|
941
959
|
}
|
|
942
960
|
|
|
943
961
|
/**
|
|
@@ -1049,6 +1067,12 @@ Note: This field is default to empty
|
|
|
1049
1067
|
this.DiskTypePolicy = 'DiskTypePolicy' in params ? params.DiskTypePolicy : null;
|
|
1050
1068
|
this.HpcClusterId = 'HpcClusterId' in params ? params.HpcClusterId : null;
|
|
1051
1069
|
|
|
1070
|
+
if (params.IPv6InternetAccessible) {
|
|
1071
|
+
let obj = new IPv6InternetAccessible();
|
|
1072
|
+
obj.deserialize(params.IPv6InternetAccessible)
|
|
1073
|
+
this.IPv6InternetAccessible = obj;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1052
1076
|
}
|
|
1053
1077
|
}
|
|
1054
1078
|
|
|
@@ -2645,6 +2669,12 @@ Note: This field is default to empty
|
|
|
2645
2669
|
*/
|
|
2646
2670
|
this.HpcClusterId = null;
|
|
2647
2671
|
|
|
2672
|
+
/**
|
|
2673
|
+
* IPv6 public network bandwidth configuration. If the IPv6 address is available in the new instance, public network bandwidth can be allocated to the IPv6 address. This parameter is invalid if `Ipv6AddressCount` of the scaling group associated with the launch configuration is 0.
|
|
2674
|
+
* @type {IPv6InternetAccessible || null}
|
|
2675
|
+
*/
|
|
2676
|
+
this.IPv6InternetAccessible = null;
|
|
2677
|
+
|
|
2648
2678
|
}
|
|
2649
2679
|
|
|
2650
2680
|
/**
|
|
@@ -2742,6 +2772,12 @@ Note: This field is default to empty
|
|
|
2742
2772
|
this.DiskTypePolicy = 'DiskTypePolicy' in params ? params.DiskTypePolicy : null;
|
|
2743
2773
|
this.HpcClusterId = 'HpcClusterId' in params ? params.HpcClusterId : null;
|
|
2744
2774
|
|
|
2775
|
+
if (params.IPv6InternetAccessible) {
|
|
2776
|
+
let obj = new IPv6InternetAccessible();
|
|
2777
|
+
obj.deserialize(params.IPv6InternetAccessible)
|
|
2778
|
+
this.IPv6InternetAccessible = obj;
|
|
2779
|
+
}
|
|
2780
|
+
|
|
2745
2781
|
}
|
|
2746
2782
|
}
|
|
2747
2783
|
|
|
@@ -4456,6 +4492,12 @@ If a model in InstanceTypes does not exist or has been discontinued, a verificat
|
|
|
4456
4492
|
*/
|
|
4457
4493
|
this.DiskTypePolicy = null;
|
|
4458
4494
|
|
|
4495
|
+
/**
|
|
4496
|
+
* IPv6 public network bandwidth configuration. If the IPv6 address is available in the new instance, public network bandwidth can be allocated to the IPv6 address. This parameter is invalid if `Ipv6AddressCount` of the scaling group associated with the launch configuration is 0.
|
|
4497
|
+
* @type {IPv6InternetAccessible || null}
|
|
4498
|
+
*/
|
|
4499
|
+
this.IPv6InternetAccessible = null;
|
|
4500
|
+
|
|
4459
4501
|
}
|
|
4460
4502
|
|
|
4461
4503
|
/**
|
|
@@ -4543,6 +4585,12 @@ If a model in InstanceTypes does not exist or has been discontinued, a verificat
|
|
|
4543
4585
|
}
|
|
4544
4586
|
this.DiskTypePolicy = 'DiskTypePolicy' in params ? params.DiskTypePolicy : null;
|
|
4545
4587
|
|
|
4588
|
+
if (params.IPv6InternetAccessible) {
|
|
4589
|
+
let obj = new IPv6InternetAccessible();
|
|
4590
|
+
obj.deserialize(params.IPv6InternetAccessible)
|
|
4591
|
+
this.IPv6InternetAccessible = obj;
|
|
4592
|
+
}
|
|
4593
|
+
|
|
4546
4594
|
}
|
|
4547
4595
|
}
|
|
4548
4596
|
|
|
@@ -5034,7 +5082,7 @@ class DescribeAutoScalingInstancesResponse extends AbstractModel {
|
|
|
5034
5082
|
}
|
|
5035
5083
|
|
|
5036
5084
|
/**
|
|
5037
|
-
* This describes the conditions of
|
|
5085
|
+
* This describes the conditions and configurations of the enhanced services of the instance, such as cloud security, cloud monitor, TencentCloud Automation Tools, and other instance agents.
|
|
5038
5086
|
* @class
|
|
5039
5087
|
*/
|
|
5040
5088
|
class EnhancedService extends AbstractModel {
|
|
@@ -5060,7 +5108,7 @@ class EnhancedService extends AbstractModel {
|
|
|
5060
5108
|
this.AutomationService = null;
|
|
5061
5109
|
|
|
5062
5110
|
/**
|
|
5063
|
-
*
|
|
5111
|
+
* Enable TAT service. If this parameter is not specified, the default logic is the same as that of the CVM instance. Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
5064
5112
|
* @type {RunAutomationServiceEnabled || null}
|
|
5065
5113
|
*/
|
|
5066
5114
|
this.AutomationToolsService = null;
|
|
@@ -5162,6 +5210,53 @@ class DeleteLaunchConfigurationResponse extends AbstractModel {
|
|
|
5162
5210
|
}
|
|
5163
5211
|
}
|
|
5164
5212
|
|
|
5213
|
+
/**
|
|
5214
|
+
* This describes the IPv6 address public network accessibility of the instance created by a launch configuration and declares the public network usage billing method of the IPv6 address and the maximum bandwidth.
|
|
5215
|
+
* @class
|
|
5216
|
+
*/
|
|
5217
|
+
class IPv6InternetAccessible extends AbstractModel {
|
|
5218
|
+
constructor(){
|
|
5219
|
+
super();
|
|
5220
|
+
|
|
5221
|
+
/**
|
|
5222
|
+
* Network billing mode. Valid values: TRAFFIC_POSTPAID_BY_HOUR, BANDWIDTH_PACKAGE. Default value: TRAFFIC_POSTPAID_BY_HOUR. For the current account type, see [Account Type Description](https://intl.cloud.tencent.com/document/product/1199/49090?from_cn_redirect=1#judge).
|
|
5223
|
+
<br><li> IPv6 supports `TRAFFIC_POSTPAID_BY_HOUR` under a bill-by-IP account.
|
|
5224
|
+
<br><li> IPv6 supports `BANDWIDTH_PACKAGE` under a bill-by-CVM account.
|
|
5225
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
5226
|
+
* @type {string || null}
|
|
5227
|
+
*/
|
|
5228
|
+
this.InternetChargeType = null;
|
|
5229
|
+
|
|
5230
|
+
/**
|
|
5231
|
+
* Maximum outbound bandwidth of the public network, in Mbps. <br>The default value is 0, and no public network bandwidth is allocated to IPv6. The maximum bandwidth varies with the model, availability zone and billing mode. For more information, see [Public Network Bandwidth Cap](https://intl.cloud.tencent.com/document/product/213/12523?from_cn_redirect=1).
|
|
5232
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
5233
|
+
* @type {number || null}
|
|
5234
|
+
*/
|
|
5235
|
+
this.InternetMaxBandwidthOut = null;
|
|
5236
|
+
|
|
5237
|
+
/**
|
|
5238
|
+
* Bandwidth package ID. You can obtain the ID from the `BandwidthPackageId` field in the response of the [DescribeBandwidthPackages](https://intl.cloud.tencent.com/document/api/215/19209?from_cn_redirect=1) API.
|
|
5239
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
5240
|
+
* @type {string || null}
|
|
5241
|
+
*/
|
|
5242
|
+
this.BandwidthPackageId = null;
|
|
5243
|
+
|
|
5244
|
+
}
|
|
5245
|
+
|
|
5246
|
+
/**
|
|
5247
|
+
* @private
|
|
5248
|
+
*/
|
|
5249
|
+
deserialize(params) {
|
|
5250
|
+
if (!params) {
|
|
5251
|
+
return;
|
|
5252
|
+
}
|
|
5253
|
+
this.InternetChargeType = 'InternetChargeType' in params ? params.InternetChargeType : null;
|
|
5254
|
+
this.InternetMaxBandwidthOut = 'InternetMaxBandwidthOut' in params ? params.InternetMaxBandwidthOut : null;
|
|
5255
|
+
this.BandwidthPackageId = 'BandwidthPackageId' in params ? params.BandwidthPackageId : null;
|
|
5256
|
+
|
|
5257
|
+
}
|
|
5258
|
+
}
|
|
5259
|
+
|
|
5165
5260
|
/**
|
|
5166
5261
|
* DescribeScheduledActions request structure.
|
|
5167
5262
|
* @class
|
|
@@ -8048,6 +8143,7 @@ module.exports = {
|
|
|
8048
8143
|
EnhancedService: EnhancedService,
|
|
8049
8144
|
RunAutomationServiceEnabled: RunAutomationServiceEnabled,
|
|
8050
8145
|
DeleteLaunchConfigurationResponse: DeleteLaunchConfigurationResponse,
|
|
8146
|
+
IPv6InternetAccessible: IPv6InternetAccessible,
|
|
8051
8147
|
DescribeScheduledActionsRequest: DescribeScheduledActionsRequest,
|
|
8052
8148
|
RunSecurityServiceEnabled: RunSecurityServiceEnabled,
|
|
8053
8149
|
DeleteScheduledActionRequest: DeleteScheduledActionRequest,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.610";
|
|
2
2
|
module.exports = sdkVersion
|