tencentcloud-sdk-nodejs-intl-en 3.0.286 → 3.0.290
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 +86 -0
- package/tencentcloud/ckafka/v20190819/models.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/privatedns/v20201028/models.js +157 -0
- package/tencentcloud/privatedns/v20201028/privatedns_client.js +2 -0
package/package.json
CHANGED
|
@@ -35,6 +35,7 @@ const SpotMarketOptions = models.SpotMarketOptions;
|
|
|
35
35
|
const StopAutoScalingInstancesResponse = models.StopAutoScalingInstancesResponse;
|
|
36
36
|
const DescribeScalingPoliciesRequest = models.DescribeScalingPoliciesRequest;
|
|
37
37
|
const InstanceNameSettings = models.InstanceNameSettings;
|
|
38
|
+
const DetailedStatusMessage = models.DetailedStatusMessage;
|
|
38
39
|
const ModifyScheduledActionResponse = models.ModifyScheduledActionResponse;
|
|
39
40
|
const CreateAutoScalingGroupFromInstanceRequest = models.CreateAutoScalingGroupFromInstanceRequest;
|
|
40
41
|
const ExecuteScalingPolicyResponse = models.ExecuteScalingPolicyResponse;
|
|
@@ -1151,6 +1151,76 @@ The name contains 2 to 40 characters, and supports multiple dots (.). The string
|
|
|
1151
1151
|
}
|
|
1152
1152
|
}
|
|
1153
1153
|
|
|
1154
|
+
/**
|
|
1155
|
+
* Detailed description of scaling activity status
|
|
1156
|
+
* @class
|
|
1157
|
+
*/
|
|
1158
|
+
class DetailedStatusMessage extends AbstractModel {
|
|
1159
|
+
constructor(){
|
|
1160
|
+
super();
|
|
1161
|
+
|
|
1162
|
+
/**
|
|
1163
|
+
* Error type
|
|
1164
|
+
* @type {string || null}
|
|
1165
|
+
*/
|
|
1166
|
+
this.Code = null;
|
|
1167
|
+
|
|
1168
|
+
/**
|
|
1169
|
+
* AZ information
|
|
1170
|
+
* @type {string || null}
|
|
1171
|
+
*/
|
|
1172
|
+
this.Zone = null;
|
|
1173
|
+
|
|
1174
|
+
/**
|
|
1175
|
+
* Instance ID
|
|
1176
|
+
* @type {string || null}
|
|
1177
|
+
*/
|
|
1178
|
+
this.InstanceId = null;
|
|
1179
|
+
|
|
1180
|
+
/**
|
|
1181
|
+
* Instance billing mode
|
|
1182
|
+
* @type {string || null}
|
|
1183
|
+
*/
|
|
1184
|
+
this.InstanceChargeType = null;
|
|
1185
|
+
|
|
1186
|
+
/**
|
|
1187
|
+
* Subnet ID
|
|
1188
|
+
* @type {string || null}
|
|
1189
|
+
*/
|
|
1190
|
+
this.SubnetId = null;
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* Error message
|
|
1194
|
+
* @type {string || null}
|
|
1195
|
+
*/
|
|
1196
|
+
this.Message = null;
|
|
1197
|
+
|
|
1198
|
+
/**
|
|
1199
|
+
* Instance type
|
|
1200
|
+
* @type {string || null}
|
|
1201
|
+
*/
|
|
1202
|
+
this.InstanceType = null;
|
|
1203
|
+
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
/**
|
|
1207
|
+
* @private
|
|
1208
|
+
*/
|
|
1209
|
+
deserialize(params) {
|
|
1210
|
+
if (!params) {
|
|
1211
|
+
return;
|
|
1212
|
+
}
|
|
1213
|
+
this.Code = 'Code' in params ? params.Code : null;
|
|
1214
|
+
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
1215
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1216
|
+
this.InstanceChargeType = 'InstanceChargeType' in params ? params.InstanceChargeType : null;
|
|
1217
|
+
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
1218
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
1219
|
+
this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
|
|
1220
|
+
|
|
1221
|
+
}
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1154
1224
|
/**
|
|
1155
1225
|
* ModifyScheduledAction response structure.
|
|
1156
1226
|
* @class
|
|
@@ -6410,6 +6480,12 @@ class Activity extends AbstractModel {
|
|
|
6410
6480
|
*/
|
|
6411
6481
|
this.LifecycleActionResultSet = null;
|
|
6412
6482
|
|
|
6483
|
+
/**
|
|
6484
|
+
* Detailed description of scaling activity status
|
|
6485
|
+
* @type {Array.<DetailedStatusMessage> || null}
|
|
6486
|
+
*/
|
|
6487
|
+
this.DetailedStatusMessageSet = null;
|
|
6488
|
+
|
|
6413
6489
|
}
|
|
6414
6490
|
|
|
6415
6491
|
/**
|
|
@@ -6449,6 +6525,15 @@ class Activity extends AbstractModel {
|
|
|
6449
6525
|
}
|
|
6450
6526
|
}
|
|
6451
6527
|
|
|
6528
|
+
if (params.DetailedStatusMessageSet) {
|
|
6529
|
+
this.DetailedStatusMessageSet = new Array();
|
|
6530
|
+
for (let z in params.DetailedStatusMessageSet) {
|
|
6531
|
+
let obj = new DetailedStatusMessage();
|
|
6532
|
+
obj.deserialize(params.DetailedStatusMessageSet[z]);
|
|
6533
|
+
this.DetailedStatusMessageSet.push(obj);
|
|
6534
|
+
}
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6452
6537
|
}
|
|
6453
6538
|
}
|
|
6454
6539
|
|
|
@@ -6875,6 +6960,7 @@ module.exports = {
|
|
|
6875
6960
|
StopAutoScalingInstancesResponse: StopAutoScalingInstancesResponse,
|
|
6876
6961
|
DescribeScalingPoliciesRequest: DescribeScalingPoliciesRequest,
|
|
6877
6962
|
InstanceNameSettings: InstanceNameSettings,
|
|
6963
|
+
DetailedStatusMessage: DetailedStatusMessage,
|
|
6878
6964
|
ModifyScheduledActionResponse: ModifyScheduledActionResponse,
|
|
6879
6965
|
CreateAutoScalingGroupFromInstanceRequest: CreateAutoScalingGroupFromInstanceRequest,
|
|
6880
6966
|
ExecuteScalingPolicyResponse: ExecuteScalingPolicyResponse,
|
|
@@ -5622,7 +5622,7 @@ class AclRuleInfo extends AbstractModel {
|
|
|
5622
5622
|
this.PermissionType = null;
|
|
5623
5623
|
|
|
5624
5624
|
/**
|
|
5625
|
-
* The default value is `*`, which means that any host can access the topic.
|
|
5625
|
+
* The default value is `*`, which means that any host can access the topic. CKafka currently does not support specifying a host value of * or an IP range.
|
|
5626
5626
|
* @type {string || null}
|
|
5627
5627
|
*/
|
|
5628
5628
|
this.Host = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.290";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -36,6 +36,12 @@ class ModifyPrivateZoneVpcRequest extends AbstractModel {
|
|
|
36
36
|
*/
|
|
37
37
|
this.VpcSet = null;
|
|
38
38
|
|
|
39
|
+
/**
|
|
40
|
+
* List of authorized accounts' VPCs to associate with the private domain
|
|
41
|
+
* @type {Array.<AccountVpcInfo> || null}
|
|
42
|
+
*/
|
|
43
|
+
this.AccountVpcSet = null;
|
|
44
|
+
|
|
39
45
|
}
|
|
40
46
|
|
|
41
47
|
/**
|
|
@@ -56,6 +62,15 @@ class ModifyPrivateZoneVpcRequest extends AbstractModel {
|
|
|
56
62
|
}
|
|
57
63
|
}
|
|
58
64
|
|
|
65
|
+
if (params.AccountVpcSet) {
|
|
66
|
+
this.AccountVpcSet = new Array();
|
|
67
|
+
for (let z in params.AccountVpcSet) {
|
|
68
|
+
let obj = new AccountVpcInfo();
|
|
69
|
+
obj.deserialize(params.AccountVpcSet[z]);
|
|
70
|
+
this.AccountVpcSet.push(obj);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
59
74
|
}
|
|
60
75
|
}
|
|
61
76
|
|
|
@@ -159,6 +174,48 @@ class DescribePrivateZoneRecordListRequest extends AbstractModel {
|
|
|
159
174
|
}
|
|
160
175
|
}
|
|
161
176
|
|
|
177
|
+
/**
|
|
178
|
+
* Output parameters of the associated VPC
|
|
179
|
+
* @class
|
|
180
|
+
*/
|
|
181
|
+
class AccountVpcInfoOutput extends AbstractModel {
|
|
182
|
+
constructor(){
|
|
183
|
+
super();
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* UIN of the VPC account
|
|
187
|
+
* @type {string || null}
|
|
188
|
+
*/
|
|
189
|
+
this.Uin = null;
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* VPC ID
|
|
193
|
+
* @type {string || null}
|
|
194
|
+
*/
|
|
195
|
+
this.UniqVpcId = null;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Region
|
|
199
|
+
* @type {string || null}
|
|
200
|
+
*/
|
|
201
|
+
this.Region = null;
|
|
202
|
+
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* @private
|
|
207
|
+
*/
|
|
208
|
+
deserialize(params) {
|
|
209
|
+
if (!params) {
|
|
210
|
+
return;
|
|
211
|
+
}
|
|
212
|
+
this.Uin = 'Uin' in params ? params.Uin : null;
|
|
213
|
+
this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
|
|
214
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
215
|
+
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
162
219
|
/**
|
|
163
220
|
* DescribePrivateZone request structure.
|
|
164
221
|
* @class
|
|
@@ -671,6 +728,12 @@ class CreatePrivateZoneRequest extends AbstractModel {
|
|
|
671
728
|
*/
|
|
672
729
|
this.Vpcs = null;
|
|
673
730
|
|
|
731
|
+
/**
|
|
732
|
+
* List of authorized accounts' VPCs to associate with the private domain
|
|
733
|
+
* @type {Array.<AccountVpcInfo> || null}
|
|
734
|
+
*/
|
|
735
|
+
this.AccountVpcSet = null;
|
|
736
|
+
|
|
674
737
|
}
|
|
675
738
|
|
|
676
739
|
/**
|
|
@@ -711,6 +774,67 @@ class CreatePrivateZoneRequest extends AbstractModel {
|
|
|
711
774
|
}
|
|
712
775
|
}
|
|
713
776
|
|
|
777
|
+
if (params.AccountVpcSet) {
|
|
778
|
+
this.AccountVpcSet = new Array();
|
|
779
|
+
for (let z in params.AccountVpcSet) {
|
|
780
|
+
let obj = new AccountVpcInfo();
|
|
781
|
+
obj.deserialize(params.AccountVpcSet[z]);
|
|
782
|
+
this.AccountVpcSet.push(obj);
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* VPC information of a Private DNS account
|
|
791
|
+
* @class
|
|
792
|
+
*/
|
|
793
|
+
class AccountVpcInfo extends AbstractModel {
|
|
794
|
+
constructor(){
|
|
795
|
+
super();
|
|
796
|
+
|
|
797
|
+
/**
|
|
798
|
+
* VpcId: vpc-xadsafsdasd
|
|
799
|
+
* @type {string || null}
|
|
800
|
+
*/
|
|
801
|
+
this.UniqVpcId = null;
|
|
802
|
+
|
|
803
|
+
/**
|
|
804
|
+
* VPC region: ap-guangzhou, ap-shanghai
|
|
805
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
806
|
+
* @type {string || null}
|
|
807
|
+
*/
|
|
808
|
+
this.Region = null;
|
|
809
|
+
|
|
810
|
+
/**
|
|
811
|
+
* VPC account: 123456789
|
|
812
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
813
|
+
* @type {string || null}
|
|
814
|
+
*/
|
|
815
|
+
this.Uin = null;
|
|
816
|
+
|
|
817
|
+
/**
|
|
818
|
+
* VPC name: testname
|
|
819
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
820
|
+
* @type {string || null}
|
|
821
|
+
*/
|
|
822
|
+
this.VpcName = null;
|
|
823
|
+
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
/**
|
|
827
|
+
* @private
|
|
828
|
+
*/
|
|
829
|
+
deserialize(params) {
|
|
830
|
+
if (!params) {
|
|
831
|
+
return;
|
|
832
|
+
}
|
|
833
|
+
this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
|
|
834
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
835
|
+
this.Uin = 'Uin' in params ? params.Uin : null;
|
|
836
|
+
this.VpcName = 'VpcName' in params ? params.VpcName : null;
|
|
837
|
+
|
|
714
838
|
}
|
|
715
839
|
}
|
|
716
840
|
|
|
@@ -1577,6 +1701,13 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1577
1701
|
*/
|
|
1578
1702
|
this.Tags = null;
|
|
1579
1703
|
|
|
1704
|
+
/**
|
|
1705
|
+
* List of authorized accounts' VPCs associated with the private domain
|
|
1706
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
1707
|
+
* @type {Array.<AccountVpcInfoOutput> || null}
|
|
1708
|
+
*/
|
|
1709
|
+
this.AccountVpcSet = null;
|
|
1710
|
+
|
|
1580
1711
|
}
|
|
1581
1712
|
|
|
1582
1713
|
/**
|
|
@@ -1614,6 +1745,15 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1614
1745
|
}
|
|
1615
1746
|
}
|
|
1616
1747
|
|
|
1748
|
+
if (params.AccountVpcSet) {
|
|
1749
|
+
this.AccountVpcSet = new Array();
|
|
1750
|
+
for (let z in params.AccountVpcSet) {
|
|
1751
|
+
let obj = new AccountVpcInfoOutput();
|
|
1752
|
+
obj.deserialize(params.AccountVpcSet[z]);
|
|
1753
|
+
this.AccountVpcSet.push(obj);
|
|
1754
|
+
}
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1617
1757
|
}
|
|
1618
1758
|
}
|
|
1619
1759
|
|
|
@@ -1854,6 +1994,12 @@ class ModifyPrivateZoneVpcResponse extends AbstractModel {
|
|
|
1854
1994
|
*/
|
|
1855
1995
|
this.VpcSet = null;
|
|
1856
1996
|
|
|
1997
|
+
/**
|
|
1998
|
+
* List of authorized accounts' VPCs associated with the private domain
|
|
1999
|
+
* @type {Array.<AccountVpcInfoOutput> || null}
|
|
2000
|
+
*/
|
|
2001
|
+
this.AccountVpcSet = null;
|
|
2002
|
+
|
|
1857
2003
|
/**
|
|
1858
2004
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1859
2005
|
* @type {string || null}
|
|
@@ -1879,6 +2025,15 @@ class ModifyPrivateZoneVpcResponse extends AbstractModel {
|
|
|
1879
2025
|
this.VpcSet.push(obj);
|
|
1880
2026
|
}
|
|
1881
2027
|
}
|
|
2028
|
+
|
|
2029
|
+
if (params.AccountVpcSet) {
|
|
2030
|
+
this.AccountVpcSet = new Array();
|
|
2031
|
+
for (let z in params.AccountVpcSet) {
|
|
2032
|
+
let obj = new AccountVpcInfoOutput();
|
|
2033
|
+
obj.deserialize(params.AccountVpcSet[z]);
|
|
2034
|
+
this.AccountVpcSet.push(obj);
|
|
2035
|
+
}
|
|
2036
|
+
}
|
|
1882
2037
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1883
2038
|
|
|
1884
2039
|
}
|
|
@@ -1888,6 +2043,7 @@ module.exports = {
|
|
|
1888
2043
|
ModifyPrivateZoneVpcRequest: ModifyPrivateZoneVpcRequest,
|
|
1889
2044
|
DescribeAuditLogResponse: DescribeAuditLogResponse,
|
|
1890
2045
|
DescribePrivateZoneRecordListRequest: DescribePrivateZoneRecordListRequest,
|
|
2046
|
+
AccountVpcInfoOutput: AccountVpcInfoOutput,
|
|
1891
2047
|
DescribePrivateZoneRequest: DescribePrivateZoneRequest,
|
|
1892
2048
|
DatePoint: DatePoint,
|
|
1893
2049
|
PrivateZoneRecord: PrivateZoneRecord,
|
|
@@ -1899,6 +2055,7 @@ module.exports = {
|
|
|
1899
2055
|
ModifyPrivateZoneRequest: ModifyPrivateZoneRequest,
|
|
1900
2056
|
TagInfo: TagInfo,
|
|
1901
2057
|
CreatePrivateZoneRequest: CreatePrivateZoneRequest,
|
|
2058
|
+
AccountVpcInfo: AccountVpcInfo,
|
|
1902
2059
|
ModifyPrivateZoneResponse: ModifyPrivateZoneResponse,
|
|
1903
2060
|
CreatePrivateZoneResponse: CreatePrivateZoneResponse,
|
|
1904
2061
|
SubscribePrivateZoneServiceRequest: SubscribePrivateZoneServiceRequest,
|
|
@@ -19,6 +19,7 @@ const AbstractClient = require('../../common/abstract_client')
|
|
|
19
19
|
const ModifyPrivateZoneVpcRequest = models.ModifyPrivateZoneVpcRequest;
|
|
20
20
|
const DescribeAuditLogResponse = models.DescribeAuditLogResponse;
|
|
21
21
|
const DescribePrivateZoneRecordListRequest = models.DescribePrivateZoneRecordListRequest;
|
|
22
|
+
const AccountVpcInfoOutput = models.AccountVpcInfoOutput;
|
|
22
23
|
const DescribePrivateZoneRequest = models.DescribePrivateZoneRequest;
|
|
23
24
|
const DatePoint = models.DatePoint;
|
|
24
25
|
const PrivateZoneRecord = models.PrivateZoneRecord;
|
|
@@ -30,6 +31,7 @@ const DescribeRequestDataResponse = models.DescribeRequestDataResponse;
|
|
|
30
31
|
const ModifyPrivateZoneRequest = models.ModifyPrivateZoneRequest;
|
|
31
32
|
const TagInfo = models.TagInfo;
|
|
32
33
|
const CreatePrivateZoneRequest = models.CreatePrivateZoneRequest;
|
|
34
|
+
const AccountVpcInfo = models.AccountVpcInfo;
|
|
33
35
|
const ModifyPrivateZoneResponse = models.ModifyPrivateZoneResponse;
|
|
34
36
|
const CreatePrivateZoneResponse = models.CreatePrivateZoneResponse;
|
|
35
37
|
const SubscribePrivateZoneServiceRequest = models.SubscribePrivateZoneServiceRequest;
|