@alicloud/esa20240910 2.5.3 → 2.5.5
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/dist/client.d.ts +381 -74
- package/dist/client.js +22 -104
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +386 -121
package/dist/client.d.ts
CHANGED
|
@@ -1697,6 +1697,8 @@ export declare class CreateEdgeContainerAppRecordResponse extends $tea.Model {
|
|
|
1697
1697
|
export declare class CreateEdgeContainerAppVersionRequest extends $tea.Model {
|
|
1698
1698
|
/**
|
|
1699
1699
|
* @remarks
|
|
1700
|
+
* The application ID, which can be obtained by calling the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) operation.
|
|
1701
|
+
*
|
|
1700
1702
|
* This parameter is required.
|
|
1701
1703
|
*
|
|
1702
1704
|
* @example
|
|
@@ -1705,6 +1707,9 @@ export declare class CreateEdgeContainerAppVersionRequest extends $tea.Model {
|
|
|
1705
1707
|
appId?: string;
|
|
1706
1708
|
/**
|
|
1707
1709
|
* @remarks
|
|
1710
|
+
* The container group to be deployed for this version, which contains information about images.\\
|
|
1711
|
+
* The image data contains the image address, startup command, parameters, environment variables, and probe rules. You can specify one or more images. The parameter value is a JSON string.
|
|
1712
|
+
*
|
|
1708
1713
|
* This parameter is required.
|
|
1709
1714
|
*
|
|
1710
1715
|
* @example
|
|
@@ -1730,6 +1735,8 @@ export declare class CreateEdgeContainerAppVersionRequest extends $tea.Model {
|
|
|
1730
1735
|
containers?: CreateEdgeContainerAppVersionRequestContainers[];
|
|
1731
1736
|
/**
|
|
1732
1737
|
* @remarks
|
|
1738
|
+
* The version name, which must be 6 to 128 characters in length.
|
|
1739
|
+
*
|
|
1733
1740
|
* This parameter is required.
|
|
1734
1741
|
*
|
|
1735
1742
|
* @example
|
|
@@ -1737,6 +1744,9 @@ export declare class CreateEdgeContainerAppVersionRequest extends $tea.Model {
|
|
|
1737
1744
|
*/
|
|
1738
1745
|
name?: string;
|
|
1739
1746
|
/**
|
|
1747
|
+
* @remarks
|
|
1748
|
+
* The description of the version.
|
|
1749
|
+
*
|
|
1740
1750
|
* @example
|
|
1741
1751
|
* test app
|
|
1742
1752
|
*/
|
|
@@ -1754,6 +1764,8 @@ export declare class CreateEdgeContainerAppVersionRequest extends $tea.Model {
|
|
|
1754
1764
|
export declare class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Model {
|
|
1755
1765
|
/**
|
|
1756
1766
|
* @remarks
|
|
1767
|
+
* The application ID, which can be obtained by calling the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) operation.
|
|
1768
|
+
*
|
|
1757
1769
|
* This parameter is required.
|
|
1758
1770
|
*
|
|
1759
1771
|
* @example
|
|
@@ -1762,6 +1774,9 @@ export declare class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Mod
|
|
|
1762
1774
|
appId?: string;
|
|
1763
1775
|
/**
|
|
1764
1776
|
* @remarks
|
|
1777
|
+
* The container group to be deployed for this version, which contains information about images.\\
|
|
1778
|
+
* The image data contains the image address, startup command, parameters, environment variables, and probe rules. You can specify one or more images. The parameter value is a JSON string.
|
|
1779
|
+
*
|
|
1765
1780
|
* This parameter is required.
|
|
1766
1781
|
*
|
|
1767
1782
|
* @example
|
|
@@ -1787,6 +1802,8 @@ export declare class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Mod
|
|
|
1787
1802
|
containersShrink?: string;
|
|
1788
1803
|
/**
|
|
1789
1804
|
* @remarks
|
|
1805
|
+
* The version name, which must be 6 to 128 characters in length.
|
|
1806
|
+
*
|
|
1790
1807
|
* This parameter is required.
|
|
1791
1808
|
*
|
|
1792
1809
|
* @example
|
|
@@ -1794,6 +1811,9 @@ export declare class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Mod
|
|
|
1794
1811
|
*/
|
|
1795
1812
|
name?: string;
|
|
1796
1813
|
/**
|
|
1814
|
+
* @remarks
|
|
1815
|
+
* The description of the version.
|
|
1816
|
+
*
|
|
1797
1817
|
* @example
|
|
1798
1818
|
* test app
|
|
1799
1819
|
*/
|
|
@@ -1810,11 +1830,17 @@ export declare class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Mod
|
|
|
1810
1830
|
}
|
|
1811
1831
|
export declare class CreateEdgeContainerAppVersionResponseBody extends $tea.Model {
|
|
1812
1832
|
/**
|
|
1833
|
+
* @remarks
|
|
1834
|
+
* The request ID.
|
|
1835
|
+
*
|
|
1813
1836
|
* @example
|
|
1814
1837
|
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
1815
1838
|
*/
|
|
1816
1839
|
requestId?: string;
|
|
1817
1840
|
/**
|
|
1841
|
+
* @remarks
|
|
1842
|
+
* The ID of the created version.
|
|
1843
|
+
*
|
|
1818
1844
|
* @example
|
|
1819
1845
|
* ver-87962637161651****
|
|
1820
1846
|
*/
|
|
@@ -3259,6 +3285,8 @@ export declare class CreateWafRuleResponse extends $tea.Model {
|
|
|
3259
3285
|
export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
3260
3286
|
/**
|
|
3261
3287
|
* @remarks
|
|
3288
|
+
* The name of the custom cookie.
|
|
3289
|
+
*
|
|
3262
3290
|
* This parameter is required.
|
|
3263
3291
|
*
|
|
3264
3292
|
* @example
|
|
@@ -3266,18 +3294,36 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3266
3294
|
*/
|
|
3267
3295
|
cookieName?: string;
|
|
3268
3296
|
/**
|
|
3297
|
+
* @remarks
|
|
3298
|
+
* The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
|
|
3299
|
+
*
|
|
3269
3300
|
* @example
|
|
3270
3301
|
* Hello%20world!
|
|
3271
3302
|
*/
|
|
3272
3303
|
customPageHtml?: string;
|
|
3304
|
+
/**
|
|
3305
|
+
* @remarks
|
|
3306
|
+
* The description of the waiting room.
|
|
3307
|
+
*/
|
|
3273
3308
|
description?: string;
|
|
3274
3309
|
/**
|
|
3310
|
+
* @remarks
|
|
3311
|
+
* Specifies whether to disable session renewal. Valid values:
|
|
3312
|
+
*
|
|
3313
|
+
* * on
|
|
3314
|
+
* * off
|
|
3315
|
+
*
|
|
3275
3316
|
* @example
|
|
3276
3317
|
* on
|
|
3277
3318
|
*/
|
|
3278
3319
|
disableSessionRenewalEnable?: string;
|
|
3279
3320
|
/**
|
|
3280
3321
|
* @remarks
|
|
3322
|
+
* Specifies whether to enable the waiting room. Valid values:
|
|
3323
|
+
*
|
|
3324
|
+
* * on
|
|
3325
|
+
* * off
|
|
3326
|
+
*
|
|
3281
3327
|
* This parameter is required.
|
|
3282
3328
|
*
|
|
3283
3329
|
* @example
|
|
@@ -3286,21 +3332,38 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3286
3332
|
enable?: string;
|
|
3287
3333
|
/**
|
|
3288
3334
|
* @remarks
|
|
3335
|
+
* The hostname and path.
|
|
3336
|
+
*
|
|
3289
3337
|
* This parameter is required.
|
|
3290
3338
|
*/
|
|
3291
3339
|
hostNameAndPath?: CreateWaitingRoomRequestHostNameAndPath[];
|
|
3292
3340
|
/**
|
|
3341
|
+
* @remarks
|
|
3342
|
+
* Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
|
|
3343
|
+
*
|
|
3344
|
+
* * on
|
|
3345
|
+
* * off
|
|
3346
|
+
*
|
|
3293
3347
|
* @example
|
|
3294
3348
|
* on
|
|
3295
3349
|
*/
|
|
3296
3350
|
jsonResponseEnable?: string;
|
|
3297
3351
|
/**
|
|
3352
|
+
* @remarks
|
|
3353
|
+
* The language of the waiting room page. You must specify this parameter if you set WaitingRoomType to default. Valid values:
|
|
3354
|
+
*
|
|
3355
|
+
* * enus: English.
|
|
3356
|
+
* * zhcn: Simplified Chinese.
|
|
3357
|
+
* * zhhk: Traditional Chinese.
|
|
3358
|
+
*
|
|
3298
3359
|
* @example
|
|
3299
3360
|
* enus
|
|
3300
3361
|
*/
|
|
3301
3362
|
language?: string;
|
|
3302
3363
|
/**
|
|
3303
3364
|
* @remarks
|
|
3365
|
+
* The name of the waiting room.
|
|
3366
|
+
*
|
|
3304
3367
|
* This parameter is required.
|
|
3305
3368
|
*
|
|
3306
3369
|
* @example
|
|
@@ -3309,6 +3372,8 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3309
3372
|
name?: string;
|
|
3310
3373
|
/**
|
|
3311
3374
|
* @remarks
|
|
3375
|
+
* The maximum number of new users per minute.
|
|
3376
|
+
*
|
|
3312
3377
|
* This parameter is required.
|
|
3313
3378
|
*
|
|
3314
3379
|
* @example
|
|
@@ -3316,12 +3381,25 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3316
3381
|
*/
|
|
3317
3382
|
newUsersPerMinute?: string;
|
|
3318
3383
|
/**
|
|
3384
|
+
* @remarks
|
|
3385
|
+
* Specifies whether to queue all requests. Valid values:
|
|
3386
|
+
*
|
|
3387
|
+
* * on
|
|
3388
|
+
* * off
|
|
3389
|
+
*
|
|
3319
3390
|
* @example
|
|
3320
3391
|
* on
|
|
3321
3392
|
*/
|
|
3322
3393
|
queueAllEnable?: string;
|
|
3323
3394
|
/**
|
|
3324
3395
|
* @remarks
|
|
3396
|
+
* The queuing method. Valid values:
|
|
3397
|
+
*
|
|
3398
|
+
* * random: Users gain access to the origin randomly, regardless of the arrival time.
|
|
3399
|
+
* * fifo: Users gain access to the origin in order of arrival.
|
|
3400
|
+
* * passthrough: Users pass through the waiting room and go straight to the origin.
|
|
3401
|
+
* * reject-all: Users are blocked from reaching the origin.
|
|
3402
|
+
*
|
|
3325
3403
|
* This parameter is required.
|
|
3326
3404
|
*
|
|
3327
3405
|
* @example
|
|
@@ -3330,6 +3408,12 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3330
3408
|
queuingMethod?: string;
|
|
3331
3409
|
/**
|
|
3332
3410
|
* @remarks
|
|
3411
|
+
* The HTTP status code to return while a user is in the queue. Valid values:
|
|
3412
|
+
*
|
|
3413
|
+
* * 200
|
|
3414
|
+
* * 202
|
|
3415
|
+
* * 429
|
|
3416
|
+
*
|
|
3333
3417
|
* This parameter is required.
|
|
3334
3418
|
*
|
|
3335
3419
|
* @example
|
|
@@ -3338,6 +3422,8 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3338
3422
|
queuingStatusCode?: string;
|
|
3339
3423
|
/**
|
|
3340
3424
|
* @remarks
|
|
3425
|
+
* The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
|
|
3426
|
+
*
|
|
3341
3427
|
* This parameter is required.
|
|
3342
3428
|
*
|
|
3343
3429
|
* @example
|
|
@@ -3346,6 +3432,8 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3346
3432
|
sessionDuration?: string;
|
|
3347
3433
|
/**
|
|
3348
3434
|
* @remarks
|
|
3435
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
3436
|
+
*
|
|
3349
3437
|
* This parameter is required.
|
|
3350
3438
|
*
|
|
3351
3439
|
* @example
|
|
@@ -3354,6 +3442,8 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3354
3442
|
siteId?: number;
|
|
3355
3443
|
/**
|
|
3356
3444
|
* @remarks
|
|
3445
|
+
* The maximum number of active users.
|
|
3446
|
+
*
|
|
3357
3447
|
* This parameter is required.
|
|
3358
3448
|
*
|
|
3359
3449
|
* @example
|
|
@@ -3362,6 +3452,11 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3362
3452
|
totalActiveUsers?: string;
|
|
3363
3453
|
/**
|
|
3364
3454
|
* @remarks
|
|
3455
|
+
* The type of the waiting room. Valid values:
|
|
3456
|
+
*
|
|
3457
|
+
* * default
|
|
3458
|
+
* * custom
|
|
3459
|
+
*
|
|
3365
3460
|
* This parameter is required.
|
|
3366
3461
|
*
|
|
3367
3462
|
* @example
|
|
@@ -3381,6 +3476,8 @@ export declare class CreateWaitingRoomRequest extends $tea.Model {
|
|
|
3381
3476
|
export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
3382
3477
|
/**
|
|
3383
3478
|
* @remarks
|
|
3479
|
+
* The name of the custom cookie.
|
|
3480
|
+
*
|
|
3384
3481
|
* This parameter is required.
|
|
3385
3482
|
*
|
|
3386
3483
|
* @example
|
|
@@ -3388,18 +3485,36 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3388
3485
|
*/
|
|
3389
3486
|
cookieName?: string;
|
|
3390
3487
|
/**
|
|
3488
|
+
* @remarks
|
|
3489
|
+
* The content of the custom waiting room page. You must specify this parameter if you set WaitingRoomType to custom. The content must be Base64-encoded.
|
|
3490
|
+
*
|
|
3391
3491
|
* @example
|
|
3392
3492
|
* Hello%20world!
|
|
3393
3493
|
*/
|
|
3394
3494
|
customPageHtml?: string;
|
|
3495
|
+
/**
|
|
3496
|
+
* @remarks
|
|
3497
|
+
* The description of the waiting room.
|
|
3498
|
+
*/
|
|
3395
3499
|
description?: string;
|
|
3396
3500
|
/**
|
|
3501
|
+
* @remarks
|
|
3502
|
+
* Specifies whether to disable session renewal. Valid values:
|
|
3503
|
+
*
|
|
3504
|
+
* * on
|
|
3505
|
+
* * off
|
|
3506
|
+
*
|
|
3397
3507
|
* @example
|
|
3398
3508
|
* on
|
|
3399
3509
|
*/
|
|
3400
3510
|
disableSessionRenewalEnable?: string;
|
|
3401
3511
|
/**
|
|
3402
3512
|
* @remarks
|
|
3513
|
+
* Specifies whether to enable the waiting room. Valid values:
|
|
3514
|
+
*
|
|
3515
|
+
* * on
|
|
3516
|
+
* * off
|
|
3517
|
+
*
|
|
3403
3518
|
* This parameter is required.
|
|
3404
3519
|
*
|
|
3405
3520
|
* @example
|
|
@@ -3408,21 +3523,38 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3408
3523
|
enable?: string;
|
|
3409
3524
|
/**
|
|
3410
3525
|
* @remarks
|
|
3526
|
+
* The hostname and path.
|
|
3527
|
+
*
|
|
3411
3528
|
* This parameter is required.
|
|
3412
3529
|
*/
|
|
3413
3530
|
hostNameAndPathShrink?: string;
|
|
3414
3531
|
/**
|
|
3532
|
+
* @remarks
|
|
3533
|
+
* Specifies whether to enable JSON response. If you set this parameter to on, a JSON body is returned for requests to the waiting room with the header Accept: application/json. Valid values:
|
|
3534
|
+
*
|
|
3535
|
+
* * on
|
|
3536
|
+
* * off
|
|
3537
|
+
*
|
|
3415
3538
|
* @example
|
|
3416
3539
|
* on
|
|
3417
3540
|
*/
|
|
3418
3541
|
jsonResponseEnable?: string;
|
|
3419
3542
|
/**
|
|
3543
|
+
* @remarks
|
|
3544
|
+
* The language of the waiting room page. You must specify this parameter if you set WaitingRoomType to default. Valid values:
|
|
3545
|
+
*
|
|
3546
|
+
* * enus: English.
|
|
3547
|
+
* * zhcn: Simplified Chinese.
|
|
3548
|
+
* * zhhk: Traditional Chinese.
|
|
3549
|
+
*
|
|
3420
3550
|
* @example
|
|
3421
3551
|
* enus
|
|
3422
3552
|
*/
|
|
3423
3553
|
language?: string;
|
|
3424
3554
|
/**
|
|
3425
3555
|
* @remarks
|
|
3556
|
+
* The name of the waiting room.
|
|
3557
|
+
*
|
|
3426
3558
|
* This parameter is required.
|
|
3427
3559
|
*
|
|
3428
3560
|
* @example
|
|
@@ -3431,6 +3563,8 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3431
3563
|
name?: string;
|
|
3432
3564
|
/**
|
|
3433
3565
|
* @remarks
|
|
3566
|
+
* The maximum number of new users per minute.
|
|
3567
|
+
*
|
|
3434
3568
|
* This parameter is required.
|
|
3435
3569
|
*
|
|
3436
3570
|
* @example
|
|
@@ -3438,12 +3572,25 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3438
3572
|
*/
|
|
3439
3573
|
newUsersPerMinute?: string;
|
|
3440
3574
|
/**
|
|
3575
|
+
* @remarks
|
|
3576
|
+
* Specifies whether to queue all requests. Valid values:
|
|
3577
|
+
*
|
|
3578
|
+
* * on
|
|
3579
|
+
* * off
|
|
3580
|
+
*
|
|
3441
3581
|
* @example
|
|
3442
3582
|
* on
|
|
3443
3583
|
*/
|
|
3444
3584
|
queueAllEnable?: string;
|
|
3445
3585
|
/**
|
|
3446
3586
|
* @remarks
|
|
3587
|
+
* The queuing method. Valid values:
|
|
3588
|
+
*
|
|
3589
|
+
* * random: Users gain access to the origin randomly, regardless of the arrival time.
|
|
3590
|
+
* * fifo: Users gain access to the origin in order of arrival.
|
|
3591
|
+
* * passthrough: Users pass through the waiting room and go straight to the origin.
|
|
3592
|
+
* * reject-all: Users are blocked from reaching the origin.
|
|
3593
|
+
*
|
|
3447
3594
|
* This parameter is required.
|
|
3448
3595
|
*
|
|
3449
3596
|
* @example
|
|
@@ -3452,6 +3599,12 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3452
3599
|
queuingMethod?: string;
|
|
3453
3600
|
/**
|
|
3454
3601
|
* @remarks
|
|
3602
|
+
* The HTTP status code to return while a user is in the queue. Valid values:
|
|
3603
|
+
*
|
|
3604
|
+
* * 200
|
|
3605
|
+
* * 202
|
|
3606
|
+
* * 429
|
|
3607
|
+
*
|
|
3455
3608
|
* This parameter is required.
|
|
3456
3609
|
*
|
|
3457
3610
|
* @example
|
|
@@ -3460,6 +3613,8 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3460
3613
|
queuingStatusCode?: string;
|
|
3461
3614
|
/**
|
|
3462
3615
|
* @remarks
|
|
3616
|
+
* The maximum duration for which a session remains valid after a user leaves the origin. Unit: minutes.
|
|
3617
|
+
*
|
|
3463
3618
|
* This parameter is required.
|
|
3464
3619
|
*
|
|
3465
3620
|
* @example
|
|
@@ -3468,6 +3623,8 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3468
3623
|
sessionDuration?: string;
|
|
3469
3624
|
/**
|
|
3470
3625
|
* @remarks
|
|
3626
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
3627
|
+
*
|
|
3471
3628
|
* This parameter is required.
|
|
3472
3629
|
*
|
|
3473
3630
|
* @example
|
|
@@ -3476,6 +3633,8 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3476
3633
|
siteId?: number;
|
|
3477
3634
|
/**
|
|
3478
3635
|
* @remarks
|
|
3636
|
+
* The maximum number of active users.
|
|
3637
|
+
*
|
|
3479
3638
|
* This parameter is required.
|
|
3480
3639
|
*
|
|
3481
3640
|
* @example
|
|
@@ -3484,6 +3643,11 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3484
3643
|
totalActiveUsers?: string;
|
|
3485
3644
|
/**
|
|
3486
3645
|
* @remarks
|
|
3646
|
+
* The type of the waiting room. Valid values:
|
|
3647
|
+
*
|
|
3648
|
+
* * default
|
|
3649
|
+
* * custom
|
|
3650
|
+
*
|
|
3487
3651
|
* This parameter is required.
|
|
3488
3652
|
*
|
|
3489
3653
|
* @example
|
|
@@ -3502,6 +3666,9 @@ export declare class CreateWaitingRoomShrinkRequest extends $tea.Model {
|
|
|
3502
3666
|
}
|
|
3503
3667
|
export declare class CreateWaitingRoomResponseBody extends $tea.Model {
|
|
3504
3668
|
/**
|
|
3669
|
+
* @remarks
|
|
3670
|
+
* The request ID.
|
|
3671
|
+
*
|
|
3505
3672
|
* @example
|
|
3506
3673
|
* 85H66C7B-671A-4297-9187-2C4477247A74
|
|
3507
3674
|
*/
|
|
@@ -5425,39 +5592,6 @@ export declare class DescribeHttpDDoSAttackProtectionResponse extends $tea.Model
|
|
|
5425
5592
|
[key: string]: any;
|
|
5426
5593
|
});
|
|
5427
5594
|
}
|
|
5428
|
-
export declare class DescribeIPRangeListResponseBody extends $tea.Model {
|
|
5429
|
-
content?: DescribeIPRangeListResponseBodyContent[];
|
|
5430
|
-
/**
|
|
5431
|
-
* @example
|
|
5432
|
-
* CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
|
|
5433
|
-
*/
|
|
5434
|
-
requestId?: string;
|
|
5435
|
-
static names(): {
|
|
5436
|
-
[key: string]: string;
|
|
5437
|
-
};
|
|
5438
|
-
static types(): {
|
|
5439
|
-
[key: string]: any;
|
|
5440
|
-
};
|
|
5441
|
-
constructor(map?: {
|
|
5442
|
-
[key: string]: any;
|
|
5443
|
-
});
|
|
5444
|
-
}
|
|
5445
|
-
export declare class DescribeIPRangeListResponse extends $tea.Model {
|
|
5446
|
-
headers?: {
|
|
5447
|
-
[key: string]: string;
|
|
5448
|
-
};
|
|
5449
|
-
statusCode?: number;
|
|
5450
|
-
body?: DescribeIPRangeListResponseBody;
|
|
5451
|
-
static names(): {
|
|
5452
|
-
[key: string]: string;
|
|
5453
|
-
};
|
|
5454
|
-
static types(): {
|
|
5455
|
-
[key: string]: any;
|
|
5456
|
-
};
|
|
5457
|
-
constructor(map?: {
|
|
5458
|
-
[key: string]: any;
|
|
5459
|
-
});
|
|
5460
|
-
}
|
|
5461
5595
|
export declare class DescribeKvAccountStatusResponseBody extends $tea.Model {
|
|
5462
5596
|
/**
|
|
5463
5597
|
* @example
|
|
@@ -8356,17 +8490,25 @@ export declare class ListCacheReserveInstancesResponse extends $tea.Model {
|
|
|
8356
8490
|
}
|
|
8357
8491
|
export declare class ListClientCertificatesRequest extends $tea.Model {
|
|
8358
8492
|
/**
|
|
8493
|
+
* @remarks
|
|
8494
|
+
* The page number.
|
|
8495
|
+
*
|
|
8359
8496
|
* @example
|
|
8360
8497
|
* 1
|
|
8361
8498
|
*/
|
|
8362
8499
|
pageNumber?: number;
|
|
8363
8500
|
/**
|
|
8501
|
+
* @remarks
|
|
8502
|
+
* The number of entries per page.
|
|
8503
|
+
*
|
|
8364
8504
|
* @example
|
|
8365
8505
|
* 20
|
|
8366
8506
|
*/
|
|
8367
8507
|
pageSize?: number;
|
|
8368
8508
|
/**
|
|
8369
8509
|
* @remarks
|
|
8510
|
+
* The website ID.
|
|
8511
|
+
*
|
|
8370
8512
|
* This parameter is required.
|
|
8371
8513
|
*
|
|
8372
8514
|
* @example
|
|
@@ -8385,32 +8527,54 @@ export declare class ListClientCertificatesRequest extends $tea.Model {
|
|
|
8385
8527
|
}
|
|
8386
8528
|
export declare class ListClientCertificatesResponseBody extends $tea.Model {
|
|
8387
8529
|
/**
|
|
8530
|
+
* @remarks
|
|
8531
|
+
* The page number returned.
|
|
8532
|
+
*
|
|
8388
8533
|
* @example
|
|
8389
8534
|
* 1
|
|
8390
8535
|
*/
|
|
8391
8536
|
pageNumber?: number;
|
|
8392
8537
|
/**
|
|
8538
|
+
* @remarks
|
|
8539
|
+
* The number of entries per page.
|
|
8540
|
+
*
|
|
8393
8541
|
* @example
|
|
8394
8542
|
* 20
|
|
8395
8543
|
*/
|
|
8396
8544
|
pageSize?: number;
|
|
8397
8545
|
/**
|
|
8546
|
+
* @remarks
|
|
8547
|
+
* The request ID.
|
|
8548
|
+
*
|
|
8398
8549
|
* @example
|
|
8399
8550
|
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
8400
8551
|
*/
|
|
8401
8552
|
requestId?: string;
|
|
8553
|
+
/**
|
|
8554
|
+
* @remarks
|
|
8555
|
+
* The client certificates.
|
|
8556
|
+
*/
|
|
8402
8557
|
result?: ListClientCertificatesResponseBodyResult[];
|
|
8403
8558
|
/**
|
|
8559
|
+
* @remarks
|
|
8560
|
+
* The website ID.
|
|
8561
|
+
*
|
|
8404
8562
|
* @example
|
|
8405
8563
|
* 1234567890123
|
|
8406
8564
|
*/
|
|
8407
8565
|
siteId?: number;
|
|
8408
8566
|
/**
|
|
8567
|
+
* @remarks
|
|
8568
|
+
* The website name.
|
|
8569
|
+
*
|
|
8409
8570
|
* @example
|
|
8410
8571
|
* example.com
|
|
8411
8572
|
*/
|
|
8412
8573
|
siteName?: string;
|
|
8413
8574
|
/**
|
|
8575
|
+
* @remarks
|
|
8576
|
+
* The total number of entries.
|
|
8577
|
+
*
|
|
8414
8578
|
* @example
|
|
8415
8579
|
* 5
|
|
8416
8580
|
*/
|
|
@@ -9547,7 +9711,7 @@ export declare class ListRecordsRequest extends $tea.Model {
|
|
|
9547
9711
|
* @example
|
|
9548
9712
|
* true
|
|
9549
9713
|
*/
|
|
9550
|
-
proxied?:
|
|
9714
|
+
proxied?: boolean;
|
|
9551
9715
|
/**
|
|
9552
9716
|
* @example
|
|
9553
9717
|
* fuzzy
|
|
@@ -15259,45 +15423,73 @@ export declare class BatchPutKvRequestKvList extends $tea.Model {
|
|
|
15259
15423
|
}
|
|
15260
15424
|
export declare class CreateEdgeContainerAppVersionRequestContainersACRImageInfo extends $tea.Model {
|
|
15261
15425
|
/**
|
|
15426
|
+
* @remarks
|
|
15427
|
+
* The domain name of the Container Registry image.
|
|
15428
|
+
*
|
|
15262
15429
|
* @example
|
|
15263
15430
|
* 1500.***.net
|
|
15264
15431
|
*/
|
|
15265
15432
|
domain?: string;
|
|
15266
15433
|
/**
|
|
15434
|
+
* @remarks
|
|
15435
|
+
* The ID of the Container Registry instance.
|
|
15436
|
+
*
|
|
15267
15437
|
* @example
|
|
15268
15438
|
* xcdn-9axbo****
|
|
15269
15439
|
*/
|
|
15270
15440
|
instanceId?: string;
|
|
15271
15441
|
/**
|
|
15442
|
+
* @remarks
|
|
15443
|
+
* Specifies whether the image is an enterprise-level Container Registry image.
|
|
15444
|
+
*
|
|
15272
15445
|
* @example
|
|
15273
15446
|
* false
|
|
15274
15447
|
*/
|
|
15275
15448
|
isEnterpriseRegistry?: boolean;
|
|
15276
15449
|
/**
|
|
15450
|
+
* @remarks
|
|
15451
|
+
* The regions in which the Container Registry instance resides.
|
|
15452
|
+
*
|
|
15277
15453
|
* @example
|
|
15278
15454
|
* cn-shanghai
|
|
15279
15455
|
*/
|
|
15280
15456
|
regionId?: string;
|
|
15281
15457
|
/**
|
|
15458
|
+
* @remarks
|
|
15459
|
+
* The ID of the image repository.
|
|
15460
|
+
*
|
|
15282
15461
|
* @example
|
|
15283
15462
|
* crr-h1ghghu60ct****
|
|
15284
15463
|
*/
|
|
15285
15464
|
repoId?: string;
|
|
15286
15465
|
/**
|
|
15466
|
+
* @remarks
|
|
15467
|
+
* The name of the image repository.
|
|
15468
|
+
*
|
|
15287
15469
|
* @example
|
|
15288
15470
|
* test_71
|
|
15289
15471
|
*/
|
|
15290
15472
|
repoName?: string;
|
|
15291
15473
|
/**
|
|
15474
|
+
* @remarks
|
|
15475
|
+
* The namespace to which the image repository belongs.
|
|
15476
|
+
*
|
|
15292
15477
|
* @example
|
|
15293
15478
|
* safeline
|
|
15294
15479
|
*/
|
|
15295
15480
|
repoNamespace?: string;
|
|
15296
15481
|
/**
|
|
15482
|
+
* @remarks
|
|
15483
|
+
* The tag of the Container Registry image.
|
|
15484
|
+
*
|
|
15297
15485
|
* @example
|
|
15298
15486
|
* 3.40.2
|
|
15299
15487
|
*/
|
|
15300
15488
|
tag?: string;
|
|
15489
|
+
/**
|
|
15490
|
+
* @remarks
|
|
15491
|
+
* The URL of the Container Registry image tag.
|
|
15492
|
+
*/
|
|
15301
15493
|
tagUrl?: string;
|
|
15302
15494
|
static names(): {
|
|
15303
15495
|
[key: string]: string;
|
|
@@ -15311,56 +15503,89 @@ export declare class CreateEdgeContainerAppVersionRequestContainersACRImageInfo
|
|
|
15311
15503
|
}
|
|
15312
15504
|
export declare class CreateEdgeContainerAppVersionRequestContainersProbeContent extends $tea.Model {
|
|
15313
15505
|
/**
|
|
15506
|
+
* @remarks
|
|
15507
|
+
* The command of the exec type probe.
|
|
15508
|
+
*
|
|
15314
15509
|
* @example
|
|
15315
15510
|
* echo ok
|
|
15316
15511
|
*/
|
|
15317
15512
|
command?: string;
|
|
15318
15513
|
/**
|
|
15514
|
+
* @remarks
|
|
15515
|
+
* The number of consecutive failed health checks required for a container to be considered as unhealthy.
|
|
15516
|
+
*
|
|
15319
15517
|
* @example
|
|
15320
15518
|
* 3
|
|
15321
15519
|
*/
|
|
15322
15520
|
failureThreshold?: number;
|
|
15323
15521
|
/**
|
|
15522
|
+
* @remarks
|
|
15523
|
+
* The domain name that is used for health checks.
|
|
15524
|
+
*
|
|
15324
15525
|
* @example
|
|
15325
15526
|
* www.rewrite.com
|
|
15326
15527
|
*/
|
|
15327
15528
|
host?: string;
|
|
15328
15529
|
/**
|
|
15530
|
+
* @remarks
|
|
15531
|
+
* The request headers that are included in the container health check request.
|
|
15532
|
+
*
|
|
15329
15533
|
* @example
|
|
15330
15534
|
* [{\\"Content-Type\\":\\"application/json\\"}]
|
|
15331
15535
|
*/
|
|
15332
15536
|
httpHeaders?: string;
|
|
15333
15537
|
/**
|
|
15538
|
+
* @remarks
|
|
15539
|
+
* The latency for container probe initialization.
|
|
15540
|
+
*
|
|
15334
15541
|
* @example
|
|
15335
15542
|
* 1
|
|
15336
15543
|
*/
|
|
15337
15544
|
initialDelaySeconds?: number;
|
|
15338
15545
|
/**
|
|
15546
|
+
* @remarks
|
|
15547
|
+
* The health check path.
|
|
15548
|
+
*
|
|
15339
15549
|
* @example
|
|
15340
15550
|
* /
|
|
15341
15551
|
*/
|
|
15342
15552
|
path?: string;
|
|
15343
15553
|
/**
|
|
15554
|
+
* @remarks
|
|
15555
|
+
* The interval between container health checks.
|
|
15556
|
+
*
|
|
15344
15557
|
* @example
|
|
15345
15558
|
* 1
|
|
15346
15559
|
*/
|
|
15347
15560
|
periodSeconds?: number;
|
|
15348
15561
|
/**
|
|
15562
|
+
* @remarks
|
|
15563
|
+
* The health check port.
|
|
15564
|
+
*
|
|
15349
15565
|
* @example
|
|
15350
15566
|
* 9991
|
|
15351
15567
|
*/
|
|
15352
15568
|
port?: number;
|
|
15353
15569
|
/**
|
|
15570
|
+
* @remarks
|
|
15571
|
+
* The protocol that the container health check request uses.
|
|
15572
|
+
*
|
|
15354
15573
|
* @example
|
|
15355
15574
|
* http
|
|
15356
15575
|
*/
|
|
15357
15576
|
scheme?: string;
|
|
15358
15577
|
/**
|
|
15578
|
+
* @remarks
|
|
15579
|
+
* The number of consecutive successful health checks required for a container to be considered as healthy.
|
|
15580
|
+
*
|
|
15359
15581
|
* @example
|
|
15360
15582
|
* 1
|
|
15361
15583
|
*/
|
|
15362
15584
|
successThreshold?: number;
|
|
15363
15585
|
/**
|
|
15586
|
+
* @remarks
|
|
15587
|
+
* The timeout period of the container health check.
|
|
15588
|
+
*
|
|
15364
15589
|
* @example
|
|
15365
15590
|
* 1
|
|
15366
15591
|
*/
|
|
@@ -15376,12 +15601,39 @@ export declare class CreateEdgeContainerAppVersionRequestContainersProbeContent
|
|
|
15376
15601
|
});
|
|
15377
15602
|
}
|
|
15378
15603
|
export declare class CreateEdgeContainerAppVersionRequestContainers extends $tea.Model {
|
|
15604
|
+
/**
|
|
15605
|
+
* @remarks
|
|
15606
|
+
* The information about the Container Registry image.
|
|
15607
|
+
*/
|
|
15379
15608
|
ACRImageInfo?: CreateEdgeContainerAppVersionRequestContainersACRImageInfo;
|
|
15609
|
+
/**
|
|
15610
|
+
* @remarks
|
|
15611
|
+
* The arguments that are passed to the container startup command. Separate the parameters with spaces.
|
|
15612
|
+
*
|
|
15613
|
+
* @example
|
|
15614
|
+
* -a
|
|
15615
|
+
*/
|
|
15380
15616
|
args?: string;
|
|
15617
|
+
/**
|
|
15618
|
+
* @remarks
|
|
15619
|
+
* The command that is used to start the container. Separate the arguments with spaces.
|
|
15620
|
+
*
|
|
15621
|
+
* @example
|
|
15622
|
+
* nginx
|
|
15623
|
+
*/
|
|
15381
15624
|
command?: string;
|
|
15625
|
+
/**
|
|
15626
|
+
* @remarks
|
|
15627
|
+
* The environment variables. Separate the environment variables with commas (,).
|
|
15628
|
+
*
|
|
15629
|
+
* @example
|
|
15630
|
+
* VITE_APP_TITLE=My App
|
|
15631
|
+
*/
|
|
15382
15632
|
envVariables?: string;
|
|
15383
15633
|
/**
|
|
15384
15634
|
* @remarks
|
|
15635
|
+
* The address of the image.
|
|
15636
|
+
*
|
|
15385
15637
|
* This parameter is required.
|
|
15386
15638
|
*
|
|
15387
15639
|
* @example
|
|
@@ -15390,6 +15642,8 @@ export declare class CreateEdgeContainerAppVersionRequestContainers extends $tea
|
|
|
15390
15642
|
image?: string;
|
|
15391
15643
|
/**
|
|
15392
15644
|
* @remarks
|
|
15645
|
+
* Specifies whether the image is a Container Registry image.
|
|
15646
|
+
*
|
|
15393
15647
|
* This parameter is required.
|
|
15394
15648
|
*
|
|
15395
15649
|
* @example
|
|
@@ -15398,32 +15652,69 @@ export declare class CreateEdgeContainerAppVersionRequestContainers extends $tea
|
|
|
15398
15652
|
isACRImage?: boolean;
|
|
15399
15653
|
/**
|
|
15400
15654
|
* @remarks
|
|
15655
|
+
* The name of the container. The name must be unique in the same container group.
|
|
15656
|
+
*
|
|
15401
15657
|
* This parameter is required.
|
|
15402
15658
|
*
|
|
15403
15659
|
* @example
|
|
15404
15660
|
* lxg-demo-er
|
|
15405
15661
|
*/
|
|
15406
15662
|
name?: string;
|
|
15663
|
+
/**
|
|
15664
|
+
* @remarks
|
|
15665
|
+
* The command that is run before the container is started. Separate the arguments with spaces.
|
|
15666
|
+
*
|
|
15667
|
+
* @example
|
|
15668
|
+
* sh poststart.sh "echo hello world"
|
|
15669
|
+
*/
|
|
15407
15670
|
postStart?: string;
|
|
15671
|
+
/**
|
|
15672
|
+
* @remarks
|
|
15673
|
+
* The command that is run before the container is stopped. Separate the arguments with spaces.
|
|
15674
|
+
*
|
|
15675
|
+
* @example
|
|
15676
|
+
* sh prestop.sh "echo hello world"
|
|
15677
|
+
*/
|
|
15408
15678
|
preStop?: string;
|
|
15409
15679
|
/**
|
|
15410
15680
|
* @remarks
|
|
15681
|
+
* The content of the container health probe.
|
|
15682
|
+
*
|
|
15411
15683
|
* This parameter is required.
|
|
15412
15684
|
*/
|
|
15413
15685
|
probeContent?: CreateEdgeContainerAppVersionRequestContainersProbeContent;
|
|
15414
15686
|
/**
|
|
15415
15687
|
* @remarks
|
|
15688
|
+
* The type of the probe. Valid values:
|
|
15689
|
+
*
|
|
15690
|
+
* * exec: the command type.
|
|
15691
|
+
* * tcpSocket: the TCP probe type.
|
|
15692
|
+
* * httpGet: the HTTP access type.
|
|
15693
|
+
*
|
|
15416
15694
|
* This parameter is required.
|
|
15695
|
+
*
|
|
15696
|
+
* @example
|
|
15697
|
+
* exec
|
|
15417
15698
|
*/
|
|
15418
15699
|
probeType?: string;
|
|
15419
15700
|
/**
|
|
15420
15701
|
* @remarks
|
|
15702
|
+
* The compute specification of the container. Valid values: 1C2G, 2C4G, 2C8G, 4C8G, 4C16G, 8C16G, and 8C32G.
|
|
15703
|
+
*
|
|
15421
15704
|
* This parameter is required.
|
|
15705
|
+
*
|
|
15706
|
+
* @example
|
|
15707
|
+
* 1C2G
|
|
15422
15708
|
*/
|
|
15423
15709
|
spec?: string;
|
|
15424
15710
|
/**
|
|
15425
15711
|
* @remarks
|
|
15712
|
+
* The storage capacity. Valid values: 0.5G, 10G, 20G, and 30G.
|
|
15713
|
+
*
|
|
15426
15714
|
* This parameter is required.
|
|
15715
|
+
*
|
|
15716
|
+
* @example
|
|
15717
|
+
* 0.5G
|
|
15427
15718
|
*/
|
|
15428
15719
|
storage?: string;
|
|
15429
15720
|
static names(): {
|
|
@@ -15866,6 +16157,8 @@ export declare class CreateUserDeliveryTaskRequestSlsDelivery extends $tea.Model
|
|
|
15866
16157
|
export declare class CreateWaitingRoomRequestHostNameAndPath extends $tea.Model {
|
|
15867
16158
|
/**
|
|
15868
16159
|
* @remarks
|
|
16160
|
+
* The domain name.
|
|
16161
|
+
*
|
|
15869
16162
|
* This parameter is required.
|
|
15870
16163
|
*
|
|
15871
16164
|
* @example
|
|
@@ -15874,6 +16167,8 @@ export declare class CreateWaitingRoomRequestHostNameAndPath extends $tea.Model
|
|
|
15874
16167
|
domain?: string;
|
|
15875
16168
|
/**
|
|
15876
16169
|
* @remarks
|
|
16170
|
+
* The path.
|
|
16171
|
+
*
|
|
15877
16172
|
* This parameter is required.
|
|
15878
16173
|
*
|
|
15879
16174
|
* @example
|
|
@@ -15882,6 +16177,8 @@ export declare class CreateWaitingRoomRequestHostNameAndPath extends $tea.Model
|
|
|
15882
16177
|
path?: string;
|
|
15883
16178
|
/**
|
|
15884
16179
|
* @remarks
|
|
16180
|
+
* The subdomain.
|
|
16181
|
+
*
|
|
15885
16182
|
* This parameter is required.
|
|
15886
16183
|
*
|
|
15887
16184
|
* @example
|
|
@@ -15946,6 +16243,7 @@ export declare class DescribeDDoSAllEventListResponseBodyDataList extends $tea.M
|
|
|
15946
16243
|
* 800
|
|
15947
16244
|
*/
|
|
15948
16245
|
bps?: number;
|
|
16246
|
+
coverage?: string;
|
|
15949
16247
|
/**
|
|
15950
16248
|
* @example
|
|
15951
16249
|
* 50
|
|
@@ -15961,6 +16259,7 @@ export declare class DescribeDDoSAllEventListResponseBodyDataList extends $tea.M
|
|
|
15961
16259
|
* web-cc_1
|
|
15962
16260
|
*/
|
|
15963
16261
|
eventId?: string;
|
|
16262
|
+
eventResult?: string;
|
|
15964
16263
|
/**
|
|
15965
16264
|
* @example
|
|
15966
16265
|
* web-cc
|
|
@@ -16001,27 +16300,6 @@ export declare class DescribeDDoSAllEventListResponseBodyDataList extends $tea.M
|
|
|
16001
16300
|
[key: string]: any;
|
|
16002
16301
|
});
|
|
16003
16302
|
}
|
|
16004
|
-
export declare class DescribeIPRangeListResponseBodyContent extends $tea.Model {
|
|
16005
|
-
/**
|
|
16006
|
-
* @example
|
|
16007
|
-
* 172.16.0.0/12
|
|
16008
|
-
*/
|
|
16009
|
-
cidr?: string;
|
|
16010
|
-
/**
|
|
16011
|
-
* @example
|
|
16012
|
-
* IPv4
|
|
16013
|
-
*/
|
|
16014
|
-
ipType?: string;
|
|
16015
|
-
static names(): {
|
|
16016
|
-
[key: string]: string;
|
|
16017
|
-
};
|
|
16018
|
-
static types(): {
|
|
16019
|
-
[key: string]: any;
|
|
16020
|
-
};
|
|
16021
|
-
constructor(map?: {
|
|
16022
|
-
[key: string]: any;
|
|
16023
|
-
});
|
|
16024
|
-
}
|
|
16025
16303
|
export declare class DescribePreloadTasksResponseBodyTasks extends $tea.Model {
|
|
16026
16304
|
/**
|
|
16027
16305
|
* @example
|
|
@@ -17270,71 +17548,113 @@ export declare class ListCacheReserveInstancesResponseBodyInstanceInfo extends $
|
|
|
17270
17548
|
}
|
|
17271
17549
|
export declare class ListClientCertificatesResponseBodyResult extends $tea.Model {
|
|
17272
17550
|
/**
|
|
17551
|
+
* @remarks
|
|
17552
|
+
* The ID of the CA certificate.
|
|
17553
|
+
*
|
|
17273
17554
|
* @example
|
|
17274
17555
|
* baba39055622c008b90285a8838ed09a
|
|
17275
17556
|
*/
|
|
17276
17557
|
CACertificateId?: string;
|
|
17277
17558
|
/**
|
|
17559
|
+
* @remarks
|
|
17560
|
+
* The Common Name of the certificate.
|
|
17561
|
+
*
|
|
17278
17562
|
* @example
|
|
17279
17563
|
* www.example.com
|
|
17280
17564
|
*/
|
|
17281
17565
|
commonName?: string;
|
|
17282
17566
|
/**
|
|
17567
|
+
* @remarks
|
|
17568
|
+
* The time when the certificate was created.
|
|
17569
|
+
*
|
|
17283
17570
|
* @example
|
|
17284
17571
|
* 2024-06-24 07:48:51
|
|
17285
17572
|
*/
|
|
17286
17573
|
createTime?: string;
|
|
17287
17574
|
/**
|
|
17575
|
+
* @remarks
|
|
17576
|
+
* The certificate ID.
|
|
17577
|
+
*
|
|
17288
17578
|
* @example
|
|
17289
17579
|
* babab9db65ee5efcca9f3d41d4b50d66
|
|
17290
17580
|
*/
|
|
17291
17581
|
id?: string;
|
|
17292
17582
|
/**
|
|
17583
|
+
* @remarks
|
|
17584
|
+
* The certificate authority (CA) that issued the certificate.
|
|
17585
|
+
*
|
|
17293
17586
|
* @example
|
|
17294
17587
|
* GlobalSign nv-sa
|
|
17295
17588
|
*/
|
|
17296
17589
|
issuer?: string;
|
|
17297
17590
|
/**
|
|
17591
|
+
* @remarks
|
|
17592
|
+
* The certificate name.
|
|
17593
|
+
*
|
|
17298
17594
|
* @example
|
|
17299
17595
|
* yourCertName
|
|
17300
17596
|
*/
|
|
17301
17597
|
name?: string;
|
|
17302
17598
|
/**
|
|
17599
|
+
* @remarks
|
|
17600
|
+
* The time when the certificate expires.
|
|
17601
|
+
*
|
|
17303
17602
|
* @example
|
|
17304
17603
|
* 2024-03-31 02:08:00
|
|
17305
17604
|
*/
|
|
17306
17605
|
notAfter?: string;
|
|
17307
17606
|
/**
|
|
17607
|
+
* @remarks
|
|
17608
|
+
* The time when the certificate takes effect.
|
|
17609
|
+
*
|
|
17308
17610
|
* @example
|
|
17309
17611
|
* 2023-03-31 02:08:00
|
|
17310
17612
|
*/
|
|
17311
17613
|
notBefore?: string;
|
|
17312
17614
|
/**
|
|
17615
|
+
* @remarks
|
|
17616
|
+
* The public key algorithm of the certificate.
|
|
17617
|
+
*
|
|
17313
17618
|
* @example
|
|
17314
17619
|
* RSA
|
|
17315
17620
|
*/
|
|
17316
17621
|
pubkeyAlgorithm?: string;
|
|
17317
17622
|
/**
|
|
17623
|
+
* @remarks
|
|
17624
|
+
* The Subject Alternative Name (SAN) of the certificate.
|
|
17625
|
+
*
|
|
17318
17626
|
* @example
|
|
17319
17627
|
* www.example.com,*.example.com
|
|
17320
17628
|
*/
|
|
17321
17629
|
SAN?: string;
|
|
17322
17630
|
/**
|
|
17631
|
+
* @remarks
|
|
17632
|
+
* The signature algorithm of the certificate.
|
|
17633
|
+
*
|
|
17323
17634
|
* @example
|
|
17324
17635
|
* SHA256-RSA
|
|
17325
17636
|
*/
|
|
17326
17637
|
signatureAlgorithm?: string;
|
|
17327
17638
|
/**
|
|
17639
|
+
* @remarks
|
|
17640
|
+
* The certificate status.
|
|
17641
|
+
*
|
|
17328
17642
|
* @example
|
|
17329
17643
|
* active
|
|
17330
17644
|
*/
|
|
17331
17645
|
status?: string;
|
|
17332
17646
|
/**
|
|
17647
|
+
* @remarks
|
|
17648
|
+
* The certificate type.
|
|
17649
|
+
*
|
|
17333
17650
|
* @example
|
|
17334
17651
|
* dcdn
|
|
17335
17652
|
*/
|
|
17336
17653
|
type?: string;
|
|
17337
17654
|
/**
|
|
17655
|
+
* @remarks
|
|
17656
|
+
* The time when the certificate was updated.
|
|
17657
|
+
*
|
|
17338
17658
|
* @example
|
|
17339
17659
|
* 2024-07-20 06:18:42
|
|
17340
17660
|
*/
|
|
@@ -19749,7 +20069,7 @@ export default class Client extends OpenApi {
|
|
|
19749
20069
|
*/
|
|
19750
20070
|
createEdgeContainerAppRecord(request: CreateEdgeContainerAppRecordRequest): Promise<CreateEdgeContainerAppRecordResponse>;
|
|
19751
20071
|
/**
|
|
19752
|
-
*
|
|
20072
|
+
* Creates a version for a containerized application. You can iterate the application based on the version.
|
|
19753
20073
|
*
|
|
19754
20074
|
* @param tmpReq - CreateEdgeContainerAppVersionRequest
|
|
19755
20075
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -19757,7 +20077,7 @@ export default class Client extends OpenApi {
|
|
|
19757
20077
|
*/
|
|
19758
20078
|
createEdgeContainerAppVersionWithOptions(tmpReq: CreateEdgeContainerAppVersionRequest, runtime: $Util.RuntimeOptions): Promise<CreateEdgeContainerAppVersionResponse>;
|
|
19759
20079
|
/**
|
|
19760
|
-
*
|
|
20080
|
+
* Creates a version for a containerized application. You can iterate the application based on the version.
|
|
19761
20081
|
*
|
|
19762
20082
|
* @param request - CreateEdgeContainerAppVersionRequest
|
|
19763
20083
|
* @returns CreateEdgeContainerAppVersionResponse
|
|
@@ -19974,7 +20294,7 @@ export default class Client extends OpenApi {
|
|
|
19974
20294
|
*/
|
|
19975
20295
|
createWafRule(request: CreateWafRuleRequest): Promise<CreateWafRuleResponse>;
|
|
19976
20296
|
/**
|
|
19977
|
-
*
|
|
20297
|
+
* Creates a waiting room for a website.
|
|
19978
20298
|
*
|
|
19979
20299
|
* @param tmpReq - CreateWaitingRoomRequest
|
|
19980
20300
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -19982,7 +20302,7 @@ export default class Client extends OpenApi {
|
|
|
19982
20302
|
*/
|
|
19983
20303
|
createWaitingRoomWithOptions(tmpReq: CreateWaitingRoomRequest, runtime: $Util.RuntimeOptions): Promise<CreateWaitingRoomResponse>;
|
|
19984
20304
|
/**
|
|
19985
|
-
*
|
|
20305
|
+
* Creates a waiting room for a website.
|
|
19986
20306
|
*
|
|
19987
20307
|
* @param request - CreateWaitingRoomRequest
|
|
19988
20308
|
* @returns CreateWaitingRoomResponse
|
|
@@ -20423,19 +20743,6 @@ export default class Client extends OpenApi {
|
|
|
20423
20743
|
* @returns DescribeHttpDDoSAttackProtectionResponse
|
|
20424
20744
|
*/
|
|
20425
20745
|
describeHttpDDoSAttackProtection(request: DescribeHttpDDoSAttackProtectionRequest): Promise<DescribeHttpDDoSAttackProtectionResponse>;
|
|
20426
|
-
/**
|
|
20427
|
-
* 查询加速服务节点IP段列表
|
|
20428
|
-
*
|
|
20429
|
-
* @param request - DescribeIPRangeListRequest
|
|
20430
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
20431
|
-
* @returns DescribeIPRangeListResponse
|
|
20432
|
-
*/
|
|
20433
|
-
describeIPRangeListWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeIPRangeListResponse>;
|
|
20434
|
-
/**
|
|
20435
|
-
* 查询加速服务节点IP段列表
|
|
20436
|
-
* @returns DescribeIPRangeListResponse
|
|
20437
|
-
*/
|
|
20438
|
-
describeIPRangeList(): Promise<DescribeIPRangeListResponse>;
|
|
20439
20746
|
/**
|
|
20440
20747
|
* 查询账户的KV状态信
|
|
20441
20748
|
*
|
|
@@ -21082,7 +21389,7 @@ export default class Client extends OpenApi {
|
|
|
21082
21389
|
*/
|
|
21083
21390
|
listCacheReserveInstances(request: ListCacheReserveInstancesRequest): Promise<ListCacheReserveInstancesResponse>;
|
|
21084
21391
|
/**
|
|
21085
|
-
*
|
|
21392
|
+
* Queries client certificates configured for a website.
|
|
21086
21393
|
*
|
|
21087
21394
|
* @param request - ListClientCertificatesRequest
|
|
21088
21395
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -21090,7 +21397,7 @@ export default class Client extends OpenApi {
|
|
|
21090
21397
|
*/
|
|
21091
21398
|
listClientCertificatesWithOptions(request: ListClientCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<ListClientCertificatesResponse>;
|
|
21092
21399
|
/**
|
|
21093
|
-
*
|
|
21400
|
+
* Queries client certificates configured for a website.
|
|
21094
21401
|
*
|
|
21095
21402
|
* @param request - ListClientCertificatesRequest
|
|
21096
21403
|
* @returns ListClientCertificatesResponse
|