@alicloud/cloudapi20160714 4.4.2 → 4.5.1

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 CHANGED
@@ -344,6 +344,99 @@ export declare class AddTrafficSpecialControlResponse extends $tea.Model {
344
344
  [key: string]: any;
345
345
  });
346
346
  }
347
+ export declare class AssociateInstanceWithPrivateDNSRequest extends $tea.Model {
348
+ /**
349
+ * @remarks
350
+ * The instance ID.
351
+ *
352
+ * This parameter is required.
353
+ *
354
+ * @example
355
+ * apigateway-hz-ead4f4b0bac8
356
+ */
357
+ instanceId?: string;
358
+ /**
359
+ * @remarks
360
+ * The internal domain names included in the resolution.
361
+ *
362
+ * This parameter is required.
363
+ */
364
+ intranetDomains?: string[];
365
+ securityToken?: string;
366
+ static names(): {
367
+ [key: string]: string;
368
+ };
369
+ static types(): {
370
+ [key: string]: any;
371
+ };
372
+ constructor(map?: {
373
+ [key: string]: any;
374
+ });
375
+ }
376
+ export declare class AssociateInstanceWithPrivateDNSShrinkRequest extends $tea.Model {
377
+ /**
378
+ * @remarks
379
+ * The instance ID.
380
+ *
381
+ * This parameter is required.
382
+ *
383
+ * @example
384
+ * apigateway-hz-ead4f4b0bac8
385
+ */
386
+ instanceId?: string;
387
+ /**
388
+ * @remarks
389
+ * The internal domain names included in the resolution.
390
+ *
391
+ * This parameter is required.
392
+ */
393
+ intranetDomainsShrink?: string;
394
+ securityToken?: string;
395
+ static names(): {
396
+ [key: string]: string;
397
+ };
398
+ static types(): {
399
+ [key: string]: any;
400
+ };
401
+ constructor(map?: {
402
+ [key: string]: any;
403
+ });
404
+ }
405
+ export declare class AssociateInstanceWithPrivateDNSResponseBody extends $tea.Model {
406
+ /**
407
+ * @remarks
408
+ * The request ID.
409
+ *
410
+ * @example
411
+ * 03442A3D-3B7D-434C-8A95-A5FEB999B529
412
+ */
413
+ requestId?: string;
414
+ static names(): {
415
+ [key: string]: string;
416
+ };
417
+ static types(): {
418
+ [key: string]: any;
419
+ };
420
+ constructor(map?: {
421
+ [key: string]: any;
422
+ });
423
+ }
424
+ export declare class AssociateInstanceWithPrivateDNSResponse extends $tea.Model {
425
+ headers?: {
426
+ [key: string]: string;
427
+ };
428
+ statusCode?: number;
429
+ body?: AssociateInstanceWithPrivateDNSResponseBody;
430
+ static names(): {
431
+ [key: string]: string;
432
+ };
433
+ static types(): {
434
+ [key: string]: any;
435
+ };
436
+ constructor(map?: {
437
+ [key: string]: any;
438
+ });
439
+ }
347
440
  export declare class AttachApiProductRequest extends $tea.Model {
348
441
  /**
349
442
  * @remarks
@@ -2149,6 +2242,21 @@ export declare class CreateIpControlResponse extends $tea.Model {
2149
2242
  }
2150
2243
  export declare class CreateLogConfigRequest extends $tea.Model {
2151
2244
  /**
2245
+ * @remarks
2246
+ * Specifies to create a service-linked role.
2247
+ *
2248
+ * @example
2249
+ * true
2250
+ */
2251
+ createSlr?: boolean;
2252
+ /**
2253
+ * @remarks
2254
+ * The log type.
2255
+ *
2256
+ * Valid values:
2257
+ *
2258
+ * * PROVIDER
2259
+ *
2152
2260
  * @example
2153
2261
  * PROVIDER
2154
2262
  */
@@ -2166,6 +2274,8 @@ export declare class CreateLogConfigRequest extends $tea.Model {
2166
2274
  slsLogStore?: string;
2167
2275
  /**
2168
2276
  * @remarks
2277
+ * The name of the Log Service project.
2278
+ *
2169
2279
  * This parameter is required.
2170
2280
  *
2171
2281
  * @example
@@ -2184,6 +2294,9 @@ export declare class CreateLogConfigRequest extends $tea.Model {
2184
2294
  }
2185
2295
  export declare class CreateLogConfigResponseBody extends $tea.Model {
2186
2296
  /**
2297
+ * @remarks
2298
+ * The ID of the request.
2299
+ *
2187
2300
  * @example
2188
2301
  * CEF72CEB-54B6-4AE8-B225-F876FF7BA984
2189
2302
  */
@@ -2574,6 +2687,121 @@ export declare class CreatePluginResponse extends $tea.Model {
2574
2687
  [key: string]: any;
2575
2688
  });
2576
2689
  }
2690
+ export declare class CreatePrivateDNSRequest extends $tea.Model {
2691
+ /**
2692
+ * @remarks
2693
+ * The internal domain name.
2694
+ *
2695
+ * This parameter is required.
2696
+ *
2697
+ * @example
2698
+ * api.demo.com
2699
+ */
2700
+ intranetDomain?: string;
2701
+ /**
2702
+ * @remarks
2703
+ * The resolution records. This parameter is valid only when Type is set to A.
2704
+ */
2705
+ records?: CreatePrivateDNSRequestRecords[];
2706
+ securityToken?: string;
2707
+ /**
2708
+ * @remarks
2709
+ * The internal domain name resolution type. Valid values:
2710
+ *
2711
+ * * VPC: resolution for VPC access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
2712
+ * * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
2713
+ *
2714
+ * This parameter is required.
2715
+ *
2716
+ * @example
2717
+ * A
2718
+ */
2719
+ type?: string;
2720
+ static names(): {
2721
+ [key: string]: string;
2722
+ };
2723
+ static types(): {
2724
+ [key: string]: any;
2725
+ };
2726
+ constructor(map?: {
2727
+ [key: string]: any;
2728
+ });
2729
+ }
2730
+ export declare class CreatePrivateDNSShrinkRequest extends $tea.Model {
2731
+ /**
2732
+ * @remarks
2733
+ * The internal domain name.
2734
+ *
2735
+ * This parameter is required.
2736
+ *
2737
+ * @example
2738
+ * api.demo.com
2739
+ */
2740
+ intranetDomain?: string;
2741
+ /**
2742
+ * @remarks
2743
+ * The resolution records. This parameter is valid only when Type is set to A.
2744
+ */
2745
+ recordsShrink?: string;
2746
+ securityToken?: string;
2747
+ /**
2748
+ * @remarks
2749
+ * The internal domain name resolution type. Valid values:
2750
+ *
2751
+ * * VPC: resolution for VPC access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
2752
+ * * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
2753
+ *
2754
+ * This parameter is required.
2755
+ *
2756
+ * @example
2757
+ * A
2758
+ */
2759
+ type?: string;
2760
+ static names(): {
2761
+ [key: string]: string;
2762
+ };
2763
+ static types(): {
2764
+ [key: string]: any;
2765
+ };
2766
+ constructor(map?: {
2767
+ [key: string]: any;
2768
+ });
2769
+ }
2770
+ export declare class CreatePrivateDNSResponseBody extends $tea.Model {
2771
+ /**
2772
+ * @remarks
2773
+ * The request ID.
2774
+ *
2775
+ * @example
2776
+ * CEF72CEB-54B6-4AE8-B225-F876FF7BZ015
2777
+ */
2778
+ requestId?: string;
2779
+ static names(): {
2780
+ [key: string]: string;
2781
+ };
2782
+ static types(): {
2783
+ [key: string]: any;
2784
+ };
2785
+ constructor(map?: {
2786
+ [key: string]: any;
2787
+ });
2788
+ }
2789
+ export declare class CreatePrivateDNSResponse extends $tea.Model {
2790
+ headers?: {
2791
+ [key: string]: string;
2792
+ };
2793
+ statusCode?: number;
2794
+ body?: CreatePrivateDNSResponseBody;
2795
+ static names(): {
2796
+ [key: string]: string;
2797
+ };
2798
+ static types(): {
2799
+ [key: string]: any;
2800
+ };
2801
+ constructor(map?: {
2802
+ [key: string]: any;
2803
+ });
2804
+ }
2577
2805
  export declare class CreateSignatureRequest extends $tea.Model {
2578
2806
  /**
2579
2807
  * @remarks
@@ -4149,6 +4377,87 @@ export declare class DeletePluginResponse extends $tea.Model {
4149
4377
  [key: string]: any;
4150
4378
  });
4151
4379
  }
4380
+ export declare class DeletePrivateDNSRequest extends $tea.Model {
4381
+ /**
4382
+ * @remarks
4383
+ * Specifies whether to force delete the resolution.
4384
+ *
4385
+ * * true: force deletes the resolution if the resolution is associated with an instance.
4386
+ * * false: does not force delete the resolution if the resolution is associated with an instance.
4387
+ *
4388
+ * @example
4389
+ * false
4390
+ */
4391
+ force?: boolean;
4392
+ /**
4393
+ * @remarks
4394
+ * The internal domain name.
4395
+ *
4396
+ * This parameter is required.
4397
+ *
4398
+ * @example
4399
+ * api.demo.com
4400
+ */
4401
+ intranetDomain?: string;
4402
+ securityToken?: string;
4403
+ /**
4404
+ * @remarks
4405
+ * The internal domain name resolution type. Valid values:
4406
+ *
4407
+ * * VPC: resolution for virtual private cloud (VPC) access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
4408
+ * * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
4409
+ *
4410
+ * This parameter is required.
4411
+ *
4412
+ * @example
4413
+ * A
4414
+ */
4415
+ type?: string;
4416
+ static names(): {
4417
+ [key: string]: string;
4418
+ };
4419
+ static types(): {
4420
+ [key: string]: any;
4421
+ };
4422
+ constructor(map?: {
4423
+ [key: string]: any;
4424
+ });
4425
+ }
4426
+ export declare class DeletePrivateDNSResponseBody extends $tea.Model {
4427
+ /**
4428
+ * @remarks
4429
+ * The request ID.
4430
+ *
4431
+ * @example
4432
+ * EF924FE4-2EDD-4CD3-89EC-34E4708574E7
4433
+ */
4434
+ requestId?: string;
4435
+ static names(): {
4436
+ [key: string]: string;
4437
+ };
4438
+ static types(): {
4439
+ [key: string]: any;
4440
+ };
4441
+ constructor(map?: {
4442
+ [key: string]: any;
4443
+ });
4444
+ }
4445
+ export declare class DeletePrivateDNSResponse extends $tea.Model {
4446
+ headers?: {
4447
+ [key: string]: string;
4448
+ };
4449
+ statusCode?: number;
4450
+ body?: DeletePrivateDNSResponseBody;
4451
+ static names(): {
4452
+ [key: string]: string;
4453
+ };
4454
+ static types(): {
4455
+ [key: string]: any;
4456
+ };
4457
+ constructor(map?: {
4458
+ [key: string]: any;
4459
+ });
4460
+ }
4152
4461
  export declare class DeleteSignatureRequest extends $tea.Model {
4153
4462
  /**
4154
4463
  * @remarks
@@ -5340,6 +5649,14 @@ export declare class DescribeApiGroupResponseBody extends $tea.Model {
5340
5649
  * 2016-08-01T06:53:02Z
5341
5650
  */
5342
5651
  createdTime?: string;
5652
+ /**
5653
+ * @remarks
5654
+ * The custom appcode configuration.
5655
+ *
5656
+ * @example
5657
+ * {"location":"HEADER","name":"myAppCodeHeader"}
5658
+ */
5659
+ customAppCodeConfig?: string;
5343
5660
  /**
5344
5661
  * @remarks
5345
5662
  * The details about the custom domain name.
@@ -7462,17 +7779,25 @@ export declare class DescribeApisResponse extends $tea.Model {
7462
7779
  }
7463
7780
  export declare class DescribeApisByAppRequest extends $tea.Model {
7464
7781
  /**
7782
+ * @remarks
7783
+ * The name of the API. The name is used for fuzzy match.
7784
+ *
7465
7785
  * @example
7466
7786
  * getPersonInfo
7467
7787
  */
7468
7788
  apiName?: string;
7469
7789
  /**
7790
+ * @remarks
7791
+ * The API ID.
7792
+ *
7470
7793
  * @example
7471
7794
  * b19240592b1b4e74961fb8438ed7550c
7472
7795
  */
7473
7796
  apiUid?: string;
7474
7797
  /**
7475
7798
  * @remarks
7799
+ * The application ID.
7800
+ *
7476
7801
  * This parameter is required.
7477
7802
  *
7478
7803
  * @example
@@ -7480,26 +7805,41 @@ export declare class DescribeApisByAppRequest extends $tea.Model {
7480
7805
  */
7481
7806
  appId?: number;
7482
7807
  /**
7808
+ * @remarks
7809
+ * The description of the API.
7810
+ *
7483
7811
  * @example
7484
7812
  * test
7485
7813
  */
7486
7814
  description?: string;
7487
7815
  /**
7816
+ * @remarks
7817
+ * The request HTTP method of the API.
7818
+ *
7488
7819
  * @example
7489
7820
  * POST
7490
7821
  */
7491
7822
  method?: string;
7492
7823
  /**
7824
+ * @remarks
7825
+ * The number of the current page.
7826
+ *
7493
7827
  * @example
7494
7828
  * 1
7495
7829
  */
7496
7830
  pageNumber?: number;
7497
7831
  /**
7832
+ * @remarks
7833
+ * The number of entries per page.
7834
+ *
7498
7835
  * @example
7499
7836
  * 10
7500
7837
  */
7501
7838
  pageSize?: number;
7502
7839
  /**
7840
+ * @remarks
7841
+ * The request path of the API.
7842
+ *
7503
7843
  * @example
7504
7844
  * /tt
7505
7845
  */
@@ -7522,21 +7862,33 @@ export declare class DescribeApisByAppResponseBody extends $tea.Model {
7522
7862
  */
7523
7863
  appApiRelationInfos?: DescribeApisByAppResponseBodyAppApiRelationInfos;
7524
7864
  /**
7865
+ * @remarks
7866
+ * The number of pages to return the results on.
7867
+ *
7525
7868
  * @example
7526
7869
  * 1
7527
7870
  */
7528
7871
  pageNumber?: number;
7529
7872
  /**
7873
+ * @remarks
7874
+ * The number of entries returned per page.
7875
+ *
7530
7876
  * @example
7531
7877
  * 10
7532
7878
  */
7533
7879
  pageSize?: number;
7534
7880
  /**
7881
+ * @remarks
7882
+ * The ID of the request.
7883
+ *
7535
7884
  * @example
7536
7885
  * CEF72CEB-54B6-4AE8-B225-F876FF7BZ015
7537
7886
  */
7538
7887
  requestId?: string;
7539
7888
  /**
7889
+ * @remarks
7890
+ * The total number of returned entries.
7891
+ *
7540
7892
  * @example
7541
7893
  * 2
7542
7894
  */
@@ -9329,6 +9681,10 @@ export declare class DescribeDatasetInfoRequest extends $tea.Model {
9329
9681
  });
9330
9682
  }
