tencentcloud-sdk-nodejs-intl-en 3.0.1355 → 3.0.1356
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/common/sdk_version.js +1 -1
- package/tencentcloud/dc/v20180410/dc_client.js +1 -2
- package/tencentcloud/dc/v20180410/models.js +89 -22
- package/tencentcloud/gwlb/v20240906/models.js +89 -0
- package/tencentcloud/hunyuan/v20230901/hunyuan_client.js +29 -3
- package/tencentcloud/hunyuan/v20230901/models.js +241 -66
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +23 -9
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +376 -240
- package/tencentcloud/sms/v20210111/models.js +21 -5
- package/tencentcloud/sms/v20210111/sms_client.js +2 -4
- package/tencentcloud/ssl/v20191205/models.js +464 -0
- package/tencentcloud/ssl/v20191205/ssl_client.js +26 -0
- package/tencentcloud/teo/v20220901/models.js +2 -2
- package/tencentcloud/teo/v20220901/teo_client.js +1 -1
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1356";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -89,7 +89,6 @@ class DcClient extends AbstractClient {
|
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
91
|
* This API is used to query connection access points.
|
|
92
|
-
|
|
93
92
|
* @param {DescribeAccessPointsRequest} req
|
|
94
93
|
* @param {function(string, DescribeAccessPointsResponse):void} cb
|
|
95
94
|
* @public
|
|
@@ -167,7 +166,7 @@ Only connected connections can be deleted.
|
|
|
167
166
|
}
|
|
168
167
|
|
|
169
168
|
/**
|
|
170
|
-
* This API is used to apply for an internet tunnel
|
|
169
|
+
* This API is used to apply for an internet tunnel's CIDR block.
|
|
171
170
|
* @param {ApplyInternetAddressRequest} req
|
|
172
171
|
* @param {function(string, ApplyInternetAddressResponse):void} cb
|
|
173
172
|
* @public
|
|
@@ -178,7 +178,7 @@ class CreateDirectConnectResponse extends AbstractModel {
|
|
|
178
178
|
this.DirectConnectIdSet = null;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
* The unique request ID,
|
|
181
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
182
182
|
* @type {string || null}
|
|
183
183
|
*/
|
|
184
184
|
this.RequestId = null;
|
|
@@ -659,7 +659,7 @@ class AcceptDirectConnectTunnelResponse extends AbstractModel {
|
|
|
659
659
|
super();
|
|
660
660
|
|
|
661
661
|
/**
|
|
662
|
-
* The unique request ID,
|
|
662
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
663
663
|
* @type {string || null}
|
|
664
664
|
*/
|
|
665
665
|
this.RequestId = null;
|
|
@@ -748,7 +748,7 @@ class ReleaseInternetAddressRequest extends AbstractModel {
|
|
|
748
748
|
super();
|
|
749
749
|
|
|
750
750
|
/**
|
|
751
|
-
* ID of the internet tunnel
|
|
751
|
+
* ID of the internet tunnel's public IP address
|
|
752
752
|
* @type {string || null}
|
|
753
753
|
*/
|
|
754
754
|
this.InstanceId = null;
|
|
@@ -776,7 +776,7 @@ class ModifyDirectConnectTunnelAttributeResponse extends AbstractModel {
|
|
|
776
776
|
super();
|
|
777
777
|
|
|
778
778
|
/**
|
|
779
|
-
* The unique request ID,
|
|
779
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
780
780
|
* @type {string || null}
|
|
781
781
|
*/
|
|
782
782
|
this.RequestId = null;
|
|
@@ -832,14 +832,14 @@ class ApplyInternetAddressResponse extends AbstractModel {
|
|
|
832
832
|
super();
|
|
833
833
|
|
|
834
834
|
/**
|
|
835
|
-
* ID of the internet tunnel
|
|
835
|
+
* ID of the internet tunnel's public IP address
|
|
836
836
|
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
837
837
|
* @type {string || null}
|
|
838
838
|
*/
|
|
839
839
|
this.InstanceId = null;
|
|
840
840
|
|
|
841
841
|
/**
|
|
842
|
-
* The unique request ID,
|
|
842
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
843
843
|
* @type {string || null}
|
|
844
844
|
*/
|
|
845
845
|
this.RequestId = null;
|
|
@@ -1061,6 +1061,13 @@ Default value: Non-zero.
|
|
|
1061
1061
|
*/
|
|
1062
1062
|
this.NqaInfo = null;
|
|
1063
1063
|
|
|
1064
|
+
/**
|
|
1065
|
+
* Tag key-value pair
|
|
1066
|
+
|
|
1067
|
+
* @type {Array.<Tag> || null}
|
|
1068
|
+
*/
|
|
1069
|
+
this.Tags = null;
|
|
1070
|
+
|
|
1064
1071
|
}
|
|
1065
1072
|
|
|
1066
1073
|
/**
|
|
@@ -1114,6 +1121,15 @@ Default value: Non-zero.
|
|
|
1114
1121
|
this.NqaInfo = obj;
|
|
1115
1122
|
}
|
|
1116
1123
|
|
|
1124
|
+
if (params.Tags) {
|
|
1125
|
+
this.Tags = new Array();
|
|
1126
|
+
for (let z in params.Tags) {
|
|
1127
|
+
let obj = new Tag();
|
|
1128
|
+
obj.deserialize(params.Tags[z]);
|
|
1129
|
+
this.Tags.push(obj);
|
|
1130
|
+
}
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1117
1133
|
}
|
|
1118
1134
|
}
|
|
1119
1135
|
|
|
@@ -1126,7 +1142,7 @@ class DeleteDirectConnectResponse extends AbstractModel {
|
|
|
1126
1142
|
super();
|
|
1127
1143
|
|
|
1128
1144
|
/**
|
|
1129
|
-
* The unique request ID,
|
|
1145
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1130
1146
|
* @type {string || null}
|
|
1131
1147
|
*/
|
|
1132
1148
|
this.RequestId = null;
|
|
@@ -1154,7 +1170,7 @@ class EnableInternetAddressResponse extends AbstractModel {
|
|
|
1154
1170
|
super();
|
|
1155
1171
|
|
|
1156
1172
|
/**
|
|
1157
|
-
* The unique request ID,
|
|
1173
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1158
1174
|
* @type {string || null}
|
|
1159
1175
|
*/
|
|
1160
1176
|
this.RequestId = null;
|
|
@@ -1247,7 +1263,7 @@ Note: this field may return `null`, indicating that no valid value is obtained.
|
|
|
1247
1263
|
this.AllSignLaw = null;
|
|
1248
1264
|
|
|
1249
1265
|
/**
|
|
1250
|
-
* The unique request ID,
|
|
1266
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1251
1267
|
* @type {string || null}
|
|
1252
1268
|
*/
|
|
1253
1269
|
this.RequestId = null;
|
|
@@ -1305,6 +1321,12 @@ You can call `DescribeRegions` to get the region ID.
|
|
|
1305
1321
|
*/
|
|
1306
1322
|
this.Limit = null;
|
|
1307
1323
|
|
|
1324
|
+
/**
|
|
1325
|
+
*
|
|
1326
|
+
* @type {Array.<Filter> || null}
|
|
1327
|
+
*/
|
|
1328
|
+
this.Filters = null;
|
|
1329
|
+
|
|
1308
1330
|
}
|
|
1309
1331
|
|
|
1310
1332
|
/**
|
|
@@ -1318,6 +1340,15 @@ You can call `DescribeRegions` to get the region ID.
|
|
|
1318
1340
|
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
1319
1341
|
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
1320
1342
|
|
|
1343
|
+
if (params.Filters) {
|
|
1344
|
+
this.Filters = new Array();
|
|
1345
|
+
for (let z in params.Filters) {
|
|
1346
|
+
let obj = new Filter();
|
|
1347
|
+
obj.deserialize(params.Filters[z]);
|
|
1348
|
+
this.Filters.push(obj);
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1321
1352
|
}
|
|
1322
1353
|
}
|
|
1323
1354
|
|
|
@@ -1542,6 +1573,12 @@ class ModifyDirectConnectAttributeRequest extends AbstractModel {
|
|
|
1542
1573
|
*/
|
|
1543
1574
|
this.FaultReportContactNumber = null;
|
|
1544
1575
|
|
|
1576
|
+
/**
|
|
1577
|
+
* Fault reporting contact email
|
|
1578
|
+
* @type {string || null}
|
|
1579
|
+
*/
|
|
1580
|
+
this.FaultReportContactEmail = null;
|
|
1581
|
+
|
|
1545
1582
|
/**
|
|
1546
1583
|
* Whether the connection applicant has signed the service agreement.
|
|
1547
1584
|
* @type {boolean || null}
|
|
@@ -1549,7 +1586,7 @@ class ModifyDirectConnectAttributeRequest extends AbstractModel {
|
|
|
1549
1586
|
this.SignLaw = null;
|
|
1550
1587
|
|
|
1551
1588
|
/**
|
|
1552
|
-
* Connection
|
|
1589
|
+
* Connection's bandwidth
|
|
1553
1590
|
* @type {number || null}
|
|
1554
1591
|
*/
|
|
1555
1592
|
this.Bandwidth = null;
|
|
@@ -1574,6 +1611,7 @@ class ModifyDirectConnectAttributeRequest extends AbstractModel {
|
|
|
1574
1611
|
this.CustomerContactNumber = 'CustomerContactNumber' in params ? params.CustomerContactNumber : null;
|
|
1575
1612
|
this.FaultReportContactPerson = 'FaultReportContactPerson' in params ? params.FaultReportContactPerson : null;
|
|
1576
1613
|
this.FaultReportContactNumber = 'FaultReportContactNumber' in params ? params.FaultReportContactNumber : null;
|
|
1614
|
+
this.FaultReportContactEmail = 'FaultReportContactEmail' in params ? params.FaultReportContactEmail : null;
|
|
1577
1615
|
this.SignLaw = 'SignLaw' in params ? params.SignLaw : null;
|
|
1578
1616
|
this.Bandwidth = 'Bandwidth' in params ? params.Bandwidth : null;
|
|
1579
1617
|
|
|
@@ -1602,7 +1640,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
1602
1640
|
this.Subnets = null;
|
|
1603
1641
|
|
|
1604
1642
|
/**
|
|
1605
|
-
* The unique request ID,
|
|
1643
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1606
1644
|
* @type {string || null}
|
|
1607
1645
|
*/
|
|
1608
1646
|
this.RequestId = null;
|
|
@@ -1675,7 +1713,7 @@ class DisableInternetAddressResponse extends AbstractModel {
|
|
|
1675
1713
|
super();
|
|
1676
1714
|
|
|
1677
1715
|
/**
|
|
1678
|
-
* The unique request ID,
|
|
1716
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1679
1717
|
* @type {string || null}
|
|
1680
1718
|
*/
|
|
1681
1719
|
this.RequestId = null;
|
|
@@ -1857,12 +1895,30 @@ You can call `DescribeAccessPoints` to get the region ID. The selected access po
|
|
|
1857
1895
|
*/
|
|
1858
1896
|
this.FaultReportContactNumber = null;
|
|
1859
1897
|
|
|
1898
|
+
/**
|
|
1899
|
+
*
|
|
1900
|
+
* @type {string || null}
|
|
1901
|
+
*/
|
|
1902
|
+
this.FaultReportContactEmail = null;
|
|
1903
|
+
|
|
1860
1904
|
/**
|
|
1861
1905
|
* Whether the connection applicant has signed the service agreement. Default value: true.
|
|
1862
1906
|
* @type {boolean || null}
|
|
1863
1907
|
*/
|
|
1864
1908
|
this.SignLaw = null;
|
|
1865
1909
|
|
|
1910
|
+
/**
|
|
1911
|
+
* Tag key-value pair
|
|
1912
|
+
* @type {Array.<Tag> || null}
|
|
1913
|
+
*/
|
|
1914
|
+
this.Tags = null;
|
|
1915
|
+
|
|
1916
|
+
/**
|
|
1917
|
+
* Is MACsec required
|
|
1918
|
+
* @type {boolean || null}
|
|
1919
|
+
*/
|
|
1920
|
+
this.IsMacSec = null;
|
|
1921
|
+
|
|
1866
1922
|
}
|
|
1867
1923
|
|
|
1868
1924
|
/**
|
|
@@ -1888,8 +1944,19 @@ You can call `DescribeAccessPoints` to get the region ID. The selected access po
|
|
|
1888
1944
|
this.CustomerContactNumber = 'CustomerContactNumber' in params ? params.CustomerContactNumber : null;
|
|
1889
1945
|
this.FaultReportContactPerson = 'FaultReportContactPerson' in params ? params.FaultReportContactPerson : null;
|
|
1890
1946
|
this.FaultReportContactNumber = 'FaultReportContactNumber' in params ? params.FaultReportContactNumber : null;
|
|
1947
|
+
this.FaultReportContactEmail = 'FaultReportContactEmail' in params ? params.FaultReportContactEmail : null;
|
|
1891
1948
|
this.SignLaw = 'SignLaw' in params ? params.SignLaw : null;
|
|
1892
1949
|
|
|
1950
|
+
if (params.Tags) {
|
|
1951
|
+
this.Tags = new Array();
|
|
1952
|
+
for (let z in params.Tags) {
|
|
1953
|
+
let obj = new Tag();
|
|
1954
|
+
obj.deserialize(params.Tags[z]);
|
|
1955
|
+
this.Tags.push(obj);
|
|
1956
|
+
}
|
|
1957
|
+
}
|
|
1958
|
+
this.IsMacSec = 'IsMacSec' in params ? params.IsMacSec : null;
|
|
1959
|
+
|
|
1893
1960
|
}
|
|
1894
1961
|
}
|
|
1895
1962
|
|
|
@@ -1902,7 +1969,7 @@ class EnableInternetAddressRequest extends AbstractModel {
|
|
|
1902
1969
|
super();
|
|
1903
1970
|
|
|
1904
1971
|
/**
|
|
1905
|
-
* ID of the internet tunnel
|
|
1972
|
+
* ID of the internet tunnel's public IP address
|
|
1906
1973
|
* @type {string || null}
|
|
1907
1974
|
*/
|
|
1908
1975
|
this.InstanceId = null;
|
|
@@ -1930,7 +1997,7 @@ class ModifyDirectConnectAttributeResponse extends AbstractModel {
|
|
|
1930
1997
|
super();
|
|
1931
1998
|
|
|
1932
1999
|
/**
|
|
1933
|
-
* The unique request ID,
|
|
2000
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1934
2001
|
* @type {string || null}
|
|
1935
2002
|
*/
|
|
1936
2003
|
this.RequestId = null;
|
|
@@ -1958,7 +2025,7 @@ class RejectDirectConnectTunnelResponse extends AbstractModel {
|
|
|
1958
2025
|
super();
|
|
1959
2026
|
|
|
1960
2027
|
/**
|
|
1961
|
-
* The unique request ID,
|
|
2028
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1962
2029
|
* @type {string || null}
|
|
1963
2030
|
*/
|
|
1964
2031
|
this.RequestId = null;
|
|
@@ -1992,7 +2059,7 @@ class CreateDirectConnectTunnelResponse extends AbstractModel {
|
|
|
1992
2059
|
this.DirectConnectTunnelIdSet = null;
|
|
1993
2060
|
|
|
1994
2061
|
/**
|
|
1995
|
-
* The unique request ID,
|
|
2062
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1996
2063
|
* @type {string || null}
|
|
1997
2064
|
*/
|
|
1998
2065
|
this.RequestId = null;
|
|
@@ -2021,7 +2088,7 @@ class DeleteDirectConnectTunnelResponse extends AbstractModel {
|
|
|
2021
2088
|
super();
|
|
2022
2089
|
|
|
2023
2090
|
/**
|
|
2024
|
-
* The unique request ID,
|
|
2091
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2025
2092
|
* @type {string || null}
|
|
2026
2093
|
*/
|
|
2027
2094
|
this.RequestId = null;
|
|
@@ -2124,7 +2191,7 @@ class DescribeDirectConnectTunnelsResponse extends AbstractModel {
|
|
|
2124
2191
|
this.TotalCount = null;
|
|
2125
2192
|
|
|
2126
2193
|
/**
|
|
2127
|
-
* The unique request ID,
|
|
2194
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2128
2195
|
* @type {string || null}
|
|
2129
2196
|
*/
|
|
2130
2197
|
this.RequestId = null;
|
|
@@ -2283,7 +2350,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
2283
2350
|
this.InternetAddressStatistics = null;
|
|
2284
2351
|
|
|
2285
2352
|
/**
|
|
2286
|
-
* The unique request ID,
|
|
2353
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2287
2354
|
* @type {string || null}
|
|
2288
2355
|
*/
|
|
2289
2356
|
this.RequestId = null;
|
|
@@ -2453,7 +2520,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
2453
2520
|
this.Ipv4OtherNum = null;
|
|
2454
2521
|
|
|
2455
2522
|
/**
|
|
2456
|
-
* The unique request ID,
|
|
2523
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2457
2524
|
* @type {string || null}
|
|
2458
2525
|
*/
|
|
2459
2526
|
this.RequestId = null;
|
|
@@ -2486,7 +2553,7 @@ class ReleaseInternetAddressResponse extends AbstractModel {
|
|
|
2486
2553
|
super();
|
|
2487
2554
|
|
|
2488
2555
|
/**
|
|
2489
|
-
* The unique request ID,
|
|
2556
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2490
2557
|
* @type {string || null}
|
|
2491
2558
|
*/
|
|
2492
2559
|
this.RequestId = null;
|
|
@@ -2786,7 +2853,7 @@ class DisableInternetAddressRequest extends AbstractModel {
|
|
|
2786
2853
|
super();
|
|
2787
2854
|
|
|
2788
2855
|
/**
|
|
2789
|
-
* ID of the internet tunnel
|
|
2856
|
+
* ID of the internet tunnel's public IP address
|
|
2790
2857
|
* @type {string || null}
|
|
2791
2858
|
*/
|
|
2792
2859
|
this.InstanceId = null;
|
|
@@ -206,6 +206,12 @@ class ModifyGatewayLoadBalancerAttributeRequest extends AbstractModel {
|
|
|
206
206
|
*/
|
|
207
207
|
this.LoadBalancerName = null;
|
|
208
208
|
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @type {boolean || null}
|
|
212
|
+
*/
|
|
213
|
+
this.DeleteProtect = null;
|
|
214
|
+
|
|
209
215
|
}
|
|
210
216
|
|
|
211
217
|
/**
|
|
@@ -217,6 +223,7 @@ class ModifyGatewayLoadBalancerAttributeRequest extends AbstractModel {
|
|
|
217
223
|
}
|
|
218
224
|
this.LoadBalancerId = 'LoadBalancerId' in params ? params.LoadBalancerId : null;
|
|
219
225
|
this.LoadBalancerName = 'LoadBalancerName' in params ? params.LoadBalancerName : null;
|
|
226
|
+
this.DeleteProtect = 'DeleteProtect' in params ? params.DeleteProtect : null;
|
|
220
227
|
|
|
221
228
|
}
|
|
222
229
|
}
|
|
@@ -1232,6 +1239,46 @@ class CreateTargetGroupRequest extends AbstractModel {
|
|
|
1232
1239
|
*/
|
|
1233
1240
|
this.AllDeadToAlive = null;
|
|
1234
1241
|
|
|
1242
|
+
/**
|
|
1243
|
+
* Tags
|
|
1244
|
+
* @type {Array.<TagInfo> || null}
|
|
1245
|
+
*/
|
|
1246
|
+
this.Tags = null;
|
|
1247
|
+
|
|
1248
|
+
/**
|
|
1249
|
+
* Traffic Distribution Mode
|
|
1250
|
+
<ul>
|
|
1251
|
+
<li>STATELESS: Stateless</li>
|
|
1252
|
+
<li>STATEFUL: Stateful</li>
|
|
1253
|
+
</ul>
|
|
1254
|
+
* @type {string || null}
|
|
1255
|
+
*/
|
|
1256
|
+
this.ForwardingMode = null;
|
|
1257
|
+
|
|
1258
|
+
/**
|
|
1259
|
+
* <p>Switch for unbinding backend services in the rescheduling function. When enabled, unbinding backend services will trigger rescheduling.</p>
|
|
1260
|
+
* @type {boolean || null}
|
|
1261
|
+
*/
|
|
1262
|
+
this.RescheduleUnbindRs = null;
|
|
1263
|
+
|
|
1264
|
+
/**
|
|
1265
|
+
* <p>The time to enable rescheduling after unbinding RS, configurable from 0s to 3600s, with a default value of 0s</p>
|
|
1266
|
+
* @type {number || null}
|
|
1267
|
+
*/
|
|
1268
|
+
this.RescheduleUnbindRsStartTime = null;
|
|
1269
|
+
|
|
1270
|
+
/**
|
|
1271
|
+
* <p>Switch for backend service health detection exception in the rescheduling function. When enabled, abnormal health checks of backend services will trigger rescheduling.</p>
|
|
1272
|
+
* @type {boolean || null}
|
|
1273
|
+
*/
|
|
1274
|
+
this.RescheduleUnhealthy = null;
|
|
1275
|
+
|
|
1276
|
+
/**
|
|
1277
|
+
* <p>The waiting time to enable rescheduling after abnormal health detection of backend services, configurable from 0s to 3600s, default is 0s</p>
|
|
1278
|
+
* @type {number || null}
|
|
1279
|
+
*/
|
|
1280
|
+
this.RescheduleUnhealthyStartTime = null;
|
|
1281
|
+
|
|
1235
1282
|
}
|
|
1236
1283
|
|
|
1237
1284
|
/**
|
|
@@ -1263,6 +1310,20 @@ class CreateTargetGroupRequest extends AbstractModel {
|
|
|
1263
1310
|
this.ScheduleAlgorithm = 'ScheduleAlgorithm' in params ? params.ScheduleAlgorithm : null;
|
|
1264
1311
|
this.AllDeadToAlive = 'AllDeadToAlive' in params ? params.AllDeadToAlive : null;
|
|
1265
1312
|
|
|
1313
|
+
if (params.Tags) {
|
|
1314
|
+
this.Tags = new Array();
|
|
1315
|
+
for (let z in params.Tags) {
|
|
1316
|
+
let obj = new TagInfo();
|
|
1317
|
+
obj.deserialize(params.Tags[z]);
|
|
1318
|
+
this.Tags.push(obj);
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
this.ForwardingMode = 'ForwardingMode' in params ? params.ForwardingMode : null;
|
|
1322
|
+
this.RescheduleUnbindRs = 'RescheduleUnbindRs' in params ? params.RescheduleUnbindRs : null;
|
|
1323
|
+
this.RescheduleUnbindRsStartTime = 'RescheduleUnbindRsStartTime' in params ? params.RescheduleUnbindRsStartTime : null;
|
|
1324
|
+
this.RescheduleUnhealthy = 'RescheduleUnhealthy' in params ? params.RescheduleUnhealthy : null;
|
|
1325
|
+
this.RescheduleUnhealthyStartTime = 'RescheduleUnhealthyStartTime' in params ? params.RescheduleUnhealthyStartTime : null;
|
|
1326
|
+
|
|
1266
1327
|
}
|
|
1267
1328
|
}
|
|
1268
1329
|
|
|
@@ -2056,6 +2117,30 @@ class ModifyTargetGroupAttributeRequest extends AbstractModel {
|
|
|
2056
2117
|
*/
|
|
2057
2118
|
this.AllDeadToAlive = null;
|
|
2058
2119
|
|
|
2120
|
+
/**
|
|
2121
|
+
*
|
|
2122
|
+
* @type {boolean || null}
|
|
2123
|
+
*/
|
|
2124
|
+
this.RescheduleUnbindRs = null;
|
|
2125
|
+
|
|
2126
|
+
/**
|
|
2127
|
+
*
|
|
2128
|
+
* @type {number || null}
|
|
2129
|
+
*/
|
|
2130
|
+
this.RescheduleUnbindRsStartTime = null;
|
|
2131
|
+
|
|
2132
|
+
/**
|
|
2133
|
+
*
|
|
2134
|
+
* @type {boolean || null}
|
|
2135
|
+
*/
|
|
2136
|
+
this.RescheduleUnhealthy = null;
|
|
2137
|
+
|
|
2138
|
+
/**
|
|
2139
|
+
*
|
|
2140
|
+
* @type {number || null}
|
|
2141
|
+
*/
|
|
2142
|
+
this.RescheduleUnhealthyStartTime = null;
|
|
2143
|
+
|
|
2059
2144
|
}
|
|
2060
2145
|
|
|
2061
2146
|
/**
|
|
@@ -2074,6 +2159,10 @@ class ModifyTargetGroupAttributeRequest extends AbstractModel {
|
|
|
2074
2159
|
this.HealthCheck = obj;
|
|
2075
2160
|
}
|
|
2076
2161
|
this.AllDeadToAlive = 'AllDeadToAlive' in params ? params.AllDeadToAlive : null;
|
|
2162
|
+
this.RescheduleUnbindRs = 'RescheduleUnbindRs' in params ? params.RescheduleUnbindRs : null;
|
|
2163
|
+
this.RescheduleUnbindRsStartTime = 'RescheduleUnbindRsStartTime' in params ? params.RescheduleUnbindRsStartTime : null;
|
|
2164
|
+
this.RescheduleUnhealthy = 'RescheduleUnhealthy' in params ? params.RescheduleUnhealthy : null;
|
|
2165
|
+
this.RescheduleUnhealthyStartTime = 'RescheduleUnhealthyStartTime' in params ? params.RescheduleUnhealthyStartTime : null;
|
|
2077
2166
|
|
|
2078
2167
|
}
|
|
2079
2168
|
}
|
|
@@ -27,6 +27,8 @@ const ChatTranslationsResponse = models.ChatTranslationsResponse;
|
|
|
27
27
|
const SubmitHunyuanTo3DTextureEditJobRequest = models.SubmitHunyuanTo3DTextureEditJobRequest;
|
|
28
28
|
const Usage = models.Usage;
|
|
29
29
|
const SubmitHunyuanTo3DRapidJobResponse = models.SubmitHunyuanTo3DRapidJobResponse;
|
|
30
|
+
const SubmitAutoRiggingJobResponse = models.SubmitAutoRiggingJobResponse;
|
|
31
|
+
const DescribeAutoRiggingJobResponse = models.DescribeAutoRiggingJobResponse;
|
|
30
32
|
const ChatTranslationsRequest = models.ChatTranslationsRequest;
|
|
31
33
|
const QueryHunyuanTo3DTextureEditJobResponse = models.QueryHunyuanTo3DTextureEditJobResponse;
|
|
32
34
|
const SubmitHunyuanTo3DUVJobRequest = models.SubmitHunyuanTo3DUVJobRequest;
|
|
@@ -37,16 +39,18 @@ const PromptTokensDetails = models.PromptTokensDetails;
|
|
|
37
39
|
const SubmitConvert3DFormatJobRequest = models.SubmitConvert3DFormatJobRequest;
|
|
38
40
|
const InputFile3D = models.InputFile3D;
|
|
39
41
|
const TranslationDelta = models.TranslationDelta;
|
|
42
|
+
const TranslationMessage = models.TranslationMessage;
|
|
40
43
|
const SubmitHunyuanTo3DRapidJobRequest = models.SubmitHunyuanTo3DRapidJobRequest;
|
|
44
|
+
const SubmitAutoRiggingJobRequest = models.SubmitAutoRiggingJobRequest;
|
|
41
45
|
const SubmitHunyuanTo3DUVJobResponse = models.SubmitHunyuanTo3DUVJobResponse;
|
|
42
46
|
const SubmitHunyuan3DPartJobResponse = models.SubmitHunyuan3DPartJobResponse;
|
|
43
47
|
const SubmitHunyuanTo3DProJobRequest = models.SubmitHunyuanTo3DProJobRequest;
|
|
44
|
-
const
|
|
48
|
+
const DescribeHunyuanTo3DUVJobResponse = models.DescribeHunyuanTo3DUVJobResponse;
|
|
45
49
|
const Convert3DFormatResponse = models.Convert3DFormatResponse;
|
|
46
50
|
const DescribeHunyuanTo3DUVJobRequest = models.DescribeHunyuanTo3DUVJobRequest;
|
|
47
51
|
const SubmitHunyuan3DPartJobRequest = models.SubmitHunyuan3DPartJobRequest;
|
|
48
52
|
const Describe3DSmartTopologyJobResponse = models.Describe3DSmartTopologyJobResponse;
|
|
49
|
-
const
|
|
53
|
+
const QueryHunyuanTo3DTextureEditJobRequest = models.QueryHunyuanTo3DTextureEditJobRequest;
|
|
50
54
|
const Reference = models.Reference;
|
|
51
55
|
const ImageInfo = models.ImageInfo;
|
|
52
56
|
const SubmitHunyuanTo3DProJobResponse = models.SubmitHunyuanTo3DProJobResponse;
|
|
@@ -55,7 +59,7 @@ const SubmitConvert3DFormatJobResponse = models.SubmitConvert3DFormatJobResponse
|
|
|
55
59
|
const QueryHunyuanTo3DProJobResponse = models.QueryHunyuanTo3DProJobResponse;
|
|
56
60
|
const QueryHunyuan3DPartJobRequest = models.QueryHunyuan3DPartJobRequest;
|
|
57
61
|
const DescribeConvert3DFormatJobRequest = models.DescribeConvert3DFormatJobRequest;
|
|
58
|
-
const
|
|
62
|
+
const DescribeAutoRiggingJobRequest = models.DescribeAutoRiggingJobRequest;
|
|
59
63
|
const QueryHunyuanTo3DRapidJobRequest = models.QueryHunyuanTo3DRapidJobRequest;
|
|
60
64
|
const DescribeConvert3DFormatJobResponse = models.DescribeConvert3DFormatJobResponse;
|
|
61
65
|
const Describe3DSmartTopologyJobRequest = models.Describe3DSmartTopologyJobRequest;
|
|
@@ -107,6 +111,17 @@ This API is used to provide 1 concurrent task by default, which means only 1 sub
|
|
|
107
111
|
this.request("Submit3DSmartTopologyJob", req, resp, cb);
|
|
108
112
|
}
|
|
109
113
|
|
|
114
|
+
/**
|
|
115
|
+
* 3D Model Auto Rigging API, powered by the Hunyuan Large Model, processes input 3D models of characters or animals to perform automatic rigging and skinning, outputting a 3D model complete with skeletal data. By default, one concurrent slot is provided, meaning that a maximum of one submitted task can be processed simultaneously; the next task can only begin processing once the previous one has been completed.
|
|
116
|
+
* @param {DescribeAutoRiggingJobRequest} req
|
|
117
|
+
* @param {function(string, DescribeAutoRiggingJobResponse):void} cb
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
DescribeAutoRiggingJob(req, cb) {
|
|
121
|
+
let resp = new DescribeAutoRiggingJobResponse();
|
|
122
|
+
this.request("DescribeAutoRiggingJob", req, resp, cb);
|
|
123
|
+
}
|
|
124
|
+
|
|
110
125
|
/**
|
|
111
126
|
* After inputting the 3D model file, the system will automatically convert it to the required format. The maximum supported file size is 200MB.
|
|
112
127
|
* @param {SubmitConvert3DFormatJobRequest} req
|
|
@@ -236,6 +251,17 @@ This API is used to provide 3 concurrent tasks by default, which can process 3 s
|
|
|
236
251
|
this.request("QueryHunyuanTo3DProJob", req, resp, cb);
|
|
237
252
|
}
|
|
238
253
|
|
|
254
|
+
/**
|
|
255
|
+
* 3D Model Auto Rigging API, powered by the HY Large Model, processes input 3D models of characters or animals to perform automatic rigging and skinning, outputting a 3D model complete with skeletal data. By default, one concurrent slot is provided, meaning that a maximum of one submitted task can be processed simultaneously; the next task can only begin processing once the previous one has been completed.
|
|
256
|
+
* @param {SubmitAutoRiggingJobRequest} req
|
|
257
|
+
* @param {function(string, SubmitAutoRiggingJobResponse):void} cb
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
SubmitAutoRiggingJob(req, cb) {
|
|
261
|
+
let resp = new SubmitAutoRiggingJobResponse();
|
|
262
|
+
this.request("SubmitAutoRiggingJob", req, resp, cb);
|
|
263
|
+
}
|
|
264
|
+
|
|
239
265
|
/**
|
|
240
266
|
* After inputting a 3D model file, the 3D model file format can be switched.
|
|
241
267
|
* @param {Convert3DFormatRequest} req
|