tencentcloud-sdk-nodejs-intl-en 3.0.1053 → 3.0.1055
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/apigateway/v20180808/models.js +3 -3
- package/tencentcloud/ciam/v20220331/models.js +22 -7
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/ocr/v20181119/models.js +1 -1
- package/tencentcloud/teo/v20220901/models.js +1578 -410
- package/tencentcloud/teo/v20220901/teo_client.js +88 -13
- package/tencentcloud/tke/v20180525/models.js +9636 -7367
- package/tencentcloud/tke/v20180525/tke_client.js +472 -266
- package/tencentcloud/tmt/v20180321/models.js +30 -18
- package/tencentcloud/tmt/v20180321/tmt_client.js +0 -1
package/package.json
CHANGED
|
@@ -321,7 +321,7 @@ class DeleteAPIDocRequest extends AbstractModel {
|
|
|
321
321
|
super();
|
|
322
322
|
|
|
323
323
|
/**
|
|
324
|
-
* API document ID
|
|
324
|
+
* API document ID.
|
|
325
325
|
* @type {string || null}
|
|
326
326
|
*/
|
|
327
327
|
this.ApiDocId = null;
|
|
@@ -11692,7 +11692,7 @@ class AttachPluginRequest extends AbstractModel {
|
|
|
11692
11692
|
this.PluginId = null;
|
|
11693
11693
|
|
|
11694
11694
|
/**
|
|
11695
|
-
* ID of the service to be operated
|
|
11695
|
+
* ID of the service to be operated.
|
|
11696
11696
|
* @type {string || null}
|
|
11697
11697
|
*/
|
|
11698
11698
|
this.ServiceId = null;
|
|
@@ -14010,7 +14010,7 @@ class DeleteAPIDocResponse extends AbstractModel {
|
|
|
14010
14010
|
super();
|
|
14011
14011
|
|
|
14012
14012
|
/**
|
|
14013
|
-
* Whether the operation succeeded
|
|
14013
|
+
* Whether the operation succeeded.
|
|
14014
14014
|
* @type {boolean || null}
|
|
14015
14015
|
*/
|
|
14016
14016
|
this.Result = null;
|
|
@@ -441,13 +441,13 @@ class DeleteUsersRequest extends AbstractModel {
|
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
/**
|
|
444
|
-
*
|
|
445
|
-
1.
|
|
446
|
-
2. For
|
|
447
|
-
3.
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
444
|
+
* Import user information.
|
|
445
|
+
1. At least one of the following nine attributes should be included during the import: UserName, PhoneNumber, Email, WeChatOpenId, WeChatUnionId, AlipayUserId, QQOpenId, QQUnionId, and WeComUserId. Each of these attributes should adhere to the regular expression rules for initial custom attributes. The regular expressions for UserName, PhoneNumber, and Email can be queried in Custom Attributes on the console.
|
|
446
|
+
2. For the import of passwords, plaintext import, MD5 ciphertext import, SHA1 ciphertext import, and BCRYPT ciphertext import are supported. The import method should be specified in the PasswordEncryptTypeEnum field.
|
|
447
|
+
3. IdentityVerified and IdentityVerificationMethod can be imported.
|
|
448
|
+
When IdentityVerified is true, IdentityVerificationMethod should be entered.
|
|
449
|
+
When IdentityVerificationMethod is nameAndIdCard, Name and ResidentIdentityCard should be entered.
|
|
450
|
+
When IdentityVerificationMethod is nameIdCardAndPhone, Name, PhoneNumber, and ResidentIdentityCard should be entered.
|
|
451
451
|
* @class
|
|
452
452
|
*/
|
|
453
453
|
class ImportUser extends AbstractModel {
|
|
@@ -526,6 +526,12 @@ class ImportUser extends AbstractModel {
|
|
|
526
526
|
*/
|
|
527
527
|
this.AlipayUserId = null;
|
|
528
528
|
|
|
529
|
+
/**
|
|
530
|
+
* WeCom user ID.
|
|
531
|
+
* @type {string || null}
|
|
532
|
+
*/
|
|
533
|
+
this.WeComUserId = null;
|
|
534
|
+
|
|
529
535
|
/**
|
|
530
536
|
* Description
|
|
531
537
|
* @type {string || null}
|
|
@@ -661,6 +667,7 @@ class ImportUser extends AbstractModel {
|
|
|
661
667
|
this.WechatOpenId = 'WechatOpenId' in params ? params.WechatOpenId : null;
|
|
662
668
|
this.WechatUnionId = 'WechatUnionId' in params ? params.WechatUnionId : null;
|
|
663
669
|
this.AlipayUserId = 'AlipayUserId' in params ? params.AlipayUserId : null;
|
|
670
|
+
this.WeComUserId = 'WeComUserId' in params ? params.WeComUserId : null;
|
|
664
671
|
this.Description = 'Description' in params ? params.Description : null;
|
|
665
672
|
this.Birthdate = 'Birthdate' in params ? params.Birthdate : null;
|
|
666
673
|
this.Name = 'Name' in params ? params.Name : null;
|
|
@@ -1368,6 +1375,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1368
1375
|
*/
|
|
1369
1376
|
this.AlipayUserId = null;
|
|
1370
1377
|
|
|
1378
|
+
/**
|
|
1379
|
+
* WeCom user ID.
|
|
1380
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1381
|
+
* @type {string || null}
|
|
1382
|
+
*/
|
|
1383
|
+
this.WeComUserId = null;
|
|
1384
|
+
|
|
1371
1385
|
/**
|
|
1372
1386
|
* Description
|
|
1373
1387
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
@@ -1552,6 +1566,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1552
1566
|
this.WechatOpenId = 'WechatOpenId' in params ? params.WechatOpenId : null;
|
|
1553
1567
|
this.WechatUnionId = 'WechatUnionId' in params ? params.WechatUnionId : null;
|
|
1554
1568
|
this.AlipayUserId = 'AlipayUserId' in params ? params.AlipayUserId : null;
|
|
1569
|
+
this.WeComUserId = 'WeComUserId' in params ? params.WeComUserId : null;
|
|
1555
1570
|
this.Description = 'Description' in params ? params.Description : null;
|
|
1556
1571
|
this.Name = 'Name' in params ? params.Name : null;
|
|
1557
1572
|
this.Locale = 'Locale' in params ? params.Locale : null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1055";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -6358,7 +6358,7 @@ One of ImageUrl and ImageBase64 of the image must be provided. If both are provi
|
|
|
6358
6358
|
|
|
6359
6359
|
/**
|
|
6360
6360
|
* The following optional fields are of string type and are empty by default:
|
|
6361
|
-
RetImage: whether to return the processed image (base64 encrypted string); the value and meaning of RetImage are as follows: 1.
|
|
6361
|
+
RetImage: whether to return the processed image (base64 encrypted string); the value and meaning of RetImage are as follows: 1.portrait Return portrait image data 2."" Do not return image data SDK setting method reference: Config = Json.stringify({"RetImage":"portrait"}) API 3.0 Explorer setting method reference: Config = {"RetImage":"portrait" }
|
|
6362
6362
|
* @type {string || null}
|
|
6363
6363
|
*/
|
|
6364
6364
|
this.Config = null;
|