tencentcloud-sdk-nodejs-intl-en 3.0.1356 → 3.0.1358
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/models.js +67 -14
- package/tencentcloud/captcha/v20190722/models.js +2 -2
- package/tencentcloud/cbs/v20170312/cbs_client.js +141 -84
- package/tencentcloud/cbs/v20170312/models.js +1045 -590
- package/tencentcloud/ccc/v20200210/ccc_client.js +25 -15
- package/tencentcloud/ccc/v20200210/models.js +743 -195
- package/tencentcloud/ckafka/v20190819/ckafka_client.js +2 -2
- package/tencentcloud/ckafka/v20190819/models.js +280 -243
- package/tencentcloud/clb/v20180317/clb_client.js +5 -4
- package/tencentcloud/clb/v20180317/models.js +134 -51
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/faceid_client.js +1 -1
- package/tencentcloud/hunyuan/v20230901/models.js +1 -1
- package/tencentcloud/lke/v20231130/lke_client.js +64 -103
- package/tencentcloud/lke/v20231130/models.js +1666 -951
- package/tencentcloud/mps/v20190612/models.js +1171 -698
- package/tencentcloud/mps/v20190612/mps_client.js +84 -4
- package/tencentcloud/mqtt/v20240516/models.js +3415 -1591
- package/tencentcloud/mqtt/v20240516/mqtt_client.js +222 -65
- package/tencentcloud/postgres/v20170312/models.js +44 -61
- package/tencentcloud/postgres/v20170312/postgres_client.js +1 -1
- package/tencentcloud/tdmq/v20200217/models.js +1009 -323
- package/tencentcloud/tdmq/v20200217/tdmq_client.js +133 -59
- package/tencentcloud/trtc/v20190722/models.js +6 -6
- package/tencentcloud/trtc/v20190722/trtc_client.js +5 -5
- package/tencentcloud/vod/v20180717/models.js +6105 -1961
- package/tencentcloud/vod/v20180717/vod_client.js +119 -61
package/package.json
CHANGED
|
@@ -66,7 +66,7 @@ class ModifyLaunchConfigurationAttributesRequest extends AbstractModel {
|
|
|
66
66
|
|
|
67
67
|
/**
|
|
68
68
|
* Types of cvm instances. different instance models specify different resource specifications. supports up to 10 instance models.
|
|
69
|
-
The launch configuration uses `InstanceType` to indicate one single instance type and `InstanceTypes` to indicate multiple instance types. specifying the `InstanceTypes` field will invalidate the original `InstanceType`. specific values can be obtained by calling the api [
|
|
69
|
+
The launch configuration uses `InstanceType` to indicate one single instance type and `InstanceTypes` to indicate multiple instance types. specifying the `InstanceTypes` field will invalidate the original `InstanceType`. specific values can be obtained by calling the api [DescribeZoneInstanceConfigInfos](https://www.tencentcloud.com/document/product/213/33254) to obtain the latest specification table or refer to [instance specifications](https://intl.cloud.tencent.com/document/product/213/11518?from_cn_redirect=1).
|
|
70
70
|
* @type {Array.<string> || null}
|
|
71
71
|
*/
|
|
72
72
|
this.InstanceTypes = null;
|
|
@@ -3083,7 +3083,7 @@ Note: the instance's project ID within the scaling group takes the project ID of
|
|
|
3083
3083
|
this.ProjectId = null;
|
|
3084
3084
|
|
|
3085
3085
|
/**
|
|
3086
|
-
* Instance model. Different instance models specify different resource specifications. The specific value can be obtained by calling the [
|
|
3086
|
+
* Instance model. Different instance models specify different resource specifications. The specific value can be obtained by calling the [DescribeZoneInstanceConfigInfos](https://www.tencentcloud.com/document/product/213/33254) API to get the latest specification table or referring to the descriptions in [Instance Types](https://intl.cloud.tencent.com/document/product/213/11518?from_cn_redirect=1).
|
|
3087
3087
|
`InstanceType` and `InstanceTypes` are mutually exclusive, and one and only one of them must be entered.
|
|
3088
3088
|
* @type {string || null}
|
|
3089
3089
|
*/
|
|
@@ -3148,7 +3148,7 @@ Note: the instance's project ID within the scaling group takes the project ID of
|
|
|
3148
3148
|
|
|
3149
3149
|
/**
|
|
3150
3150
|
* Instance model list. different instance models specify different resource specifications. supports up to 10 instance models.
|
|
3151
|
-
The `InstanceType` and `InstanceTypes` parameters are mutually exclusive. one and only one must be filled in. specific values can be obtained by calling the api [
|
|
3151
|
+
The `InstanceType` and `InstanceTypes` parameters are mutually exclusive. one and only one must be filled in. specific values can be obtained by calling the api [Instance Types](https://intl.cloud.tencent.com/document/product/213/11518?from_cn_redirect=1) to obtain the latest specification table or refer to [instance specifications](https://intl.cloud.tencent.com/document/product/213/11518?from_cn_redirect=1).
|
|
3152
3152
|
* @type {Array.<string> || null}
|
|
3153
3153
|
*/
|
|
3154
3154
|
this.InstanceTypes = null;
|
|
@@ -3183,14 +3183,19 @@ If a model in InstanceTypes does not exist or has been abolished, a verification
|
|
|
3183
3183
|
this.Tags = null;
|
|
3184
3184
|
|
|
3185
3185
|
/**
|
|
3186
|
-
*
|
|
3186
|
+
* Specifies the related settings for the cloud virtual machine HostName (HostName).
|
|
3187
|
+
windows instances do not support setting hostname.
|
|
3188
|
+
When adding new attributes, the cloud virtual machine hostname must be transmitted. other fields not transmitted will be set as default.
|
|
3189
|
+
Validates whether the host name (with suffix added if it exists) exceeds the maximum of 46 characters.
|
|
3187
3190
|
* @type {HostNameSettings || null}
|
|
3188
3191
|
*/
|
|
3189
3192
|
this.HostNameSettings = null;
|
|
3190
3193
|
|
|
3191
3194
|
/**
|
|
3192
|
-
*
|
|
3193
|
-
If this field
|
|
3195
|
+
* Specifies the related settings of the cloud server instance name (InstanceName).
|
|
3196
|
+
If the user sets this field in the launch configuration, the instance name of the instance created by the scaling group will be set according to this field and passed to CVM. if the user does not set this field in the launch configuration, the instance name of the instance created by the scaling group will be set as "as-{{ scaling group AutoScalingGroupName }}" and passed to CVM.
|
|
3197
|
+
Specifies the instance name of the cloud virtual machine when adding this attribute. other fields not transmitted will be set as default.
|
|
3198
|
+
Verifies whether the instance name (add the suffix if it exists) exceeds the maximum of 108 characters.
|
|
3194
3199
|
* @type {InstanceNameSettings || null}
|
|
3195
3200
|
*/
|
|
3196
3201
|
this.InstanceNameSettings = null;
|
|
@@ -3210,7 +3215,7 @@ If this field is configured in a launch configuration, the `InstanceName` of a C
|
|
|
3210
3215
|
this.DiskTypePolicy = null;
|
|
3211
3216
|
|
|
3212
3217
|
/**
|
|
3213
|
-
* High-Performance computing cluster ID.
|
|
3218
|
+
* High-Performance computing cluster ID. This parameter is not currently supported for the international site.
|
|
3214
3219
|
Note: this field is empty by default.
|
|
3215
3220
|
* @type {string || null}
|
|
3216
3221
|
*/
|
|
@@ -3529,7 +3534,7 @@ class AutoScalingGroup extends AbstractModel {
|
|
|
3529
3534
|
this.ServiceSettings = null;
|
|
3530
3535
|
|
|
3531
3536
|
/**
|
|
3532
|
-
* The number of IPv6 addresses that an instance has. valid values: 0 and 1. default value: 0, which means the instance does not allocate an IPv6 address. use a private network that supports ip and enable IPv6 CIDR in the subnet. for usage restrictions, see [IPv6 usage limits](https://
|
|
3537
|
+
* The number of IPv6 addresses that an instance has. valid values: 0 and 1. default value: 0, which means the instance does not allocate an IPv6 address. use a private network that supports ip and enable IPv6 CIDR in the subnet. for usage restrictions, see [IPv6 usage limits](https://www.tencentcloud.com/zh/document/product/215/78469).
|
|
3533
3538
|
* @type {number || null}
|
|
3534
3539
|
*/
|
|
3535
3540
|
this.Ipv6AddressCount = null;
|
|
@@ -3581,11 +3586,28 @@ A valid value will be returned only when `InstanceAllocationPolicy` is set to `S
|
|
|
3581
3586
|
this.CapacityRebalance = null;
|
|
3582
3587
|
|
|
3583
3588
|
/**
|
|
3584
|
-
* Instance name
|
|
3589
|
+
* Instance name index settings.
|
|
3585
3590
|
* @type {InstanceNameIndexSettings || null}
|
|
3586
3591
|
*/
|
|
3587
3592
|
this.InstanceNameIndexSettings = null;
|
|
3588
3593
|
|
|
3594
|
+
/**
|
|
3595
|
+
* Instance host name index settings.
|
|
3596
|
+
* @type {HostNameIndexSettings || null}
|
|
3597
|
+
*/
|
|
3598
|
+
this.HostNameIndexSettings = null;
|
|
3599
|
+
|
|
3600
|
+
/**
|
|
3601
|
+
* This feature allows the system to perform multiple scale out operations concurrently in order to reach the desired capacity. However, the following constraints apply:
|
|
3602
|
+
|
|
3603
|
+
- Compatibility: This option cannot be set if the InstanceAllocationPolicyis SPOT_MIXED or the ScalingMode is WAKE_UP_STOPPED_SCALING.
|
|
3604
|
+
- Concurrency Limit: The system currently supports a maximum of two concurrent scale-out operations.
|
|
3605
|
+
- Operation Restrictions: Other scaling actions such as scaling to a specific instance count or performing scale in, cannot be executed concurrently.
|
|
3606
|
+
Default: FALSE(indicating that concurrent scaling is disabled).
|
|
3607
|
+
* @type {boolean || null}
|
|
3608
|
+
*/
|
|
3609
|
+
this.ConcurrentScaleOutForDesiredCapacity = null;
|
|
3610
|
+
|
|
3589
3611
|
}
|
|
3590
3612
|
|
|
3591
3613
|
/**
|
|
@@ -3659,6 +3681,13 @@ A valid value will be returned only when `InstanceAllocationPolicy` is set to `S
|
|
|
3659
3681
|
this.InstanceNameIndexSettings = obj;
|
|
3660
3682
|
}
|
|
3661
3683
|
|
|
3684
|
+
if (params.HostNameIndexSettings) {
|
|
3685
|
+
let obj = new HostNameIndexSettings();
|
|
3686
|
+
obj.deserialize(params.HostNameIndexSettings)
|
|
3687
|
+
this.HostNameIndexSettings = obj;
|
|
3688
|
+
}
|
|
3689
|
+
this.ConcurrentScaleOutForDesiredCapacity = 'ConcurrentScaleOutForDesiredCapacity' in params ? params.ConcurrentScaleOutForDesiredCapacity : null;
|
|
3690
|
+
|
|
3662
3691
|
}
|
|
3663
3692
|
}
|
|
3664
3693
|
|
|
@@ -5059,7 +5088,7 @@ If there is no AZ or subnet in Zones/SubnetIds, a verification error will be rep
|
|
|
5059
5088
|
this.ServiceSettings = null;
|
|
5060
5089
|
|
|
5061
5090
|
/**
|
|
5062
|
-
* The number of IPv6 addresses that an instance has. valid values: 0 and 1. default value: 0, which means the instance does not allocate an IPv6 address. use a private network that supports IPv6 and enable IPv6 CIDR in the subnet. for other usage restrictions, see [IPv6 usage limits](https://
|
|
5091
|
+
* The number of IPv6 addresses that an instance has. valid values: 0 and 1. default value: 0, which means the instance does not allocate an IPv6 address. use a private network that supports IPv6 and enable IPv6 CIDR in the subnet. for other usage restrictions, see [IPv6 usage limits](https://www.tencentcloud.com/document/product/215/78469).
|
|
5063
5092
|
* @type {number || null}
|
|
5064
5093
|
*/
|
|
5065
5094
|
this.Ipv6AddressCount = null;
|
|
@@ -5118,11 +5147,28 @@ Default value: FALSE.
|
|
|
5118
5147
|
this.CapacityRebalance = null;
|
|
5119
5148
|
|
|
5120
5149
|
/**
|
|
5121
|
-
* Instance name
|
|
5150
|
+
* Instance name index settings. If not specified, it is disabled by default. When enabled, an incremental numeric index will be appended to the names of instances automatically created within the scaling group.
|
|
5122
5151
|
* @type {InstanceNameIndexSettings || null}
|
|
5123
5152
|
*/
|
|
5124
5153
|
this.InstanceNameIndexSettings = null;
|
|
5125
5154
|
|
|
5155
|
+
/**
|
|
5156
|
+
* Specifies the related settings for the instance hostname index number. If not specified, it is disabled by default. When enabled, it appends incremental numeric index to the hostname of instances auto-created within the scaling group.
|
|
5157
|
+
* @type {HostNameIndexSettings || null}
|
|
5158
|
+
*/
|
|
5159
|
+
this.HostNameIndexSettings = null;
|
|
5160
|
+
|
|
5161
|
+
/**
|
|
5162
|
+
* This feature allows the system to perform multiple scale out operations concurrently in order to reach the desired capacity. However, the following constraints apply:
|
|
5163
|
+
|
|
5164
|
+
- Compatibility: This option cannot be set if the InstanceAllocationPolicyis SPOT_MIXED or the ScalingMode is WAKE_UP_STOPPED_SCALING.
|
|
5165
|
+
- Concurrency Limit: The system currently supports a maximum of two concurrent scale-out operations.
|
|
5166
|
+
- Operation Restrictions: Other scaling actions such as scaling to a specific instance count or performing scale in, cannot be executed concurrently.
|
|
5167
|
+
Default: FALSE(indicating that concurrent scaling is disabled).
|
|
5168
|
+
* @type {boolean || null}
|
|
5169
|
+
*/
|
|
5170
|
+
this.ConcurrentScaleOutForDesiredCapacity = null;
|
|
5171
|
+
|
|
5126
5172
|
}
|
|
5127
5173
|
|
|
5128
5174
|
/**
|
|
@@ -5189,6 +5235,13 @@ Default value: FALSE.
|
|
|
5189
5235
|
this.InstanceNameIndexSettings = obj;
|
|
5190
5236
|
}
|
|
5191
5237
|
|
|
5238
|
+
if (params.HostNameIndexSettings) {
|
|
5239
|
+
let obj = new HostNameIndexSettings();
|
|
5240
|
+
obj.deserialize(params.HostNameIndexSettings)
|
|
5241
|
+
this.HostNameIndexSettings = obj;
|
|
5242
|
+
}
|
|
5243
|
+
this.ConcurrentScaleOutForDesiredCapacity = 'ConcurrentScaleOutForDesiredCapacity' in params ? params.ConcurrentScaleOutForDesiredCapacity : null;
|
|
5244
|
+
|
|
5192
5245
|
}
|
|
5193
5246
|
}
|
|
5194
5247
|
|
|
@@ -5620,7 +5673,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5620
5673
|
this.Encrypt = null;
|
|
5621
5674
|
|
|
5622
5675
|
/**
|
|
5623
|
-
* Cloud disk performance (MB/s). This parameter is used to purchase extra performance for the cloud disk. For details on the feature and limits, see [Enhanced SSD Performance](https://intl.cloud.tencent.com/document/product/362/
|
|
5676
|
+
* Cloud disk performance (MB/s). This parameter is used to purchase extra performance for the cloud disk. For details on the feature and limits, see [Enhanced SSD Performance](https://intl.cloud.tencent.com/zh/document/product/362/39611).
|
|
5624
5677
|
This feature is only available to enhanced SSD (`CLOUD_HSSD`) and tremendous SSD (`CLOUD_TSSD`) disks with a capacity greater than 460 GB.
|
|
5625
5678
|
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
5626
5679
|
* @type {number || null}
|
|
@@ -9656,7 +9709,7 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
9656
9709
|
this.BandwidthPackageId = null;
|
|
9657
9710
|
|
|
9658
9711
|
/**
|
|
9659
|
-
* Line type. for details on various types of lines and supported regions, refer to [EIP IP address type](https://www.tencentcloud.com/document/product/
|
|
9712
|
+
* Line type. for details on various types of lines and supported regions, refer to [EIP IP address type](https://www.tencentcloud.com/zh/document/product/213/5733). default value: BGP.
|
|
9660
9713
|
|
|
9661
9714
|
<Li>BGP: general bgp line.</li>.
|
|
9662
9715
|
For a user who has enabled the static single-line IP allowlist, valid values include:.
|
|
@@ -9675,7 +9728,7 @@ Note: The static single-line IP is only supported in some regions.
|
|
|
9675
9728
|
|
|
9676
9729
|
<Li>WanIP: specifies the public ip address.</li>.
|
|
9677
9730
|
<Li>HighQualityEIP: highqualityip. only Singapore and hong kong (china) support highqualityip.</li>.
|
|
9678
|
-
<Li>AntiDDoSEIP: anti-ddos eip. only partially supported regions can use anti-ddos eip. details visible in [elastic ip product overview](https://www.tencentcloud.com/document/product/
|
|
9731
|
+
<Li>AntiDDoSEIP: anti-ddos eip. only partially supported regions can use anti-ddos eip. details visible in [elastic ip product overview](https://www.tencentcloud.com/zh/document/product/213/5733).</li>.
|
|
9679
9732
|
If needed to assign an elastic IPv4 address to a resource, specify the elastic IPv4 address type. if only use WanIP, do not set this field.
|
|
9680
9733
|
|
|
9681
9734
|
High quality IP the anti-ddos feature is only in beta test in some regions. if needed, submit a ticket for consultation (https://console.cloud.tencent.com/workorder/category).
|
|
@@ -129,13 +129,13 @@ class DescribeCaptchaResultRequest extends AbstractModel {
|
|
|
129
129
|
this.CaptchaType = null;
|
|
130
130
|
|
|
131
131
|
/**
|
|
132
|
-
* The user verification ticket returned by the frontend callback function
|
|
132
|
+
* The user verification ticket returned by the frontend callback function.
|
|
133
133
|
* @type {string || null}
|
|
134
134
|
*/
|
|
135
135
|
this.Ticket = null;
|
|
136
136
|
|
|
137
137
|
/**
|
|
138
|
-
* The user public IP obtained from the customer backend server
|
|
138
|
+
* The user public IP obtained from the customer backend server.
|
|
139
139
|
* @type {string || null}
|
|
140
140
|
*/
|
|
141
141
|
this.UserIp = null;
|