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
|
@@ -1292,6 +1292,14 @@ class DescribeSmsSignListRequest extends AbstractModel {
|
|
|
1292
1292
|
constructor(){
|
|
1293
1293
|
super();
|
|
1294
1294
|
|
|
1295
|
+
/**
|
|
1296
|
+
* Whether it is Global SMS:
|
|
1297
|
+
0: Mainland China SMS.
|
|
1298
|
+
1: Global SMS.
|
|
1299
|
+
* @type {number || null}
|
|
1300
|
+
*/
|
|
1301
|
+
this.International = null;
|
|
1302
|
+
|
|
1295
1303
|
/**
|
|
1296
1304
|
* Signature ID array.
|
|
1297
1305
|
Note: the maximum length of the array is 100 by default.
|
|
@@ -1300,12 +1308,18 @@ Note: the maximum length of the array is 100 by default.
|
|
|
1300
1308
|
this.SignIdSet = null;
|
|
1301
1309
|
|
|
1302
1310
|
/**
|
|
1303
|
-
*
|
|
1304
|
-
|
|
1305
|
-
1: Global SMS.
|
|
1311
|
+
* Upper limit. Maximum value: 100.
|
|
1312
|
+
Note: it is 10 by default and is enabled when SignIdSet is empty.
|
|
1306
1313
|
* @type {number || null}
|
|
1307
1314
|
*/
|
|
1308
|
-
this.
|
|
1315
|
+
this.Limit = null;
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* Offset.
|
|
1319
|
+
Note: it is 0 by default and is enabled when SignIdSet is empty.
|
|
1320
|
+
* @type {number || null}
|
|
1321
|
+
*/
|
|
1322
|
+
this.Offset = null;
|
|
1309
1323
|
|
|
1310
1324
|
}
|
|
1311
1325
|
|
|
@@ -1316,8 +1330,10 @@ Note: the maximum length of the array is 100 by default.
|
|
|
1316
1330
|
if (!params) {
|
|
1317
1331
|
return;
|
|
1318
1332
|
}
|
|
1319
|
-
this.SignIdSet = 'SignIdSet' in params ? params.SignIdSet : null;
|
|
1320
1333
|
this.International = 'International' in params ? params.International : null;
|
|
1334
|
+
this.SignIdSet = 'SignIdSet' in params ? params.SignIdSet : null;
|
|
1335
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
1336
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
1321
1337
|
|
|
1322
1338
|
}
|
|
1323
1339
|
}
|
|
@@ -219,10 +219,8 @@ Currently, you can also [configure the reply callback](https://intl.cloud.tencen
|
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
223
|
-
|
|
224
|
-
>- You can run this API directly in [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms), which eliminates the signature calculation steps. After it is executed successfully, API Explorer can **automatically generate** SDK code samples.
|
|
225
|
-
|
|
222
|
+
* This API is used to query the status of SMS signatures.
|
|
223
|
+
Note: individual users cannot use this API to query SMS signatures. For more information, please see [Identity Verification Overview](https://intl.cloud.tencent.com/document/product/378/3629?from_cn_redirect=1). If your account identity is individual, you can log in to the [console](https://console.cloud.tencent.com/smsv2) to query SMS signatures.
|
|
226
224
|
* @param {DescribeSmsSignListRequest} req
|
|
227
225
|
* @param {function(string, DescribeSmsSignListResponse):void} cb
|
|
228
226
|
* @public
|
|
@@ -3423,6 +3423,50 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
3423
3423
|
}
|
|
3424
3424
|
}
|
|
3425
3425
|
|
|
3426
|
+
/**
|
|
3427
|
+
* CertificateOrderSubmit request structure.
|
|
3428
|
+
* @class
|
|
3429
|
+
*/
|
|
3430
|
+
class CertificateOrderSubmitRequest extends AbstractModel {
|
|
3431
|
+
constructor(){
|
|
3432
|
+
super();
|
|
3433
|
+
|
|
3434
|
+
/**
|
|
3435
|
+
* Paid SSL certificate ID of materials to be submitted.
|
|
3436
|
+
* @type {string || null}
|
|
3437
|
+
*/
|
|
3438
|
+
this.CertId = null;
|
|
3439
|
+
|
|
3440
|
+
/**
|
|
3441
|
+
* Whether to delete automatic DNS validation: 0, do not delete; 1, delete; default is do not delete.
|
|
3442
|
+
* @type {number || null}
|
|
3443
|
+
*/
|
|
3444
|
+
this.DeleteDnsAutoRecord = null;
|
|
3445
|
+
|
|
3446
|
+
/**
|
|
3447
|
+
* Domain validation method of the certificate
|
|
3448
|
+
DNS: Manually add domain DNS validation. The user needs to manually add the verification value at the DNS service provider.
|
|
3449
|
+
FILE: Manual domain addition via FILE verification. Users are advised to manually add the specified path FILE to the root directory of the domain site for FILE verification. Either http or https access is sufficient. The domain site must be accessible by overseas certificate authorities. For the specific access allowlist, refer to the console page.
|
|
3450
|
+
* @type {string || null}
|
|
3451
|
+
*/
|
|
3452
|
+
this.VerifyType = null;
|
|
3453
|
+
|
|
3454
|
+
}
|
|
3455
|
+
|
|
3456
|
+
/**
|
|
3457
|
+
* @private
|
|
3458
|
+
*/
|
|
3459
|
+
deserialize(params) {
|
|
3460
|
+
if (!params) {
|
|
3461
|
+
return;
|
|
3462
|
+
}
|
|
3463
|
+
this.CertId = 'CertId' in params ? params.CertId : null;
|
|
3464
|
+
this.DeleteDnsAutoRecord = 'DeleteDnsAutoRecord' in params ? params.DeleteDnsAutoRecord : null;
|
|
3465
|
+
this.VerifyType = 'VerifyType' in params ? params.VerifyType : null;
|
|
3466
|
+
|
|
3467
|
+
}
|
|
3468
|
+
}
|
|
3469
|
+
|
|
3426
3470
|
/**
|
|
3427
3471
|
* UpdateCertificateRecordRollback response structure.
|
|
3428
3472
|
* @class
|
|
@@ -7425,6 +7469,34 @@ class ModifyCertificateProjectRequest extends AbstractModel {
|
|
|
7425
7469
|
}
|
|
7426
7470
|
}
|
|
7427
7471
|
|
|
7472
|
+
/**
|
|
7473
|
+
* CertificateInfoSubmit response structure.
|
|
7474
|
+
* @class
|
|
7475
|
+
*/
|
|
7476
|
+
class CertificateInfoSubmitResponse extends AbstractModel {
|
|
7477
|
+
constructor(){
|
|
7478
|
+
super();
|
|
7479
|
+
|
|
7480
|
+
/**
|
|
7481
|
+
* 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.
|
|
7482
|
+
* @type {string || null}
|
|
7483
|
+
*/
|
|
7484
|
+
this.RequestId = null;
|
|
7485
|
+
|
|
7486
|
+
}
|
|
7487
|
+
|
|
7488
|
+
/**
|
|
7489
|
+
* @private
|
|
7490
|
+
*/
|
|
7491
|
+
deserialize(params) {
|
|
7492
|
+
if (!params) {
|
|
7493
|
+
return;
|
|
7494
|
+
}
|
|
7495
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7496
|
+
|
|
7497
|
+
}
|
|
7498
|
+
}
|
|
7499
|
+
|
|
7428
7500
|
/**
|
|
7429
7501
|
* DescribeHostTeoInstanceList response structure.
|
|
7430
7502
|
* @class
|
|
@@ -9224,6 +9296,345 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
9224
9296
|
}
|
|
9225
9297
|
}
|
|
9226
9298
|
|
|
9299
|
+
/**
|
|
9300
|
+
* CertificateInfoSubmit request structure.
|
|
9301
|
+
* @class
|
|
9302
|
+
*/
|
|
9303
|
+
class CertificateInfoSubmitRequest extends AbstractModel {
|
|
9304
|
+
constructor(){
|
|
9305
|
+
super();
|
|
9306
|
+
|
|
9307
|
+
/**
|
|
9308
|
+
* Paid SSL certificate ID of materials to be submitted.
|
|
9309
|
+
* @type {string || null}
|
|
9310
|
+
*/
|
|
9311
|
+
this.CertId = null;
|
|
9312
|
+
|
|
9313
|
+
/**
|
|
9314
|
+
* This field is required. CSR generation method, value is:
|
|
9315
|
+
-online: Tencent Cloud submits the filled parameter information to generate a CSR and private key, and by Tencent Cloud for encrypted storage.
|
|
9316
|
+
-parse: Generate CSR and private key manually, and apply for a certificate by uploading CSR.
|
|
9317
|
+
* @type {string || null}
|
|
9318
|
+
*/
|
|
9319
|
+
this.GenCsrType = null;
|
|
9320
|
+
|
|
9321
|
+
/**
|
|
9322
|
+
* Common name for certificate binding. If an uploaded CSR is used, that domain name must match the common name resolved by the CSR.
|
|
9323
|
+
* @type {string || null}
|
|
9324
|
+
*/
|
|
9325
|
+
this.CertCommonName = null;
|
|
9326
|
+
|
|
9327
|
+
/**
|
|
9328
|
+
* Organization information type. Valid values:
|
|
9329
|
+
1 (Personal): Only DV-type certificates can be set to 1. For personal-type certificates, organization information fields (Org, Admin, Tech) can be omitted.
|
|
9330
|
+
2 (Company): All types of certificates can be set to 2. Pass organization information fields as needed.
|
|
9331
|
+
* @type {number || null}
|
|
9332
|
+
*/
|
|
9333
|
+
this.CompanyType = null;
|
|
9334
|
+
|
|
9335
|
+
/**
|
|
9336
|
+
* Company ID can be viewed in the [Tencent Cloud Console](https://console.cloud.tencent.com/ssl/info). If no company information is found, set this parameter to 0. If company information matching the current order exists, you can view the company ID via [DescribeCompanies](https://www.tencentcloud.com/document/product/400/90375?from_cn_redirect=1). If a company ID is provided, parameters starting with "Org" can be omitted.
|
|
9337
|
+
|
|
9338
|
+
|
|
9339
|
+
* @type {string || null}
|
|
9340
|
+
*/
|
|
9341
|
+
this.CompanyId = null;
|
|
9342
|
+
|
|
9343
|
+
/**
|
|
9344
|
+
* Company document type. Valid values:
|
|
9345
|
+
TYDMZ (unified social credit code): This field is required only for CFCA certificates, not required for other types.
|
|
9346
|
+
OTHERS
|
|
9347
|
+
* @type {string || null}
|
|
9348
|
+
*/
|
|
9349
|
+
this.OrgIdType = null;
|
|
9350
|
+
|
|
9351
|
+
/**
|
|
9352
|
+
* Company identification number, value ranges from...to...
|
|
9353
|
+
TYDMZ (unified social credit code): 11532xxxxxxxx24820
|
|
9354
|
+
|
|
9355
|
+
* @type {string || null}
|
|
9356
|
+
*/
|
|
9357
|
+
this.OrgIdNumber = null;
|
|
9358
|
+
|
|
9359
|
+
/**
|
|
9360
|
+
* Document type of the manager. Valid values:
|
|
9361
|
+
SFZ (ID card): This field is required only for CFCA certs, not required for other types.
|
|
9362
|
+
HZ (passport): This field is required only for CFCA certs and not required for other types.
|
|
9363
|
+
* @type {string || null}
|
|
9364
|
+
*/
|
|
9365
|
+
this.AdminIdType = null;
|
|
9366
|
+
|
|
9367
|
+
/**
|
|
9368
|
+
* ID number of the manager. This field is required only for CFCA certificates, not required for other types. Value ranges from...to...
|
|
9369
|
+
ID card: 110000xxxxxxxx1242
|
|
9370
|
+
HZ (Passport): EFxxxxxxx
|
|
9371
|
+
* @type {string || null}
|
|
9372
|
+
*/
|
|
9373
|
+
this.AdminIdNumber = null;
|
|
9374
|
+
|
|
9375
|
+
/**
|
|
9376
|
+
* Contact person document type. Valid values:
|
|
9377
|
+
SFZ (ID card): This field is required only for CFCA certs, not required for other types.
|
|
9378
|
+
HZ (passport): This field is required only for CFCA certs and not required for other types.
|
|
9379
|
+
* @type {string || null}
|
|
9380
|
+
*/
|
|
9381
|
+
this.TechIdType = null;
|
|
9382
|
+
|
|
9383
|
+
/**
|
|
9384
|
+
* ID number of the contact person. This field is required only for CFCA certs and not required for other types. Value ranges from...to...
|
|
9385
|
+
ID card: 110000xxxxxxxx1242
|
|
9386
|
+
HZ (Passport): EFxxxxxxx
|
|
9387
|
+
* @type {string || null}
|
|
9388
|
+
*/
|
|
9389
|
+
this.TechIdNumber = null;
|
|
9390
|
+
|
|
9391
|
+
/**
|
|
9392
|
+
* Uploaded CSR content.
|
|
9393
|
+
If GenCsrType is parse, this field is required.
|
|
9394
|
+
* @type {string || null}
|
|
9395
|
+
*/
|
|
9396
|
+
this.Csr = null;
|
|
9397
|
+
|
|
9398
|
+
/**
|
|
9399
|
+
* Other domains bound to the certificate. No need to provide for single domain or wildcard certificates. Required for multi-domain names and multiple wildcard certificates.
|
|
9400
|
+
* @type {Array.<string> || null}
|
|
9401
|
+
*/
|
|
9402
|
+
this.DnsNames = null;
|
|
9403
|
+
|
|
9404
|
+
/**
|
|
9405
|
+
* Private key password. Currently used only when generating certs in jks or pfx format; private key certificates in other formats are unencrypted.
|
|
9406
|
+
* @type {string || null}
|
|
9407
|
+
*/
|
|
9408
|
+
this.KeyPass = null;
|
|
9409
|
+
|
|
9410
|
+
/**
|
|
9411
|
+
* Company name. This field is required if CompanyId or ManagerId is not provided.
|
|
9412
|
+
* @type {string || null}
|
|
9413
|
+
*/
|
|
9414
|
+
this.OrgOrganization = null;
|
|
9415
|
+
|
|
9416
|
+
/**
|
|
9417
|
+
* Department name. If not passing CompanyId or ManagerId, this field is required.
|
|
9418
|
+
* @type {string || null}
|
|
9419
|
+
*/
|
|
9420
|
+
this.OrgDivision = null;
|
|
9421
|
+
|
|
9422
|
+
/**
|
|
9423
|
+
* Company detailed address. If not pass CompanyId or ManagerId, this field is required.
|
|
9424
|
+
* @type {string || null}
|
|
9425
|
+
*/
|
|
9426
|
+
this.OrgAddress = null;
|
|
9427
|
+
|
|
9428
|
+
/**
|
|
9429
|
+
* Country/region name, for example China: CN. If not passing CompanyId or ManagerId, this field is required.
|
|
9430
|
+
* @type {string || null}
|
|
9431
|
+
*/
|
|
9432
|
+
this.OrgCountry = null;
|
|
9433
|
+
|
|
9434
|
+
/**
|
|
9435
|
+
* Located city. If not pass CompanyId or ManagerId, this field is required.
|
|
9436
|
+
* @type {string || null}
|
|
9437
|
+
*/
|
|
9438
|
+
this.OrgCity = null;
|
|
9439
|
+
|
|
9440
|
+
/**
|
|
9441
|
+
* Province where the company is located. If not passing CompanyId or ManagerId, this field is required.
|
|
9442
|
+
* @type {string || null}
|
|
9443
|
+
*/
|
|
9444
|
+
this.OrgRegion = null;
|
|
9445
|
+
|
|
9446
|
+
/**
|
|
9447
|
+
* Area code of the company. If not passing CompanyId or ManagerId, this field is required.
|
|
9448
|
+
For example: 021. Pass 86 as the mobile number.
|
|
9449
|
+
* @type {string || null}
|
|
9450
|
+
*/
|
|
9451
|
+
this.OrgPhoneArea = null;
|
|
9452
|
+
|
|
9453
|
+
/**
|
|
9454
|
+
* Company number. If CompanyId or ManagerId is not provided, this field is required.
|
|
9455
|
+
* @type {string || null}
|
|
9456
|
+
*/
|
|
9457
|
+
this.OrgPhoneNumber = null;
|
|
9458
|
+
|
|
9459
|
+
/**
|
|
9460
|
+
* Domain validation method of the certificate
|
|
9461
|
+
DNS: Manually add domain DNS validation. The user needs to manually add the verification value at the DNS service provider.
|
|
9462
|
+
FILE: Manual addition of domain name FILE verification. Users are advised to manually add a specified path FILE in the root directory of the domain site to perform FILE verification. Either http or https passing is sufficient. The domain site must be accessible by overseas certificate authorities. The specific access allowlist is: 64.78.193.238, 216.168.247.9, 216.168.249.9, 54.189.196.217.
|
|
9463
|
+
* @type {string || null}
|
|
9464
|
+
*/
|
|
9465
|
+
this.VerifyType = null;
|
|
9466
|
+
|
|
9467
|
+
/**
|
|
9468
|
+
* Manage name. If not passing ManagerId, this field is required.
|
|
9469
|
+
* @type {string || null}
|
|
9470
|
+
*/
|
|
9471
|
+
this.AdminFirstName = null;
|
|
9472
|
+
|
|
9473
|
+
/**
|
|
9474
|
+
* Manager name. If not, this field is required when ManagerId is not passed.
|
|
9475
|
+
* @type {string || null}
|
|
9476
|
+
*/
|
|
9477
|
+
this.AdminLastName = null;
|
|
9478
|
+
|
|
9479
|
+
/**
|
|
9480
|
+
* Manager mobile number. If not passing ManagerId, this field is required.
|
|
9481
|
+
* @type {string || null}
|
|
9482
|
+
*/
|
|
9483
|
+
this.AdminPhone = null;
|
|
9484
|
+
|
|
9485
|
+
/**
|
|
9486
|
+
* Manager email address. If not passing ManagerId, this field is required.
|
|
9487
|
+
* @type {string || null}
|
|
9488
|
+
*/
|
|
9489
|
+
this.AdminEmail = null;
|
|
9490
|
+
|
|
9491
|
+
/**
|
|
9492
|
+
* Manager position. If not passing ManagerId, this field is required.
|
|
9493
|
+
* @type {string || null}
|
|
9494
|
+
*/
|
|
9495
|
+
this.AdminTitle = null;
|
|
9496
|
+
|
|
9497
|
+
/**
|
|
9498
|
+
* Contact name. If not passing ManagerId, this field is required.
|
|
9499
|
+
* @type {string || null}
|
|
9500
|
+
*/
|
|
9501
|
+
this.TechFirstName = null;
|
|
9502
|
+
|
|
9503
|
+
/**
|
|
9504
|
+
* Last name of the contact. If not, this field is required when ManagerId is not passed.
|
|
9505
|
+
* @type {string || null}
|
|
9506
|
+
*/
|
|
9507
|
+
this.TechLastName = null;
|
|
9508
|
+
|
|
9509
|
+
/**
|
|
9510
|
+
* Contact email address. This field is required when CompanyType is 1.
|
|
9511
|
+
* @type {string || null}
|
|
9512
|
+
*/
|
|
9513
|
+
this.ContactEmail = null;
|
|
9514
|
+
|
|
9515
|
+
/**
|
|
9516
|
+
* Whether to enable auto-renewal: 0, not enabled; 1, enabled; defaults to 0.
|
|
9517
|
+
* @type {number || null}
|
|
9518
|
+
*/
|
|
9519
|
+
this.AutoRenewFlag = null;
|
|
9520
|
+
|
|
9521
|
+
/**
|
|
9522
|
+
* Key pair parameters. RSA supports 2048 and 4096. ECC is only supported for prime256v1. This parameter is required when the CSR generation method is online.
|
|
9523
|
+
|
|
9524
|
+
* @type {string || null}
|
|
9525
|
+
*/
|
|
9526
|
+
this.CsrKeyParameter = null;
|
|
9527
|
+
|
|
9528
|
+
/**
|
|
9529
|
+
* Encryption algorithm, value is ECC or RSA, defaults to RSA. This parameter is required when CSR generation method is online.
|
|
9530
|
+
* @type {string || null}
|
|
9531
|
+
*/
|
|
9532
|
+
this.CsrEncryptAlgo = null;
|
|
9533
|
+
|
|
9534
|
+
/**
|
|
9535
|
+
* Manager ID can be viewed in the [Tencent Cloud Console](https://console.cloud.tencent.com/ssl/info). If no administrator information is found, pass 0 for this parameter. If administrator information exists that meets the current order, the manager ID can be selected based on [DescribeManagers](https://www.tencentcloud.com/document/product/400/52672?from_cn_redirect=1). If the manager ID is passed, parameters beginning with Org, Admin, or Tech can be omitted. The manager ID includes company information.
|
|
9536
|
+
|
|
9537
|
+
* @type {string || null}
|
|
9538
|
+
*/
|
|
9539
|
+
this.ManagerId = null;
|
|
9540
|
+
|
|
9541
|
+
/**
|
|
9542
|
+
* Contact phone. If not passing ManagerId, this field is required.
|
|
9543
|
+
* @type {string || null}
|
|
9544
|
+
*/
|
|
9545
|
+
this.TechPhone = null;
|
|
9546
|
+
|
|
9547
|
+
/**
|
|
9548
|
+
* contact email
|
|
9549
|
+
* @type {string || null}
|
|
9550
|
+
*/
|
|
9551
|
+
this.TechEmail = null;
|
|
9552
|
+
|
|
9553
|
+
/**
|
|
9554
|
+
* Contact person position. If not passing ManagerId, this field is required.
|
|
9555
|
+
* @type {string || null}
|
|
9556
|
+
*/
|
|
9557
|
+
this.TechTitle = null;
|
|
9558
|
+
|
|
9559
|
+
/**
|
|
9560
|
+
* Certificate type
|
|
9561
|
+
* @type {number || null}
|
|
9562
|
+
*/
|
|
9563
|
+
this.Type = null;
|
|
9564
|
+
|
|
9565
|
+
/**
|
|
9566
|
+
* Valid only for Dnspod series certs. ca organization kind can be sectigo and digicert.
|
|
9567
|
+
* @type {string || null}
|
|
9568
|
+
*/
|
|
9569
|
+
this.CaType = null;
|
|
9570
|
+
|
|
9571
|
+
/**
|
|
9572
|
+
* signature algorithm
|
|
9573
|
+
* @type {string || null}
|
|
9574
|
+
*/
|
|
9575
|
+
this.SignAlgo = null;
|
|
9576
|
+
|
|
9577
|
+
/**
|
|
9578
|
+
* Whether to use intersect root certificate
|
|
9579
|
+
* @type {boolean || null}
|
|
9580
|
+
*/
|
|
9581
|
+
this.UseCrossSignRoot = null;
|
|
9582
|
+
|
|
9583
|
+
}
|
|
9584
|
+
|
|
9585
|
+
/**
|
|
9586
|
+
* @private
|
|
9587
|
+
*/
|
|
9588
|
+
deserialize(params) {
|
|
9589
|
+
if (!params) {
|
|
9590
|
+
return;
|
|
9591
|
+
}
|
|
9592
|
+
this.CertId = 'CertId' in params ? params.CertId : null;
|
|
9593
|
+
this.GenCsrType = 'GenCsrType' in params ? params.GenCsrType : null;
|
|
9594
|
+
this.CertCommonName = 'CertCommonName' in params ? params.CertCommonName : null;
|
|
9595
|
+
this.CompanyType = 'CompanyType' in params ? params.CompanyType : null;
|
|
9596
|
+
this.CompanyId = 'CompanyId' in params ? params.CompanyId : null;
|
|
9597
|
+
this.OrgIdType = 'OrgIdType' in params ? params.OrgIdType : null;
|
|
9598
|
+
this.OrgIdNumber = 'OrgIdNumber' in params ? params.OrgIdNumber : null;
|
|
9599
|
+
this.AdminIdType = 'AdminIdType' in params ? params.AdminIdType : null;
|
|
9600
|
+
this.AdminIdNumber = 'AdminIdNumber' in params ? params.AdminIdNumber : null;
|
|
9601
|
+
this.TechIdType = 'TechIdType' in params ? params.TechIdType : null;
|
|
9602
|
+
this.TechIdNumber = 'TechIdNumber' in params ? params.TechIdNumber : null;
|
|
9603
|
+
this.Csr = 'Csr' in params ? params.Csr : null;
|
|
9604
|
+
this.DnsNames = 'DnsNames' in params ? params.DnsNames : null;
|
|
9605
|
+
this.KeyPass = 'KeyPass' in params ? params.KeyPass : null;
|
|
9606
|
+
this.OrgOrganization = 'OrgOrganization' in params ? params.OrgOrganization : null;
|
|
9607
|
+
this.OrgDivision = 'OrgDivision' in params ? params.OrgDivision : null;
|
|
9608
|
+
this.OrgAddress = 'OrgAddress' in params ? params.OrgAddress : null;
|
|
9609
|
+
this.OrgCountry = 'OrgCountry' in params ? params.OrgCountry : null;
|
|
9610
|
+
this.OrgCity = 'OrgCity' in params ? params.OrgCity : null;
|
|
9611
|
+
this.OrgRegion = 'OrgRegion' in params ? params.OrgRegion : null;
|
|
9612
|
+
this.OrgPhoneArea = 'OrgPhoneArea' in params ? params.OrgPhoneArea : null;
|
|
9613
|
+
this.OrgPhoneNumber = 'OrgPhoneNumber' in params ? params.OrgPhoneNumber : null;
|
|
9614
|
+
this.VerifyType = 'VerifyType' in params ? params.VerifyType : null;
|
|
9615
|
+
this.AdminFirstName = 'AdminFirstName' in params ? params.AdminFirstName : null;
|
|
9616
|
+
this.AdminLastName = 'AdminLastName' in params ? params.AdminLastName : null;
|
|
9617
|
+
this.AdminPhone = 'AdminPhone' in params ? params.AdminPhone : null;
|
|
9618
|
+
this.AdminEmail = 'AdminEmail' in params ? params.AdminEmail : null;
|
|
9619
|
+
this.AdminTitle = 'AdminTitle' in params ? params.AdminTitle : null;
|
|
9620
|
+
this.TechFirstName = 'TechFirstName' in params ? params.TechFirstName : null;
|
|
9621
|
+
this.TechLastName = 'TechLastName' in params ? params.TechLastName : null;
|
|
9622
|
+
this.ContactEmail = 'ContactEmail' in params ? params.ContactEmail : null;
|
|
9623
|
+
this.AutoRenewFlag = 'AutoRenewFlag' in params ? params.AutoRenewFlag : null;
|
|
9624
|
+
this.CsrKeyParameter = 'CsrKeyParameter' in params ? params.CsrKeyParameter : null;
|
|
9625
|
+
this.CsrEncryptAlgo = 'CsrEncryptAlgo' in params ? params.CsrEncryptAlgo : null;
|
|
9626
|
+
this.ManagerId = 'ManagerId' in params ? params.ManagerId : null;
|
|
9627
|
+
this.TechPhone = 'TechPhone' in params ? params.TechPhone : null;
|
|
9628
|
+
this.TechEmail = 'TechEmail' in params ? params.TechEmail : null;
|
|
9629
|
+
this.TechTitle = 'TechTitle' in params ? params.TechTitle : null;
|
|
9630
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
9631
|
+
this.CaType = 'CaType' in params ? params.CaType : null;
|
|
9632
|
+
this.SignAlgo = 'SignAlgo' in params ? params.SignAlgo : null;
|
|
9633
|
+
this.UseCrossSignRoot = 'UseCrossSignRoot' in params ? params.UseCrossSignRoot : null;
|
|
9634
|
+
|
|
9635
|
+
}
|
|
9636
|
+
}
|
|
9637
|
+
|
|
9227
9638
|
/**
|
|
9228
9639
|
* Details of CLB instances - data structure of an async task for querying associated cloud resources
|
|
9229
9640
|
* @class
|
|
@@ -9309,6 +9720,55 @@ class UpdateCertificateRecordRetryResponse extends AbstractModel {
|
|
|
9309
9720
|
}
|
|
9310
9721
|
}
|
|
9311
9722
|
|
|
9723
|
+
/**
|
|
9724
|
+
* CertificateOrderSubmit response structure.
|
|
9725
|
+
* @class
|
|
9726
|
+
*/
|
|
9727
|
+
class CertificateOrderSubmitResponse extends AbstractModel {
|
|
9728
|
+
constructor(){
|
|
9729
|
+
super();
|
|
9730
|
+
|
|
9731
|
+
/**
|
|
9732
|
+
* Order number from the certificate authority.
|
|
9733
|
+
* @type {string || null}
|
|
9734
|
+
*/
|
|
9735
|
+
this.OrderId = null;
|
|
9736
|
+
|
|
9737
|
+
/**
|
|
9738
|
+
* Certificate status. 0=Under review, 1=Approved, 2=Review failed, 3=Expired, 4=DNS record added, 5=Enterprise certificate, pending submission, 6=Order cancellation in progress, 7=Canceled, 8=Documents submitted, pending upload of confirmation letter, 9=Certificate revocation in progress, 10=Revoked, 11=Reissue in progress, 12=Pending upload of revocation confirmation letter, 13=Free certificate pending document submission.
|
|
9739
|
+
* @type {number || null}
|
|
9740
|
+
*/
|
|
9741
|
+
this.Status = null;
|
|
9742
|
+
|
|
9743
|
+
/**
|
|
9744
|
+
* Whether prereview is required or not
|
|
9745
|
+
* @type {boolean || null}
|
|
9746
|
+
*/
|
|
9747
|
+
this.IsAudited = null;
|
|
9748
|
+
|
|
9749
|
+
/**
|
|
9750
|
+
* 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.
|
|
9751
|
+
* @type {string || null}
|
|
9752
|
+
*/
|
|
9753
|
+
this.RequestId = null;
|
|
9754
|
+
|
|
9755
|
+
}
|
|
9756
|
+
|
|
9757
|
+
/**
|
|
9758
|
+
* @private
|
|
9759
|
+
*/
|
|
9760
|
+
deserialize(params) {
|
|
9761
|
+
if (!params) {
|
|
9762
|
+
return;
|
|
9763
|
+
}
|
|
9764
|
+
this.OrderId = 'OrderId' in params ? params.OrderId : null;
|
|
9765
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
9766
|
+
this.IsAudited = 'IsAudited' in params ? params.IsAudited : null;
|
|
9767
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9768
|
+
|
|
9769
|
+
}
|
|
9770
|
+
}
|
|
9771
|
+
|
|
9312
9772
|
/**
|
|
9313
9773
|
* List of TCB services subject to static hosting
|
|
9314
9774
|
* @class
|
|
@@ -9688,6 +10148,7 @@ module.exports = {
|
|
|
9688
10148
|
ResourceTypeRegions: ResourceTypeRegions,
|
|
9689
10149
|
UpdateCertificateRecordRollbackRequest: UpdateCertificateRecordRollbackRequest,
|
|
9690
10150
|
DescribeHostUpdateRecordResponse: DescribeHostUpdateRecordResponse,
|
|
10151
|
+
CertificateOrderSubmitRequest: CertificateOrderSubmitRequest,
|
|
9691
10152
|
UpdateCertificateRecordRollbackResponse: UpdateCertificateRecordRollbackResponse,
|
|
9692
10153
|
DescribeCertificateBindResourceTaskDetailResponse: DescribeCertificateBindResourceTaskDetailResponse,
|
|
9693
10154
|
DvAuthDetail: DvAuthDetail,
|
|
@@ -9745,6 +10206,7 @@ module.exports = {
|
|
|
9745
10206
|
DeleteCertificateRequest: DeleteCertificateRequest,
|
|
9746
10207
|
DescribeCertificateOperateLogsResponse: DescribeCertificateOperateLogsResponse,
|
|
9747
10208
|
ModifyCertificateProjectRequest: ModifyCertificateProjectRequest,
|
|
10209
|
+
CertificateInfoSubmitResponse: CertificateInfoSubmitResponse,
|
|
9748
10210
|
DescribeHostTeoInstanceListResponse: DescribeHostTeoInstanceListResponse,
|
|
9749
10211
|
UploadUpdateRecordInfo: UploadUpdateRecordInfo,
|
|
9750
10212
|
CancelAuditCertificateRequest: CancelAuditCertificateRequest,
|
|
@@ -9768,8 +10230,10 @@ module.exports = {
|
|
|
9768
10230
|
UploadConfirmLetterRequest: UploadConfirmLetterRequest,
|
|
9769
10231
|
SubmitCertificateInformationResponse: SubmitCertificateInformationResponse,
|
|
9770
10232
|
DescribeCSRResponse: DescribeCSRResponse,
|
|
10233
|
+
CertificateInfoSubmitRequest: CertificateInfoSubmitRequest,
|
|
9771
10234
|
ClbInstanceList: ClbInstanceList,
|
|
9772
10235
|
UpdateCertificateRecordRetryResponse: UpdateCertificateRecordRetryResponse,
|
|
10236
|
+
CertificateOrderSubmitResponse: CertificateOrderSubmitResponse,
|
|
9773
10237
|
TCBHostService: TCBHostService,
|
|
9774
10238
|
DescribeHostUploadUpdateRecordDetailRequest: DescribeHostUploadUpdateRecordDetailRequest,
|
|
9775
10239
|
TkeIngressDetail: TkeIngressDetail,
|
|
@@ -69,6 +69,7 @@ const VodInstanceDetail = models.VodInstanceDetail;
|
|
|
69
69
|
const ResourceTypeRegions = models.ResourceTypeRegions;
|
|
70
70
|
const UpdateCertificateRecordRollbackRequest = models.UpdateCertificateRecordRollbackRequest;
|
|
71
71
|
const DescribeHostUpdateRecordResponse = models.DescribeHostUpdateRecordResponse;
|
|
72
|
+
const CertificateOrderSubmitRequest = models.CertificateOrderSubmitRequest;
|
|
72
73
|
const UpdateCertificateRecordRollbackResponse = models.UpdateCertificateRecordRollbackResponse;
|
|
73
74
|
const DescribeCertificateBindResourceTaskDetailResponse = models.DescribeCertificateBindResourceTaskDetailResponse;
|
|
74
75
|
const DvAuthDetail = models.DvAuthDetail;
|
|
@@ -126,6 +127,7 @@ const LiveInstanceList = models.LiveInstanceList;
|
|
|
126
127
|
const DeleteCertificateRequest = models.DeleteCertificateRequest;
|
|
127
128
|
const DescribeCertificateOperateLogsResponse = models.DescribeCertificateOperateLogsResponse;
|
|
128
129
|
const ModifyCertificateProjectRequest = models.ModifyCertificateProjectRequest;
|
|
130
|
+
const CertificateInfoSubmitResponse = models.CertificateInfoSubmitResponse;
|
|
129
131
|
const DescribeHostTeoInstanceListResponse = models.DescribeHostTeoInstanceListResponse;
|
|
130
132
|
const UploadUpdateRecordInfo = models.UploadUpdateRecordInfo;
|
|
131
133
|
const CancelAuditCertificateRequest = models.CancelAuditCertificateRequest;
|
|
@@ -149,8 +151,10 @@ const TkeInstanceDetail = models.TkeInstanceDetail;
|
|
|
149
151
|
const UploadConfirmLetterRequest = models.UploadConfirmLetterRequest;
|
|
150
152
|
const SubmitCertificateInformationResponse = models.SubmitCertificateInformationResponse;
|
|
151
153
|
const DescribeCSRResponse = models.DescribeCSRResponse;
|
|
154
|
+
const CertificateInfoSubmitRequest = models.CertificateInfoSubmitRequest;
|
|
152
155
|
const ClbInstanceList = models.ClbInstanceList;
|
|
153
156
|
const UpdateCertificateRecordRetryResponse = models.UpdateCertificateRecordRetryResponse;
|
|
157
|
+
const CertificateOrderSubmitResponse = models.CertificateOrderSubmitResponse;
|
|
154
158
|
const TCBHostService = models.TCBHostService;
|
|
155
159
|
const DescribeHostUploadUpdateRecordDetailRequest = models.DescribeHostUploadUpdateRecordDetailRequest;
|
|
156
160
|
const TkeIngressDetail = models.TkeIngressDetail;
|
|
@@ -225,6 +229,17 @@ class SslClient extends AbstractClient {
|
|
|
225
229
|
this.request("UploadUpdateCertificateRecordRollback", req, resp, cb);
|
|
226
230
|
}
|
|
227
231
|
|
|
232
|
+
/**
|
|
233
|
+
* Submit certificate information for payment
|
|
234
|
+
* @param {CertificateInfoSubmitRequest} req
|
|
235
|
+
* @param {function(string, CertificateInfoSubmitResponse):void} cb
|
|
236
|
+
* @public
|
|
237
|
+
*/
|
|
238
|
+
CertificateInfoSubmit(req, cb) {
|
|
239
|
+
let resp = new CertificateInfoSubmitResponse();
|
|
240
|
+
this.request("CertificateInfoSubmit", req, resp, cb);
|
|
241
|
+
}
|
|
242
|
+
|
|
228
243
|
/**
|
|
229
244
|
* This API is used to batch delete CSRs.
|
|
230
245
|
* @param {BatchDeleteCSRRequest} req
|
|
@@ -291,6 +306,17 @@ class SslClient extends AbstractClient {
|
|
|
291
306
|
this.request("CancelCertificateOrder", req, resp, cb);
|
|
292
307
|
}
|
|
293
308
|
|
|
309
|
+
/**
|
|
310
|
+
* Submit a certificate order
|
|
311
|
+
* @param {CertificateOrderSubmitRequest} req
|
|
312
|
+
* @param {function(string, CertificateOrderSubmitResponse):void} cb
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
CertificateOrderSubmit(req, cb) {
|
|
316
|
+
let resp = new CertificateOrderSubmitResponse();
|
|
317
|
+
this.request("CertificateOrderSubmit", req, resp, cb);
|
|
318
|
+
}
|
|
319
|
+
|
|
294
320
|
/**
|
|
295
321
|
* This API is used to download a certificate.
|
|
296
322
|
* @param {DownloadCertificateRequest} req
|
|
@@ -5778,7 +5778,7 @@ class DescribePurgeTasksRequest extends AbstractModel {
|
|
|
5778
5778
|
super();
|
|
5779
5779
|
|
|
5780
5780
|
/**
|
|
5781
|
-
* Site ID. this parameter will change from selectable to required after may 30, 2024. for details, see the announcement: [tencent cloud EdgeOne] tencentcloud API change notification (https://www.tencentcloud.
|
|
5781
|
+
* Site ID. this parameter will change from selectable to required after may 30, 2024. for details, see the announcement: [tencent cloud EdgeOne] tencentcloud API change notification (https://www.tencentcloud.com/document/product/1552/104902?from_cn_redirect=1).
|
|
5782
5782
|
* @type {string || null}
|
|
5783
5783
|
*/
|
|
5784
5784
|
this.ZoneId = null;
|
|
@@ -35074,7 +35074,7 @@ class ApplyFreeCertificateRequest extends AbstractModel {
|
|
|
35074
35074
|
super();
|
|
35075
35075
|
|
|
35076
35076
|
/**
|
|
35077
|
-
* Site ID
|
|
35077
|
+
* Site ID
|
|
35078
35078
|
* @type {string || null}
|
|
35079
35079
|
*/
|
|
35080
35080
|
this.ZoneId = null;
|
|
@@ -2650,7 +2650,7 @@ Note:
|
|
|
2650
2650
|
/**
|
|
2651
2651
|
* JIT transcoding already provides preset transcoding templates to meet most needs. If there are personalized transcoding requirements, you can create custom transcoding templates through this API, with up to 100 custom transcoding templates allowed.
|
|
2652
2652
|
This API is used to ensure the consistency of JIT transcoding effect, avoid video output exceptions caused by EO cache or M3U8 sharding template changes during the process, and templates cannot be modified after creation.
|
|
2653
|
-
This API is used to learn about the detailed capacity of JIT transcoding. EdgeOne video instant processing function introduction (https://www.tencentcloud.
|
|
2653
|
+
This API is used to learn about the detailed capacity of JIT transcoding. EdgeOne video instant processing function introduction (https://www.tencentcloud.com/document/product/1552/111927?from_cn_redirect=1).
|
|
2654
2654
|
* @param {CreateJustInTimeTranscodeTemplateRequest} req
|
|
2655
2655
|
* @param {function(string, CreateJustInTimeTranscodeTemplateResponse):void} cb
|
|
2656
2656
|
* @public
|