9331
9683
  export declare class DescribeDatasetInfoResponseBody extends $tea.Model {
9684
+ /**
9685
+ * @remarks
9686
+ * The dataset info.
9687
+ */
9332
9688
  datasetInfo?: DescribeDatasetInfoResponseBodyDatasetInfo;
9333
9689
  /**
9334
9690
  * @remarks
@@ -9580,7 +9936,7 @@ export declare class DescribeDatasetListRequest extends $tea.Model {
9580
9936
  securityToken?: string;
9581
9937
  /**
9582
9938
  * @remarks
9583
- * 指定规则所适用的对象标签,可设置多个
9939
+ * Specify the object labels to which the rule applies, and multiple labels can be set
9584
9940
  */
9585
9941
  tag?: DescribeDatasetListRequestTag[];
9586
9942
  static names(): {
@@ -10031,6 +10387,9 @@ export declare class DescribeDeployedApisRequest extends $tea.Model {
10031
10387
  */
10032
10388
  apiId?: string;
10033
10389
  /**
10390
+ * @remarks
10391
+ * The HTTP method of the API request.
10392
+ *
10034
10393
  * @example
10035
10394
  * POST
10036
10395
  */
@@ -10044,6 +10403,9 @@ export declare class DescribeDeployedApisRequest extends $tea.Model {
10044
10403
  */
10045
10404
  apiName?: string;
10046
10405
  /**
10406
+ * @remarks
10407
+ * The request path of the API.
10408
+ *
10047
10409
  * @example
10048
10410
  * /st4
10049
10411
  */
@@ -11048,6 +11410,10 @@ export declare class DescribeInstanceClusterListRequest extends $tea.Model {
11048
11410
  });
11049
11411
  }
11050
11412
  export declare class DescribeInstanceClusterListResponseBody extends $tea.Model {
11413
+ /**
11414
+ * @remarks
11415
+ * The instance cluster list.
11416
+ */
11051
11417
  instanceClusters?: DescribeInstanceClusterListResponseBodyInstanceClusters;
11052
11418
  /**
11053
11419
  * @remarks
@@ -12309,6 +12675,13 @@ export declare class DescribeIpControlsResponse extends $tea.Model {
12309
12675
  }
12310
12676
  export declare class DescribeLogConfigRequest extends $tea.Model {
12311
12677
  /**
12678
+ * @remarks
12679
+ * The log type.
12680
+ *
12681
+ * Valid values:
12682
+ *
12683
+ * * PROVIDER
12684
+ *
12312
12685
  * @example
12313
12686
  * PROVIDER
12314
12687
  */
@@ -12325,8 +12698,15 @@ export declare class DescribeLogConfigRequest extends $tea.Model {
12325
12698
  });
12326
12699
  }
12327
12700
  export declare class DescribeLogConfigResponseBody extends $tea.Model {
12701
+ /**
12702
+ * @remarks
12703
+ * Info of the log config.
12704
+ */
12328
12705
  logInfos?: DescribeLogConfigResponseBodyLogInfos;
12329
12706
  /**
12707
+ * @remarks
12708
+ * The ID of the request.
12709
+ *
12330
12710
  * @example
12331
12711
  * E3BC2706-ABDB-5B64-A12F-08DFD9E3F339
12332
12712
  */
@@ -14571,6 +14951,99 @@ export declare class DisableInstanceAccessControlResponse extends $tea.Model {
14571
14951
  [key: string]: any;
14572
14952
  });
14573
14953
  }
14954
+ export declare class DissociateInstanceWithPrivateDNSRequest extends $tea.Model {
14955
+ /**
14956
+ * @remarks
14957
+ * The instance ID.
14958
+ *
14959
+ * This parameter is required.
14960
+ *
14961
+ * @example
14962
+ * apigateway-hz-ead4f4b0bac8
14963
+ */
14964
+ instanceId?: string;
14965
+ /**
14966
+ * @remarks
14967
+ * The internal domain names included in the resolution.
14968
+ *
14969
+ * This parameter is required.
14970
+ */
14971
+ intranetDomains?: string[];
14972
+ securityToken?: string;
14973
+ static names(): {
14974
+ [key: string]: string;
14975
+ };
14976
+ static types(): {
14977
+ [key: string]: any;
14978
+ };
14979
+ constructor(map?: {
14980
+ [key: string]: any;
14981
+ });
14982
+ }
14983
+ export declare class DissociateInstanceWithPrivateDNSShrinkRequest extends $tea.Model {
14984
+ /**
14985
+ * @remarks
14986
+ * The instance ID.
14987
+ *
14988
+ * This parameter is required.
14989
+ *
14990
+ * @example
14991
+ * apigateway-hz-ead4f4b0bac8
14992
+ */
14993
+ instanceId?: string;
14994
+ /**
14995
+ * @remarks
14996
+ * The internal domain names included in the resolution.
14997
+ *
14998
+ * This parameter is required.
14999
+ */
15000
+ intranetDomainsShrink?: string;
15001
+ securityToken?: string;
15002
+ static names(): {
15003
+ [key: string]: string;
15004
+ };
15005
+ static types(): {
15006
+ [key: string]: any;
15007
+ };
15008
+ constructor(map?: {
15009
+ [key: string]: any;
15010
+ });
15011
+ }
15012
+ export declare class DissociateInstanceWithPrivateDNSResponseBody extends $tea.Model {
15013
+ /**
15014
+ * @remarks
15015
+ * The request ID.
15016
+ *
15017
+ * @example
15018
+ * 6C87A26A-6A18-4B8E-8099-705278381A2C
15019
+ */
15020
+ requestId?: string;
15021
+ static names(): {
15022
+ [key: string]: string;
15023
+ };
15024
+ static types(): {
15025
+ [key: string]: any;
15026
+ };
15027
+ constructor(map?: {
15028
+ [key: string]: any;
15029
+ });
15030
+ }
15031
+ export declare class DissociateInstanceWithPrivateDNSResponse extends $tea.Model {
15032
+ headers?: {
15033
+ [key: string]: string;
15034
+ };
15035
+ statusCode?: number;
15036
+ body?: DissociateInstanceWithPrivateDNSResponseBody;
15037
+ static names(): {
15038
+ [key: string]: string;
15039
+ };
15040
+ static types(): {
15041
+ [key: string]: any;
15042
+ };
15043
+ constructor(map?: {
15044
+ [key: string]: any;
15045
+ });
15046
+ }
14574
15047
  export declare class DryRunSwaggerRequest extends $tea.Model {
14575
15048
  /**
14576
15049
  * @remarks
@@ -14769,6 +15242,8 @@ export declare class DryRunSwaggerResponse extends $tea.Model {
14769
15242
  export declare class EnableInstanceAccessControlRequest extends $tea.Model {
14770
15243
  /**
14771
15244
  * @remarks
15245
+ * The ID of the access control policy.
15246
+ *
14772
15247
  * This parameter is required.
14773
15248
  *
14774
15249
  * @example
@@ -14777,15 +15252,29 @@ export declare class EnableInstanceAccessControlRequest extends $tea.Model {
14777
15252
  aclId?: string;
14778
15253
  /**
14779
15254
  * @remarks
15255
+ * The ACL type. Valid values:
15256
+ *
15257
+ * * black: blacklist
15258
+ * * white: whitelist
15259
+ *
14780
15260
  * This parameter is required.
14781
15261
  *
14782
15262
  * @example
14783
15263
  * black
14784
15264
  */
14785
15265
  aclType?: string;
15266
+ /**
15267
+ * @remarks
15268
+ * The IP version. Valid values: **ipv4** and **ipv6**.
15269
+ *
15270
+ * @example
15271
+ * ipv4
15272
+ */
14786
15273
  addressIPVersion?: string;
14787
15274
  /**
14788
15275
  * @remarks
15276
+ * The ID of the instance.
15277
+ *
14789
15278
  * This parameter is required.
14790
15279
  *
14791
15280
  * @example
@@ -14805,6 +15294,9 @@ export declare class EnableInstanceAccessControlRequest extends $tea.Model {
14805
15294
  }
14806
15295
  export declare class EnableInstanceAccessControlResponseBody extends $tea.Model {
14807
15296
  /**
15297
+ * @remarks
15298
+ * The ID of the request.
15299
+ *
14808
15300
  * @example
14809
15301
  * CE5722A6-AE78-4741-A9B0-6C817D360510
14810
15302
  */
@@ -14836,34 +15328,66 @@ export declare class EnableInstanceAccessControlResponse extends $tea.Model {
14836
15328
  });
14837
15329
  }
14838
15330
  export declare class ExportOASRequest extends $tea.Model {
15331
+ /**
15332
+ * @remarks
15333
+ * The APIs that you want to export.
15334
+ */
14839
15335
  apiIdList?: string[];
14840
15336
  /**
15337
+ * @remarks
15338
+ * The exported format:
15339
+ *
15340
+ * * json
15341
+ * * yaml
15342
+ *
14841
15343
  * @example
14842
15344
  * yaml
14843
15345
  */
14844
15346
  dataFormat?: string;
14845
15347
  /**
15348
+ * @remarks
15349
+ * The API group ID.
15350
+ *
14846
15351
  * @example
14847
15352
  * 42925e7f5209438186d5560239af5xxx
14848
15353
  */
14849
15354
  groupId?: string;
14850
15355
  /**
15356
+ * @remarks
15357
+ * The OAS version. Valid values:
15358
+ *
15359
+ * * **oas2**
15360
+ * * **oas3**
15361
+ *
14851
15362
  * @example
14852
15363
  * oas2
14853
15364
  */
14854
15365
  oasVersion?: string;
14855
15366
  /**
15367
+ * @remarks
15368
+ * The number of pages in which you want to export the APIs.
15369
+ *
14856
15370
  * @example
14857
15371
  * 1
14858
15372
  */
14859
15373
  pageNumber?: number;
14860
15374
  securityToken?: string;
14861
15375
  /**
15376
+ * @remarks
15377
+ * The environment to which the API is published. Valid values:
15378
+ *
15379
+ * * **RELEASE**: the production environment
15380
+ * * **PRE**: the pre-release environment
15381
+ * * **TEST**: the test environment
15382
+ *
14862
15383
  * @example
14863
15384
  * RELEASE
14864
15385
  */
14865
15386
  stageName?: string;
14866
15387
  /**
15388
+ * @remarks
15389
+ * Specifies whether to export API Gateway extensions at the same time.
15390
+ *
14867
15391
  * @example
14868
15392
  * true
14869
15393
  */
@@ -14879,34 +15403,66 @@ export declare class ExportOASRequest extends $tea.Model {
14879
15403
  });
14880
15404
  }
