@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/src/client.ts CHANGED
@@ -2565,6 +2565,8 @@ export class CreateEdgeContainerAppRecordResponse extends $tea.Model {
2565
2565
  export class CreateEdgeContainerAppVersionRequest extends $tea.Model {
2566
2566
  /**
2567
2567
  * @remarks
2568
+ * The application ID, which can be obtained by calling the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) operation.
2569
+ *
2568
2570
  * This parameter is required.
2569
2571
  *
2570
2572
  * @example
@@ -2573,6 +2575,9 @@ export class CreateEdgeContainerAppVersionRequest extends $tea.Model {
2573
2575
  appId?: string;
2574
2576
  /**
2575
2577
  * @remarks
2578
+ * The container group to be deployed for this version, which contains information about images.\\
2579
+ * 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.
2580
+ *
2576
2581
  * This parameter is required.
2577
2582
  *
2578
2583
  * @example
@@ -2598,6 +2603,8 @@ export class CreateEdgeContainerAppVersionRequest extends $tea.Model {
2598
2603
  containers?: CreateEdgeContainerAppVersionRequestContainers[];
2599
2604
  /**
2600
2605
  * @remarks
2606
+ * The version name, which must be 6 to 128 characters in length.
2607
+ *
2601
2608
  * This parameter is required.
2602
2609
  *
2603
2610
  * @example
@@ -2605,6 +2612,9 @@ export class CreateEdgeContainerAppVersionRequest extends $tea.Model {
2605
2612
  */
2606
2613
  name?: string;
2607
2614
  /**
2615
+ * @remarks
2616
+ * The description of the version.
2617
+ *
2608
2618
  * @example
2609
2619
  * test app
2610
2620
  */
@@ -2635,6 +2645,8 @@ export class CreateEdgeContainerAppVersionRequest extends $tea.Model {
2635
2645
  export class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Model {
2636
2646
  /**
2637
2647
  * @remarks
2648
+ * The application ID, which can be obtained by calling the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) operation.
2649
+ *
2638
2650
  * This parameter is required.
2639
2651
  *
2640
2652
  * @example
@@ -2643,6 +2655,9 @@ export class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Model {
2643
2655
  appId?: string;
2644
2656
  /**
2645
2657
  * @remarks
2658
+ * The container group to be deployed for this version, which contains information about images.\\
2659
+ * 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.
2660
+ *
2646
2661
  * This parameter is required.
2647
2662
  *
2648
2663
  * @example
@@ -2668,6 +2683,8 @@ export class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Model {
2668
2683
  containersShrink?: string;
2669
2684
  /**
2670
2685
  * @remarks
2686
+ * The version name, which must be 6 to 128 characters in length.
2687
+ *
2671
2688
  * This parameter is required.
2672
2689
  *
2673
2690
  * @example
@@ -2675,6 +2692,9 @@ export class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Model {
2675
2692
  */
2676
2693
  name?: string;
2677
2694
  /**
2695
+ * @remarks
2696
+ * The description of the version.
2697
+ *
2678
2698
  * @example
2679
2699
  * test app
2680
2700
  */
@@ -2704,11 +2724,17 @@ export class CreateEdgeContainerAppVersionShrinkRequest extends $tea.Model {
2704
2724
 
2705
2725
  export class CreateEdgeContainerAppVersionResponseBody extends $tea.Model {
2706
2726
  /**
2727
+ * @remarks
2728
+ * The request ID.
2729
+ *
2707
2730
  * @example
2708
2731
  * 04F0F334-1335-436C-A1D7-6C044FE73368
2709
2732
  */
2710
2733
  requestId?: string;
2711
2734
  /**
2735
+ * @remarks
2736
+ * The ID of the created version.
2737
+ *
2712
2738
  * @example
2713
2739
  * ver-87962637161651****
2714
2740
  */
@@ -7895,57 +7921,6 @@ export class DescribeHttpDDoSAttackProtectionResponse extends $tea.Model {
7895
7921
  }
7896
7922
  }
7897
7923
 
7898
- export class DescribeIPRangeListResponseBody extends $tea.Model {
7899
- content?: DescribeIPRangeListResponseBodyContent[];
7900
- /**
7901
- * @example
7902
- * CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
7903
- */
7904
- requestId?: string;
7905
- static names(): { [key: string]: string } {
7906
- return {
7907
- content: 'Content',
7908
- requestId: 'RequestId',
7909
- };
7910
- }
7911
-
7912
- static types(): { [key: string]: any } {
7913
- return {
7914
- content: { 'type': 'array', 'itemType': DescribeIPRangeListResponseBodyContent },
7915
- requestId: 'string',
7916
- };
7917
- }
7918
-
7919
- constructor(map?: { [key: string]: any }) {
7920
- super(map);
7921
- }
7922
- }
7923
-
7924
- export class DescribeIPRangeListResponse extends $tea.Model {
7925
- headers?: { [key: string]: string };
7926
- statusCode?: number;
7927
- body?: DescribeIPRangeListResponseBody;
7928
- static names(): { [key: string]: string } {
7929
- return {
7930
- headers: 'headers',
7931
- statusCode: 'statusCode',
7932
- body: 'body',
7933
- };
7934
- }
7935
-
7936
- static types(): { [key: string]: any } {
7937
- return {
7938
- headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
7939
- statusCode: 'number',
7940
- body: DescribeIPRangeListResponseBody,
7941
- };
7942
- }
7943
-
7944
- constructor(map?: { [key: string]: any }) {
7945
- super(map);
7946
- }
7947
- }
7948
-
7949
7924
  export class DescribeKvAccountStatusResponseBody extends $tea.Model {
7950
7925
  /**
7951
7926
  * @example
@@ -12199,17 +12174,25 @@ export class ListCacheReserveInstancesResponse extends $tea.Model {
12199
12174
 
12200
12175
  export class ListClientCertificatesRequest extends $tea.Model {
12201
12176
  /**
12177
+ * @remarks
12178
+ * The page number.
12179
+ *
12202
12180
  * @example
12203
12181
  * 1
12204
12182
  */
12205
12183
  pageNumber?: number;
12206
12184
  /**
12185
+ * @remarks
12186
+ * The number of entries per page.
12187
+ *
12207
12188
  * @example
12208
12189
  * 20
12209
12190
  */
12210
12191
  pageSize?: number;
12211
12192
  /**
12212
12193
  * @remarks
12194
+ * The website ID.
12195
+ *
12213
12196
  * This parameter is required.
12214
12197
  *
12215
12198
  * @example
@@ -12239,32 +12222,54 @@ export class ListClientCertificatesRequest extends $tea.Model {
12239
12222
 
12240
12223
  export class ListClientCertificatesResponseBody extends $tea.Model {
12241
12224
  /**
12225
+ * @remarks
12226
+ * The page number returned.
12227
+ *
12242
12228
  * @example
12243
12229
  * 1
12244
12230
  */
12245
12231
  pageNumber?: number;
12246
12232
  /**
12233
+ * @remarks
12234
+ * The number of entries per page.
12235
+ *
12247
12236
  * @example
12248
12237
  * 20
12249
12238
  */
12250
12239
  pageSize?: number;
12251
12240
  /**
12241
+ * @remarks
12242
+ * The request ID.
12243
+ *
12252
12244
  * @example
12253
12245
  * 15C66C7B-671A-4297-9187-2C4477247A74
12254
12246
  */
12255
12247
  requestId?: string;
12248
+ /**
12249
+ * @remarks
12250
+ * The client certificates.
12251
+ */
12256
12252
  result?: ListClientCertificatesResponseBodyResult[];
12257
12253
  /**
12254
+ * @remarks
12255
+ * The website ID.
12256
+ *
12258
12257
  * @example
12259
12258
  * 1234567890123
12260
12259
  */
12261
12260
  siteId?: number;
12262
12261
  /**
12262
+ * @remarks
12263
+ * The website name.
12264
+ *
12263
12265
  * @example
12264
12266
  * example.com
12265
12267
  */
12266
12268
  siteName?: string;
12267
12269
  /**
12270
+ * @remarks
12271
+ * The total number of entries.
12272
+ *
12268
12273
  * @example
12269
12274
  * 5
12270
12275
  */
@@ -13912,7 +13917,7 @@ export class ListRecordsRequest extends $tea.Model {
13912
13917
  * @example
13913
13918
  * true
13914
13919
  */
13915
- proxied?: string;
13920
+ proxied?: boolean;
13916
13921
  /**
13917
13922
  * @example
13918
13923
  * fuzzy
@@ -13960,7 +13965,7 @@ export class ListRecordsRequest extends $tea.Model {
13960
13965
  bizName: 'string',
13961
13966
  pageNumber: 'number',
13962
13967
  pageSize: 'number',
13963
- proxied: 'string',
13968
+ proxied: 'boolean',
13964
13969
  recordMatchType: 'string',
13965
13970
  recordName: 'string',
13966
13971
  siteId: 'number',
@@ -22346,45 +22351,73 @@ export class BatchPutKvRequestKvList extends $tea.Model {
22346
22351
 
22347
22352
  export class CreateEdgeContainerAppVersionRequestContainersACRImageInfo extends $tea.Model {
22348
22353
  /**
22354
+ * @remarks
22355
+ * The domain name of the Container Registry image.
22356
+ *
22349
22357
  * @example
22350
22358
  * 1500.***.net
22351
22359
  */
22352
22360
  domain?: string;
22353
22361
  /**
22362
+ * @remarks
22363
+ * The ID of the Container Registry instance.
22364
+ *
22354
22365
  * @example
22355
22366
  * xcdn-9axbo****
22356
22367
  */
22357
22368
  instanceId?: string;
22358
22369
  /**
22370
+ * @remarks
22371
+ * Specifies whether the image is an enterprise-level Container Registry image.
22372
+ *
22359
22373
  * @example
22360
22374
  * false
22361
22375
  */
22362
22376
  isEnterpriseRegistry?: boolean;
22363
22377
  /**
22378
+ * @remarks
22379
+ * The regions in which the Container Registry instance resides.
22380
+ *
22364
22381
  * @example
22365
22382
  * cn-shanghai
22366
22383
  */
22367
22384
  regionId?: string;
22368
22385
  /**
22386
+ * @remarks
22387
+ * The ID of the image repository.
22388
+ *
22369
22389
  * @example
22370
22390
  * crr-h1ghghu60ct****
22371
22391
  */
22372
22392
  repoId?: string;
22373
22393
  /**
22394
+ * @remarks
22395
+ * The name of the image repository.
22396
+ *
22374
22397
  * @example
22375
22398
  * test_71
22376
22399
  */
22377
22400
  repoName?: string;
22378
22401
  /**
22402
+ * @remarks
22403
+ * The namespace to which the image repository belongs.
22404
+ *
22379
22405
  * @example
22380
22406
  * safeline
22381
22407
  */
22382
22408
  repoNamespace?: string;
22383
22409
  /**
22410
+ * @remarks
22411
+ * The tag of the Container Registry image.
22412
+ *
22384
22413
  * @example
22385
22414
  * 3.40.2
22386
22415
  */
22387
22416
  tag?: string;
22417
+ /**
22418
+ * @remarks
22419
+ * The URL of the Container Registry image tag.
22420
+ */
22388
22421
  tagUrl?: string;
22389
22422
  static names(): { [key: string]: string } {
22390
22423
  return {
@@ -22421,56 +22454,89 @@ export class CreateEdgeContainerAppVersionRequestContainersACRImageInfo extends
22421
22454
 
22422
22455
  export class CreateEdgeContainerAppVersionRequestContainersProbeContent extends $tea.Model {
22423
22456
  /**
22457
+ * @remarks
22458
+ * The command of the exec type probe.
22459
+ *
22424
22460
  * @example
22425
22461
  * echo ok
22426
22462
  */
22427
22463
  command?: string;
22428
22464
  /**
22465
+ * @remarks
22466
+ * The number of consecutive failed health checks required for a container to be considered as unhealthy.
22467
+ *
22429
22468
  * @example
22430
22469
  * 3
22431
22470
  */
22432
22471
  failureThreshold?: number;
22433
22472
  /**
22473
+ * @remarks
22474
+ * The domain name that is used for health checks.
22475
+ *
22434
22476
  * @example
22435
22477
  * www.rewrite.com
22436
22478
  */
22437
22479
  host?: string;
22438
22480
  /**
22481
+ * @remarks
22482
+ * The request headers that are included in the container health check request.
22483
+ *
22439
22484
  * @example
22440
22485
  * [{\\"Content-Type\\":\\"application/json\\"}]
22441
22486
  */
22442
22487
  httpHeaders?: string;
22443
22488
  /**
22489
+ * @remarks
22490
+ * The latency for container probe initialization.
22491
+ *
22444
22492
  * @example
22445
22493
  * 1
22446
22494
  */
22447
22495
  initialDelaySeconds?: number;
22448
22496
  /**
22497
+ * @remarks
22498
+ * The health check path.
22499
+ *
22449
22500
  * @example
22450
22501
  * /
22451
22502
  */
22452
22503
  path?: string;
22453
22504
  /**
22505
+ * @remarks
22506
+ * The interval between container health checks.
22507
+ *
22454
22508
  * @example
22455
22509
  * 1
22456
22510
  */
22457
22511
  periodSeconds?: number;
22458
22512
  /**
22513
+ * @remarks
22514
+ * The health check port.
22515
+ *
22459
22516
  * @example
22460
22517
  * 9991
22461
22518
  */
22462
22519
  port?: number;
22463
22520
  /**
22521
+ * @remarks
22522
+ * The protocol that the container health check request uses.
22523
+ *
22464
22524
  * @example
22465
22525
  * http
22466
22526
  */
22467
22527
  scheme?: string;
22468
22528
  /**
22529
+ * @remarks
22530
+ * The number of consecutive successful health checks required for a container to be considered as healthy.
22531
+ *
22469
22532
  * @example
22470
22533
  * 1
22471
22534
  */
22472
22535
  successThreshold?: number;
22473
22536
  /**
22537
+ * @remarks
22538
+ * The timeout period of the container health check.
22539
+ *
22474
22540
  * @example
22475
22541
  * 1
22476
22542
  */
@@ -22513,12 +22579,39 @@ export class CreateEdgeContainerAppVersionRequestContainersProbeContent extends
22513
22579
  }
22514
22580
 
22515
22581
  export class CreateEdgeContainerAppVersionRequestContainers extends $tea.Model {
22582
+ /**
22583
+ * @remarks
22584
+ * The information about the Container Registry image.
22585
+ */
22516
22586
  ACRImageInfo?: CreateEdgeContainerAppVersionRequestContainersACRImageInfo;
22587
+ /**
22588
+ * @remarks
22589
+ * The arguments that are passed to the container startup command. Separate the parameters with spaces.
22590
+ *
22591
+ * @example
22592
+ * -a
22593
+ */
22517
22594
  args?: string;
22595
+ /**
22596
+ * @remarks
22597
+ * The command that is used to start the container. Separate the arguments with spaces.
22598
+ *
22599
+ * @example
22600
+ * nginx
22601
+ */
22518
22602
  command?: string;
22603
+ /**
22604
+ * @remarks
22605
+ * The environment variables. Separate the environment variables with commas (,).
22606
+ *
22607
+ * @example
22608
+ * VITE_APP_TITLE=My App
22609
+ */
22519
22610
  envVariables?: string;
22520
22611
  /**
22521
22612
  * @remarks
22613
+ * The address of the image.
22614
+ *
22522
22615
  * This parameter is required.
22523
22616
  *
22524
22617
  * @example
@@ -22527,6 +22620,8 @@ export class CreateEdgeContainerAppVersionRequestContainers extends $tea.Model {
22527
22620
  image?: string;
22528
22621
  /**
22529
22622
  * @remarks
22623
+ * Specifies whether the image is a Container Registry image.
22624
+ *
22530
22625
  * This parameter is required.
22531
22626
  *
22532
22627
  * @example
@@ -22535,32 +22630,69 @@ export class CreateEdgeContainerAppVersionRequestContainers extends $tea.Model {
22535
22630
  isACRImage?: boolean;
22536
22631
  /**
22537
22632
  * @remarks
22633
+ * The name of the container. The name must be unique in the same container group.
22634
+ *
22538
22635
  * This parameter is required.
22539
22636
  *
22540
22637
  * @example
22541
22638
  * lxg-demo-er
22542
22639
  */
22543
22640
  name?: string;
22641
+ /**
22642
+ * @remarks
22643
+ * The command that is run before the container is started. Separate the arguments with spaces.
22644
+ *
22645
+ * @example
22646
+ * sh poststart.sh "echo hello world"
22647
+ */
22544
22648
  postStart?: string;
22649
+ /**
22650
+ * @remarks
22651
+ * The command that is run before the container is stopped. Separate the arguments with spaces.
22652
+ *
22653
+ * @example
22654
+ * sh prestop.sh "echo hello world"
22655
+ */
22545
22656
  preStop?: string;
22546
22657
  /**
22547
22658
  * @remarks
22659
+ * The content of the container health probe.
22660
+ *
22548
22661
  * This parameter is required.
22549
22662
  */
22550
22663
  probeContent?: CreateEdgeContainerAppVersionRequestContainersProbeContent;
22551
22664
  /**
22552
22665
  * @remarks
22666
+ * The type of the probe. Valid values:
22667
+ *
22668
+ * * exec: the command type.
22669
+ * * tcpSocket: the TCP probe type.
22670
+ * * httpGet: the HTTP access type.
22671
+ *
22553
22672
  * This parameter is required.
22673
+ *
22674
+ * @example
22675
+ * exec
22554
22676
  */
22555
22677
  probeType?: string;
22556
22678
  /**
22557
22679
  * @remarks
22680
+ * The compute specification of the container. Valid values: 1C2G, 2C4G, 2C8G, 4C8G, 4C16G, 8C16G, and 8C32G.
22681
+ *
22558
22682
  * This parameter is required.
22683
+ *
22684
+ * @example
22685
+ * 1C2G
22559
22686
  */
22560
22687
  spec?: string;
22561
22688
  /**
22562
22689
  * @remarks
22690
+ * The storage capacity. Valid values: 0.5G, 10G, 20G, and 30G.
22691
+ *
22563
22692
  * This parameter is required.
22693
+ *
22694
+ * @example
22695
+ * 0.5G
22564
22696
  */
22565
22697
  storage?: string;
22566
22698
  static names(): { [key: string]: string } {
@@ -23549,36 +23681,6 @@ export class DescribeDDoSAllEventListResponseBodyDataList extends $tea.Model {
23549
23681
  }
23550
23682
  }
23551
23683
 
23552
- export class DescribeIPRangeListResponseBodyContent extends $tea.Model {
23553
- /**
23554
- * @example
23555
- * 172.16.0.0/12
23556
- */
23557
- cidr?: string;
23558
- /**
23559
- * @example
23560
- * IPv4
23561
- */
23562
- ipType?: string;
23563
- static names(): { [key: string]: string } {
23564
- return {
23565
- cidr: 'Cidr',
23566
- ipType: 'IpType',
23567
- };
23568
- }
23569
-
23570
- static types(): { [key: string]: any } {
23571
- return {
23572
- cidr: 'string',
23573
- ipType: 'string',
23574
- };
23575
- }
23576
-
23577
- constructor(map?: { [key: string]: any }) {
23578
- super(map);
23579
- }
23580
- }
23581
-
23582
23684
  export class DescribePreloadTasksResponseBodyTasks extends $tea.Model {
23583
23685
  /**
23584
23686
  * @example
@@ -25445,71 +25547,113 @@ export class ListCacheReserveInstancesResponseBodyInstanceInfo extends $tea.Mode
25445
25547
 
25446
25548
  export class ListClientCertificatesResponseBodyResult extends $tea.Model {
25447
25549
  /**
25550
+ * @remarks
25551
+ * The ID of the CA certificate.
25552
+ *
25448
25553
  * @example
25449
25554
  * baba39055622c008b90285a8838ed09a
25450
25555
  */
25451
25556
  CACertificateId?: string;
25452
25557
  /**
25558
+ * @remarks
25559
+ * The Common Name of the certificate.
25560
+ *
25453
25561
  * @example
25454
25562
  * www.example.com
25455
25563
  */
25456
25564
  commonName?: string;
25457
25565
  /**
25566
+ * @remarks
25567
+ * The time when the certificate was created.
25568
+ *
25458
25569
  * @example
25459
25570
  * 2024-06-24 07:48:51
25460
25571
  */
25461
25572
  createTime?: string;
25462
25573
  /**
25574
+ * @remarks
25575
+ * The certificate ID.
25576
+ *
25463
25577
  * @example
25464
25578
  * babab9db65ee5efcca9f3d41d4b50d66
25465
25579
  */
25466
25580
  id?: string;
25467
25581
  /**
25582
+ * @remarks
25583
+ * The certificate authority (CA) that issued the certificate.
25584
+ *
25468
25585
  * @example
25469
25586
  * GlobalSign nv-sa
25470
25587
  */
25471
25588
  issuer?: string;
25472
25589
  /**
25590
+ * @remarks
25591
+ * The certificate name.
25592
+ *
25473
25593
  * @example
25474
25594
  * yourCertName
25475
25595
  */
25476
25596
  name?: string;
25477
25597
  /**
25598
+ * @remarks
25599
+ * The time when the certificate expires.
25600
+ *
25478
25601
  * @example
25479
25602
  * 2024-03-31 02:08:00
25480
25603
  */
25481
25604
  notAfter?: string;
25482
25605
  /**
25606
+ * @remarks
25607
+ * The time when the certificate takes effect.
25608
+ *
25483
25609
  * @example
25484
25610
  * 2023-03-31 02:08:00
25485
25611
  */
25486
25612
  notBefore?: string;
25487
25613
  /**
25614
+ * @remarks
25615
+ * The public key algorithm of the certificate.
25616
+ *
25488
25617
  * @example
25489
25618
  * RSA
25490
25619
  */
25491
25620
  pubkeyAlgorithm?: string;
25492
25621
  /**
25622
+ * @remarks
25623
+ * The Subject Alternative Name (SAN) of the certificate.
25624
+ *
25493
25625
  * @example
25494
25626
  * www.example.com,*.example.com
25495
25627
  */
25496
25628
  SAN?: string;
25497
25629
  /**
25630
+ * @remarks
25631
+ * The signature algorithm of the certificate.
25632
+ *
25498
25633
  * @example
25499
25634
  * SHA256-RSA
25500
25635
  */
25501
25636
  signatureAlgorithm?: string;
25502
25637
  /**
25638
+ * @remarks
25639
+ * The certificate status.
25640
+ *
25503
25641
  * @example
25504
25642
  * active
25505
25643
  */
25506
25644
  status?: string;
25507
25645
  /**
25646
+ * @remarks
25647
+ * The certificate type.
25648
+ *
25508
25649
  * @example
25509
25650
  * dcdn
25510
25651
  */
25511
25652
  type?: string;
25512
25653
  /**
25654
+ * @remarks
25655
+ * The time when the certificate was updated.
25656
+ *
25513
25657
  * @example
25514
25658
  * 2024-07-20 06:18:42
25515
25659
  */
@@ -29850,7 +29994,7 @@ export default class Client extends OpenApi {
29850
29994
  }
29851
29995
 
29852
29996
  /**
29853
- * 创建边缘容器应用的版本
29997
+ * Creates a version for a containerized application. You can iterate the application based on the version.
29854
29998
  *
29855
29999
  * @param tmpReq - CreateEdgeContainerAppVersionRequest
29856
30000
  * @param runtime - runtime options for this request RuntimeOptions
@@ -29899,7 +30043,7 @@ export default class Client extends OpenApi {
29899
30043
  }
29900
30044
 
29901
30045
  /**
29902
- * 创建边缘容器应用的版本
30046
+ * Creates a version for a containerized application. You can iterate the application based on the version.
29903
30047
  *
29904
30048
  * @param request - CreateEdgeContainerAppVersionRequest
29905
30049
  * @returns CreateEdgeContainerAppVersionResponse
@@ -32355,38 +32499,6 @@ export default class Client extends OpenApi {
32355
32499
  return await this.describeHttpDDoSAttackProtectionWithOptions(request, runtime);
32356
32500
  }
32357
32501
 
32358
- /**
32359
- * 查询加速服务节点IP段列表
32360
- *
32361
- * @param request - DescribeIPRangeListRequest
32362
- * @param runtime - runtime options for this request RuntimeOptions
32363
- * @returns DescribeIPRangeListResponse
32364
- */
32365
- async describeIPRangeListWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeIPRangeListResponse> {
32366
- let req = new $OpenApi.OpenApiRequest({ });
32367
- let params = new $OpenApi.Params({
32368
- action: "DescribeIPRangeList",
32369
- version: "2024-09-10",
32370
- protocol: "HTTPS",
32371
- pathname: "/",
32372
- method: "GET",
32373
- authType: "AK",
32374
- style: "RPC",
32375
- reqBodyType: "formData",
32376
- bodyType: "json",
32377
- });
32378
- return $tea.cast<DescribeIPRangeListResponse>(await this.callApi(params, req, runtime), new DescribeIPRangeListResponse({}));
32379
- }
32380
-
32381
- /**
32382
- * 查询加速服务节点IP段列表
32383
- * @returns DescribeIPRangeListResponse
32384
- */
32385
- async describeIPRangeList(): Promise<DescribeIPRangeListResponse> {
32386
- let runtime = new $Util.RuntimeOptions({ });
32387
- return await this.describeIPRangeListWithOptions(runtime);
32388
- }
32389
-
32390
32502
  /**
32391
32503
  * 查询账户的KV状态信
32392
32504
  *
@@ -34133,7 +34245,7 @@ export default class Client extends OpenApi {
34133
34245
  }
34134
34246
 
34135
34247
  /**
34136
- * 查询站点下客户端证书列表
34248
+ * Queries client certificates configured for a website.
34137
34249
  *
34138
34250
  * @param request - ListClientCertificatesRequest
34139
34251
  * @param runtime - runtime options for this request RuntimeOptions
@@ -34160,7 +34272,7 @@ export default class Client extends OpenApi {
34160
34272
  }
34161
34273
 
34162
34274
  /**
34163
- * 查询站点下客户端证书列表
34275
+ * Queries client certificates configured for a website.
34164
34276
  *
34165
34277
  * @param request - ListClientCertificatesRequest
34166
34278
  * @returns ListClientCertificatesResponse