@alicloud/esa20240910 2.5.3 → 2.5.4
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 +230 -72
- package/dist/client.js +16 -102
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +231 -119
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
|
*/
|
|
@@ -5425,39 +5451,6 @@ export declare class DescribeHttpDDoSAttackProtectionResponse extends $tea.Model
|
|
|
5425
5451
|
[key: string]: any;
|
|
5426
5452
|
});
|
|
5427
5453
|
}
|
|
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
5454
|
export declare class DescribeKvAccountStatusResponseBody extends $tea.Model {
|
|
5462
5455
|
/**
|
|
5463
5456
|
* @example
|
|
@@ -8356,17 +8349,25 @@ export declare class ListCacheReserveInstancesResponse extends $tea.Model {
|
|
|
8356
8349
|
}
|
|
8357
8350
|
export declare class ListClientCertificatesRequest extends $tea.Model {
|
|
8358
8351
|
/**
|
|
8352
|
+
* @remarks
|
|
8353
|
+
* The page number.
|
|
8354
|
+
*
|
|
8359
8355
|
* @example
|
|
8360
8356
|
* 1
|
|
8361
8357
|
*/
|
|
8362
8358
|
pageNumber?: number;
|
|
8363
8359
|
/**
|
|
8360
|
+
* @remarks
|
|
8361
|
+
* The number of entries per page.
|
|
8362
|
+
*
|
|
8364
8363
|
* @example
|
|
8365
8364
|
* 20
|
|
8366
8365
|
*/
|
|
8367
8366
|
pageSize?: number;
|
|
8368
8367
|
/**
|
|
8369
8368
|
* @remarks
|
|
8369
|
+
* The website ID.
|
|
8370
|
+
*
|
|
8370
8371
|
* This parameter is required.
|
|
8371
8372
|
*
|
|
8372
8373
|
* @example
|
|
@@ -8385,32 +8386,54 @@ export declare class ListClientCertificatesRequest extends $tea.Model {
|
|
|
8385
8386
|
}
|
|
8386
8387
|
export declare class ListClientCertificatesResponseBody extends $tea.Model {
|
|
8387
8388
|
/**
|
|
8389
|
+
* @remarks
|
|
8390
|
+
* The page number returned.
|
|
8391
|
+
*
|
|
8388
8392
|
* @example
|
|
8389
8393
|
* 1
|
|
8390
8394
|
*/
|
|
8391
8395
|
pageNumber?: number;
|
|
8392
8396
|
/**
|
|
8397
|
+
* @remarks
|
|
8398
|
+
* The number of entries per page.
|
|
8399
|
+
*
|
|
8393
8400
|
* @example
|
|
8394
8401
|
* 20
|
|
8395
8402
|
*/
|
|
8396
8403
|
pageSize?: number;
|
|
8397
8404
|
/**
|
|
8405
|
+
* @remarks
|
|
8406
|
+
* The request ID.
|
|
8407
|
+
*
|
|
8398
8408
|
* @example
|
|
8399
8409
|
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
8400
8410
|
*/
|
|
8401
8411
|
requestId?: string;
|
|
8412
|
+
/**
|
|
8413
|
+
* @remarks
|
|
8414
|
+
* The client certificates.
|
|
8415
|
+
*/
|
|
8402
8416
|
result?: ListClientCertificatesResponseBodyResult[];
|
|
8403
8417
|
/**
|
|
8418
|
+
* @remarks
|
|
8419
|
+
* The website ID.
|
|
8420
|
+
*
|
|
8404
8421
|
* @example
|
|
8405
8422
|
* 1234567890123
|
|
8406
8423
|
*/
|
|
8407
8424
|
siteId?: number;
|
|
8408
8425
|
/**
|
|
8426
|
+
* @remarks
|
|
8427
|
+
* The website name.
|
|
8428
|
+
*
|
|
8409
8429
|
* @example
|
|
8410
8430
|
* example.com
|
|
8411
8431
|
*/
|
|
8412
8432
|
siteName?: string;
|
|
8413
8433
|
/**
|
|
8434
|
+
* @remarks
|
|
8435
|
+
* The total number of entries.
|
|
8436
|
+
*
|
|
8414
8437
|
* @example
|
|
8415
8438
|
* 5
|
|
8416
8439
|
*/
|
|
@@ -9547,7 +9570,7 @@ export declare class ListRecordsRequest extends $tea.Model {
|
|
|
9547
9570
|
* @example
|
|
9548
9571
|
* true
|
|
9549
9572
|
*/
|
|
9550
|
-
proxied?:
|
|
9573
|
+
proxied?: boolean;
|
|
9551
9574
|
/**
|
|
9552
9575
|
* @example
|
|
9553
9576
|
* fuzzy
|
|
@@ -15259,45 +15282,73 @@ export declare class BatchPutKvRequestKvList extends $tea.Model {
|
|
|
15259
15282
|
}
|
|
15260
15283
|
export declare class CreateEdgeContainerAppVersionRequestContainersACRImageInfo extends $tea.Model {
|
|
15261
15284
|
/**
|
|
15285
|
+
* @remarks
|
|
15286
|
+
* The domain name of the Container Registry image.
|
|
15287
|
+
*
|
|
15262
15288
|
* @example
|
|
15263
15289
|
* 1500.***.net
|
|
15264
15290
|
*/
|
|
15265
15291
|
domain?: string;
|
|
15266
15292
|
/**
|
|
15293
|
+
* @remarks
|
|
15294
|
+
* The ID of the Container Registry instance.
|
|
15295
|
+
*
|
|
15267
15296
|
* @example
|
|
15268
15297
|
* xcdn-9axbo****
|
|
15269
15298
|
*/
|
|
15270
15299
|
instanceId?: string;
|
|
15271
15300
|
/**
|
|
15301
|
+
* @remarks
|
|
15302
|
+
* Specifies whether the image is an enterprise-level Container Registry image.
|
|
15303
|
+
*
|
|
15272
15304
|
* @example
|
|
15273
15305
|
* false
|
|
15274
15306
|
*/
|
|
15275
15307
|
isEnterpriseRegistry?: boolean;
|
|
15276
15308
|
/**
|
|
15309
|
+
* @remarks
|
|
15310
|
+
* The regions in which the Container Registry instance resides.
|
|
15311
|
+
*
|
|
15277
15312
|
* @example
|
|
15278
15313
|
* cn-shanghai
|
|
15279
15314
|
*/
|
|
15280
15315
|
regionId?: string;
|
|
15281
15316
|
/**
|
|
15317
|
+
* @remarks
|
|
15318
|
+
* The ID of the image repository.
|
|
15319
|
+
*
|
|
15282
15320
|
* @example
|
|
15283
15321
|
* crr-h1ghghu60ct****
|
|
15284
15322
|
*/
|
|
15285
15323
|
repoId?: string;
|
|
15286
15324
|
/**
|
|
15325
|
+
* @remarks
|
|
15326
|
+
* The name of the image repository.
|
|
15327
|
+
*
|
|
15287
15328
|
* @example
|
|
15288
15329
|
* test_71
|
|
15289
15330
|
*/
|
|
15290
15331
|
repoName?: string;
|
|
15291
15332
|
/**
|
|
15333
|
+
* @remarks
|
|
15334
|
+
* The namespace to which the image repository belongs.
|
|
15335
|
+
*
|
|
15292
15336
|
* @example
|
|
15293
15337
|
* safeline
|
|
15294
15338
|
*/
|
|
15295
15339
|
repoNamespace?: string;
|
|
15296
15340
|
/**
|
|
15341
|
+
* @remarks
|
|
15342
|
+
* The tag of the Container Registry image.
|
|
15343
|
+
*
|
|
15297
15344
|
* @example
|
|
15298
15345
|
* 3.40.2
|
|
15299
15346
|
*/
|
|
15300
15347
|
tag?: string;
|
|
15348
|
+
/**
|
|
15349
|
+
* @remarks
|
|
15350
|
+
* The URL of the Container Registry image tag.
|
|
15351
|
+
*/
|
|
15301
15352
|
tagUrl?: string;
|
|
15302
15353
|
static names(): {
|
|
15303
15354
|
[key: string]: string;
|
|
@@ -15311,56 +15362,89 @@ export declare class CreateEdgeContainerAppVersionRequestContainersACRImageInfo
|
|
|
15311
15362
|
}
|
|
15312
15363
|
export declare class CreateEdgeContainerAppVersionRequestContainersProbeContent extends $tea.Model {
|
|
15313
15364
|
/**
|
|
15365
|
+
* @remarks
|
|
15366
|
+
* The command of the exec type probe.
|
|
15367
|
+
*
|
|
15314
15368
|
* @example
|
|
15315
15369
|
* echo ok
|
|
15316
15370
|
*/
|
|
15317
15371
|
command?: string;
|
|
15318
15372
|
/**
|
|
15373
|
+
* @remarks
|
|
15374
|
+
* The number of consecutive failed health checks required for a container to be considered as unhealthy.
|
|
15375
|
+
*
|
|
15319
15376
|
* @example
|
|
15320
15377
|
* 3
|
|
15321
15378
|
*/
|
|
15322
15379
|
failureThreshold?: number;
|
|
15323
15380
|
/**
|
|
15381
|
+
* @remarks
|
|
15382
|
+
* The domain name that is used for health checks.
|
|
15383
|
+
*
|
|
15324
15384
|
* @example
|
|
15325
15385
|
* www.rewrite.com
|
|
15326
15386
|
*/
|
|
15327
15387
|
host?: string;
|
|
15328
15388
|
/**
|
|
15389
|
+
* @remarks
|
|
15390
|
+
* The request headers that are included in the container health check request.
|
|
15391
|
+
*
|
|
15329
15392
|
* @example
|
|
15330
15393
|
* [{\\"Content-Type\\":\\"application/json\\"}]
|
|
15331
15394
|
*/
|
|
15332
15395
|
httpHeaders?: string;
|
|
15333
15396
|
/**
|
|
15397
|
+
* @remarks
|
|
15398
|
+
* The latency for container probe initialization.
|
|
15399
|
+
*
|
|
15334
15400
|
* @example
|
|
15335
15401
|
* 1
|
|
15336
15402
|
*/
|
|
15337
15403
|
initialDelaySeconds?: number;
|
|
15338
15404
|
/**
|
|
15405
|
+
* @remarks
|
|
15406
|
+
* The health check path.
|
|
15407
|
+
*
|
|
15339
15408
|
* @example
|
|
15340
15409
|
* /
|
|
15341
15410
|
*/
|
|
15342
15411
|
path?: string;
|
|
15343
15412
|
/**
|
|
15413
|
+
* @remarks
|
|
15414
|
+
* The interval between container health checks.
|
|
15415
|
+
*
|
|
15344
15416
|
* @example
|
|
15345
15417
|
* 1
|
|
15346
15418
|
*/
|
|
15347
15419
|
periodSeconds?: number;
|
|
15348
15420
|
/**
|
|
15421
|
+
* @remarks
|
|
15422
|
+
* The health check port.
|
|
15423
|
+
*
|
|
15349
15424
|
* @example
|
|
15350
15425
|
* 9991
|
|
15351
15426
|
*/
|
|
15352
15427
|
port?: number;
|
|
15353
15428
|
/**
|
|
15429
|
+
* @remarks
|
|
15430
|
+
* The protocol that the container health check request uses.
|
|
15431
|
+
*
|
|
15354
15432
|
* @example
|
|
15355
15433
|
* http
|
|
15356
15434
|
*/
|
|
15357
15435
|
scheme?: string;
|
|
15358
15436
|
/**
|
|
15437
|
+
* @remarks
|
|
15438
|
+
* The number of consecutive successful health checks required for a container to be considered as healthy.
|
|
15439
|
+
*
|
|
15359
15440
|
* @example
|
|
15360
15441
|
* 1
|
|
15361
15442
|
*/
|
|
15362
15443
|
successThreshold?: number;
|
|
15363
15444
|
/**
|
|
15445
|
+
* @remarks
|
|
15446
|
+
* The timeout period of the container health check.
|
|
15447
|
+
*
|
|
15364
15448
|
* @example
|
|
15365
15449
|
* 1
|
|
15366
15450
|
*/
|
|
@@ -15376,12 +15460,39 @@ export declare class CreateEdgeContainerAppVersionRequestContainersProbeContent
|
|
|
15376
15460
|
});
|
|
15377
15461
|
}
|
|
15378
15462
|
export declare class CreateEdgeContainerAppVersionRequestContainers extends $tea.Model {
|
|
15463
|
+
/**
|
|
15464
|
+
* @remarks
|
|
15465
|
+
* The information about the Container Registry image.
|
|
15466
|
+
*/
|
|
15379
15467
|
ACRImageInfo?: CreateEdgeContainerAppVersionRequestContainersACRImageInfo;
|
|
15468
|
+
/**
|
|
15469
|
+
* @remarks
|
|
15470
|
+
* The arguments that are passed to the container startup command. Separate the parameters with spaces.
|
|
15471
|
+
*
|
|
15472
|
+
* @example
|
|
15473
|
+
* -a
|
|
15474
|
+
*/
|
|
15380
15475
|
args?: string;
|
|
15476
|
+
/**
|
|
15477
|
+
* @remarks
|
|
15478
|
+
* The command that is used to start the container. Separate the arguments with spaces.
|
|
15479
|
+
*
|
|
15480
|
+
* @example
|
|
15481
|
+
* nginx
|
|
15482
|
+
*/
|
|
15381
15483
|
command?: string;
|
|
15484
|
+
/**
|
|
15485
|
+
* @remarks
|
|
15486
|
+
* The environment variables. Separate the environment variables with commas (,).
|
|
15487
|
+
*
|
|
15488
|
+
* @example
|
|
15489
|
+
* VITE_APP_TITLE=My App
|
|
15490
|
+
*/
|
|
15382
15491
|
envVariables?: string;
|
|
15383
15492
|
/**
|
|
15384
15493
|
* @remarks
|
|
15494
|
+
* The address of the image.
|
|
15495
|
+
*
|
|
15385
15496
|
* This parameter is required.
|
|
15386
15497
|
*
|
|
15387
15498
|
* @example
|
|
@@ -15390,6 +15501,8 @@ export declare class CreateEdgeContainerAppVersionRequestContainers extends $tea
|
|
|
15390
15501
|
image?: string;
|
|
15391
15502
|
/**
|
|
15392
15503
|
* @remarks
|
|
15504
|
+
* Specifies whether the image is a Container Registry image.
|
|
15505
|
+
*
|
|
15393
15506
|
* This parameter is required.
|
|
15394
15507
|
*
|
|
15395
15508
|
* @example
|
|
@@ -15398,32 +15511,69 @@ export declare class CreateEdgeContainerAppVersionRequestContainers extends $tea
|
|
|
15398
15511
|
isACRImage?: boolean;
|
|
15399
15512
|
/**
|
|
15400
15513
|
* @remarks
|
|
15514
|
+
* The name of the container. The name must be unique in the same container group.
|
|
15515
|
+
*
|
|
15401
15516
|
* This parameter is required.
|
|
15402
15517
|
*
|
|
15403
15518
|
* @example
|
|
15404
15519
|
* lxg-demo-er
|
|
15405
15520
|
*/
|
|
15406
15521
|
name?: string;
|
|
15522
|
+
/**
|
|
15523
|
+
* @remarks
|
|
15524
|
+
* The command that is run before the container is started. Separate the arguments with spaces.
|
|
15525
|
+
*
|
|
15526
|
+
* @example
|
|
15527
|
+
* sh poststart.sh "echo hello world"
|
|
15528
|
+
*/
|
|
15407
15529
|
postStart?: string;
|
|
15530
|
+
/**
|
|
15531
|
+
* @remarks
|
|
15532
|
+
* The command that is run before the container is stopped. Separate the arguments with spaces.
|
|
15533
|
+
*
|
|
15534
|
+
* @example
|
|
15535
|
+
* sh prestop.sh "echo hello world"
|
|
15536
|
+
*/
|
|
15408
15537
|
preStop?: string;
|
|
15409
15538
|
/**
|
|
15410
15539
|
* @remarks
|
|
15540
|
+
* The content of the container health probe.
|
|
15541
|
+
*
|
|
15411
15542
|
* This parameter is required.
|
|
15412
15543
|
*/
|
|
15413
15544
|
probeContent?: CreateEdgeContainerAppVersionRequestContainersProbeContent;
|
|
15414
15545
|
/**
|
|
15415
15546
|
* @remarks
|
|
15547
|
+
* The type of the probe. Valid values:
|
|
15548
|
+
*
|
|
15549
|
+
* * exec: the command type.
|
|
15550
|
+
* * tcpSocket: the TCP probe type.
|
|
15551
|
+
* * httpGet: the HTTP access type.
|
|
15552
|
+
*
|
|
15416
15553
|
* This parameter is required.
|
|
15554
|
+
*
|
|
15555
|
+
* @example
|
|
15556
|
+
* exec
|
|
15417
15557
|
*/
|
|
15418
15558
|
probeType?: string;
|
|
15419
15559
|
/**
|
|
15420
15560
|
* @remarks
|
|
15561
|
+
* The compute specification of the container. Valid values: 1C2G, 2C4G, 2C8G, 4C8G, 4C16G, 8C16G, and 8C32G.
|
|
15562
|
+
*
|
|
15421
15563
|
* This parameter is required.
|
|
15564
|
+
*
|
|
15565
|
+
* @example
|
|
15566
|
+
* 1C2G
|
|
15422
15567
|
*/
|
|
15423
15568
|
spec?: string;
|
|
15424
15569
|
/**
|
|
15425
15570
|
* @remarks
|
|
15571
|
+
* The storage capacity. Valid values: 0.5G, 10G, 20G, and 30G.
|
|
15572
|
+
*
|
|
15426
15573
|
* This parameter is required.
|
|
15574
|
+
*
|
|
15575
|
+
* @example
|
|
15576
|
+
* 0.5G
|
|
15427
15577
|
*/
|
|
15428
15578
|
storage?: string;
|
|
15429
15579
|
static names(): {
|
|
@@ -16001,27 +16151,6 @@ export declare class DescribeDDoSAllEventListResponseBodyDataList extends $tea.M
|
|
|
16001
16151
|
[key: string]: any;
|
|
16002
16152
|
});
|
|
16003
16153
|
}
|
|
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
16154
|
export declare class DescribePreloadTasksResponseBodyTasks extends $tea.Model {
|
|
16026
16155
|
/**
|
|
16027
16156
|
* @example
|
|
@@ -17270,71 +17399,113 @@ export declare class ListCacheReserveInstancesResponseBodyInstanceInfo extends $
|
|
|
17270
17399
|
}
|
|
17271
17400
|
export declare class ListClientCertificatesResponseBodyResult extends $tea.Model {
|
|
17272
17401
|
/**
|
|
17402
|
+
* @remarks
|
|
17403
|
+
* The ID of the CA certificate.
|
|
17404
|
+
*
|
|
17273
17405
|
* @example
|
|
17274
17406
|
* baba39055622c008b90285a8838ed09a
|
|
17275
17407
|
*/
|
|
17276
17408
|
CACertificateId?: string;
|
|
17277
17409
|
/**
|
|
17410
|
+
* @remarks
|
|
17411
|
+
* The Common Name of the certificate.
|
|
17412
|
+
*
|
|
17278
17413
|
* @example
|
|
17279
17414
|
* www.example.com
|
|
17280
17415
|
*/
|
|
17281
17416
|
commonName?: string;
|
|
17282
17417
|
/**
|
|
17418
|
+
* @remarks
|
|
17419
|
+
* The time when the certificate was created.
|
|
17420
|
+
*
|
|
17283
17421
|
* @example
|
|
17284
17422
|
* 2024-06-24 07:48:51
|
|
17285
17423
|
*/
|
|
17286
17424
|
createTime?: string;
|
|
17287
17425
|
/**
|
|
17426
|
+
* @remarks
|
|
17427
|
+
* The certificate ID.
|
|
17428
|
+
*
|
|
17288
17429
|
* @example
|
|
17289
17430
|
* babab9db65ee5efcca9f3d41d4b50d66
|
|
17290
17431
|
*/
|
|
17291
17432
|
id?: string;
|
|
17292
17433
|
/**
|
|
17434
|
+
* @remarks
|
|
17435
|
+
* The certificate authority (CA) that issued the certificate.
|
|
17436
|
+
*
|
|
17293
17437
|
* @example
|
|
17294
17438
|
* GlobalSign nv-sa
|
|
17295
17439
|
*/
|
|
17296
17440
|
issuer?: string;
|
|
17297
17441
|
/**
|
|
17442
|
+
* @remarks
|
|
17443
|
+
* The certificate name.
|
|
17444
|
+
*
|
|
17298
17445
|
* @example
|
|
17299
17446
|
* yourCertName
|
|
17300
17447
|
*/
|
|
17301
17448
|
name?: string;
|
|
17302
17449
|
/**
|
|
17450
|
+
* @remarks
|
|
17451
|
+
* The time when the certificate expires.
|
|
17452
|
+
*
|
|
17303
17453
|
* @example
|
|
17304
17454
|
* 2024-03-31 02:08:00
|
|
17305
17455
|
*/
|
|
17306
17456
|
notAfter?: string;
|
|
17307
17457
|
/**
|
|
17458
|
+
* @remarks
|
|
17459
|
+
* The time when the certificate takes effect.
|
|
17460
|
+
*
|
|
17308
17461
|
* @example
|
|
17309
17462
|
* 2023-03-31 02:08:00
|
|
17310
17463
|
*/
|
|
17311
17464
|
notBefore?: string;
|
|
17312
17465
|
/**
|
|
17466
|
+
* @remarks
|
|
17467
|
+
* The public key algorithm of the certificate.
|
|
17468
|
+
*
|
|
17313
17469
|
* @example
|
|
17314
17470
|
* RSA
|
|
17315
17471
|
*/
|
|
17316
17472
|
pubkeyAlgorithm?: string;
|
|
17317
17473
|
/**
|
|
17474
|
+
* @remarks
|
|
17475
|
+
* The Subject Alternative Name (SAN) of the certificate.
|
|
17476
|
+
*
|
|
17318
17477
|
* @example
|
|
17319
17478
|
* www.example.com,*.example.com
|
|
17320
17479
|
*/
|
|
17321
17480
|
SAN?: string;
|
|
17322
17481
|
/**
|
|
17482
|
+
* @remarks
|
|
17483
|
+
* The signature algorithm of the certificate.
|
|
17484
|
+
*
|
|
17323
17485
|
* @example
|
|
17324
17486
|
* SHA256-RSA
|
|
17325
17487
|
*/
|
|
17326
17488
|
signatureAlgorithm?: string;
|
|
17327
17489
|
/**
|
|
17490
|
+
* @remarks
|
|
17491
|
+
* The certificate status.
|
|
17492
|
+
*
|
|
17328
17493
|
* @example
|
|
17329
17494
|
* active
|
|
17330
17495
|
*/
|
|
17331
17496
|
status?: string;
|
|
17332
17497
|
/**
|
|
17498
|
+
* @remarks
|
|
17499
|
+
* The certificate type.
|
|
17500
|
+
*
|
|
17333
17501
|
* @example
|
|
17334
17502
|
* dcdn
|
|
17335
17503
|
*/
|
|
17336
17504
|
type?: string;
|
|
17337
17505
|
/**
|
|
17506
|
+
* @remarks
|
|
17507
|
+
* The time when the certificate was updated.
|
|
17508
|
+
*
|
|
17338
17509
|
* @example
|
|
17339
17510
|
* 2024-07-20 06:18:42
|
|
17340
17511
|
*/
|
|
@@ -19749,7 +19920,7 @@ export default class Client extends OpenApi {
|
|
|
19749
19920
|
*/
|
|
19750
19921
|
createEdgeContainerAppRecord(request: CreateEdgeContainerAppRecordRequest): Promise<CreateEdgeContainerAppRecordResponse>;
|
|
19751
19922
|
/**
|
|
19752
|
-
*
|
|
19923
|
+
* Creates a version for a containerized application. You can iterate the application based on the version.
|
|
19753
19924
|
*
|
|
19754
19925
|
* @param tmpReq - CreateEdgeContainerAppVersionRequest
|
|
19755
19926
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -19757,7 +19928,7 @@ export default class Client extends OpenApi {
|
|
|
19757
19928
|
*/
|
|
19758
19929
|
createEdgeContainerAppVersionWithOptions(tmpReq: CreateEdgeContainerAppVersionRequest, runtime: $Util.RuntimeOptions): Promise<CreateEdgeContainerAppVersionResponse>;
|
|
19759
19930
|
/**
|
|
19760
|
-
*
|
|
19931
|
+
* Creates a version for a containerized application. You can iterate the application based on the version.
|
|
19761
19932
|
*
|
|
19762
19933
|
* @param request - CreateEdgeContainerAppVersionRequest
|
|
19763
19934
|
* @returns CreateEdgeContainerAppVersionResponse
|
|
@@ -20423,19 +20594,6 @@ export default class Client extends OpenApi {
|
|
|
20423
20594
|
* @returns DescribeHttpDDoSAttackProtectionResponse
|
|
20424
20595
|
*/
|
|
20425
20596
|
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
20597
|
/**
|
|
20440
20598
|
* 查询账户的KV状态信
|
|
20441
20599
|
*
|
|
@@ -21082,7 +21240,7 @@ export default class Client extends OpenApi {
|
|
|
21082
21240
|
*/
|
|
21083
21241
|
listCacheReserveInstances(request: ListCacheReserveInstancesRequest): Promise<ListCacheReserveInstancesResponse>;
|
|
21084
21242
|
/**
|
|
21085
|
-
*
|
|
21243
|
+
* Queries client certificates configured for a website.
|
|
21086
21244
|
*
|
|
21087
21245
|
* @param request - ListClientCertificatesRequest
|
|
21088
21246
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -21090,7 +21248,7 @@ export default class Client extends OpenApi {
|
|
|
21090
21248
|
*/
|
|
21091
21249
|
listClientCertificatesWithOptions(request: ListClientCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<ListClientCertificatesResponse>;
|
|
21092
21250
|
/**
|
|
21093
|
-
*
|
|
21251
|
+
* Queries client certificates configured for a website.
|
|
21094
21252
|
*
|
|
21095
21253
|
* @param request - ListClientCertificatesRequest
|
|
21096
21254
|
* @returns ListClientCertificatesResponse
|