14881
15405
  export declare class ExportOASShrinkRequest extends $tea.Model {
15406
+ /**
15407
+ * @remarks
15408
+ * The APIs that you want to export.
15409
+ */
14882
15410
  apiIdListShrink?: string;
14883
15411
  /**
15412
+ * @remarks
15413
+ * The exported format:
15414
+ *
15415
+ * * json
15416
+ * * yaml
15417
+ *
14884
15418
  * @example
14885
15419
  * yaml
14886
15420
  */
14887
15421
  dataFormat?: string;
14888
15422
  /**
15423
+ * @remarks
15424
+ * The API group ID.
15425
+ *
14889
15426
  * @example
14890
15427
  * 42925e7f5209438186d5560239af5xxx
14891
15428
  */
14892
15429
  groupId?: string;
14893
15430
  /**
15431
+ * @remarks
15432
+ * The OAS version. Valid values:
15433
+ *
15434
+ * * **oas2**
15435
+ * * **oas3**
15436
+ *
14894
15437
  * @example
14895
15438
  * oas2
14896
15439
  */
14897
15440
  oasVersion?: string;
14898
15441
  /**
15442
+ * @remarks
15443
+ * The number of pages in which you want to export the APIs.
15444
+ *
14899
15445
  * @example
14900
15446
  * 1
14901
15447
  */
14902
15448
  pageNumber?: number;
14903
15449
  securityToken?: string;
14904
15450
  /**
15451
+ * @remarks
15452
+ * The environment to which the API is published. Valid values:
15453
+ *
15454
+ * * **RELEASE**: the production environment
15455
+ * * **PRE**: the pre-release environment
15456
+ * * **TEST**: the test environment
15457
+ *
14905
15458
  * @example
14906
15459
  * RELEASE
14907
15460
  */
14908
15461
  stageName?: string;
14909
15462
  /**
15463
+ * @remarks
15464
+ * Specifies whether to export API Gateway extensions at the same time.
15465
+ *
14910
15466
  * @example
14911
15467
  * true
14912
15468
  */
@@ -14923,11 +15479,17 @@ export declare class ExportOASShrinkRequest extends $tea.Model {
14923
15479
  }
14924
15480
  export declare class ExportOASResponseBody extends $tea.Model {
14925
15481
  /**
15482
+ * @remarks
15483
+ * The Base64-encoded data of the exported Swagger file. You can obtain the file by using Base64 decoding.
15484
+ *
14926
15485
  * @example
14927
15486
  * UEsDBBQACAAIAABc8FgAAAAAAAAAAAAAAAA...
14928
15487
  */
14929
15488
  data?: string;
14930
15489
  /**
15490
+ * @remarks
15491
+ * The request ID.
15492
+ *
14931
15493
  * @example
14932
15494
  * CEF72CEB-54B6-4AE8-B225-F876xxxxxxxx
14933
15495
  */
@@ -15370,12 +15932,12 @@ export declare class ImportSwaggerResponseBody extends $tea.Model {
15370
15932
  failed?: ImportSwaggerResponseBodyFailed;
15371
15933
  /**
15372
15934
  * @remarks
15373
- * The models that failed to be imported based on the Swagger-compliant data imported this time.
15935
+ * The models that failed to be imported through the Swagger-compliant data this time.
15374
15936
  */
15375
15937
  modelFailed?: ImportSwaggerResponseBodyModelFailed;
15376
15938
  /**
15377
15939
  * @remarks
15378
- * The models that were imported based on the Swagger-compliant data imported this time.
15940
+ * The models that were imported through the Swagger-compliant data this time.
15379
15941
  */
15380
15942
  modelSuccess?: ImportSwaggerResponseBodyModelSuccess;
15381
15943
  /**
@@ -15388,7 +15950,7 @@ export declare class ImportSwaggerResponseBody extends $tea.Model {
15388
15950
  requestId?: string;
15389
15951
  /**
15390
15952
  * @remarks
15391
- * The APIs that were created based on the Swagger-compliant data imported this time.
15953
+ * The APIs that are created based on the Swagger-compliant data imported this time.
15392
15954
  */
15393
15955
  success?: ImportSwaggerResponseBodySuccess;
15394
15956
  static names(): {
@@ -15417,6 +15979,101 @@ export declare class ImportSwaggerResponse extends $tea.Model {
15417
15979
  [key: string]: any;
15418
15980
  });
15419
15981
  }
15982
+ export declare class ListPrivateDNSRequest extends $tea.Model {
15983
+ /**
15984
+ * @remarks
15985
+ * The internal domain name.
15986
+ *
15987
+ * @example
15988
+ * api.demo.com
15989
+ */
15990
+ intranetDomain?: string;
15991
+ securityToken?: string;
15992
+ /**
15993
+ * @remarks
15994
+ * The internal domain name resolution type. Valid values:
15995
+ *
15996
+ * * VPC: resolution for virtual private cloud (VPC) access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
15997
+ * * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
15998
+ *
15999
+ * @example
16000
+ * A
16001
+ */
16002
+ type?: string;
16003
+ static names(): {
16004
+ [key: string]: string;
16005
+ };
16006
+ static types(): {
16007
+ [key: string]: any;
16008
+ };
16009
+ constructor(map?: {
16010
+ [key: string]: any;
16011
+ });
16012
+ }
16013
+ export declare class ListPrivateDNSResponseBody extends $tea.Model {
16014
+ /**
16015
+ * @remarks
16016
+ * The page number of the returned page.
16017
+ *
16018
+ * @example
16019
+ * 1
16020
+ */
16021
+ pageNumber?: number;
16022
+ /**
16023
+ * @remarks
16024
+ * The number of entries per page.
16025
+ *
16026
+ * @example
16027
+ * 10
16028
+ */
16029
+ pageSize?: number;
16030
+ /**
16031
+ * @remarks
16032
+ * The internal domain name resolutions.
16033
+ */
16034
+ privateDNSList?: ListPrivateDNSResponseBodyPrivateDNSList[];
16035
+ /**
16036
+ * @remarks
16037
+ * The request ID.
16038
+ *
16039
+ * @example
16040
+ * CEF72CEB-54B6-4AE8-B225-F876FF7BZ016
16041
+ */
16042
+ requestId?: string;
16043
+ /**
16044
+ * @remarks
16045
+ * The total number of entries returned.
16046
+ *
16047
+ * @example
16048
+ * 2
16049
+ */
16050
+ totalCount?: number;
16051
+ static names(): {
16052
+ [key: string]: string;
16053
+ };
16054
+ static types(): {
16055
+ [key: string]: any;
16056
+ };
16057
+ constructor(map?: {
16058
+ [key: string]: any;
16059
+ });
16060
+ }
16061
+ export declare class ListPrivateDNSResponse extends $tea.Model {
16062
+ headers?: {
16063
+ [key: string]: string;
16064
+ };
16065
+ statusCode?: number;
16066
+ body?: ListPrivateDNSResponseBody;
16067
+ static names(): {
16068
+ [key: string]: string;
16069
+ };
16070
+ static types(): {
16071
+ [key: string]: any;
16072
+ };
16073
+ constructor(map?: {
16074
+ [key: string]: any;
16075
+ });
16076
+ }
15420
16077
  export declare class ListTagResourcesRequest extends $tea.Model {
15421
16078
  /**
15422
16079
  * @remarks
@@ -16141,6 +16798,14 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
16141
16798
  * depart:dep1
16142
16799
  */
16143
16800
  compatibleFlags?: string;
16801
+ /**
16802
+ * @remarks
16803
+ * The custom appcode configuration.
16804
+ *
16805
+ * @example
16806
+ * {"location":"HEADER","name":"myAppCodeHeader"}
16807
+ */
16808
+ customAppCodeConfig?: string;
16144
16809
  /**
16145
16810
  * @remarks
16146
16811
  * The custom trace configuration.
@@ -16173,6 +16838,13 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
16173
16838
  * New weather informations.
16174
16839
  */
16175
16840
  description?: string;
16841
+ /**
16842
+ * @remarks
16843
+ * If filter AppCode for backend.
16844
+ *
16845
+ * @example
16846
+ * false
16847
+ */
16176
16848
  filterAppCodeForBackend?: string;
16177
16849
  /**
16178
16850
  * @remarks
@@ -16203,10 +16875,19 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
16203
16875
  /**
16204
16876
  * @remarks
16205
16877
  * The RPC mode.
16878
+ *
16879
+ * @example
16880
+ * {}
16206
16881
  */
16207
16882
  rpcPattern?: string;
16208
16883
  securityToken?: string;
16209
16884
  /**
16885
+ * @remarks
16886
+ * If support SSE.
16887
+ *
16888
+ * @example
16889
+ * true
16890
+ *
16210
16891
  * **if can be null:**
16211
16892
  * true
16212
16893
  */
@@ -16315,6 +16996,8 @@ export declare class ModifyApiGroupResponse extends $tea.Model {
16315
16996
  export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
16316
16997
  /**
16317
16998
  * @remarks
16999
+ * The ID of the API group.
17000
+ *
16318
17001
  * This parameter is required.
16319
17002
  *
16320
17003
  * @example
@@ -16322,14 +17005,23 @@ export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
16322
17005
  */
16323
17006
  groupId?: string;
16324
17007
  /**
17008
+ * @remarks
17009
+ * The remarks.
17010
+ *
16325
17011
  * @example
16326
17012
  * migrate
16327
17013
  */
16328
17014
  remark?: string;
16329
17015
  securityToken?: string;
17016
+ /**
17017
+ * @remarks
17018
+ * The tag of objects that match the rule. You can specify multiple tags.
17019
+ */
16330
17020
  tag?: ModifyApiGroupInstanceRequestTag[];
16331
17021
  /**
16332
17022
  * @remarks
17023
+ * The ID of the instance to which you want to migrate the API group.
17024
+ *
16333
17025
  * This parameter is required.
16334
17026
  *
16335
17027
  * @example
@@ -16348,6 +17040,9 @@ export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
16348
17040
  }
16349
17041
  export declare class ModifyApiGroupInstanceResponseBody extends $tea.Model {
16350
17042
  /**
17043
+ * @remarks
17044
+ * The request ID.
17045
+ *
16351
17046
  * @example
16352
17047
  * E07AEFF0-9FB0-599E-8F12-B418D8AE1F3D
16353
17048
  */
@@ -16556,7 +17251,7 @@ export declare class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
16556
17251
  export declare class ModifyAppRequest extends $tea.Model {
16557
17252
  /**
16558
17253
  * @remarks
16559
- * The ID of the application.
17254
+ * The ID of the app.
16560
17255
  *
16561
17256
  * This parameter is required.
16562
17257
  *
@@ -16566,9 +17261,9 @@ export declare class ModifyAppRequest extends $tea.Model {
16566
17261
  appId?: number;
16567
17262
  /**
16568
17263
  * @remarks
16569
- * The ID must be 4 to 26 characters in length and can contain letters, digits, and underscores (_). It must start with a letter.
17264
+ * The value must be 4 to 26 characters in length and can contain letters, digits, and underscores (_). It must start with a letter.
16570
17265
  *
16571
- * If you do not want to modify the existing value, do not specify this parameter.
17266
+ * This parameter is required only when you want to modify the value.
16572
17267
  *
16573
17268
  * @example
16574
17269
  * jiedian_pord
@@ -16576,14 +17271,21 @@ export declare class ModifyAppRequest extends $tea.Model {
16576
17271
  appName?: string;
16577
17272
  /**
16578
17273
  * @remarks
16579
- * The description of the application. The description can be up to 180 characters in length.
17274
+ * The description of the app. The description can contain a maximum of 180 characters in length.
16580
17275
  *
16581
- * If you do not want to modify the existing value, do not specify this parameter.
17276
+ * This parameter is required only when you want to modify the value.
16582
17277
  *
16583
17278
  * @example
16584
17279
  * modidyTest
16585
17280
  */
16586
17281
  description?: string;
17282
+ /**
17283
+ * @remarks
17284
+ * 扩展信息
17285
+ *
17286
+ * @example
17287
+ * 110461946884
17288
+ */
16587
17289
  extend?: string;
16588
17290
  securityToken?: string;
16589
17291
  /**
@@ -16943,27 +17645,41 @@ export declare class ModifyDatasetItemResponse extends $tea.Model {
16943
17645
  }
16944
17646
  export declare class ModifyInstanceAttributeRequest extends $tea.Model {
16945
17647
  /**
17648
+ * @remarks
17649
+ * If delete VPC Ip block.
17650
+ *
16946
17651
  * @example
16947
17652
  * true
16948
17653
  */
16949
17654
  deleteVpcIpBlock?: string;
16950
17655
  /**
17656
+ * @remarks
17657
+ * If enable outbound IPv6 Traffic.
17658
+ *
16951
17659
  * @example
16952
17660
  * true
16953
17661
  */
16954
17662
  egressIpv6Enable?: string;
16955
17663
  /**
17664
+ * @remarks
17665
+ * The HTTPS policy.
17666
+ *
16956
17667
  * @example
16957
17668
  * HTTPS2_TLS1_0
16958
17669
  */
16959
17670
  httpsPolicy?: string;
16960
17671
  /**
17672
+ * @remarks
17673
+ * If enable inbound IPv6 Traffic.
17674
+ *
16961
17675
  * @example
16962
17676
  * true
16963
17677
  */
16964
17678
  IPV6Enabled?: string;
16965
17679
  /**
16966
17680
  * @remarks
17681
+ * The ID of the instance.
17682
+ *
16967
17683
  * This parameter is required.
16968
17684
  *
16969
17685
  * @example
@@ -16971,21 +17687,33 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
16971
17687
  */
16972
17688
  instanceId?: string;
16973
17689
  /**
17690
+ * @remarks
17691
+ * Instance Name
17692
+ *
16974
17693
  * @example
16975
17694
  * apigatewayInstance
16976
17695
  */
16977
17696
  instanceName?: string;
16978
17697
  /**
17698
+ * @remarks
17699
+ * Custom private CIDR block.
17700
+ *
16979
17701
  * @example
16980
17702
  * 172.0.0.1/24
16981
17703
  */
16982
17704
  intranetSegments?: string;
16983
17705
  /**
17706
+ * @remarks
17707
+ * Maintainable end time.
17708
+ *
16984
17709
  * @example
16985
17710
  * 23:00Z
16986
17711
  */
16987
17712
  maintainEndTime?: string;
16988
17713
  /**
17714
+ * @remarks
17715
+ * Maintainable start time.
17716
+ *
16989
17717
  * @example
16990
17718
  * 18:00Z
16991
17719
  */
@@ -16996,11 +17724,17 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
16996
17724
  */
16997
17725
  toConnectVpcIpBlock?: ModifyInstanceAttributeRequestToConnectVpcIpBlock;
16998
17726
  /**
17727
+ * @remarks
17728
+ * The token of the request.
17729
+ *
16999
17730
  * @example
17000
17731
  * c20d86c4-1eb3-4d0b-afe9-c586df1e2136
17001
17732
  */
17002
17733
  token?: string;
17003
17734
  /**
17735
+ * @remarks
17736
+ * Specifies whether to enable the self-calling domain name.
17737
+ *
17004
17738
  * @example
17005
17739
  * false
17006
17740
  */
@@ -17017,27 +17751,41 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
17017
17751
  }
17018
17752
  export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
17019
17753
  /**
17754
+ * @remarks
17755
+ * If delete VPC Ip block.
17756
+ *
17020
17757
  * @example
17021
17758
  * true
17022
17759
  */
17023
17760
  deleteVpcIpBlock?: string;
17024
17761
  /**
17762
+ * @remarks
17763
+ * If enable outbound IPv6 Traffic.
17764
+ *
17025
17765
  * @example
17026
17766
  * true
17027
17767
  */
17028
17768
  egressIpv6Enable?: string;
17029
17769
  /**
17770
+ * @remarks
17771
+ * The HTTPS policy.
17772
+ *
17030
17773
  * @example
17031
17774
  * HTTPS2_TLS1_0
17032
17775
  */
17033
17776
  httpsPolicy?: string;
17034
17777
  /**
17778
+ * @remarks
17779
+ * If enable inbound IPv6 Traffic.
17780
+ *
17035
17781
  * @example
17036
17782
  * true
17037
17783
  */
17038
17784
  IPV6Enabled?: string;
17039
17785
  /**
17040
17786
  * @remarks
17787
+ * The ID of the instance.
17788
+ *
17041
17789
  * This parameter is required.
17042
17790
  *
17043
17791
  * @example
@@ -17045,21 +17793,33 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
17045
17793
  */
17046
17794
  instanceId?: string;
17047
17795
  /**
17796
+ * @remarks
17797
+ * Instance Name
17798
+ *
17048
17799
  * @example
17049
17800
  * apigatewayInstance
17050
17801
  */
17051
17802
  instanceName?: string;
17052
17803
  /**
17804
+ * @remarks
17805
+ * Custom private CIDR block.
17806
+ *
17053
17807
  * @example
17054
17808
  * 172.0.0.1/24
17055
17809
  */
17056
17810
  intranetSegments?: string;
17057
17811
  /**
17812
+ * @remarks
17813
+ * Maintainable end time.
17814
+ *
17058
17815
  * @example
17059
17816
  * 23:00Z
17060
17817
  */
17061
17818
  maintainEndTime?: string;
17062
17819
  /**
17820
+ * @remarks
17821
+ * Maintainable start time.
17822
+ *
17063
17823
  * @example
17064
17824
  * 18:00Z
17065
17825
  */
@@ -17070,11 +17830,17 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
17070
17830
  */
17071
17831
  toConnectVpcIpBlockShrink?: string;
17072
17832
  /**
17833
+ * @remarks
17834
+ * The token of the request.
17835
+ *
17073
17836
  * @example
17074
17837
  * c20d86c4-1eb3-4d0b-afe9-c586df1e2136
17075
17838
  */
17076
17839
  token?: string;
17077
17840
  /**
17841
+ * @remarks
17842
+ * Specifies whether to enable the self-calling domain name.
17843
+ *
17078
17844
  * @example
17079
17845
  * false
17080
17846
  */
@@ -17091,6 +17857,9 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
17091
17857
  }
17092
17858
  export declare class ModifyInstanceAttributeResponseBody extends $tea.Model {
17093
17859
  /**
17860
+ * @remarks
17861
+ * The ID of the request.
17862
+ *
17094
17863
  * @example
17095
17864
  * F3186326-2C57-58E1-B6E9-XXXXXXXXXXXX
17096
17865
  */
@@ -17467,6 +18236,16 @@ export declare class ModifyIpControlPolicyItemResponse extends $tea.Model {
17467
18236
  }
17468
18237
  export declare class ModifyLogConfigRequest extends $tea.Model {
17469
18238
  /**
18239
+ * @remarks
18240
+ * The log type. Valid values:
18241
+ *
18242
+ * * **log**: other logs
18243
+ * * **survey**: inspection logs
18244
+ *
18245
+ * Enumeration value:
18246
+ *
18247
+ * * PROVIDER
18248
+ *
17470
18249
  * @example
17471
18250
  * PROVIDER
17472
18251
  */
@@ -17474,6 +18253,8 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
17474
18253
  securityToken?: string;
17475
18254
  /**
17476
18255
  * @remarks
18256
+ * The name of the Logstore.
18257
+ *
17477
18258
  * This parameter is required.
17478
18259
  *
17479
18260
  * @example
@@ -17482,6 +18263,8 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
17482
18263
  slsLogStore?: string;
17483
18264
  /**
17484
18265
  * @remarks
18266
+ * The name of the Log Service project.
18267
+ *
17485
18268
  * This parameter is required.
17486
18269
  *
17487
18270
  * @example
@@ -17500,6 +18283,9 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
17500
18283
  }
17501
18284
  export declare class ModifyLogConfigResponseBody extends $tea.Model {
17502
18285
  /**
18286
+ * @remarks
18287
+ * The request ID.
18288
+ *
17503
18289
  * @example
17504
18290
  * 75A4ADCB-AA26-51FB-94D4-AB3240040974
17505
18291
  */
@@ -19290,6 +20076,8 @@ export declare class SdkGenerateByAppResponse extends $tea.Model {
19290
20076
  export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
19291
20077
  /**
19292
20078
  * @remarks
20079
+ * The ID of the app. This ID is generated by the system and globally unique.
20080
+ *
19293
20081
  * This parameter is required.
19294
20082
  *
19295
20083
  * @example
@@ -19298,6 +20086,8 @@ export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
19298
20086
  appId?: number;
19299
20087
  /**
19300
20088
  * @remarks
20089
+ * The programming language in which the SDK is generated.
20090
+ *
19301
20091
  * This parameter is required.
19302
20092
  *
19303
20093
  * @example
@@ -19317,11 +20107,17 @@ export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
19317
20107
  }
19318
20108
  export declare class SdkGenerateByAppForRegionResponseBody extends $tea.Model {
19319
20109
  /**
20110
+ * @remarks
20111
+ * The code of the SDK by using the Base64 scheme. You can obtain the file by using the Base64 decoding scheme.
20112
+ *
19320
20113
  * @example
19321
20114
  * UEsDBBQACAAIADdwnFQAAAAAAAAAAAAAAAA2AAAAQ0FTREtfSkFWQV8xMjI3NDY2NjY0MzM0MTMzXzE2NTExMjU3MD......
19322
20115
  */
19323
20116
  downloadLink?: string;
19324
20117
  /**
20118
+ * @remarks
20119
+ * The ID of the request.
20120
+ *
19325
20121
  * @example
19326
20122
  * CE5722A6-AE78-4741-A9B0-6C817D360510
19327
20123
  */
@@ -19480,18 +20276,36 @@ export declare class SetAccessControlListAttributeResponse extends $tea.Model {
19480
20276
  export declare class SetApiProductsAuthoritiesRequest extends $tea.Model {
19481
20277
  /**
19482
20278
  * @remarks
20279
+ * The API products.
20280
+ *
19483
20281
  * This parameter is required.
19484
20282
  */
19485
20283
  apiProductIds?: string[];
19486
20284
  /**
19487
20285
  * @remarks
20286
+ * The application ID.
20287
+ *
19488
20288
  * This parameter is required.
19489
20289
  *
19490
20290
  * @example
19491
20291
  * 111385984
19492
20292
  */
19493
20293
  appId?: number;
20294
+ /**
20295
+ * @remarks
20296
+ * 授权有效时间的截止时间,请设置格林尼治标准时间(GMT), 如果为空,即为授权永久有效。
20297
+ *
20298
+ * @example
20299
+ * 2023-06-12T03:07:37Z
20300
+ */
19494
20301
  authValidTime?: string;
20302
+ /**
20303
+ * @remarks
20304
+ * The authorization description.
20305
+ *
20306
+ * @example
20307
+ * test
20308
+ */
19495
20309
  description?: string;
19496
20310
  securityToken?: string;
19497
20311
  static names(): {
@@ -19507,18 +20321,36 @@ export declare class SetApiProductsAuthoritiesRequest extends $tea.Model {
19507
20321
  export declare class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
19508
20322
  /**
19509
20323
  * @remarks
20324
+ * The API products.
20325
+ *
19510
20326
  * This parameter is required.
19511
20327
  */
19512
20328
  apiProductIdsShrink?: string;
19513
20329
  /**
19514
20330
  * @remarks
20331
+ * The application ID.
20332
+ *
19515
20333
  * This parameter is required.
19516
20334
  *
19517
20335
  * @example
19518
20336
  * 111385984
19519
20337
  */
19520
20338
  appId?: number;
20339
+ /**
20340
+ * @remarks
20341
+ * 授权有效时间的截止时间,请设置格林尼治标准时间(GMT), 如果为空,即为授权永久有效。
20342
+ *
20343
+ * @example
20344
+ * 2023-06-12T03:07:37Z
20345
+ */
19521
20346
  authValidTime?: string;
20347
+ /**
20348
+ * @remarks
20349
+ * The authorization description.
20350
+ *
20351
+ * @example
20352
+ * test
20353
+ */
19522
20354
  description?: string;
19523
20355
  securityToken?: string;
19524
20356
  static names(): {
@@ -19533,6 +20365,9 @@ export declare class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
19533
20365
  }
19534
20366
  export declare class SetApiProductsAuthoritiesResponseBody extends $tea.Model {
19535
20367
  /**
20368
+ * @remarks
20369
+ * The request ID.
20370
+ *
19536
20371
  * @example
19537
20372
  * 2603F41E-77FC-59A3-840E-296578A9BDE0
19538
20373
  */
@@ -19668,6 +20503,8 @@ export declare class SetApisAuthoritiesResponse extends $tea.Model {
19668
20503
  export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
19669
20504
  /**
19670
20505
  * @remarks
20506
+ * The ID of the API product.
20507
+ *
19671
20508
  * This parameter is required.
19672
20509
  *
19673
20510
  * @example
@@ -19676,14 +20513,26 @@ export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
19676
20513
  apiProductId?: string;
19677
20514
  /**
19678
20515
  * @remarks
20516
+ * The IDs of the applications that you want to authorize.
20517
+ *
19679
20518
  * This parameter is required.
19680
20519
  */
19681
20520
  appIds?: number[];
19682
20521
  /**
20522
+ * @remarks
20523
+ * The time (UTC) when the authorization expires. If this parameter is empty, the authorization does not expire.
20524
+ *
19683
20525
  * @example
19684
20526
  * 2023-05-31T08:15:39Z
19685
20527
  */
19686
20528
  authValidTime?: string;
20529
+ /**
20530
+ * @remarks
20531
+ * The description of the authorization.
20532
+ *
20533
+ * @example
20534
+ * Test
20535
+ */
19687
20536
  description?: string;
19688
20537
  securityToken?: string;
19689
20538
  static names(): {
@@ -19698,6 +20547,9 @@ export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
19698
20547
  }
19699
20548
  export declare class SetAppsAuthToApiProductResponseBody extends $tea.Model {
19700
20549
  /**
20550
+ * @remarks
20551
+ * The request ID.
20552
+ *
19701
20553
  * @example
19702
20554
  * EF924FE4-2EDD-4CD3-89EC-34E4708574E7
19703
20555
  */
@@ -20038,6 +20890,14 @@ export declare class SetDomainCertificateRequest extends $tea.Model {
20038
20890
  * For more information, see the following request examples
20039
20891
  */
20040
20892
  certificatePrivateKey?: string;
20893
+ /**
20894
+ * @remarks
20895
+ * If pass ssl_client_s_dn of the cert to backend header \\"X-Client-S-Dn\\".
20896
+ *
20897
+ * @example
20898
+ * True
20899
+ */
20900
+ clientCertSDnPassThrough?: boolean;
20041
20901
  /**
20042
20902
  * @remarks
20043
20903
  * The custom domain name.
@@ -20059,6 +20919,14 @@ export declare class SetDomainCertificateRequest extends $tea.Model {
20059
20919
  */
20060
20920
  groupId?: string;
20061
20921
  securityToken?: string;
20922
+ /**
20923
+ * @remarks
20924
+ * If enable ssl OCSP.
20925
+ *
20926
+ * @example
20927
+ * True
20928
+ */
20929
+ sslOcspEnable?: boolean;
20062
20930
  /**
20063
20931
  * @remarks
20064
20932
  * The certificate verification depth.
@@ -20144,6 +21012,13 @@ export declare class SetDomainWebSocketStatusRequest extends $tea.Model {
20144
21012
  */
20145
21013
  groupId?: string;
20146
21014
  securityToken?: string;
21015
+ /**
21016
+ * @remarks
21017
+ * If enable WSS.
21018
+ *
21019
+ * @example
21020
+ * false
21021
+ */
20147
21022
  WSSEnable?: string;
20148
21023
  static names(): {
20149
21024
  [key: string]: string;
@@ -20987,6 +21862,125 @@ export declare class UntagResourcesResponse extends $tea.Model {
20987
21862
  [key: string]: any;
20988
21863
  });
20989
21864
  }
21865
+ export declare class UpdatePrivateDNSRequest extends $tea.Model {
21866
+ /**
21867
+ * @remarks
21868
+ * The internal domain name.
21869
+ *
21870
+ * This parameter is required.
21871
+ *
21872
+ * @example
21873
+ * api.demo.com
21874
+ */
21875
+ intranetDomain?: string;
21876
+ /**
21877
+ * @remarks
21878
+ * The resolution records. This parameter is valid only when Type is set to A.
21879
+ *
21880
+ * This parameter is required.
21881
+ */
21882
+ records?: UpdatePrivateDNSRequestRecords[];
21883
+ securityToken?: string;
21884
+ /**
21885
+ * @remarks
21886
+ * The internal domain name resolution type. Valid values:
21887
+ *
21888
+ * * VPC: resolution for virtual private cloud (VPC) access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
21889
+ * * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
21890
+ *
21891
+ * This parameter is required.
21892
+ *
21893
+ * @example
21894
+ * A
21895
+ */
21896
+ type?: string;
21897
+ static names(): {
21898
+ [key: string]: string;
21899
+ };
21900
+ static types(): {
21901
+ [key: string]: any;
21902
+ };
21903
+ constructor(map?: {
21904
+ [key: string]: any;
21905
+ });
21906
+ }
21907
+ export declare class UpdatePrivateDNSShrinkRequest extends $tea.Model {
21908
+ /**
21909
+ * @remarks
21910
+ * The internal domain name.
21911
+ *
21912
+ * This parameter is required.
21913
+ *
21914
+ * @example
21915
+ * api.demo.com
21916
+ */
21917
+ intranetDomain?: string;
21918
+ /**
21919
+ * @remarks
21920
+ * The resolution records. This parameter is valid only when Type is set to A.
21921
+ *
21922
+ * This parameter is required.
21923
+ */
21924
+ recordsShrink?: string;
21925
+ securityToken?: string;
21926
+ /**
21927
+ * @remarks
21928
+ * The internal domain name resolution type. Valid values:
21929
+ *
21930
+ * * VPC: resolution for virtual private cloud (VPC) access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
21931
+ * * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
21932
+ *
21933
+ * This parameter is required.
21934
+ *
21935
+ * @example
21936
+ * A
21937
+ */
21938
+ type?: string;
21939
+ static names(): {
21940
+ [key: string]: string;
21941
+ };
21942
+ static types(): {
21943
+ [key: string]: any;
21944
+ };
21945
+ constructor(map?: {
21946
+ [key: string]: any;
21947
+ });
21948
+ }
21949
+ export declare class UpdatePrivateDNSResponseBody extends $tea.Model {
21950
+ /**
21951
+ * @remarks
21952
+ * The request ID.
21953
+ *
21954
+ * @example
21955
+ * EF924FE4-2EDD-4CD3-89EC-34E4708574E7
21956
+ */
21957
+ requestId?: string;
21958
+ static names(): {
21959
+ [key: string]: string;
21960
+ };
21961
+ static types(): {
21962
+ [key: string]: any;
21963
+ };
21964
+ constructor(map?: {
21965
+ [key: string]: any;
21966
+ });
21967
+ }
21968
+ export declare class UpdatePrivateDNSResponse extends $tea.Model {
21969
+ headers?: {
21970
+ [key: string]: string;
21971
+ };
21972
+ statusCode?: number;
21973
+ body?: UpdatePrivateDNSResponseBody;
21974
+ static names(): {
21975
+ [key: string]: string;
21976
+ };
21977
+ static types(): {
21978
+ [key: string]: any;
21979
+ };
21980
+ constructor(map?: {
21981
+ [key: string]: any;
21982
+ });
21983
+ }
20990
21984
  export declare class ValidateVpcConnectivityRequest extends $tea.Model {
20991
21985
  /**
20992
21986
  * @remarks
@@ -21493,6 +22487,33 @@ export declare class CreatePluginRequestTag extends $tea.Model {
21493
22487
  [key: string]: any;
21494
22488
  });
21495
22489
  }
22490
+ export declare class CreatePrivateDNSRequestRecords extends $tea.Model {
22491
+ /**
22492
+ * @remarks
22493
+ * The resolution record.
22494
+ *
22495
+ * @example
22496
+ * 192.168.0.1
22497
+ */
22498
+ record?: string;
22499
+ /**
22500
+ * @remarks
22501
+ * The weight of the record.
22502
+ *
22503
+ * @example
22504
+ * 100
22505
+ */
22506
+ weight?: number;
22507
+ static names(): {
22508
+ [key: string]: string;
22509
+ };
22510
+ static types(): {
22511
+ [key: string]: any;
22512
+ };
22513
+ constructor(map?: {
22514
+ [key: string]: any;
22515
+ });
22516
+ }
21496
22517
  export declare class DeleteApiGroupRequestTag extends $tea.Model {
21497
22518
  /**
21498
22519
  * @remarks
@@ -22117,6 +23138,13 @@ export declare class DescribeApiResponseBodyRequestConfig extends $tea.Model {
22117
23138
  * https://apigateway.aliyun.com/models/3a240a127dcc4afd9ab1bf7e947b4095/9e2df550e85b4121a79ec33e2619eaab
22118
23139
  */
22119
23140
  bodyModel?: string;
23141
+ /**
23142
+ * @remarks
23143
+ * Whether to escape the Path parameter, if true, the [param] on the Path will be treated as a regular character.
23144
+ *
23145
+ * @example
23146
+ * true
23147
+ */
22120
23148
  escapePathParam?: boolean;
22121
23149
  /**
22122
23150
  * @remarks
@@ -22471,6 +23499,7 @@ export declare class DescribeApiResponseBodyServiceConfigFunctionComputeConfig e
22471
23499
  * fcservicename
22472
23500
  */
22473
23501
  serviceName?: string;
23502
+ triggerName?: string;
22474
23503
  static names(): {
22475
23504
  [key: string]: string;
22476
23505
  };
@@ -23007,6 +24036,13 @@ export declare class DescribeApiDocResponseBodyRequestConfig extends $tea.Model
23007
24036
  * STREAM
23008
24037
  */
23009
24038
  bodyFormat?: string;
24039
+ /**
24040
+ * @remarks
24041
+ * Whether to escape the Path parameter, if true, the [param] on the Path will be treated as a regular character.
24042
+ *
24043
+ * @example
24044
+ * true
24045
+ */
23010
24046
  escapePathParam?: boolean;
23011
24047
  /**
23012
24048
  * @remarks
@@ -24028,6 +25064,13 @@ export declare class DescribeApiHistoryResponseBodyRequestConfig extends $tea.Mo
24028
25064
  * https://apigateway.aliyun.com/models/3a240a1XXXXXXXXd9ab1bf7e947b4095/9e2df550e85b4XXXXXXXX619eaab
24029
25065
  */
24030
25066
  bodyModel?: string;
25067
+ /**
25068
+ * @remarks
25069
+ * Whether to escape the Path parameter, if true, the [param] on the Path will be treated as a regular character.
25070
+ *
25071
+ * @example
25072
+ * true
25073
+ */
24031
25074
  escapePathParam?: boolean;
24032
25075
  /**
24033
25076
  * @remarks
@@ -26775,6 +27818,9 @@ export declare class DescribeAppsByApiProductResponseBodyAuthorizedAppsAuthorize
26775
27818
  /**
26776
27819
  * @remarks
26777
27820
  * The authorization description.
27821
+ *
27822
+ * @example
27823
+ * Test share with nsc qiming
26778
27824
  */
26779
27825
  description?: string;
26780
27826
  /**
@@ -26928,7 +27974,21 @@ export declare class DescribeAuthorizedApisResponseBodyAuthorizedApis extends $t
26928
27974
  });
26929
27975
  }
26930
27976
  export declare class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTagTagInfo extends $tea.Model {
27977
+ /**
27978
+ * @remarks
27979
+ * The tag key.
27980
+ *
27981
+ * @example
27982
+ * DEV
27983
+ */
26931
27984
  key?: string;
27985
+ /**
27986
+ * @remarks
27987
+ * The tag value.
27988
+ *
27989
+ * @example
27990
+ * 240
27991
+ */
26932
27992
  value?: string;
26933
27993
  static names(): {
26934
27994
  [key: string]: string;
@@ -27043,6 +28103,10 @@ export declare class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedA
27043
28103
  * RELEASE
27044
28104
  */
27045
28105
  stageName?: string;
28106
+ /**
28107
+ * @remarks
28108
+ * The key of the tag.
28109
+ */
27046
28110
  tag?: DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTag;
27047
28111
  static names(): {
27048
28112
  [key: string]: string;
@@ -27159,16 +28223,25 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27159
28223
  }
27160
28224
  export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig extends $tea.Model {
27161
28225
  /**
28226
+ * @remarks
28227
+ * The connection URL of the ZooKeeper server.
28228
+ *
27162
28229
  * @example
27163
28230
  * http://192.168.1.xxx:2181
27164
28231
  */
27165
28232
  connectString?: string;
27166
28233
  /**
28234
+ * @remarks
28235
+ * The namespace.
28236
+ *
27167
28237
  * @example
27168
28238
  * provider
27169
28239
  */
27170
28240
  namespace?: string;
27171
28241
  /**
28242
+ * @remarks
28243
+ * Service name
28244
+ *
27172
28245
  * @example
27173
28246
  * service
27174
28247
  */
@@ -27197,6 +28270,10 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27197
28270
  * NACOS
27198
28271
  */
27199
28272
  rcType?: string;
28273
+ /**
28274
+ * @remarks
28275
+ * The ZooKeeper configuration.
28276
+ */
27200
28277
  zookeeperConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig;
27201
28278
  static names(): {
27202
28279
  [key: string]: string;
@@ -27210,36 +28287,57 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27210
28287
  }
27211
28288
  export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEdasConfig extends $tea.Model {
27212
28289
  /**
28290
+ * @remarks
28291
+ * The EDAS application ID.
28292
+ *
27213
28293
  * @example
27214
28294
  * 6cd0c599-dxxx-496d-b3d5-6a71c657xxxxx
27215
28295
  */
27216
28296
  edasAppId?: string;
27217
28297
  /**
28298
+ * @remarks
28299
+ * The ID of the microservices namespace in EDAS.
28300
+ *
27218
28301
  * @example
27219
28302
  * cn-hangzhou:edasNacos
27220
28303
  */
27221
28304
  microserviceNamespace?: string;
27222
28305
  /**
28306
+ * @remarks
28307
+ * The ID of the microservices namespace in EDAS.
28308
+ *
27223
28309
  * @example
27224
28310
  * cn-hangzhou:edasNacos
27225
28311
  */
27226
28312
  microserviceNamespaceId?: string;
27227
28313
  /**
28314
+ * @remarks
28315
+ * The name of the microservices namespace in EDAS.
28316
+ *
27228
28317
  * @example
27229
28318
  * Edas-Nacos
27230
28319
  */
27231
28320
  microserviceNamespaceName?: string;
27232
28321
  /**
28322
+ * @remarks
28323
+ * The MSE instance ID.
28324
+ *
27233
28325
  * @example
27234
28326
  * mse-cn-jia3n1rxxxx
27235
28327
  */
27236
28328
  mseInstanceId?: string;
27237
28329
  /**
28330
+ * @remarks
28331
+ * The registration type.
28332
+ *
27238
28333
  * @example
27239
28334
  * EDAS
27240
28335
  */
27241
28336
  registryType?: string;
27242
28337
  /**
28338
+ * @remarks
28339
+ * The service name.
28340
+ *
27243
28341
  * @example
27244
28342
  * service
27245
28343
  */
@@ -27362,6 +28460,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27362
28460
  * myservice
27363
28461
  */
27364
28462
  serviceName?: string;
28463
+ triggerName?: string;
27365
28464
  static names(): {
27366
28465
  [key: string]: string;
27367
28466
  };
@@ -27375,7 +28474,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27375
28474
  export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfigMockHeaders extends $tea.Model {
27376
28475
  /**
27377
28476
  * @remarks
27378
- * The name of the header parameter.
28477
+ * The header name.
27379
28478
  *
27380
28479
  * @example
27381
28480
  * test
@@ -27383,7 +28482,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27383
28482
  headerName?: string;
27384
28483
  /**
27385
28484
  * @remarks
27386
- * The value of the header parameter.
28485
+ * The header value.
27387
28486
  *
27388
28487
  * @example
27389
28488
  * 123
@@ -27402,12 +28501,12 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27402
28501
  export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig extends $tea.Model {
27403
28502
  /**
27404
28503
  * @remarks
27405
- * The header returned for service mocking.
28504
+ * The header in the mocked response.
27406
28505
  */
27407
28506
  mockHeaders?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfigMockHeaders[];
27408
28507
  /**
27409
28508
  * @remarks
27410
- * The result returned for service mocking.
28509
+ * The mocked response.
27411
28510
  *
27412
28511
  * @example
27413
28512
  * test
@@ -27415,7 +28514,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27415
28514
  mockResult?: string;
27416
28515
  /**
27417
28516
  * @remarks
27418
- * The status code that is returned for service mocking.
28517
+ * The status code in the mocked response.
27419
28518
  *
27420
28519
  * @example
27421
28520
  * 200
@@ -27509,7 +28608,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27509
28608
  vpcScheme?: string;
27510
28609
  /**
27511
28610
  * @remarks
27512
- * The host of the backend service.
28611
+ * The host of the VPC backend service.
27513
28612
  *
27514
28613
  * @example
27515
28614
  * openapi.alipan.com
@@ -27528,9 +28627,13 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27528
28627
  export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig extends $tea.Model {
27529
28628
  /**
27530
28629
  * @remarks
27531
- * The information about the backend service whose type is Service Discovery.
28630
+ * The information about the backend service when the backend service is of the Service Discovery type.
27532
28631
  */
27533
28632
  discoveryConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfig;
28633
+ /**
28634
+ * @remarks
28635
+ * The EDAS configuration.
28636
+ */
27534
28637
  edasConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEdasConfig;
27535
28638
  /**
27536
28639
  * @remarks
@@ -27544,7 +28647,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27544
28647
  functionComputeConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig;
27545
28648
  /**
27546
28649
  * @remarks
27547
- * The host of the backend service.
28650
+ * The host of the HTTP backend service.
27548
28651
  *
27549
28652
  * @example
27550
28653
  * www.host.com
@@ -27552,7 +28655,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27552
28655
  httpTargetHostName?: string;
27553
28656
  /**
27554
28657
  * @remarks
27555
- * The information about the backend service whose type is Mock.
28658
+ * The information about the backend service when the backend service is of the Mock type.
27556
28659
  */
27557
28660
  mockConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig;
27558
28661
  /**
@@ -27569,6 +28672,9 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27569
28672
  */
27570
28673
  serviceAddress?: string;
27571
28674
  /**
28675
+ * @remarks
28676
+ * The timeout period of the backend service, in millisecond.
28677
+ *
27572
28678
  * @example
27573
28679
  * 10000
27574
28680
  */
@@ -27583,7 +28689,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
27583
28689
  type?: string;
27584
28690
  /**
27585
28691
  * @remarks
27586
- * The information about the virtual private cloud (VPC). This parameter is available only for backend services whose type is VPC.
28692
+ * The information about the backend service when the backend service is of the VPC type.
27587
28693
  */
27588
28694
  vpcConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigVpcConfig;
27589
28695
  static names(): {
@@ -28034,7 +29140,7 @@ export declare class DescribeDatasetItemListResponseBodyDatasetItemInfoList exte
28034
29140
  export declare class DescribeDatasetListRequestTag extends $tea.Model {
28035
29141
  /**
28036
29142
  * @remarks
28037
- * 标签键
29143
+ * The tag key.
28038
29144
  *
28039
29145
  * @example
28040
29146
  * env
@@ -28042,7 +29148,7 @@ export declare class DescribeDatasetListRequestTag extends $tea.Model {
28042
29148
  key?: string;
28043
29149
  /**
28044
29150
  * @remarks
28045
- * 标签值
29151
+ * The value of the tag.
28046
29152
  *
28047
29153
  * @example
28048
29154
  * value
@@ -28061,7 +29167,7 @@ export declare class DescribeDatasetListRequestTag extends $tea.Model {
28061
29167
  export declare class DescribeDatasetListResponseBodyDatasetInfoListTags extends $tea.Model {
28062
29168
  /**
28063
29169
  * @remarks
28064
- * 标签的键
29170
+ * The tag key.
28065
29171
  *
28066
29172
  * @example
28067
29173
  * ENV
@@ -28069,7 +29175,7 @@ export declare class DescribeDatasetListResponseBodyDatasetInfoListTags extends
28069
29175
  key?: string;
28070
29176
  /**
28071
29177
  * @remarks
28072
- * 标签值
29178
+ * The value of the tag.
28073
29179
  *
28074
29180
  * @example
28075
29181
  * 123
@@ -28132,7 +29238,7 @@ export declare class DescribeDatasetListResponseBodyDatasetInfoList extends $tea
28132
29238
  modifiedTime?: string;
28133
29239
  /**
28134
29240
  * @remarks
28135
- * 标签
29241
+ * The tags.
28136
29242
  */
28137
29243
  tags?: DescribeDatasetListResponseBodyDatasetInfoListTags[];
28138
29244
  static names(): {
@@ -29229,6 +30335,9 @@ export declare class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem
29229
30335
  */
29230
30336
  apiId?: string;
29231
30337
  /**
30338
+ * @remarks
30339
+ * The HTTP method of the API request.
30340
+ *
29232
30341
  * @example
29233
30342
  * POST
29234
30343
  */
@@ -29242,6 +30351,9 @@ export declare class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem
29242
30351
  */
29243
30352
  apiName?: string;
29244
30353
  /**
30354
+ * @remarks
30355
+ * The request path of the API.
30356
+ *
29245
30357
  * @example
29246
30358
  * /trademark/search
29247
30359
  */
@@ -30521,6 +31633,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInst
30521
31633
  /**
30522
31634
  * @remarks
30523
31635
  * The variable name.
31636
+ *
31637
+ * @example
31638
+ * SLA
30524
31639
  */
30525
31640
  localName?: string;
30526
31641
  /**
@@ -30528,7 +31643,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInst
30528
31643
  * The variable value.
30529
31644
  *
30530
31645
  * @example
30531
- * 2500
31646
+ * 99.95%
30532
31647
  */
30533
31648
  value?: string;
30534
31649
  static names(): {
@@ -30621,7 +31736,21 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributePriv
30621
31736
  });
30622
31737
  }
30623
31738
  export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeTagsTagInfo extends $tea.Model {
31739
+ /**
31740
+ * @remarks
31741
+ * The tag key of the instance.
31742
+ *
31743
+ * @example
31744
+ * Cookie
31745
+ */
30624
31746
  key?: string;
31747
+ /**
31748
+ * @remarks
31749
+ * The tag value of the instance.
31750
+ *
31751
+ * @example
31752
+ * 240
31753
+ */
30625
31754
  value?: string;
30626
31755
  static names(): {
30627
31756
  [key: string]: string;
@@ -30904,6 +32033,18 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
30904
32033
  * The network information of the user\\"s VPC if the instance is a VPC integration instance.
30905
32034
  */
30906
32035
  networkInterfaceAttributes?: DescribeInstancesResponseBodyInstancesInstanceAttributeNetworkInterfaceAttributes;
32036
+ /**
32037
+ * @remarks
32038
+ * The new VPC egress CIDR block.
32039
+ *
32040
+ * @example
32041
+ * 100.104.253.0/26
32042
+ */
32043
+ newVpcEgressAddress?: string;
32044
+ /**
32045
+ * @remarks
32046
+ * The private DNS list.
32047
+ */
30907
32048
  privateDnsList?: DescribeInstancesResponseBodyInstancesInstanceAttributePrivateDnsList;
30908
32049
  /**
30909
32050
  * @remarks
@@ -30929,6 +32070,10 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
30929
32070
  * true
30930
32071
  */
30931
32072
  supportIpv6?: boolean;
32073
+ /**
32074
+ * @remarks
32075
+ * The tags of the instance.
32076
+ */
30932
32077
  tags?: DescribeInstancesResponseBodyInstancesInstanceAttributeTags;
30933
32078
  /**
30934
32079
  * @remarks
@@ -30989,6 +32134,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
30989
32134
  /**
30990
32135
  * @remarks
30991
32136
  * The zone.
32137
+ *
32138
+ * @example
32139
+ * Multi-Availability Zone 3(b,c,a)
30992
32140
  */
30993
32141
  zoneLocalName?: string;
30994
32142
  static names(): {
@@ -31157,21 +32305,33 @@ export declare class DescribeIpControlsResponseBodyIpControlInfos extends $tea.M
31157
32305
  }
31158
32306
  export declare class DescribeLogConfigResponseBodyLogInfosLogInfo extends $tea.Model {
31159
32307
  /**
32308
+ * @remarks
32309
+ * The log type.
32310
+ *
31160
32311
  * @example
31161
32312
  * PROVIDER
31162
32313
  */
31163
32314
  logType?: string;
31164
32315
  /**
32316
+ * @remarks
32317
+ * The region ID of the Logstore.
32318
+ *
31165
32319
  * @example
31166
32320
  * cn-hangzhou
31167
32321
  */
31168
32322
  regionId?: string;
31169
32323
  /**
32324
+ * @remarks
32325
+ * The name of the Logstore in Log Service.
32326
+ *
31170
32327
  * @example
31171
32328
  * slsstore
31172
32329
  */
31173
32330
  slsLogStore?: string;
31174
32331
  /**
32332
+ * @remarks
32333
+ * The name of the Log Service project.
32334
+ *
31175
32335
  * @example
31176
32336
  * slsproject
31177
32337
  */
@@ -33349,7 +34509,7 @@ export declare class ImportOASResponseBodyWarningMessages extends $tea.Model {
33349
34509
  export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed extends $tea.Model {
33350
34510
  /**
33351
34511
  * @remarks
33352
- * The error message returned.
34512
+ * The error message returned when the API is created.
33353
34513
  *
33354
34514
  * @example
33355
34515
  * api already exists : apiUid ===> 8e274ec61cf6468e83b68371956831cb
@@ -33357,7 +34517,7 @@ export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed exten
33357
34517
  errorMsg?: string;
33358
34518
  /**
33359
34519
  * @remarks
33360
- * The HTTP method of the API.
34520
+ * The HTTP method configured when the API is created.
33361
34521
  *
33362
34522
  * @example
33363
34523
  * post
@@ -33365,7 +34525,7 @@ export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed exten
33365
34525
  httpMethod?: string;
33366
34526
  /**
33367
34527
  * @remarks
33368
- * The request path of the API.
34528
+ * The request path configured when the API is created.
33369
34529
  *
33370
34530
  * @example
33371
34531
  * /http/get/mapping
@@ -33459,7 +34619,10 @@ export declare class ImportSwaggerResponseBodyModelSuccessApiImportModelSuccess
33459
34619
  modelName?: string;
33460
34620
  /**
33461
34621
  * @remarks
33462
- * The model operation.
34622
+ * The model operation
34623
+ *
34624
+ * @example
34625
+ * CREATE
33463
34626
  */
33464
34627
  modelOperation?: string;
33465
34628
  /**
@@ -33495,7 +34658,7 @@ export declare class ImportSwaggerResponseBodyModelSuccess extends $tea.Model {
33495
34658
  export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess extends $tea.Model {
33496
34659
  /**
33497
34660
  * @remarks
33498
- * Specifies that the operation is CREATE or MODIFY.
34661
+ * Specifies whether the operation is CREATE or MODIFY.
33499
34662
  *
33500
34663
  * @example
33501
34664
  * CREATE
@@ -33503,7 +34666,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
33503
34666
  apiOperation?: string;
33504
34667
  /**
33505
34668
  * @remarks
33506
- * The UID of the imported API.
34669
+ * The UID of the successfully imported API.
33507
34670
  *
33508
34671
  * @example
33509
34672
  * 8e274ec61cf6468e83b68371956831cb
@@ -33511,7 +34674,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
33511
34674
  apiUid?: string;
33512
34675
  /**
33513
34676
  * @remarks
33514
- * The HTTP method of the API.
34677
+ * The HTTP method configured when the API is created.
33515
34678
  *
33516
34679
  * @example
33517
34680
  * get
@@ -33519,7 +34682,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
33519
34682
  httpMethod?: string;
33520
34683
  /**
33521
34684
  * @remarks
33522
- * The request path of the API.
34685
+ * The request path configured when the API is created.
33523
34686
  *
33524
34687
  * @example
33525
34688
  * /http/get/mapping
@@ -33547,6 +34710,81 @@ export declare class ImportSwaggerResponseBodySuccess extends $tea.Model {
33547
34710
  [key: string]: any;
33548
34711
  });
33549
34712
  }
34713
+ export declare class ListPrivateDNSResponseBodyPrivateDNSListRecords extends $tea.Model {
34714
+ /**
34715
+ * @remarks
34716
+ * The resolution record.
34717
+ *
34718
+ * @example
34719
+ * 192.168.0.1
34720
+ */
34721
+ record?: string;
34722
+ /**
34723
+ * @remarks
34724
+ * The weight of the record.
34725
+ *
34726
+ * @example
34727
+ * 100
34728
+ */
34729
+ weight?: number;
34730
+ static names(): {
34731
+ [key: string]: string;
34732
+ };
34733
+ static types(): {
34734
+ [key: string]: any;
34735
+ };
34736
+ constructor(map?: {
34737
+ [key: string]: any;
34738
+ });
34739
+ }
34740
+ export declare class ListPrivateDNSResponseBodyPrivateDNSList extends $tea.Model {
34741
+ /**
34742
+ * @remarks
34743
+ * The instances that are associated with the resolution.
34744
+ */
34745
+ bindInstances?: string[];
34746
+ /**
34747
+ * @remarks
34748
+ * The time when the resolution was created. The time is displayed in UTC.
34749
+ *
34750
+ * @example
34751
+ * 2023-05-10T08:17:00Z
34752
+ */
34753
+ createdTime?: string;
34754
+ /**
34755
+ * @remarks
34756
+ * The internal domain name.
34757
+ *
34758
+ * @example
34759
+ * api.demo.com
34760
+ */
34761
+ intranetDomain?: string;
34762
+ /**
34763
+ * @remarks
34764
+ * The resolution records.
34765
+ */
34766
+ records?: ListPrivateDNSResponseBodyPrivateDNSListRecords[];
34767
+ /**
34768
+ * @remarks
34769
+ * The internal domain name resolution type. Valid values:
34770
+ *
34771
+ * * VPC: resolution for VPC access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
34772
+ * * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
34773
+ *
34774
+ * @example
34775
+ * A
34776
+ */
34777
+ type?: string;
34778
+ static names(): {
34779
+ [key: string]: string;
34780
+ };
34781
+ static types(): {
34782
+ [key: string]: any;
34783
+ };
34784
+ constructor(map?: {
34785
+ [key: string]: any;
34786
+ });
34787
+ }
33550
34788
  export declare class ListTagResourcesRequestTag extends $tea.Model {
33551
34789
  /**
33552
34790
  * @remarks
@@ -33667,6 +34905,8 @@ export declare class ModifyApiGroupRequestTag extends $tea.Model {
33667
34905
  export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
33668
34906
  /**
33669
34907
  * @remarks
34908
+ * The tag key.
34909
+ *
33670
34910
  * This parameter is required.
33671
34911
  *
33672
34912
  * @example
@@ -33675,6 +34915,8 @@ export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
33675
34915
  key?: string;
33676
34916
  /**
33677
34917
  * @remarks
34918
+ * The tag value.
34919
+ *
33678
34920
  * This parameter is required.
33679
34921
  *
33680
34922
  * @example
@@ -33694,9 +34936,9 @@ export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
33694
34936
  export declare class ModifyAppRequestTag extends $tea.Model {
33695
34937
  /**
33696
34938
  * @remarks
33697
- * The key of the tag.
34939
+ * The value of the tag.
33698
34940
  *
33699
- * Valid values of n: `[1, 20]`.
34941
+ * N can be an integer from 1 to 20.``
33700
34942
  *
33701
34943
  * This parameter is required.
33702
34944
  *
@@ -33708,7 +34950,7 @@ export declare class ModifyAppRequestTag extends $tea.Model {
33708
34950
  * @remarks
33709
34951
  * The value of the tag.
33710
34952
  *
33711
- * Valid values of n: `[1, 20]`.
34953
+ * N can be an integer from 1 to 20.``
33712
34954
  *
33713
34955
  * @example
33714
34956
  * value
@@ -33830,21 +35072,33 @@ export declare class QueryRequestLogsResponseBodyRequestLogsRequestLog extends $
33830
35072
  /**
33831
35073
  * @remarks
33832
35074
  * The time when API Gateway finished forwarding the request to the backend service.
35075
+ *
35076
+ * @example
35077
+ * 1731487224969
33833
35078
  */
33834
35079
  backendRequestEnd?: number;
33835
35080
  /**
33836
35081
  * @remarks
33837
35082
  * The time when API Gateway started to forward the request to the backend service.
35083
+ *
35084
+ * @example
35085
+ * 1731487224969
33838
35086
  */
33839
35087
  backendRequestStart?: number;
33840
35088
  /**
33841
35089
  * @remarks
33842
35090
  * The time when API Gateway finished receiving the response from the backend service.
35091
+ *
35092
+ * @example
35093
+ * 1731487224989
33843
35094
  */
33844
35095
  backendResponseEnd?: number;
33845
35096
  /**
33846
35097
  * @remarks
33847
35098
  * The time when API Gateway started to receive the response from the backend service.
35099
+ *
35100
+ * @example
35101
+ * 1731487224989
33848
35102
  */
33849
35103
  backendResponseStart?: number;
33850
35104
  /**
@@ -33922,21 +35176,33 @@ export declare class QueryRequestLogsResponseBodyRequestLogsRequestLog extends $
33922
35176
  /**
33923
35177
  * @remarks
33924
35178
  * The time when API Gateway finished receiving the request.
35179
+ *
35180
+ * @example
35181
+ * 1731487224968
33925
35182
  */
33926
35183
  frontRequestEnd?: number;
33927
35184
  /**
33928
35185
  * @remarks
33929
35186
  * The time when API Gateway started to receive the request.
35187
+ *
35188
+ * @example
35189
+ * 1731487224968
33930
35190
  */
33931
35191
  frontRequestStart?: number;
33932
35192
  /**
33933
35193
  * @remarks
33934
35194
  * The time when API Gateway finished forwarding the response to the client.
35195
+ *
35196
+ * @example
35197
+ * 1731487224989
33935
35198
  */
33936
35199
  frontResponseEnd?: number;
33937
35200
  /**
33938
35201
  * @remarks
33939
35202
  * The time when API Gateway started to forward the response to the client.
35203
+ *
35204
+ * @example
35205
+ * 1731487224989
33940
35206
  */
33941
35207
  frontResponseStart?: number;
33942
35208
  /**
@@ -34258,6 +35524,33 @@ export declare class TagResourcesRequestTag extends $tea.Model {
34258
35524
  [key: string]: any;
34259
35525
  });
34260
35526
  }
35527
+ export declare class UpdatePrivateDNSRequestRecords extends $tea.Model {
35528
+ /**
35529
+ * @remarks
35530
+ * The resolution record.
35531
+ *
35532
+ * @example
35533
+ * 192.168.0.2
35534
+ */
35535
+ record?: string;
35536
+ /**
35537
+ * @remarks
35538
+ * The weight of the record.
35539
+ *
35540
+ * @example
35541
+ * 100
35542
+ */
35543
+ weight?: number;
35544
+ static names(): {
35545
+ [key: string]: string;
35546
+ };
35547
+ static types(): {
35548
+ [key: string]: any;
35549
+ };
35550
+ constructor(map?: {
35551
+ [key: string]: any;
35552
+ });
35553
+ }
34261
35554
  export default class Client extends OpenApi {
34262
35555
  constructor(config: $OpenApi.Config);
34263
35556
  getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
@@ -34355,6 +35648,27 @@ export default class Client extends OpenApi {
34355
35648
  * @returns AddTrafficSpecialControlResponse
34356
35649
  */
34357
35650
  addTrafficSpecialControl(request: AddTrafficSpecialControlRequest): Promise<AddTrafficSpecialControlResponse>;
35651
+ /**
35652
+ * Associates an internal domain name resolution with a dedicated instance.
35653
+ *
35654
+ * @remarks
35655
+ * An internal domain name resolution can be associated only with a dedicated instance, not with a shared instance or shared instance cluster.
35656
+ *
35657
+ * @param tmpReq - AssociateInstanceWithPrivateDNSRequest
35658
+ * @param runtime - runtime options for this request RuntimeOptions
35659
+ * @returns AssociateInstanceWithPrivateDNSResponse
35660
+ */
35661
+ associateInstanceWithPrivateDNSWithOptions(tmpReq: AssociateInstanceWithPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<AssociateInstanceWithPrivateDNSResponse>;
35662
+ /**
35663
+ * Associates an internal domain name resolution with a dedicated instance.
35664
+ *
35665
+ * @remarks
35666
+ * An internal domain name resolution can be associated only with a dedicated instance, not with a shared instance or shared instance cluster.
35667
+ *
35668
+ * @param request - AssociateInstanceWithPrivateDNSRequest
35669
+ * @returns AssociateInstanceWithPrivateDNSResponse
35670
+ */
35671
+ associateInstanceWithPrivateDNS(request: AssociateInstanceWithPrivateDNSRequest): Promise<AssociateInstanceWithPrivateDNSResponse>;
34358
35672
  /**
34359
35673
  * Attaches APIs to an API product. If the API product does not exist, the system automatically creates the API product.
34360
35674
  *
@@ -34470,12 +35784,16 @@ export default class Client extends OpenApi {
34470
35784
  */
34471
35785
  createApi(request: CreateApiRequest): Promise<CreateApiResponse>;
34472
35786
  /**
35787
+ * 创建API分组
35788
+ *
34473
35789
  * @param request - CreateApiGroupRequest
34474
35790
  * @param runtime - runtime options for this request RuntimeOptions
34475
35791
  * @returns CreateApiGroupResponse
34476
35792
  */
34477
35793
  createApiGroupWithOptions(request: CreateApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiGroupResponse>;
34478
35794
  /**
35795
+ * 创建API分组
35796
+ *
34479
35797
  * @param request - CreateApiGroupRequest
34480
35798
  * @returns CreateApiGroupResponse
34481
35799
  */
@@ -34638,12 +35956,16 @@ export default class Client extends OpenApi {
34638
35956
  */
34639
35957
  createInstance(request: CreateInstanceRequest): Promise<CreateInstanceResponse>;
34640
35958
  /**
35959
+ * 创建内网域名
35960
+ *
34641
35961
  * @param request - CreateIntranetDomainRequest
34642
35962
  * @param runtime - runtime options for this request RuntimeOptions
34643
35963
  * @returns CreateIntranetDomainResponse
34644
35964
  */
34645
35965
  createIntranetDomainWithOptions(request: CreateIntranetDomainRequest, runtime: $Util.RuntimeOptions): Promise<CreateIntranetDomainResponse>;
34646
35966
  /**
35967
+ * 创建内网域名
35968
+ *
34647
35969
  * @param request - CreateIntranetDomainRequest
34648
35970
  * @returns CreateIntranetDomainResponse
34649
35971
  */
@@ -34676,12 +35998,16 @@ export default class Client extends OpenApi {
34676
35998
  */
34677
35999
  createIpControl(request: CreateIpControlRequest): Promise<CreateIpControlResponse>;
34678
36000
  /**
36001
+ * Creates a Simple Log Service configuration for an API.
36002
+ *
34679
36003
  * @param request - CreateLogConfigRequest
34680
36004
  * @param runtime - runtime options for this request RuntimeOptions
34681
36005
  * @returns CreateLogConfigResponse
34682
36006
  */
34683
36007
  createLogConfigWithOptions(request: CreateLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<CreateLogConfigResponse>;
34684
36008
  /**
36009
+ * Creates a Simple Log Service configuration for an API.
36010
+ *
34685
36011
  * @param request - CreateLogConfigRequest
34686
36012
  * @returns CreateLogConfigResponse
34687
36013
  */
@@ -34751,6 +36077,27 @@ export default class Client extends OpenApi {
34751
36077
  * @returns CreatePluginResponse
34752
36078
  */
34753
36079
  createPlugin(request: CreatePluginRequest): Promise<CreatePluginResponse>;
36080
+ /**
36081
+ * Creates an internal domain name resolution and adds a resolution record.
36082
+ *
36083
+ * @remarks
36084
+ * An internal domain name resolution of the virtual private cloud (VPC) type can be bound only to traditional dedicated instances. An internal domain name resolution of the A type can be bound only to VPC integration dedicated instances.
36085
+ *
36086
+ * @param tmpReq - CreatePrivateDNSRequest
36087
+ * @param runtime - runtime options for this request RuntimeOptions
36088
+ * @returns CreatePrivateDNSResponse
36089
+ */
36090
+ createPrivateDNSWithOptions(tmpReq: CreatePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateDNSResponse>;
36091
+ /**
36092
+ * Creates an internal domain name resolution and adds a resolution record.
36093
+ *
36094
+ * @remarks
36095
+ * An internal domain name resolution of the virtual private cloud (VPC) type can be bound only to traditional dedicated instances. An internal domain name resolution of the A type can be bound only to VPC integration dedicated instances.
36096
+ *
36097
+ * @param request - CreatePrivateDNSRequest
36098
+ * @returns CreatePrivateDNSResponse
36099
+ */
36100
+ createPrivateDNS(request: CreatePrivateDNSRequest): Promise<CreatePrivateDNSResponse>;
34754
36101
  /**
34755
36102
  * Creates a backend signature key.
34756
36103
  *
@@ -35192,6 +36539,21 @@ export default class Client extends OpenApi {
35192
36539
  * @returns DeletePluginResponse
35193
36540
  */
35194
36541
  deletePlugin(request: DeletePluginRequest): Promise<DeletePluginResponse>;
36542
+ /**
36543
+ * Deletes an internal domain name resolution.
36544
+ *
36545
+ * @param request - DeletePrivateDNSRequest
36546
+ * @param runtime - runtime options for this request RuntimeOptions
36547
+ * @returns DeletePrivateDNSResponse
36548
+ */
36549
+ deletePrivateDNSWithOptions(request: DeletePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateDNSResponse>;
36550
+ /**
36551
+ * Deletes an internal domain name resolution.
36552
+ *
36553
+ * @param request - DeletePrivateDNSRequest
36554
+ * @returns DeletePrivateDNSResponse
36555
+ */
36556
+ deletePrivateDNS(request: DeletePrivateDNSRequest): Promise<DeletePrivateDNSResponse>;
35195
36557
  /**
35196
36558
  * Deletes a backend signature key.
35197
36559
  *
@@ -35293,12 +36655,16 @@ export default class Client extends OpenApi {
35293
36655
  */
35294
36656
  deployApi(request: DeployApiRequest): Promise<DeployApiResponse>;
35295
36657
  /**
36658
+ * 查询批量下线API任务
36659
+ *
35296
36660
  * @param request - DescribeAbolishApiTaskRequest
35297
36661
  * @param runtime - runtime options for this request RuntimeOptions
35298
36662
  * @returns DescribeAbolishApiTaskResponse
35299
36663
  */
35300
36664
  describeAbolishApiTaskWithOptions(request: DescribeAbolishApiTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAbolishApiTaskResponse>;
35301
36665
  /**
36666
+ * 查询批量下线API任务
36667
+ *
35302
36668
  * @param request - DescribeAbolishApiTaskRequest
35303
36669
  * @returns DescribeAbolishApiTaskResponse
35304
36670
  */
@@ -36449,12 +37815,16 @@ export default class Client extends OpenApi {
36449
37815
  */
36450
37816
  describeIpControls(request: DescribeIpControlsRequest): Promise<DescribeIpControlsResponse>;
36451
37817
  /**
37818
+ * 查询日志配置
37819
+ *
36452
37820
  * @param request - DescribeLogConfigRequest
36453
37821
  * @param runtime - runtime options for this request RuntimeOptions
36454
37822
  * @returns DescribeLogConfigResponse
36455
37823
  */
36456
37824
  describeLogConfigWithOptions(request: DescribeLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLogConfigResponse>;
36457
37825
  /**
37826
+ * 查询日志配置
37827
+ *
36458
37828
  * @param request - DescribeLogConfigRequest
36459
37829
  * @returns DescribeLogConfigResponse
36460
37830
  */
@@ -36511,23 +37881,31 @@ export default class Client extends OpenApi {
36511
37881
  */
36512
37882
  describePluginApis(request: DescribePluginApisRequest): Promise<DescribePluginApisResponse>;
36513
37883
  /**
37884
+ * 查询插件列表
37885
+ *
36514
37886
  * @param request - DescribePluginSchemasRequest
36515
37887
  * @param runtime - runtime options for this request RuntimeOptions
36516
37888
  * @returns DescribePluginSchemasResponse
36517
37889
  */
36518
37890
  describePluginSchemasWithOptions(request: DescribePluginSchemasRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginSchemasResponse>;
36519
37891
  /**
37892
+ * 查询插件列表
37893
+ *
36520
37894
  * @param request - DescribePluginSchemasRequest
36521
37895
  * @returns DescribePluginSchemasResponse
36522
37896
  */
36523
37897
  describePluginSchemas(request: DescribePluginSchemasRequest): Promise<DescribePluginSchemasResponse>;
36524
37898
  /**
37899
+ * 查询插件模板
37900
+ *
36525
37901
  * @param request - DescribePluginTemplatesRequest
36526
37902
  * @param runtime - runtime options for this request RuntimeOptions
36527
37903
  * @returns DescribePluginTemplatesResponse
36528
37904
  */
36529
37905
  describePluginTemplatesWithOptions(request: DescribePluginTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginTemplatesResponse>;
36530
37906
  /**
37907
+ * 查询插件模板
37908
+ *
36531
37909
  * @param request - DescribePluginTemplatesRequest
36532
37910
  * @returns DescribePluginTemplatesResponse
36533
37911
  */
@@ -36794,12 +38172,16 @@ export default class Client extends OpenApi {
36794
38172
  */
36795
38173
  describeUpdateBackendTask(request: DescribeUpdateBackendTaskRequest): Promise<DescribeUpdateBackendTaskResponse>;
36796
38174
  /**
38175
+ * 查询更新VPC授权的任务
38176
+ *
36797
38177
  * @param request - DescribeUpdateVpcInfoTaskRequest
36798
38178
  * @param runtime - runtime options for this request RuntimeOptions
36799
38179
  * @returns DescribeUpdateVpcInfoTaskResponse
36800
38180
  */
36801
38181
  describeUpdateVpcInfoTaskWithOptions(request: DescribeUpdateVpcInfoTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUpdateVpcInfoTaskResponse>;
36802
38182
  /**
38183
+ * 查询更新VPC授权的任务
38184
+ *
36803
38185
  * @param request - DescribeUpdateVpcInfoTaskRequest
36804
38186
  * @returns DescribeUpdateVpcInfoTaskResponse
36805
38187
  */
@@ -36879,6 +38261,21 @@ export default class Client extends OpenApi {
36879
38261
  * @returns DisableInstanceAccessControlResponse
36880
38262
  */
36881
38263
  disableInstanceAccessControl(request: DisableInstanceAccessControlRequest): Promise<DisableInstanceAccessControlResponse>;
38264
+ /**
38265
+ * Disassociates an internal domain name resolution from a dedicated instance.
38266
+ *
38267
+ * @param tmpReq - DissociateInstanceWithPrivateDNSRequest
38268
+ * @param runtime - runtime options for this request RuntimeOptions
38269
+ * @returns DissociateInstanceWithPrivateDNSResponse
38270
+ */
38271
+ dissociateInstanceWithPrivateDNSWithOptions(tmpReq: DissociateInstanceWithPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<DissociateInstanceWithPrivateDNSResponse>;
38272
+ /**
38273
+ * Disassociates an internal domain name resolution from a dedicated instance.
38274
+ *
38275
+ * @param request - DissociateInstanceWithPrivateDNSRequest
38276
+ * @returns DissociateInstanceWithPrivateDNSResponse
38277
+ */
38278
+ dissociateInstanceWithPrivateDNS(request: DissociateInstanceWithPrivateDNSRequest): Promise<DissociateInstanceWithPrivateDNSResponse>;
36882
38279
  /**
36883
38280
  * Checks the syntax before Swagger-compliant data is imported.
36884
38281
  *
@@ -36895,7 +38292,7 @@ export default class Client extends OpenApi {
36895
38292
  */
36896
38293
  dryRunSwagger(request: DryRunSwaggerRequest): Promise<DryRunSwaggerResponse>;
36897
38294
  /**
36898
- * 开启实例的访问控制
38295
+ * This feature provides instance-level access control capabilities for dedicated API Gateway instances. Specifies the access control policy of an instance.
36899
38296
  *
36900
38297
  * @param request - EnableInstanceAccessControlRequest
36901
38298
  * @param runtime - runtime options for this request RuntimeOptions
@@ -36903,7 +38300,7 @@ export default class Client extends OpenApi {
36903
38300
  */
36904
38301
  enableInstanceAccessControlWithOptions(request: EnableInstanceAccessControlRequest, runtime: $Util.RuntimeOptions): Promise<EnableInstanceAccessControlResponse>;
36905
38302
  /**
36906
- * 开启实例的访问控制
38303
+ * This feature provides instance-level access control capabilities for dedicated API Gateway instances. Specifies the access control policy of an instance.
36907
38304
  *
36908
38305
  * @param request - EnableInstanceAccessControlRequest
36909
38306
  * @returns EnableInstanceAccessControlResponse
@@ -36962,6 +38359,21 @@ export default class Client extends OpenApi {
36962
38359
  * @returns ImportSwaggerResponse
36963
38360
  */
36964
38361
  importSwagger(request: ImportSwaggerRequest): Promise<ImportSwaggerResponse>;
38362
+ /**
38363
+ * Queries internal domain name resolutions by domain name or resolution type.
38364
+ *
38365
+ * @param request - ListPrivateDNSRequest
38366
+ * @param runtime - runtime options for this request RuntimeOptions
38367
+ * @returns ListPrivateDNSResponse
38368
+ */
38369
+ listPrivateDNSWithOptions(request: ListPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateDNSResponse>;
38370
+ /**
38371
+ * Queries internal domain name resolutions by domain name or resolution type.
38372
+ *
38373
+ * @param request - ListPrivateDNSRequest
38374
+ * @returns ListPrivateDNSResponse
38375
+ */
38376
+ listPrivateDNS(request: ListPrivateDNSRequest): Promise<ListPrivateDNSResponse>;
36965
38377
  /**
36966
38378
  * Queries the visible resource tags.
36967
38379
  *
@@ -37067,12 +38479,16 @@ export default class Client extends OpenApi {
37067
38479
  */
37068
38480
  modifyApiGroup(request: ModifyApiGroupRequest): Promise<ModifyApiGroupResponse>;
37069
38481
  /**
38482
+ * 变更分组实例
38483
+ *
37070
38484
  * @param request - ModifyApiGroupInstanceRequest
37071
38485
  * @param runtime - runtime options for this request RuntimeOptions
37072
38486
  * @returns ModifyApiGroupInstanceResponse
37073
38487
  */
37074
38488
  modifyApiGroupInstanceWithOptions(request: ModifyApiGroupInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupInstanceResponse>;
37075
38489
  /**
38490
+ * 变更分组实例
38491
+ *
37076
38492
  * @param request - ModifyApiGroupInstanceRequest
37077
38493
  * @returns ModifyApiGroupInstanceResponse
37078
38494
  */
@@ -37108,12 +38524,12 @@ export default class Client extends OpenApi {
37108
38524
  */
37109
38525
  modifyApiGroupVpcWhitelist(request: ModifyApiGroupVpcWhitelistRequest): Promise<ModifyApiGroupVpcWhitelistResponse>;
37110
38526
  /**
37111
- * Modifies a specified application.
38527
+ * Modifies a specified app.
37112
38528
  *
37113
38529
  * @remarks
37114
38530
  * This operation is intended for API callers.
37115
- * * **AppName** or **Description** can be modified. If these parameters are not specified, no modifications are made and the operation will directly return a success response.
37116
- * * You can call this operation up to 50 times per second per account.
38531
+ * * AppName or Description can be modified. If these parameters are not specified, no modifications are made and the operation will directly return a successful response.********
38532
+ * * The QPS limit on this operation is 50 per user.
37117
38533
  *
37118
38534
  * @param request - ModifyAppRequest
37119
38535
  * @param runtime - runtime options for this request RuntimeOptions
@@ -37121,12 +38537,12 @@ export default class Client extends OpenApi {
37121
38537
  */
37122
38538
  modifyAppWithOptions(request: ModifyAppRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAppResponse>;
37123
38539
  /**
37124
- * Modifies a specified application.
38540
+ * Modifies a specified app.
37125
38541
  *
37126
38542
  * @remarks
37127
38543
  * This operation is intended for API callers.
37128
- * * **AppName** or **Description** can be modified. If these parameters are not specified, no modifications are made and the operation will directly return a success response.
37129
- * * You can call this operation up to 50 times per second per account.
38544
+ * * AppName or Description can be modified. If these parameters are not specified, no modifications are made and the operation will directly return a successful response.********
38545
+ * * The QPS limit on this operation is 50 per user.
37130
38546
  *
37131
38547
  * @param request - ModifyAppRequest
37132
38548
  * @returns ModifyAppResponse
@@ -37193,7 +38609,7 @@ export default class Client extends OpenApi {
37193
38609
  */
37194
38610
  modifyDatasetItem(request: ModifyDatasetItemRequest): Promise<ModifyDatasetItemResponse>;
37195
38611
  /**
37196
- * 修改API网关实例属性
38612
+ * Modifies the properties of an API Gateway instance.
37197
38613
  *
37198
38614
  * @param tmpReq - ModifyInstanceAttributeRequest
37199
38615
  * @param runtime - runtime options for this request RuntimeOptions
@@ -37201,7 +38617,7 @@ export default class Client extends OpenApi {
37201
38617
  */
37202
38618
  modifyInstanceAttributeWithOptions(tmpReq: ModifyInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceAttributeResponse>;
37203
38619
  /**
37204
- * 修改API网关实例属性
38620
+ * Modifies the properties of an API Gateway instance.
37205
38621
  *
37206
38622
  * @param request - ModifyInstanceAttributeRequest
37207
38623
  * @returns ModifyInstanceAttributeResponse
@@ -37286,12 +38702,16 @@ export default class Client extends OpenApi {
37286
38702
  */
37287
38703
  modifyIpControlPolicyItem(request: ModifyIpControlPolicyItemRequest): Promise<ModifyIpControlPolicyItemResponse>;
37288
38704
  /**
38705
+ * 修改日志配置
38706
+ *
37289
38707
  * @param request - ModifyLogConfigRequest
37290
38708
  * @param runtime - runtime options for this request RuntimeOptions
37291
38709
  * @returns ModifyLogConfigResponse
37292
38710
  */
37293
38711
  modifyLogConfigWithOptions(request: ModifyLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLogConfigResponse>;
37294
38712
  /**
38713
+ * 修改日志配置
38714
+ *
37295
38715
  * @param request - ModifyLogConfigRequest
37296
38716
  * @returns ModifyLogConfigResponse
37297
38717
  */
@@ -37402,12 +38822,15 @@ export default class Client extends OpenApi {
37402
38822
  */
37403
38823
  modifyVpcAccessAndUpdateApis(request: ModifyVpcAccessAndUpdateApisRequest): Promise<ModifyVpcAccessAndUpdateApisResponse>;
37404
38824
  /**
38825
+ * 开通API网关服务
38826
+ *
37405
38827
  * @param request - OpenApiGatewayServiceRequest
37406
38828
  * @param runtime - runtime options for this request RuntimeOptions
37407
38829
  * @returns OpenApiGatewayServiceResponse
37408
38830
  */
37409
38831
  openApiGatewayServiceWithOptions(runtime: $Util.RuntimeOptions): Promise<OpenApiGatewayServiceResponse>;
37410
38832
  /**
38833
+ * 开通API网关服务
37411
38834
  * @returns OpenApiGatewayServiceResponse
37412
38835
  */
37413
38836
  openApiGatewayService(): Promise<OpenApiGatewayServiceResponse>;
@@ -37645,12 +39068,16 @@ export default class Client extends OpenApi {
37645
39068
  */
37646
39069
  removeVpcAccess(request: RemoveVpcAccessRequest): Promise<RemoveVpcAccessResponse>;
37647
39070
  /**
39071
+ * 删除VPC授权并下线关联API
39072
+ *
37648
39073
  * @param request - RemoveVpcAccessAndAbolishApisRequest
37649
39074
  * @param runtime - runtime options for this request RuntimeOptions
37650
39075
  * @returns RemoveVpcAccessAndAbolishApisResponse
37651
39076
  */
37652
39077
  removeVpcAccessAndAbolishApisWithOptions(request: RemoveVpcAccessAndAbolishApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVpcAccessAndAbolishApisResponse>;
37653
39078
  /**
39079
+ * 删除VPC授权并下线关联API
39080
+ *
37654
39081
  * @param request - RemoveVpcAccessAndAbolishApisRequest
37655
39082
  * @returns RemoveVpcAccessAndAbolishApisResponse
37656
39083
  */
@@ -37696,12 +39123,16 @@ export default class Client extends OpenApi {
37696
39123
  */
37697
39124
  resetAppSecret(request: ResetAppSecretRequest): Promise<ResetAppSecretResponse>;
37698
39125
  /**
39126
+ * 根据APP生成SDK
39127
+ *
37699
39128
  * @param request - SdkGenerateByAppRequest
37700
39129
  * @param runtime - runtime options for this request RuntimeOptions
37701
39130
  * @returns SdkGenerateByAppResponse
37702
39131
  */
37703
39132
  sdkGenerateByAppWithOptions(request: SdkGenerateByAppRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByAppResponse>;
37704
39133
  /**
39134
+ * 根据APP生成SDK
39135
+ *
37705
39136
  * @param request - SdkGenerateByAppRequest
37706
39137
  * @returns SdkGenerateByAppResponse
37707
39138
  */
@@ -37722,12 +39153,16 @@ export default class Client extends OpenApi {
37722
39153
  */
37723
39154
  sdkGenerateByAppForRegion(request: SdkGenerateByAppForRegionRequest): Promise<SdkGenerateByAppForRegionResponse>;
37724
39155
  /**
39156
+ * 根据分组生成SDK
39157
+ *
37725
39158
  * @param request - SdkGenerateByGroupRequest
37726
39159
  * @param runtime - runtime options for this request RuntimeOptions
37727
39160
  * @returns SdkGenerateByGroupResponse
37728
39161
  */
37729
39162
  sdkGenerateByGroupWithOptions(request: SdkGenerateByGroupRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByGroupResponse>;
37730
39163
  /**
39164
+ * 根据分组生成SDK
39165
+ *
37731
39166
  * @param request - SdkGenerateByGroupRequest
37732
39167
  * @returns SdkGenerateByGroupResponse
37733
39168
  */
@@ -37748,7 +39183,7 @@ export default class Client extends OpenApi {
37748
39183
  */
37749
39184
  setAccessControlListAttribute(request: SetAccessControlListAttributeRequest): Promise<SetAccessControlListAttributeResponse>;
37750
39185
  /**
37751
- * 给多个API产品添加APP授权
39186
+ * Grants permissions on API products to an application.
37752
39187
  *
37753
39188
  * @param tmpReq - SetApiProductsAuthoritiesRequest
37754
39189
  * @param runtime - runtime options for this request RuntimeOptions
@@ -37756,7 +39191,7 @@ export default class Client extends OpenApi {
37756
39191
  */
37757
39192
  setApiProductsAuthoritiesWithOptions(tmpReq: SetApiProductsAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<SetApiProductsAuthoritiesResponse>;
37758
39193
  /**
37759
- * 给多个API产品添加APP授权
39194
+ * Grants permissions on API products to an application.
37760
39195
  *
37761
39196
  * @param request - SetApiProductsAuthoritiesRequest
37762
39197
  * @returns SetApiProductsAuthoritiesResponse
@@ -37788,7 +39223,7 @@ export default class Client extends OpenApi {
37788
39223
  */
37789
39224
  setApisAuthorities(request: SetApisAuthoritiesRequest): Promise<SetApisAuthoritiesResponse>;
37790
39225
  /**
37791
- * 将多个APP授权给API产品
39226
+ * Authorizes multiple applications to call APIs in an API product.
37792
39227
  *
37793
39228
  * @param request - SetAppsAuthToApiProductRequest
37794
39229
  * @param runtime - runtime options for this request RuntimeOptions
@@ -37796,7 +39231,7 @@ export default class Client extends OpenApi {
37796
39231
  */
37797
39232
  setAppsAuthToApiProductWithOptions(request: SetAppsAuthToApiProductRequest, runtime: $Util.RuntimeOptions): Promise<SetAppsAuthToApiProductResponse>;
37798
39233
  /**
37799
- * 将多个APP授权给API产品
39234
+ * Authorizes multiple applications to call APIs in an API product.
37800
39235
  *
37801
39236
  * @param request - SetAppsAuthToApiProductRequest
37802
39237
  * @returns SetAppsAuthToApiProductResponse
@@ -37883,12 +39318,16 @@ export default class Client extends OpenApi {
37883
39318
  */
37884
39319
  setDomainWebSocketStatus(request: SetDomainWebSocketStatusRequest): Promise<SetDomainWebSocketStatusResponse>;
37885
39320
  /**
39321
+ * 设置分组授权AppCode
39322
+ *
37886
39323
  * @param request - SetGroupAuthAppCodeRequest
37887
39324
  * @param runtime - runtime options for this request RuntimeOptions
37888
39325
  * @returns SetGroupAuthAppCodeResponse
37889
39326
  */
37890
39327
  setGroupAuthAppCodeWithOptions(request: SetGroupAuthAppCodeRequest, runtime: $Util.RuntimeOptions): Promise<SetGroupAuthAppCodeResponse>;
37891
39328
  /**
39329
+ * 设置分组授权AppCode
39330
+ *
37892
39331
  * @param request - SetGroupAuthAppCodeRequest
37893
39332
  * @returns SetGroupAuthAppCodeResponse
37894
39333
  */
@@ -38065,6 +39504,21 @@ export default class Client extends OpenApi {
38065
39504
  * @returns UntagResourcesResponse
38066
39505
  */
38067
39506
  untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
39507
+ /**
39508
+ * Modifies an internal domain name resolution.
39509
+ *
39510
+ * @param tmpReq - UpdatePrivateDNSRequest
39511
+ * @param runtime - runtime options for this request RuntimeOptions
39512
+ * @returns UpdatePrivateDNSResponse
39513
+ */
39514
+ updatePrivateDNSWithOptions(tmpReq: UpdatePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateDNSResponse>;
39515
+ /**
39516
+ * Modifies an internal domain name resolution.
39517
+ *
39518
+ * @param request - UpdatePrivateDNSRequest
39519
+ * @returns UpdatePrivateDNSResponse
39520
+ */
39521
+ updatePrivateDNS(request: UpdatePrivateDNSRequest): Promise<UpdatePrivateDNSResponse>;
38068
39522
  /**
38069
39523
  * Tests the network connectivity between an API Gateway instance and a port on an Elastic Compute Service (ECS) or Server Load Balance (SLB) instance in a virtual private cloud (VPC) access authorization.
38070
39524
  *