tencentcloud-sdk-nodejs-intl-en 3.0.876 → 3.0.877
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
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.877";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -45,6 +45,7 @@ const DescribeCustomerUinData = models.DescribeCustomerUinData;
|
|
|
45
45
|
const DescribeCustomerUinResponse = models.DescribeCustomerUinResponse;
|
|
46
46
|
const DescribeBillSummaryByRegionRequest = models.DescribeBillSummaryByRegionRequest;
|
|
47
47
|
const QueryVoucherPoolResponse = models.QueryVoucherPoolResponse;
|
|
48
|
+
const TagInfo = models.TagInfo;
|
|
48
49
|
const DescribeCustomerBillDetailRequest = models.DescribeCustomerBillDetailRequest;
|
|
49
50
|
const DescribeCustomerBillDetailResponse = models.DescribeCustomerBillDetailResponse;
|
|
50
51
|
const QueryAccountVerificationStatusRequest = models.QueryAccountVerificationStatusRequest;
|
|
@@ -119,11 +120,7 @@ class IntlpartnersmgtClient extends AbstractClient {
|
|
|
119
120
|
}
|
|
120
121
|
|
|
121
122
|
/**
|
|
122
|
-
* This API is used to create a Tencent Cloud account
|
|
123
|
-
|
|
124
|
-
Notes:<br>
|
|
125
|
-
1. The partner should verify the entered email address and mobile number for creating a Tencent Cloud account.<br>
|
|
126
|
-
2. The customer needs to complete personal information after the first login.
|
|
123
|
+
* This API is used to create Tencent Cloud customer accounts for first-level resellers/second-level resellers. After the account is created, it will be automatically bound to the partner account.Note:1. Create a Tencent Cloud account. The entered email address and mobile phone number need to be verified by the partner for validity.2. Customers need to add personal information when logging in for the first time.3. This interface needs to be applied for allowlist usage. Please contact the channel manager to initiate the application process.
|
|
127
124
|
* @param {CreateAccountRequest} req
|
|
128
125
|
* @param {function(string, CreateAccountResponse):void} cb
|
|
129
126
|
* @public
|
|
@@ -131,7 +131,7 @@ class QueryVoucherListByUinRequest extends AbstractModel {
|
|
|
131
131
|
super();
|
|
132
132
|
|
|
133
133
|
/**
|
|
134
|
-
*
|
|
134
|
+
* Customer UIN list. Array length value: 1-20.
|
|
135
135
|
* @type {Array.<number> || null}
|
|
136
136
|
*/
|
|
137
137
|
this.ClientUins = null;
|
|
@@ -1082,6 +1082,12 @@ Note: The return value may be null, indicating that no valid data can be obtaine
|
|
|
1082
1082
|
*/
|
|
1083
1083
|
this.Id = null;
|
|
1084
1084
|
|
|
1085
|
+
/**
|
|
1086
|
+
* Tag informationNote: This field may return null, indicating that no valid values can be obtained.
|
|
1087
|
+
* @type {Array.<TagInfo> || null}
|
|
1088
|
+
*/
|
|
1089
|
+
this.Tags = null;
|
|
1090
|
+
|
|
1085
1091
|
}
|
|
1086
1092
|
|
|
1087
1093
|
/**
|
|
@@ -1120,6 +1126,15 @@ Note: The return value may be null, indicating that no valid data can be obtaine
|
|
|
1120
1126
|
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
1121
1127
|
this.Id = 'Id' in params ? params.Id : null;
|
|
1122
1128
|
|
|
1129
|
+
if (params.Tags) {
|
|
1130
|
+
this.Tags = new Array();
|
|
1131
|
+
for (let z in params.Tags) {
|
|
1132
|
+
let obj = new TagInfo();
|
|
1133
|
+
obj.deserialize(params.Tags[z]);
|
|
1134
|
+
this.Tags.push(obj);
|
|
1135
|
+
}
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1123
1138
|
}
|
|
1124
1139
|
}
|
|
1125
1140
|
|
|
@@ -1489,6 +1504,41 @@ class QueryVoucherPoolResponse extends AbstractModel {
|
|
|
1489
1504
|
}
|
|
1490
1505
|
}
|
|
1491
1506
|
|
|
1507
|
+
/**
|
|
1508
|
+
* Cost Allocation Tags
|
|
1509
|
+
* @class
|
|
1510
|
+
*/
|
|
1511
|
+
class TagInfo extends AbstractModel {
|
|
1512
|
+
constructor(){
|
|
1513
|
+
super();
|
|
1514
|
+
|
|
1515
|
+
/**
|
|
1516
|
+
* Tag keyNote: This field may return null, indicating that no valid values can be obtained.
|
|
1517
|
+
* @type {string || null}
|
|
1518
|
+
*/
|
|
1519
|
+
this.TagKey = null;
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* Tag valueNote: This field may return null, indicating that no valid values can be obtained.
|
|
1523
|
+
* @type {string || null}
|
|
1524
|
+
*/
|
|
1525
|
+
this.TagValue = null;
|
|
1526
|
+
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
/**
|
|
1530
|
+
* @private
|
|
1531
|
+
*/
|
|
1532
|
+
deserialize(params) {
|
|
1533
|
+
if (!params) {
|
|
1534
|
+
return;
|
|
1535
|
+
}
|
|
1536
|
+
this.TagKey = 'TagKey' in params ? params.TagKey : null;
|
|
1537
|
+
this.TagValue = 'TagValue' in params ? params.TagValue : null;
|
|
1538
|
+
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1492
1542
|
/**
|
|
1493
1543
|
* DescribeCustomerBillDetail request structure.
|
|
1494
1544
|
* @class
|
|
@@ -2807,7 +2857,7 @@ class QueryVoucherAmountByUinRequest extends AbstractModel {
|
|
|
2807
2857
|
super();
|
|
2808
2858
|
|
|
2809
2859
|
/**
|
|
2810
|
-
*
|
|
2860
|
+
* Customer UIN list. Array length value: 1-20.
|
|
2811
2861
|
* @type {Array.<number> || null}
|
|
2812
2862
|
*/
|
|
2813
2863
|
this.ClientUins = null;
|
|
@@ -3152,6 +3202,7 @@ module.exports = {
|
|
|
3152
3202
|
DescribeCustomerUinResponse: DescribeCustomerUinResponse,
|
|
3153
3203
|
DescribeBillSummaryByRegionRequest: DescribeBillSummaryByRegionRequest,
|
|
3154
3204
|
QueryVoucherPoolResponse: QueryVoucherPoolResponse,
|
|
3205
|
+
TagInfo: TagInfo,
|
|
3155
3206
|
DescribeCustomerBillDetailRequest: DescribeCustomerBillDetailRequest,
|
|
3156
3207
|
DescribeCustomerBillDetailResponse: DescribeCustomerBillDetailResponse,
|
|
3157
3208
|
QueryAccountVerificationStatusRequest: QueryAccountVerificationStatusRequest,
|