tencentcloud-sdk-nodejs-as 4.1.129 → 4.1.136
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
|
@@ -230,11 +230,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
230
230
|
"DetailedStatusMessageSet": [ // 活动内部错误集合(非空不代表活动失败)
|
|
231
231
|
{
|
|
232
232
|
"Code": "InvalidInstanceType",
|
|
233
|
-
"Zone": "ap-guangzhou-
|
|
233
|
+
"Zone": "ap-guangzhou-6",
|
|
234
234
|
"InstanceId": "",
|
|
235
235
|
"InstanceChargeType": "POSTPAID_BY_HOUR",
|
|
236
236
|
"SubnetId": "subnet-4t5mgeuu",
|
|
237
|
-
"Message": "The specified instance type `S5.LARGE8` is invalid in `subnet-4t5mgeuu`, `ap-guangzhou-
|
|
237
|
+
"Message": "The specified instance type `S5.LARGE8` is invalid in `subnet-4t5mgeuu`, `ap-guangzhou-6`.",
|
|
238
238
|
"InstanceType": "S5.LARGE8"
|
|
239
239
|
}
|
|
240
240
|
]
|
|
@@ -322,11 +322,11 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
322
322
|
"DetailedStatusMessageSet": [ // 活动内部错误集合(非空不代表活动失败)
|
|
323
323
|
{
|
|
324
324
|
"Code": "InvalidInstanceType",
|
|
325
|
-
"Zone": "ap-guangzhou-
|
|
325
|
+
"Zone": "ap-guangzhou-6",
|
|
326
326
|
"InstanceId": "",
|
|
327
327
|
"InstanceChargeType": "POSTPAID_BY_HOUR",
|
|
328
328
|
"SubnetId": "subnet-4t5mgeuu",
|
|
329
|
-
"Message": "The specified instance type `S5.LARGE8` is invalid in `subnet-4t5mgeuu`, `ap-guangzhou-
|
|
329
|
+
"Message": "The specified instance type `S5.LARGE8` is invalid in `subnet-4t5mgeuu`, `ap-guangzhou-6`.",
|
|
330
330
|
"InstanceType": "S5.LARGE8"
|
|
331
331
|
}
|
|
332
332
|
]
|
|
@@ -862,6 +862,12 @@ export interface InstanceNameSettings {
|
|
|
862
862
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
863
863
|
*/
|
|
864
864
|
InstanceNameSuffix?: string;
|
|
865
|
+
/**
|
|
866
|
+
* 云服务器实例名分隔符。 默认的分隔符是点号(.),可选短横线(-)。仅有点号(.)和短横线(-)能作为实例名的分隔符。如果不设置,则默认采用点号(.)分隔符。 通过分割符连接多段。
|
|
867
|
+
|
|
868
|
+
假设原实例名为“product-as-instance”,分隔符InstanceNameDelimiter为“-”,设置实例名后缀"suffix",那么最终实例名为“product-as-instance-suffix”。
|
|
869
|
+
*/
|
|
870
|
+
InstanceNameDelimiter?: string;
|
|
865
871
|
}
|
|
866
872
|
/**
|
|
867
873
|
* 伸缩活动状态详细描述。
|
|
@@ -1762,6 +1768,14 @@ export interface HostNameSettings {
|
|
|
1762
1768
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1763
1769
|
*/
|
|
1764
1770
|
HostNameSuffix?: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* 云服务器的主机名分隔符。
|
|
1773
|
+
默认的分隔符是点号(.),可选短横线(-)。仅有点号(.)和短横线(-)能作为主机名的分隔符。如果不设置,则默认采用点号(.)分隔符。
|
|
1774
|
+
通过分割符连接多段。
|
|
1775
|
+
|
|
1776
|
+
假设原主机名为“product-as-host”,分隔符HostNameDelimiter为“-”,设置主机名后缀"suffix",那么最终主机名为“product-as-host-suffix”。
|
|
1777
|
+
*/
|
|
1778
|
+
HostNameDelimiter?: string;
|
|
1765
1779
|
}
|
|
1766
1780
|
/**
|
|
1767
1781
|
* ModifyLoadBalancers返回参数结构体
|