@alicloud/cloudapi20160714 4.5.0 → 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 +739 -62
- package/dist/client.js +142 -33
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +771 -62
package/dist/client.d.ts
CHANGED
|
@@ -347,6 +347,8 @@ export declare class AddTrafficSpecialControlResponse extends $tea.Model {
|
|
|
347
347
|
export declare class AssociateInstanceWithPrivateDNSRequest extends $tea.Model {
|
|
348
348
|
/**
|
|
349
349
|
* @remarks
|
|
350
|
+
* The instance ID.
|
|
351
|
+
*
|
|
350
352
|
* This parameter is required.
|
|
351
353
|
*
|
|
352
354
|
* @example
|
|
@@ -355,6 +357,8 @@ export declare class AssociateInstanceWithPrivateDNSRequest extends $tea.Model {
|
|
|
355
357
|
instanceId?: string;
|
|
356
358
|
/**
|
|
357
359
|
* @remarks
|
|
360
|
+
* The internal domain names included in the resolution.
|
|
361
|
+
*
|
|
358
362
|
* This parameter is required.
|
|
359
363
|
*/
|
|
360
364
|
intranetDomains?: string[];
|
|
@@ -372,6 +376,8 @@ export declare class AssociateInstanceWithPrivateDNSRequest extends $tea.Model {
|
|
|
372
376
|
export declare class AssociateInstanceWithPrivateDNSShrinkRequest extends $tea.Model {
|
|
373
377
|
/**
|
|
374
378
|
* @remarks
|
|
379
|
+
* The instance ID.
|
|
380
|
+
*
|
|
375
381
|
* This parameter is required.
|
|
376
382
|
*
|
|
377
383
|
* @example
|
|
@@ -380,6 +386,8 @@ export declare class AssociateInstanceWithPrivateDNSShrinkRequest extends $tea.M
|
|
|
380
386
|
instanceId?: string;
|
|
381
387
|
/**
|
|
382
388
|
* @remarks
|
|
389
|
+
* The internal domain names included in the resolution.
|
|
390
|
+
*
|
|
383
391
|
* This parameter is required.
|
|
384
392
|
*/
|
|
385
393
|
intranetDomainsShrink?: string;
|
|
@@ -396,6 +404,9 @@ export declare class AssociateInstanceWithPrivateDNSShrinkRequest extends $tea.M
|
|
|
396
404
|
}
|
|
397
405
|
export declare class AssociateInstanceWithPrivateDNSResponseBody extends $tea.Model {
|
|
398
406
|
/**
|
|
407
|
+
* @remarks
|
|
408
|
+
* The request ID.
|
|
409
|
+
*
|
|
399
410
|
* @example
|
|
400
411
|
* 03442A3D-3B7D-434C-8A95-A5FEB999B529
|
|
401
412
|
*/
|
|
@@ -2231,6 +2242,21 @@ export declare class CreateIpControlResponse extends $tea.Model {
|
|
|
2231
2242
|
}
|
|
2232
2243
|
export declare class CreateLogConfigRequest extends $tea.Model {
|
|
2233
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
|
+
*
|
|
2234
2260
|
* @example
|
|
2235
2261
|
* PROVIDER
|
|
2236
2262
|
*/
|
|
@@ -2248,6 +2274,8 @@ export declare class CreateLogConfigRequest extends $tea.Model {
|
|
|
2248
2274
|
slsLogStore?: string;
|
|
2249
2275
|
/**
|
|
2250
2276
|
* @remarks
|
|
2277
|
+
* The name of the Log Service project.
|
|
2278
|
+
*
|
|
2251
2279
|
* This parameter is required.
|
|
2252
2280
|
*
|
|
2253
2281
|
* @example
|
|
@@ -2266,6 +2294,9 @@ export declare class CreateLogConfigRequest extends $tea.Model {
|
|
|
2266
2294
|
}
|
|
2267
2295
|
export declare class CreateLogConfigResponseBody extends $tea.Model {
|
|
2268
2296
|
/**
|
|
2297
|
+
* @remarks
|
|
2298
|
+
* The ID of the request.
|
|
2299
|
+
*
|
|
2269
2300
|
* @example
|
|
2270
2301
|
* CEF72CEB-54B6-4AE8-B225-F876FF7BA984
|
|
2271
2302
|
*/
|
|
@@ -2659,16 +2690,27 @@ export declare class CreatePluginResponse extends $tea.Model {
|
|
|
2659
2690
|
export declare class CreatePrivateDNSRequest extends $tea.Model {
|
|
2660
2691
|
/**
|
|
2661
2692
|
* @remarks
|
|
2693
|
+
* The internal domain name.
|
|
2694
|
+
*
|
|
2662
2695
|
* This parameter is required.
|
|
2663
2696
|
*
|
|
2664
2697
|
* @example
|
|
2665
2698
|
* api.demo.com
|
|
2666
2699
|
*/
|
|
2667
2700
|
intranetDomain?: string;
|
|
2701
|
+
/**
|
|
2702
|
+
* @remarks
|
|
2703
|
+
* The resolution records. This parameter is valid only when Type is set to A.
|
|
2704
|
+
*/
|
|
2668
2705
|
records?: CreatePrivateDNSRequestRecords[];
|
|
2669
2706
|
securityToken?: string;
|
|
2670
2707
|
/**
|
|
2671
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
|
+
*
|
|
2672
2714
|
* This parameter is required.
|
|
2673
2715
|
*
|
|
2674
2716
|
* @example
|
|
@@ -2688,16 +2730,27 @@ export declare class CreatePrivateDNSRequest extends $tea.Model {
|
|
|
2688
2730
|
export declare class CreatePrivateDNSShrinkRequest extends $tea.Model {
|
|
2689
2731
|
/**
|
|
2690
2732
|
* @remarks
|
|
2733
|
+
* The internal domain name.
|
|
2734
|
+
*
|
|
2691
2735
|
* This parameter is required.
|
|
2692
2736
|
*
|
|
2693
2737
|
* @example
|
|
2694
2738
|
* api.demo.com
|
|
2695
2739
|
*/
|
|
2696
2740
|
intranetDomain?: string;
|
|
2741
|
+
/**
|
|
2742
|
+
* @remarks
|
|
2743
|
+
* The resolution records. This parameter is valid only when Type is set to A.
|
|
2744
|
+
*/
|
|
2697
2745
|
recordsShrink?: string;
|
|
2698
2746
|
securityToken?: string;
|
|
2699
2747
|
/**
|
|
2700
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
|
+
*
|
|
2701
2754
|
* This parameter is required.
|
|
2702
2755
|
*
|
|
2703
2756
|
* @example
|
|
@@ -2716,6 +2769,9 @@ export declare class CreatePrivateDNSShrinkRequest extends $tea.Model {
|
|
|
2716
2769
|
}
|
|
2717
2770
|
export declare class CreatePrivateDNSResponseBody extends $tea.Model {
|
|
2718
2771
|
/**
|
|
2772
|
+
* @remarks
|
|
2773
|
+
* The request ID.
|
|
2774
|
+
*
|
|
2719
2775
|
* @example
|
|
2720
2776
|
* CEF72CEB-54B6-4AE8-B225-F876FF7BZ015
|
|
2721
2777
|
*/
|
|
@@ -4323,12 +4379,20 @@ export declare class DeletePluginResponse extends $tea.Model {
|
|
|
4323
4379
|
}
|
|
4324
4380
|
export declare class DeletePrivateDNSRequest extends $tea.Model {
|
|
4325
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
|
+
*
|
|
4326
4388
|
* @example
|
|
4327
4389
|
* false
|
|
4328
4390
|
*/
|
|
4329
4391
|
force?: boolean;
|
|
4330
4392
|
/**
|
|
4331
4393
|
* @remarks
|
|
4394
|
+
* The internal domain name.
|
|
4395
|
+
*
|
|
4332
4396
|
* This parameter is required.
|
|
4333
4397
|
*
|
|
4334
4398
|
* @example
|
|
@@ -4338,6 +4402,11 @@ export declare class DeletePrivateDNSRequest extends $tea.Model {
|
|
|
4338
4402
|
securityToken?: string;
|
|
4339
4403
|
/**
|
|
4340
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
|
+
*
|
|
4341
4410
|
* This parameter is required.
|
|
4342
4411
|
*
|
|
4343
4412
|
* @example
|
|
@@ -4356,6 +4425,9 @@ export declare class DeletePrivateDNSRequest extends $tea.Model {
|
|
|
4356
4425
|
}
|
|
4357
4426
|
export declare class DeletePrivateDNSResponseBody extends $tea.Model {
|
|
4358
4427
|
/**
|
|
4428
|
+
* @remarks
|
|
4429
|
+
* The request ID.
|
|
4430
|
+
*
|
|
4359
4431
|
* @example
|
|
4360
4432
|
* EF924FE4-2EDD-4CD3-89EC-34E4708574E7
|
|
4361
4433
|
*/
|
|
@@ -5577,6 +5649,14 @@ export declare class DescribeApiGroupResponseBody extends $tea.Model {
|
|
|
5577
5649
|
* 2016-08-01T06:53:02Z
|
|
5578
5650
|
*/
|
|
5579
5651
|
createdTime?: string;
|
|
5652
|
+
/**
|
|
5653
|
+
* @remarks
|
|
5654
|
+
* The custom appcode configuration.
|
|
5655
|
+
*
|
|
5656
|
+
* @example
|
|
5657
|
+
* {"location":"HEADER","name":"myAppCodeHeader"}
|
|
5658
|
+
*/
|
|
5659
|
+
customAppCodeConfig?: string;
|
|
5580
5660
|
/**
|
|
5581
5661
|
* @remarks
|
|
5582
5662
|
* The details about the custom domain name.
|
|
@@ -7699,17 +7779,25 @@ export declare class DescribeApisResponse extends $tea.Model {
|
|
|
7699
7779
|
}
|
|
7700
7780
|
export declare class DescribeApisByAppRequest extends $tea.Model {
|
|
7701
7781
|
/**
|
|
7782
|
+
* @remarks
|
|
7783
|
+
* The name of the API. The name is used for fuzzy match.
|
|
7784
|
+
*
|
|
7702
7785
|
* @example
|
|
7703
7786
|
* getPersonInfo
|
|
7704
7787
|
*/
|
|
7705
7788
|
apiName?: string;
|
|
7706
7789
|
/**
|
|
7790
|
+
* @remarks
|
|
7791
|
+
* The API ID.
|
|
7792
|
+
*
|
|
7707
7793
|
* @example
|
|
7708
7794
|
* b19240592b1b4e74961fb8438ed7550c
|
|
7709
7795
|
*/
|
|
7710
7796
|
apiUid?: string;
|
|
7711
7797
|
/**
|
|
7712
7798
|
* @remarks
|
|
7799
|
+
* The application ID.
|
|
7800
|
+
*
|
|
7713
7801
|
* This parameter is required.
|
|
7714
7802
|
*
|
|
7715
7803
|
* @example
|
|
@@ -7717,26 +7805,41 @@ export declare class DescribeApisByAppRequest extends $tea.Model {
|
|
|
7717
7805
|
*/
|
|
7718
7806
|
appId?: number;
|
|
7719
7807
|
/**
|
|
7808
|
+
* @remarks
|
|
7809
|
+
* The description of the API.
|
|
7810
|
+
*
|
|
7720
7811
|
* @example
|
|
7721
7812
|
* test
|
|
7722
7813
|
*/
|
|
7723
7814
|
description?: string;
|
|
7724
7815
|
/**
|
|
7816
|
+
* @remarks
|
|
7817
|
+
* The request HTTP method of the API.
|
|
7818
|
+
*
|
|
7725
7819
|
* @example
|
|
7726
7820
|
* POST
|
|
7727
7821
|
*/
|
|
7728
7822
|
method?: string;
|
|
7729
7823
|
/**
|
|
7824
|
+
* @remarks
|
|
7825
|
+
* The number of the current page.
|
|
7826
|
+
*
|
|
7730
7827
|
* @example
|
|
7731
7828
|
* 1
|
|
7732
7829
|
*/
|
|
7733
7830
|
pageNumber?: number;
|
|
7734
7831
|
/**
|
|
7832
|
+
* @remarks
|
|
7833
|
+
* The number of entries per page.
|
|
7834
|
+
*
|
|
7735
7835
|
* @example
|
|
7736
7836
|
* 10
|
|
7737
7837
|
*/
|
|
7738
7838
|
pageSize?: number;
|
|
7739
7839
|
/**
|
|
7840
|
+
* @remarks
|
|
7841
|
+
* The request path of the API.
|
|
7842
|
+
*
|
|
7740
7843
|
* @example
|
|
7741
7844
|
* /tt
|
|
7742
7845
|
*/
|
|
@@ -7759,21 +7862,33 @@ export declare class DescribeApisByAppResponseBody extends $tea.Model {
|
|
|
7759
7862
|
*/
|
|
7760
7863
|
appApiRelationInfos?: DescribeApisByAppResponseBodyAppApiRelationInfos;
|
|
7761
7864
|
/**
|
|
7865
|
+
* @remarks
|
|
7866
|
+
* The number of pages to return the results on.
|
|
7867
|
+
*
|
|
7762
7868
|
* @example
|
|
7763
7869
|
* 1
|
|
7764
7870
|
*/
|
|
7765
7871
|
pageNumber?: number;
|
|
7766
7872
|
/**
|
|
7873
|
+
* @remarks
|
|
7874
|
+
* The number of entries returned per page.
|
|
7875
|
+
*
|
|
7767
7876
|
* @example
|
|
7768
7877
|
* 10
|
|
7769
7878
|
*/
|
|
7770
7879
|
pageSize?: number;
|
|
7771
7880
|
/**
|
|
7881
|
+
* @remarks
|
|
7882
|
+
* The ID of the request.
|
|
7883
|
+
*
|
|
7772
7884
|
* @example
|
|
7773
7885
|
* CEF72CEB-54B6-4AE8-B225-F876FF7BZ015
|
|
7774
7886
|
*/
|
|
7775
7887
|
requestId?: string;
|
|
7776
7888
|
/**
|
|
7889
|
+
* @remarks
|
|
7890
|
+
* The total number of returned entries.
|
|
7891
|
+
*
|
|
7777
7892
|
* @example
|
|
7778
7893
|
* 2
|
|
7779
7894
|
*/
|
|
@@ -9566,6 +9681,10 @@ export declare class DescribeDatasetInfoRequest extends $tea.Model {
|
|
|
9566
9681
|
});
|
|
9567
9682
|
}
|
|
9568
9683
|
export declare class DescribeDatasetInfoResponseBody extends $tea.Model {
|
|
9684
|
+
/**
|
|
9685
|
+
* @remarks
|
|
9686
|
+
* The dataset info.
|
|
9687
|
+
*/
|
|
9569
9688
|
datasetInfo?: DescribeDatasetInfoResponseBodyDatasetInfo;
|
|
9570
9689
|
/**
|
|
9571
9690
|
* @remarks
|
|
@@ -9817,7 +9936,7 @@ export declare class DescribeDatasetListRequest extends $tea.Model {
|
|
|
9817
9936
|
securityToken?: string;
|
|
9818
9937
|
/**
|
|
9819
9938
|
* @remarks
|
|
9820
|
-
*
|
|
9939
|
+
* Specify the object labels to which the rule applies, and multiple labels can be set
|
|
9821
9940
|
*/
|
|
9822
9941
|
tag?: DescribeDatasetListRequestTag[];
|
|
9823
9942
|
static names(): {
|
|
@@ -10268,6 +10387,9 @@ export declare class DescribeDeployedApisRequest extends $tea.Model {
|
|
|
10268
10387
|
*/
|
|
10269
10388
|
apiId?: string;
|
|
10270
10389
|
/**
|
|
10390
|
+
* @remarks
|
|
10391
|
+
* The HTTP method of the API request.
|
|
10392
|
+
*
|
|
10271
10393
|
* @example
|
|
10272
10394
|
* POST
|
|
10273
10395
|
*/
|
|
@@ -10281,6 +10403,9 @@ export declare class DescribeDeployedApisRequest extends $tea.Model {
|
|
|
10281
10403
|
*/
|
|
10282
10404
|
apiName?: string;
|
|
10283
10405
|
/**
|
|
10406
|
+
* @remarks
|
|
10407
|
+
* The request path of the API.
|
|
10408
|
+
*
|
|
10284
10409
|
* @example
|
|
10285
10410
|
* /st4
|
|
10286
10411
|
*/
|
|
@@ -11285,6 +11410,10 @@ export declare class DescribeInstanceClusterListRequest extends $tea.Model {
|
|
|
11285
11410
|
});
|
|
11286
11411
|
}
|
|
11287
11412
|
export declare class DescribeInstanceClusterListResponseBody extends $tea.Model {
|
|
11413
|
+
/**
|
|
11414
|
+
* @remarks
|
|
11415
|
+
* The instance cluster list.
|
|
11416
|
+
*/
|
|
11288
11417
|
instanceClusters?: DescribeInstanceClusterListResponseBodyInstanceClusters;
|
|
11289
11418
|
/**
|
|
11290
11419
|
* @remarks
|
|
@@ -12546,6 +12675,13 @@ export declare class DescribeIpControlsResponse extends $tea.Model {
|
|
|
12546
12675
|
}
|
|
12547
12676
|
export declare class DescribeLogConfigRequest extends $tea.Model {
|
|
12548
12677
|
/**
|
|
12678
|
+
* @remarks
|
|
12679
|
+
* The log type.
|
|
12680
|
+
*
|
|
12681
|
+
* Valid values:
|
|
12682
|
+
*
|
|
12683
|
+
* * PROVIDER
|
|
12684
|
+
*
|
|
12549
12685
|
* @example
|
|
12550
12686
|
* PROVIDER
|
|
12551
12687
|
*/
|
|
@@ -12562,8 +12698,15 @@ export declare class DescribeLogConfigRequest extends $tea.Model {
|
|
|
12562
12698
|
});
|
|
12563
12699
|
}
|
|
12564
12700
|
export declare class DescribeLogConfigResponseBody extends $tea.Model {
|
|
12701
|
+
/**
|
|
12702
|
+
* @remarks
|
|
12703
|
+
* Info of the log config.
|
|
12704
|
+
*/
|
|
12565
12705
|
logInfos?: DescribeLogConfigResponseBodyLogInfos;
|
|
12566
12706
|
/**
|
|
12707
|
+
* @remarks
|
|
12708
|
+
* The ID of the request.
|
|
12709
|
+
*
|
|
12567
12710
|
* @example
|
|
12568
12711
|
* E3BC2706-ABDB-5B64-A12F-08DFD9E3F339
|
|
12569
12712
|
*/
|
|
@@ -14811,6 +14954,8 @@ export declare class DisableInstanceAccessControlResponse extends $tea.Model {
|
|
|
14811
14954
|
export declare class DissociateInstanceWithPrivateDNSRequest extends $tea.Model {
|
|
14812
14955
|
/**
|
|
14813
14956
|
* @remarks
|
|
14957
|
+
* The instance ID.
|
|
14958
|
+
*
|
|
14814
14959
|
* This parameter is required.
|
|
14815
14960
|
*
|
|
14816
14961
|
* @example
|
|
@@ -14819,6 +14964,8 @@ export declare class DissociateInstanceWithPrivateDNSRequest extends $tea.Model
|
|
|
14819
14964
|
instanceId?: string;
|
|
14820
14965
|
/**
|
|
14821
14966
|
* @remarks
|
|
14967
|
+
* The internal domain names included in the resolution.
|
|
14968
|
+
*
|
|
14822
14969
|
* This parameter is required.
|
|
14823
14970
|
*/
|
|
14824
14971
|
intranetDomains?: string[];
|
|
@@ -14836,6 +14983,8 @@ export declare class DissociateInstanceWithPrivateDNSRequest extends $tea.Model
|
|
|
14836
14983
|
export declare class DissociateInstanceWithPrivateDNSShrinkRequest extends $tea.Model {
|
|
14837
14984
|
/**
|
|
14838
14985
|
* @remarks
|
|
14986
|
+
* The instance ID.
|
|
14987
|
+
*
|
|
14839
14988
|
* This parameter is required.
|
|
14840
14989
|
*
|
|
14841
14990
|
* @example
|
|
@@ -14844,6 +14993,8 @@ export declare class DissociateInstanceWithPrivateDNSShrinkRequest extends $tea.
|
|
|
14844
14993
|
instanceId?: string;
|
|
14845
14994
|
/**
|
|
14846
14995
|
* @remarks
|
|
14996
|
+
* The internal domain names included in the resolution.
|
|
14997
|
+
*
|
|
14847
14998
|
* This parameter is required.
|
|
14848
14999
|
*/
|
|
14849
15000
|
intranetDomainsShrink?: string;
|
|
@@ -14860,6 +15011,9 @@ export declare class DissociateInstanceWithPrivateDNSShrinkRequest extends $tea.
|
|
|
14860
15011
|
}
|
|
14861
15012
|
export declare class DissociateInstanceWithPrivateDNSResponseBody extends $tea.Model {
|
|
14862
15013
|
/**
|
|
15014
|
+
* @remarks
|
|
15015
|
+
* The request ID.
|
|
15016
|
+
*
|
|
14863
15017
|
* @example
|
|
14864
15018
|
* 6C87A26A-6A18-4B8E-8099-705278381A2C
|
|
14865
15019
|
*/
|
|
@@ -15088,6 +15242,8 @@ export declare class DryRunSwaggerResponse extends $tea.Model {
|
|
|
15088
15242
|
export declare class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
15089
15243
|
/**
|
|
15090
15244
|
* @remarks
|
|
15245
|
+
* The ID of the access control policy.
|
|
15246
|
+
*
|
|
15091
15247
|
* This parameter is required.
|
|
15092
15248
|
*
|
|
15093
15249
|
* @example
|
|
@@ -15096,15 +15252,29 @@ export declare class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
|
15096
15252
|
aclId?: string;
|
|
15097
15253
|
/**
|
|
15098
15254
|
* @remarks
|
|
15255
|
+
* The ACL type. Valid values:
|
|
15256
|
+
*
|
|
15257
|
+
* * black: blacklist
|
|
15258
|
+
* * white: whitelist
|
|
15259
|
+
*
|
|
15099
15260
|
* This parameter is required.
|
|
15100
15261
|
*
|
|
15101
15262
|
* @example
|
|
15102
15263
|
* black
|
|
15103
15264
|
*/
|
|
15104
15265
|
aclType?: string;
|
|
15266
|
+
/**
|
|
15267
|
+
* @remarks
|
|
15268
|
+
* The IP version. Valid values: **ipv4** and **ipv6**.
|
|
15269
|
+
*
|
|
15270
|
+
* @example
|
|
15271
|
+
* ipv4
|
|
15272
|
+
*/
|
|
15105
15273
|
addressIPVersion?: string;
|
|
15106
15274
|
/**
|
|
15107
15275
|
* @remarks
|
|
15276
|
+
* The ID of the instance.
|
|
15277
|
+
*
|
|
15108
15278
|
* This parameter is required.
|
|
15109
15279
|
*
|
|
15110
15280
|
* @example
|
|
@@ -15124,6 +15294,9 @@ export declare class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
|
15124
15294
|
}
|
|
15125
15295
|
export declare class EnableInstanceAccessControlResponseBody extends $tea.Model {
|
|
15126
15296
|
/**
|
|
15297
|
+
* @remarks
|
|
15298
|
+
* The ID of the request.
|
|
15299
|
+
*
|
|
15127
15300
|
* @example
|
|
15128
15301
|
* CE5722A6-AE78-4741-A9B0-6C817D360510
|
|
15129
15302
|
*/
|
|
@@ -15759,12 +15932,12 @@ export declare class ImportSwaggerResponseBody extends $tea.Model {
|
|
|
15759
15932
|
failed?: ImportSwaggerResponseBodyFailed;
|
|
15760
15933
|
/**
|
|
15761
15934
|
* @remarks
|
|
15762
|
-
* The models that failed to be imported
|
|
15935
|
+
* The models that failed to be imported through the Swagger-compliant data this time.
|
|
15763
15936
|
*/
|
|
15764
15937
|
modelFailed?: ImportSwaggerResponseBodyModelFailed;
|
|
15765
15938
|
/**
|
|
15766
15939
|
* @remarks
|
|
15767
|
-
* The models that were imported
|
|
15940
|
+
* The models that were imported through the Swagger-compliant data this time.
|
|
15768
15941
|
*/
|
|
15769
15942
|
modelSuccess?: ImportSwaggerResponseBodyModelSuccess;
|
|
15770
15943
|
/**
|
|
@@ -15777,7 +15950,7 @@ export declare class ImportSwaggerResponseBody extends $tea.Model {
|
|
|
15777
15950
|
requestId?: string;
|
|
15778
15951
|
/**
|
|
15779
15952
|
* @remarks
|
|
15780
|
-
* The APIs that
|
|
15953
|
+
* The APIs that are created based on the Swagger-compliant data imported this time.
|
|
15781
15954
|
*/
|
|
15782
15955
|
success?: ImportSwaggerResponseBodySuccess;
|
|
15783
15956
|
static names(): {
|
|
@@ -15808,12 +15981,21 @@ export declare class ImportSwaggerResponse extends $tea.Model {
|
|
|
15808
15981
|
}
|
|
15809
15982
|
export declare class ListPrivateDNSRequest extends $tea.Model {
|
|
15810
15983
|
/**
|
|
15984
|
+
* @remarks
|
|
15985
|
+
* The internal domain name.
|
|
15986
|
+
*
|
|
15811
15987
|
* @example
|
|
15812
15988
|
* api.demo.com
|
|
15813
15989
|
*/
|
|
15814
15990
|
intranetDomain?: string;
|
|
15815
15991
|
securityToken?: string;
|
|
15816
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
|
+
*
|
|
15817
15999
|
* @example
|
|
15818
16000
|
* A
|
|
15819
16001
|
*/
|
|
@@ -15830,22 +16012,38 @@ export declare class ListPrivateDNSRequest extends $tea.Model {
|
|
|
15830
16012
|
}
|
|
15831
16013
|
export declare class ListPrivateDNSResponseBody extends $tea.Model {
|
|
15832
16014
|
/**
|
|
16015
|
+
* @remarks
|
|
16016
|
+
* The page number of the returned page.
|
|
16017
|
+
*
|
|
15833
16018
|
* @example
|
|
15834
16019
|
* 1
|
|
15835
16020
|
*/
|
|
15836
16021
|
pageNumber?: number;
|
|
15837
16022
|
/**
|
|
16023
|
+
* @remarks
|
|
16024
|
+
* The number of entries per page.
|
|
16025
|
+
*
|
|
15838
16026
|
* @example
|
|
15839
16027
|
* 10
|
|
15840
16028
|
*/
|
|
15841
16029
|
pageSize?: number;
|
|
16030
|
+
/**
|
|
16031
|
+
* @remarks
|
|
16032
|
+
* The internal domain name resolutions.
|
|
16033
|
+
*/
|
|
15842
16034
|
privateDNSList?: ListPrivateDNSResponseBodyPrivateDNSList[];
|
|
15843
16035
|
/**
|
|
16036
|
+
* @remarks
|
|
16037
|
+
* The request ID.
|
|
16038
|
+
*
|
|
15844
16039
|
* @example
|
|
15845
16040
|
* CEF72CEB-54B6-4AE8-B225-F876FF7BZ016
|
|
15846
16041
|
*/
|
|
15847
16042
|
requestId?: string;
|
|
15848
16043
|
/**
|
|
16044
|
+
* @remarks
|
|
16045
|
+
* The total number of entries returned.
|
|
16046
|
+
*
|
|
15849
16047
|
* @example
|
|
15850
16048
|
* 2
|
|
15851
16049
|
*/
|
|
@@ -16600,6 +16798,14 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
|
|
|
16600
16798
|
* depart:dep1
|
|
16601
16799
|
*/
|
|
16602
16800
|
compatibleFlags?: string;
|
|
16801
|
+
/**
|
|
16802
|
+
* @remarks
|
|
16803
|
+
* The custom appcode configuration.
|
|
16804
|
+
*
|
|
16805
|
+
* @example
|
|
16806
|
+
* {"location":"HEADER","name":"myAppCodeHeader"}
|
|
16807
|
+
*/
|
|
16808
|
+
customAppCodeConfig?: string;
|
|
16603
16809
|
/**
|
|
16604
16810
|
* @remarks
|
|
16605
16811
|
* The custom trace configuration.
|
|
@@ -16632,6 +16838,13 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
|
|
|
16632
16838
|
* New weather informations.
|
|
16633
16839
|
*/
|
|
16634
16840
|
description?: string;
|
|
16841
|
+
/**
|
|
16842
|
+
* @remarks
|
|
16843
|
+
* If filter AppCode for backend.
|
|
16844
|
+
*
|
|
16845
|
+
* @example
|
|
16846
|
+
* false
|
|
16847
|
+
*/
|
|
16635
16848
|
filterAppCodeForBackend?: string;
|
|
16636
16849
|
/**
|
|
16637
16850
|
* @remarks
|
|
@@ -16662,10 +16875,19 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
|
|
|
16662
16875
|
/**
|
|
16663
16876
|
* @remarks
|
|
16664
16877
|
* The RPC mode.
|
|
16878
|
+
*
|
|
16879
|
+
* @example
|
|
16880
|
+
* {}
|
|
16665
16881
|
*/
|
|
16666
16882
|
rpcPattern?: string;
|
|
16667
16883
|
securityToken?: string;
|
|
16668
16884
|
/**
|
|
16885
|
+
* @remarks
|
|
16886
|
+
* If support SSE.
|
|
16887
|
+
*
|
|
16888
|
+
* @example
|
|
16889
|
+
* true
|
|
16890
|
+
*
|
|
16669
16891
|
* **if can be null:**
|
|
16670
16892
|
* true
|
|
16671
16893
|
*/
|
|
@@ -16774,6 +16996,8 @@ export declare class ModifyApiGroupResponse extends $tea.Model {
|
|
|
16774
16996
|
export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
|
|
16775
16997
|
/**
|
|
16776
16998
|
* @remarks
|
|
16999
|
+
* The ID of the API group.
|
|
17000
|
+
*
|
|
16777
17001
|
* This parameter is required.
|
|
16778
17002
|
*
|
|
16779
17003
|
* @example
|
|
@@ -16781,14 +17005,23 @@ export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
|
|
|
16781
17005
|
*/
|
|
16782
17006
|
groupId?: string;
|
|
16783
17007
|
/**
|
|
17008
|
+
* @remarks
|
|
17009
|
+
* The remarks.
|
|
17010
|
+
*
|
|
16784
17011
|
* @example
|
|
16785
17012
|
* migrate
|
|
16786
17013
|
*/
|
|
16787
17014
|
remark?: string;
|
|
16788
17015
|
securityToken?: string;
|
|
17016
|
+
/**
|
|
17017
|
+
* @remarks
|
|
17018
|
+
* The tag of objects that match the rule. You can specify multiple tags.
|
|
17019
|
+
*/
|
|
16789
17020
|
tag?: ModifyApiGroupInstanceRequestTag[];
|
|
16790
17021
|
/**
|
|
16791
17022
|
* @remarks
|
|
17023
|
+
* The ID of the instance to which you want to migrate the API group.
|
|
17024
|
+
*
|
|
16792
17025
|
* This parameter is required.
|
|
16793
17026
|
*
|
|
16794
17027
|
* @example
|
|
@@ -16807,6 +17040,9 @@ export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
|
|
|
16807
17040
|
}
|
|
16808
17041
|
export declare class ModifyApiGroupInstanceResponseBody extends $tea.Model {
|
|
16809
17042
|
/**
|
|
17043
|
+
* @remarks
|
|
17044
|
+
* The request ID.
|
|
17045
|
+
*
|
|
16810
17046
|
* @example
|
|
16811
17047
|
* E07AEFF0-9FB0-599E-8F12-B418D8AE1F3D
|
|
16812
17048
|
*/
|
|
@@ -17015,7 +17251,7 @@ export declare class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
17015
17251
|
export declare class ModifyAppRequest extends $tea.Model {
|
|
17016
17252
|
/**
|
|
17017
17253
|
* @remarks
|
|
17018
|
-
* The ID of the
|
|
17254
|
+
* The ID of the app.
|
|
17019
17255
|
*
|
|
17020
17256
|
* This parameter is required.
|
|
17021
17257
|
*
|
|
@@ -17025,9 +17261,9 @@ export declare class ModifyAppRequest extends $tea.Model {
|
|
|
17025
17261
|
appId?: number;
|
|
17026
17262
|
/**
|
|
17027
17263
|
* @remarks
|
|
17028
|
-
* The
|
|
17264
|
+
* The value must be 4 to 26 characters in length and can contain letters, digits, and underscores (_). It must start with a letter.
|
|
17029
17265
|
*
|
|
17030
|
-
*
|
|
17266
|
+
* This parameter is required only when you want to modify the value.
|
|
17031
17267
|
*
|
|
17032
17268
|
* @example
|
|
17033
17269
|
* jiedian_pord
|
|
@@ -17035,14 +17271,21 @@ export declare class ModifyAppRequest extends $tea.Model {
|
|
|
17035
17271
|
appName?: string;
|
|
17036
17272
|
/**
|
|
17037
17273
|
* @remarks
|
|
17038
|
-
* The description of the
|
|
17274
|
+
* The description of the app. The description can contain a maximum of 180 characters in length.
|
|
17039
17275
|
*
|
|
17040
|
-
*
|
|
17276
|
+
* This parameter is required only when you want to modify the value.
|
|
17041
17277
|
*
|
|
17042
17278
|
* @example
|
|
17043
17279
|
* modidyTest
|
|
17044
17280
|
*/
|
|
17045
17281
|
description?: string;
|
|
17282
|
+
/**
|
|
17283
|
+
* @remarks
|
|
17284
|
+
* 扩展信息
|
|
17285
|
+
*
|
|
17286
|
+
* @example
|
|
17287
|
+
* 110461946884
|
|
17288
|
+
*/
|
|
17046
17289
|
extend?: string;
|
|
17047
17290
|
securityToken?: string;
|
|
17048
17291
|
/**
|
|
@@ -17402,27 +17645,41 @@ export declare class ModifyDatasetItemResponse extends $tea.Model {
|
|
|
17402
17645
|
}
|
|
17403
17646
|
export declare class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
17404
17647
|
/**
|
|
17648
|
+
* @remarks
|
|
17649
|
+
* If delete VPC Ip block.
|
|
17650
|
+
*
|
|
17405
17651
|
* @example
|
|
17406
17652
|
* true
|
|
17407
17653
|
*/
|
|
17408
17654
|
deleteVpcIpBlock?: string;
|
|
17409
17655
|
/**
|
|
17656
|
+
* @remarks
|
|
17657
|
+
* If enable outbound IPv6 Traffic.
|
|
17658
|
+
*
|
|
17410
17659
|
* @example
|
|
17411
17660
|
* true
|
|
17412
17661
|
*/
|
|
17413
17662
|
egressIpv6Enable?: string;
|
|
17414
17663
|
/**
|
|
17664
|
+
* @remarks
|
|
17665
|
+
* The HTTPS policy.
|
|
17666
|
+
*
|
|
17415
17667
|
* @example
|
|
17416
17668
|
* HTTPS2_TLS1_0
|
|
17417
17669
|
*/
|
|
17418
17670
|
httpsPolicy?: string;
|
|
17419
17671
|
/**
|
|
17672
|
+
* @remarks
|
|
17673
|
+
* If enable inbound IPv6 Traffic.
|
|
17674
|
+
*
|
|
17420
17675
|
* @example
|
|
17421
17676
|
* true
|
|
17422
17677
|
*/
|
|
17423
17678
|
IPV6Enabled?: string;
|
|
17424
17679
|
/**
|
|
17425
17680
|
* @remarks
|
|
17681
|
+
* The ID of the instance.
|
|
17682
|
+
*
|
|
17426
17683
|
* This parameter is required.
|
|
17427
17684
|
*
|
|
17428
17685
|
* @example
|
|
@@ -17430,21 +17687,33 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
|
17430
17687
|
*/
|
|
17431
17688
|
instanceId?: string;
|
|
17432
17689
|
/**
|
|
17690
|
+
* @remarks
|
|
17691
|
+
* Instance Name
|
|
17692
|
+
*
|
|
17433
17693
|
* @example
|
|
17434
17694
|
* apigatewayInstance
|
|
17435
17695
|
*/
|
|
17436
17696
|
instanceName?: string;
|
|
17437
17697
|
/**
|
|
17698
|
+
* @remarks
|
|
17699
|
+
* Custom private CIDR block.
|
|
17700
|
+
*
|
|
17438
17701
|
* @example
|
|
17439
17702
|
* 172.0.0.1/24
|
|
17440
17703
|
*/
|
|
17441
17704
|
intranetSegments?: string;
|
|
17442
17705
|
/**
|
|
17706
|
+
* @remarks
|
|
17707
|
+
* Maintainable end time.
|
|
17708
|
+
*
|
|
17443
17709
|
* @example
|
|
17444
17710
|
* 23:00Z
|
|
17445
17711
|
*/
|
|
17446
17712
|
maintainEndTime?: string;
|
|
17447
17713
|
/**
|
|
17714
|
+
* @remarks
|
|
17715
|
+
* Maintainable start time.
|
|
17716
|
+
*
|
|
17448
17717
|
* @example
|
|
17449
17718
|
* 18:00Z
|
|
17450
17719
|
*/
|
|
@@ -17455,11 +17724,17 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
|
17455
17724
|
*/
|
|
17456
17725
|
toConnectVpcIpBlock?: ModifyInstanceAttributeRequestToConnectVpcIpBlock;
|
|
17457
17726
|
/**
|
|
17727
|
+
* @remarks
|
|
17728
|
+
* The token of the request.
|
|
17729
|
+
*
|
|
17458
17730
|
* @example
|
|
17459
17731
|
* c20d86c4-1eb3-4d0b-afe9-c586df1e2136
|
|
17460
17732
|
*/
|
|
17461
17733
|
token?: string;
|
|
17462
17734
|
/**
|
|
17735
|
+
* @remarks
|
|
17736
|
+
* Specifies whether to enable the self-calling domain name.
|
|
17737
|
+
*
|
|
17463
17738
|
* @example
|
|
17464
17739
|
* false
|
|
17465
17740
|
*/
|
|
@@ -17476,27 +17751,41 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
|
17476
17751
|
}
|
|
17477
17752
|
export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
|
|
17478
17753
|
/**
|
|
17754
|
+
* @remarks
|
|
17755
|
+
* If delete VPC Ip block.
|
|
17756
|
+
*
|
|
17479
17757
|
* @example
|
|
17480
17758
|
* true
|
|
17481
17759
|
*/
|
|
17482
17760
|
deleteVpcIpBlock?: string;
|
|
17483
17761
|
/**
|
|
17762
|
+
* @remarks
|
|
17763
|
+
* If enable outbound IPv6 Traffic.
|
|
17764
|
+
*
|
|
17484
17765
|
* @example
|
|
17485
17766
|
* true
|
|
17486
17767
|
*/
|
|
17487
17768
|
egressIpv6Enable?: string;
|
|
17488
17769
|
/**
|
|
17770
|
+
* @remarks
|
|
17771
|
+
* The HTTPS policy.
|
|
17772
|
+
*
|
|
17489
17773
|
* @example
|
|
17490
17774
|
* HTTPS2_TLS1_0
|
|
17491
17775
|
*/
|
|
17492
17776
|
httpsPolicy?: string;
|
|
17493
17777
|
/**
|
|
17778
|
+
* @remarks
|
|
17779
|
+
* If enable inbound IPv6 Traffic.
|
|
17780
|
+
*
|
|
17494
17781
|
* @example
|
|
17495
17782
|
* true
|
|
17496
17783
|
*/
|
|
17497
17784
|
IPV6Enabled?: string;
|
|
17498
17785
|
/**
|
|
17499
17786
|
* @remarks
|
|
17787
|
+
* The ID of the instance.
|
|
17788
|
+
*
|
|
17500
17789
|
* This parameter is required.
|
|
17501
17790
|
*
|
|
17502
17791
|
* @example
|
|
@@ -17504,21 +17793,33 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
|
|
|
17504
17793
|
*/
|
|
17505
17794
|
instanceId?: string;
|
|
17506
17795
|
/**
|
|
17796
|
+
* @remarks
|
|
17797
|
+
* Instance Name
|
|
17798
|
+
*
|
|
17507
17799
|
* @example
|
|
17508
17800
|
* apigatewayInstance
|
|
17509
17801
|
*/
|
|
17510
17802
|
instanceName?: string;
|
|
17511
17803
|
/**
|
|
17804
|
+
* @remarks
|
|
17805
|
+
* Custom private CIDR block.
|
|
17806
|
+
*
|
|
17512
17807
|
* @example
|
|
17513
17808
|
* 172.0.0.1/24
|
|
17514
17809
|
*/
|
|
17515
17810
|
intranetSegments?: string;
|
|
17516
17811
|
/**
|
|
17812
|
+
* @remarks
|
|
17813
|
+
* Maintainable end time.
|
|
17814
|
+
*
|
|
17517
17815
|
* @example
|
|
17518
17816
|
* 23:00Z
|
|
17519
17817
|
*/
|
|
17520
17818
|
maintainEndTime?: string;
|
|
17521
17819
|
/**
|
|
17820
|
+
* @remarks
|
|
17821
|
+
* Maintainable start time.
|
|
17822
|
+
*
|
|
17522
17823
|
* @example
|
|
17523
17824
|
* 18:00Z
|
|
17524
17825
|
*/
|
|
@@ -17529,11 +17830,17 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
|
|
|
17529
17830
|
*/
|
|
17530
17831
|
toConnectVpcIpBlockShrink?: string;
|
|
17531
17832
|
/**
|
|
17833
|
+
* @remarks
|
|
17834
|
+
* The token of the request.
|
|
17835
|
+
*
|
|
17532
17836
|
* @example
|
|
17533
17837
|
* c20d86c4-1eb3-4d0b-afe9-c586df1e2136
|
|
17534
17838
|
*/
|
|
17535
17839
|
token?: string;
|
|
17536
17840
|
/**
|
|
17841
|
+
* @remarks
|
|
17842
|
+
* Specifies whether to enable the self-calling domain name.
|
|
17843
|
+
*
|
|
17537
17844
|
* @example
|
|
17538
17845
|
* false
|
|
17539
17846
|
*/
|
|
@@ -17550,6 +17857,9 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
|
|
|
17550
17857
|
}
|
|
17551
17858
|
export declare class ModifyInstanceAttributeResponseBody extends $tea.Model {
|
|
17552
17859
|
/**
|
|
17860
|
+
* @remarks
|
|
17861
|
+
* The ID of the request.
|
|
17862
|
+
*
|
|
17553
17863
|
* @example
|
|
17554
17864
|
* F3186326-2C57-58E1-B6E9-XXXXXXXXXXXX
|
|
17555
17865
|
*/
|
|
@@ -17926,6 +18236,16 @@ export declare class ModifyIpControlPolicyItemResponse extends $tea.Model {
|
|
|
17926
18236
|
}
|
|
17927
18237
|
export declare class ModifyLogConfigRequest extends $tea.Model {
|
|
17928
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
|
+
*
|
|
17929
18249
|
* @example
|
|
17930
18250
|
* PROVIDER
|
|
17931
18251
|
*/
|
|
@@ -17933,6 +18253,8 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
|
|
|
17933
18253
|
securityToken?: string;
|
|
17934
18254
|
/**
|
|
17935
18255
|
* @remarks
|
|
18256
|
+
* The name of the Logstore.
|
|
18257
|
+
*
|
|
17936
18258
|
* This parameter is required.
|
|
17937
18259
|
*
|
|
17938
18260
|
* @example
|
|
@@ -17941,6 +18263,8 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
|
|
|
17941
18263
|
slsLogStore?: string;
|
|
17942
18264
|
/**
|
|
17943
18265
|
* @remarks
|
|
18266
|
+
* The name of the Log Service project.
|
|
18267
|
+
*
|
|
17944
18268
|
* This parameter is required.
|
|
17945
18269
|
*
|
|
17946
18270
|
* @example
|
|
@@ -17959,6 +18283,9 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
|
|
|
17959
18283
|
}
|
|
17960
18284
|
export declare class ModifyLogConfigResponseBody extends $tea.Model {
|
|
17961
18285
|
/**
|
|
18286
|
+
* @remarks
|
|
18287
|
+
* The request ID.
|
|
18288
|
+
*
|
|
17962
18289
|
* @example
|
|
17963
18290
|
* 75A4ADCB-AA26-51FB-94D4-AB3240040974
|
|
17964
18291
|
*/
|
|
@@ -19749,6 +20076,8 @@ export declare class SdkGenerateByAppResponse extends $tea.Model {
|
|
|
19749
20076
|
export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
|
|
19750
20077
|
/**
|
|
19751
20078
|
* @remarks
|
|
20079
|
+
* The ID of the app. This ID is generated by the system and globally unique.
|
|
20080
|
+
*
|
|
19752
20081
|
* This parameter is required.
|
|
19753
20082
|
*
|
|
19754
20083
|
* @example
|
|
@@ -19757,6 +20086,8 @@ export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
|
|
|
19757
20086
|
appId?: number;
|
|
19758
20087
|
/**
|
|
19759
20088
|
* @remarks
|
|
20089
|
+
* The programming language in which the SDK is generated.
|
|
20090
|
+
*
|
|
19760
20091
|
* This parameter is required.
|
|
19761
20092
|
*
|
|
19762
20093
|
* @example
|
|
@@ -19776,11 +20107,17 @@ export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
|
|
|
19776
20107
|
}
|
|
19777
20108
|
export declare class SdkGenerateByAppForRegionResponseBody extends $tea.Model {
|
|
19778
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
|
+
*
|
|
19779
20113
|
* @example
|
|
19780
20114
|
* UEsDBBQACAAIADdwnFQAAAAAAAAAAAAAAAA2AAAAQ0FTREtfSkFWQV8xMjI3NDY2NjY0MzM0MTMzXzE2NTExMjU3MD......
|
|
19781
20115
|
*/
|
|
19782
20116
|
downloadLink?: string;
|
|
19783
20117
|
/**
|
|
20118
|
+
* @remarks
|
|
20119
|
+
* The ID of the request.
|
|
20120
|
+
*
|
|
19784
20121
|
* @example
|
|
19785
20122
|
* CE5722A6-AE78-4741-A9B0-6C817D360510
|
|
19786
20123
|
*/
|
|
@@ -19939,18 +20276,36 @@ export declare class SetAccessControlListAttributeResponse extends $tea.Model {
|
|
|
19939
20276
|
export declare class SetApiProductsAuthoritiesRequest extends $tea.Model {
|
|
19940
20277
|
/**
|
|
19941
20278
|
* @remarks
|
|
20279
|
+
* The API products.
|
|
20280
|
+
*
|
|
19942
20281
|
* This parameter is required.
|
|
19943
20282
|
*/
|
|
19944
20283
|
apiProductIds?: string[];
|
|
19945
20284
|
/**
|
|
19946
20285
|
* @remarks
|
|
20286
|
+
* The application ID.
|
|
20287
|
+
*
|
|
19947
20288
|
* This parameter is required.
|
|
19948
20289
|
*
|
|
19949
20290
|
* @example
|
|
19950
20291
|
* 111385984
|
|
19951
20292
|
*/
|
|
19952
20293
|
appId?: number;
|
|
20294
|
+
/**
|
|
20295
|
+
* @remarks
|
|
20296
|
+
* 授权有效时间的截止时间,请设置格林尼治标准时间(GMT), 如果为空,即为授权永久有效。
|
|
20297
|
+
*
|
|
20298
|
+
* @example
|
|
20299
|
+
* 2023-06-12T03:07:37Z
|
|
20300
|
+
*/
|
|
19953
20301
|
authValidTime?: string;
|
|
20302
|
+
/**
|
|
20303
|
+
* @remarks
|
|
20304
|
+
* The authorization description.
|
|
20305
|
+
*
|
|
20306
|
+
* @example
|
|
20307
|
+
* test
|
|
20308
|
+
*/
|
|
19954
20309
|
description?: string;
|
|
19955
20310
|
securityToken?: string;
|
|
19956
20311
|
static names(): {
|
|
@@ -19966,18 +20321,36 @@ export declare class SetApiProductsAuthoritiesRequest extends $tea.Model {
|
|
|
19966
20321
|
export declare class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
|
|
19967
20322
|
/**
|
|
19968
20323
|
* @remarks
|
|
20324
|
+
* The API products.
|
|
20325
|
+
*
|
|
19969
20326
|
* This parameter is required.
|
|
19970
20327
|
*/
|
|
19971
20328
|
apiProductIdsShrink?: string;
|
|
19972
20329
|
/**
|
|
19973
20330
|
* @remarks
|
|
20331
|
+
* The application ID.
|
|
20332
|
+
*
|
|
19974
20333
|
* This parameter is required.
|
|
19975
20334
|
*
|
|
19976
20335
|
* @example
|
|
19977
20336
|
* 111385984
|
|
19978
20337
|
*/
|
|
19979
20338
|
appId?: number;
|
|
20339
|
+
/**
|
|
20340
|
+
* @remarks
|
|
20341
|
+
* 授权有效时间的截止时间,请设置格林尼治标准时间(GMT), 如果为空,即为授权永久有效。
|
|
20342
|
+
*
|
|
20343
|
+
* @example
|
|
20344
|
+
* 2023-06-12T03:07:37Z
|
|
20345
|
+
*/
|
|
19980
20346
|
authValidTime?: string;
|
|
20347
|
+
/**
|
|
20348
|
+
* @remarks
|
|
20349
|
+
* The authorization description.
|
|
20350
|
+
*
|
|
20351
|
+
* @example
|
|
20352
|
+
* test
|
|
20353
|
+
*/
|
|
19981
20354
|
description?: string;
|
|
19982
20355
|
securityToken?: string;
|
|
19983
20356
|
static names(): {
|
|
@@ -19992,6 +20365,9 @@ export declare class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
|
|
|
19992
20365
|
}
|
|
19993
20366
|
export declare class SetApiProductsAuthoritiesResponseBody extends $tea.Model {
|
|
19994
20367
|
/**
|
|
20368
|
+
* @remarks
|
|
20369
|
+
* The request ID.
|
|
20370
|
+
*
|
|
19995
20371
|
* @example
|
|
19996
20372
|
* 2603F41E-77FC-59A3-840E-296578A9BDE0
|
|
19997
20373
|
*/
|
|
@@ -20127,6 +20503,8 @@ export declare class SetApisAuthoritiesResponse extends $tea.Model {
|
|
|
20127
20503
|
export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
|
|
20128
20504
|
/**
|
|
20129
20505
|
* @remarks
|
|
20506
|
+
* The ID of the API product.
|
|
20507
|
+
*
|
|
20130
20508
|
* This parameter is required.
|
|
20131
20509
|
*
|
|
20132
20510
|
* @example
|
|
@@ -20135,14 +20513,26 @@ export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
|
|
|
20135
20513
|
apiProductId?: string;
|
|
20136
20514
|
/**
|
|
20137
20515
|
* @remarks
|
|
20516
|
+
* The IDs of the applications that you want to authorize.
|
|
20517
|
+
*
|
|
20138
20518
|
* This parameter is required.
|
|
20139
20519
|
*/
|
|
20140
20520
|
appIds?: number[];
|
|
20141
20521
|
/**
|
|
20522
|
+
* @remarks
|
|
20523
|
+
* The time (UTC) when the authorization expires. If this parameter is empty, the authorization does not expire.
|
|
20524
|
+
*
|
|
20142
20525
|
* @example
|
|
20143
20526
|
* 2023-05-31T08:15:39Z
|
|
20144
20527
|
*/
|
|
20145
20528
|
authValidTime?: string;
|
|
20529
|
+
/**
|
|
20530
|
+
* @remarks
|
|
20531
|
+
* The description of the authorization.
|
|
20532
|
+
*
|
|
20533
|
+
* @example
|
|
20534
|
+
* Test
|
|
20535
|
+
*/
|
|
20146
20536
|
description?: string;
|
|
20147
20537
|
securityToken?: string;
|
|
20148
20538
|
static names(): {
|
|
@@ -20157,6 +20547,9 @@ export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
|
|
|
20157
20547
|
}
|
|
20158
20548
|
export declare class SetAppsAuthToApiProductResponseBody extends $tea.Model {
|
|
20159
20549
|
/**
|
|
20550
|
+
* @remarks
|
|
20551
|
+
* The request ID.
|
|
20552
|
+
*
|
|
20160
20553
|
* @example
|
|
20161
20554
|
* EF924FE4-2EDD-4CD3-89EC-34E4708574E7
|
|
20162
20555
|
*/
|
|
@@ -20497,6 +20890,14 @@ export declare class SetDomainCertificateRequest extends $tea.Model {
|
|
|
20497
20890
|
* For more information, see the following request examples
|
|
20498
20891
|
*/
|
|
20499
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;
|
|
20500
20901
|
/**
|
|
20501
20902
|
* @remarks
|
|
20502
20903
|
* The custom domain name.
|
|
@@ -20518,6 +20919,14 @@ export declare class SetDomainCertificateRequest extends $tea.Model {
|
|
|
20518
20919
|
*/
|
|
20519
20920
|
groupId?: string;
|
|
20520
20921
|
securityToken?: string;
|
|
20922
|
+
/**
|
|
20923
|
+
* @remarks
|
|
20924
|
+
* If enable ssl OCSP.
|
|
20925
|
+
*
|
|
20926
|
+
* @example
|
|
20927
|
+
* True
|
|
20928
|
+
*/
|
|
20929
|
+
sslOcspEnable?: boolean;
|
|
20521
20930
|
/**
|
|
20522
20931
|
* @remarks
|
|
20523
20932
|
* The certificate verification depth.
|
|
@@ -20603,6 +21012,13 @@ export declare class SetDomainWebSocketStatusRequest extends $tea.Model {
|
|
|
20603
21012
|
*/
|
|
20604
21013
|
groupId?: string;
|
|
20605
21014
|
securityToken?: string;
|
|
21015
|
+
/**
|
|
21016
|
+
* @remarks
|
|
21017
|
+
* If enable WSS.
|
|
21018
|
+
*
|
|
21019
|
+
* @example
|
|
21020
|
+
* false
|
|
21021
|
+
*/
|
|
20606
21022
|
WSSEnable?: string;
|
|
20607
21023
|
static names(): {
|
|
20608
21024
|
[key: string]: string;
|
|
@@ -21449,6 +21865,8 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
21449
21865
|
export declare class UpdatePrivateDNSRequest extends $tea.Model {
|
|
21450
21866
|
/**
|
|
21451
21867
|
* @remarks
|
|
21868
|
+
* The internal domain name.
|
|
21869
|
+
*
|
|
21452
21870
|
* This parameter is required.
|
|
21453
21871
|
*
|
|
21454
21872
|
* @example
|
|
@@ -21457,12 +21875,19 @@ export declare class UpdatePrivateDNSRequest extends $tea.Model {
|
|
|
21457
21875
|
intranetDomain?: string;
|
|
21458
21876
|
/**
|
|
21459
21877
|
* @remarks
|
|
21878
|
+
* The resolution records. This parameter is valid only when Type is set to A.
|
|
21879
|
+
*
|
|
21460
21880
|
* This parameter is required.
|
|
21461
21881
|
*/
|
|
21462
21882
|
records?: UpdatePrivateDNSRequestRecords[];
|
|
21463
21883
|
securityToken?: string;
|
|
21464
21884
|
/**
|
|
21465
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
|
+
*
|
|
21466
21891
|
* This parameter is required.
|
|
21467
21892
|
*
|
|
21468
21893
|
* @example
|
|
@@ -21482,6 +21907,8 @@ export declare class UpdatePrivateDNSRequest extends $tea.Model {
|
|
|
21482
21907
|
export declare class UpdatePrivateDNSShrinkRequest extends $tea.Model {
|
|
21483
21908
|
/**
|
|
21484
21909
|
* @remarks
|
|
21910
|
+
* The internal domain name.
|
|
21911
|
+
*
|
|
21485
21912
|
* This parameter is required.
|
|
21486
21913
|
*
|
|
21487
21914
|
* @example
|
|
@@ -21490,12 +21917,19 @@ export declare class UpdatePrivateDNSShrinkRequest extends $tea.Model {
|
|
|
21490
21917
|
intranetDomain?: string;
|
|
21491
21918
|
/**
|
|
21492
21919
|
* @remarks
|
|
21920
|
+
* The resolution records. This parameter is valid only when Type is set to A.
|
|
21921
|
+
*
|
|
21493
21922
|
* This parameter is required.
|
|
21494
21923
|
*/
|
|
21495
21924
|
recordsShrink?: string;
|
|
21496
21925
|
securityToken?: string;
|
|
21497
21926
|
/**
|
|
21498
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
|
+
*
|
|
21499
21933
|
* This parameter is required.
|
|
21500
21934
|
*
|
|
21501
21935
|
* @example
|
|
@@ -21514,6 +21948,9 @@ export declare class UpdatePrivateDNSShrinkRequest extends $tea.Model {
|
|
|
21514
21948
|
}
|
|
21515
21949
|
export declare class UpdatePrivateDNSResponseBody extends $tea.Model {
|
|
21516
21950
|
/**
|
|
21951
|
+
* @remarks
|
|
21952
|
+
* The request ID.
|
|
21953
|
+
*
|
|
21517
21954
|
* @example
|
|
21518
21955
|
* EF924FE4-2EDD-4CD3-89EC-34E4708574E7
|
|
21519
21956
|
*/
|
|
@@ -22052,11 +22489,17 @@ export declare class CreatePluginRequestTag extends $tea.Model {
|
|
|
22052
22489
|
}
|
|
22053
22490
|
export declare class CreatePrivateDNSRequestRecords extends $tea.Model {
|
|
22054
22491
|
/**
|
|
22492
|
+
* @remarks
|
|
22493
|
+
* The resolution record.
|
|
22494
|
+
*
|
|
22055
22495
|
* @example
|
|
22056
22496
|
* 192.168.0.1
|
|
22057
22497
|
*/
|
|
22058
22498
|
record?: string;
|
|
22059
22499
|
/**
|
|
22500
|
+
* @remarks
|
|
22501
|
+
* The weight of the record.
|
|
22502
|
+
*
|
|
22060
22503
|
* @example
|
|
22061
22504
|
* 100
|
|
22062
22505
|
*/
|
|
@@ -23056,6 +23499,7 @@ export declare class DescribeApiResponseBodyServiceConfigFunctionComputeConfig e
|
|
|
23056
23499
|
* fcservicename
|
|
23057
23500
|
*/
|
|
23058
23501
|
serviceName?: string;
|
|
23502
|
+
triggerName?: string;
|
|
23059
23503
|
static names(): {
|
|
23060
23504
|
[key: string]: string;
|
|
23061
23505
|
};
|
|
@@ -27374,6 +27818,9 @@ export declare class DescribeAppsByApiProductResponseBodyAuthorizedAppsAuthorize
|
|
|
27374
27818
|
/**
|
|
27375
27819
|
* @remarks
|
|
27376
27820
|
* The authorization description.
|
|
27821
|
+
*
|
|
27822
|
+
* @example
|
|
27823
|
+
* Test share with nsc qiming
|
|
27377
27824
|
*/
|
|
27378
27825
|
description?: string;
|
|
27379
27826
|
/**
|
|
@@ -27776,16 +28223,25 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27776
28223
|
}
|
|
27777
28224
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig extends $tea.Model {
|
|
27778
28225
|
/**
|
|
28226
|
+
* @remarks
|
|
28227
|
+
* The connection URL of the ZooKeeper server.
|
|
28228
|
+
*
|
|
27779
28229
|
* @example
|
|
27780
28230
|
* http://192.168.1.xxx:2181
|
|
27781
28231
|
*/
|
|
27782
28232
|
connectString?: string;
|
|
27783
28233
|
/**
|
|
28234
|
+
* @remarks
|
|
28235
|
+
* The namespace.
|
|
28236
|
+
*
|
|
27784
28237
|
* @example
|
|
27785
28238
|
* provider
|
|
27786
28239
|
*/
|
|
27787
28240
|
namespace?: string;
|
|
27788
28241
|
/**
|
|
28242
|
+
* @remarks
|
|
28243
|
+
* Service name
|
|
28244
|
+
*
|
|
27789
28245
|
* @example
|
|
27790
28246
|
* service
|
|
27791
28247
|
*/
|
|
@@ -27814,6 +28270,10 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27814
28270
|
* NACOS
|
|
27815
28271
|
*/
|
|
27816
28272
|
rcType?: string;
|
|
28273
|
+
/**
|
|
28274
|
+
* @remarks
|
|
28275
|
+
* The ZooKeeper configuration.
|
|
28276
|
+
*/
|
|
27817
28277
|
zookeeperConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig;
|
|
27818
28278
|
static names(): {
|
|
27819
28279
|
[key: string]: string;
|
|
@@ -27827,36 +28287,57 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27827
28287
|
}
|
|
27828
28288
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEdasConfig extends $tea.Model {
|
|
27829
28289
|
/**
|
|
28290
|
+
* @remarks
|
|
28291
|
+
* The EDAS application ID.
|
|
28292
|
+
*
|
|
27830
28293
|
* @example
|
|
27831
28294
|
* 6cd0c599-dxxx-496d-b3d5-6a71c657xxxxx
|
|
27832
28295
|
*/
|
|
27833
28296
|
edasAppId?: string;
|
|
27834
28297
|
/**
|
|
28298
|
+
* @remarks
|
|
28299
|
+
* The ID of the microservices namespace in EDAS.
|
|
28300
|
+
*
|
|
27835
28301
|
* @example
|
|
27836
28302
|
* cn-hangzhou:edasNacos
|
|
27837
28303
|
*/
|
|
27838
28304
|
microserviceNamespace?: string;
|
|
27839
28305
|
/**
|
|
28306
|
+
* @remarks
|
|
28307
|
+
* The ID of the microservices namespace in EDAS.
|
|
28308
|
+
*
|
|
27840
28309
|
* @example
|
|
27841
28310
|
* cn-hangzhou:edasNacos
|
|
27842
28311
|
*/
|
|
27843
28312
|
microserviceNamespaceId?: string;
|
|
27844
28313
|
/**
|
|
28314
|
+
* @remarks
|
|
28315
|
+
* The name of the microservices namespace in EDAS.
|
|
28316
|
+
*
|
|
27845
28317
|
* @example
|
|
27846
28318
|
* Edas-Nacos
|
|
27847
28319
|
*/
|
|
27848
28320
|
microserviceNamespaceName?: string;
|
|
27849
28321
|
/**
|
|
28322
|
+
* @remarks
|
|
28323
|
+
* The MSE instance ID.
|
|
28324
|
+
*
|
|
27850
28325
|
* @example
|
|
27851
28326
|
* mse-cn-jia3n1rxxxx
|
|
27852
28327
|
*/
|
|
27853
28328
|
mseInstanceId?: string;
|
|
27854
28329
|
/**
|
|
28330
|
+
* @remarks
|
|
28331
|
+
* The registration type.
|
|
28332
|
+
*
|
|
27855
28333
|
* @example
|
|
27856
28334
|
* EDAS
|
|
27857
28335
|
*/
|
|
27858
28336
|
registryType?: string;
|
|
27859
28337
|
/**
|
|
28338
|
+
* @remarks
|
|
28339
|
+
* The service name.
|
|
28340
|
+
*
|
|
27860
28341
|
* @example
|
|
27861
28342
|
* service
|
|
27862
28343
|
*/
|
|
@@ -27979,6 +28460,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27979
28460
|
* myservice
|
|
27980
28461
|
*/
|
|
27981
28462
|
serviceName?: string;
|
|
28463
|
+
triggerName?: string;
|
|
27982
28464
|
static names(): {
|
|
27983
28465
|
[key: string]: string;
|
|
27984
28466
|
};
|
|
@@ -27992,7 +28474,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27992
28474
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfigMockHeaders extends $tea.Model {
|
|
27993
28475
|
/**
|
|
27994
28476
|
* @remarks
|
|
27995
|
-
* The
|
|
28477
|
+
* The header name.
|
|
27996
28478
|
*
|
|
27997
28479
|
* @example
|
|
27998
28480
|
* test
|
|
@@ -28000,7 +28482,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28000
28482
|
headerName?: string;
|
|
28001
28483
|
/**
|
|
28002
28484
|
* @remarks
|
|
28003
|
-
* The
|
|
28485
|
+
* The header value.
|
|
28004
28486
|
*
|
|
28005
28487
|
* @example
|
|
28006
28488
|
* 123
|
|
@@ -28019,12 +28501,12 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28019
28501
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig extends $tea.Model {
|
|
28020
28502
|
/**
|
|
28021
28503
|
* @remarks
|
|
28022
|
-
* The header
|
|
28504
|
+
* The header in the mocked response.
|
|
28023
28505
|
*/
|
|
28024
28506
|
mockHeaders?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfigMockHeaders[];
|
|
28025
28507
|
/**
|
|
28026
28508
|
* @remarks
|
|
28027
|
-
* The
|
|
28509
|
+
* The mocked response.
|
|
28028
28510
|
*
|
|
28029
28511
|
* @example
|
|
28030
28512
|
* test
|
|
@@ -28032,7 +28514,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28032
28514
|
mockResult?: string;
|
|
28033
28515
|
/**
|
|
28034
28516
|
* @remarks
|
|
28035
|
-
* The status code
|
|
28517
|
+
* The status code in the mocked response.
|
|
28036
28518
|
*
|
|
28037
28519
|
* @example
|
|
28038
28520
|
* 200
|
|
@@ -28126,7 +28608,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28126
28608
|
vpcScheme?: string;
|
|
28127
28609
|
/**
|
|
28128
28610
|
* @remarks
|
|
28129
|
-
* The host of the backend service.
|
|
28611
|
+
* The host of the VPC backend service.
|
|
28130
28612
|
*
|
|
28131
28613
|
* @example
|
|
28132
28614
|
* openapi.alipan.com
|
|
@@ -28145,9 +28627,13 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28145
28627
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig extends $tea.Model {
|
|
28146
28628
|
/**
|
|
28147
28629
|
* @remarks
|
|
28148
|
-
* The information about the backend service
|
|
28630
|
+
* The information about the backend service when the backend service is of the Service Discovery type.
|
|
28149
28631
|
*/
|
|
28150
28632
|
discoveryConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfig;
|
|
28633
|
+
/**
|
|
28634
|
+
* @remarks
|
|
28635
|
+
* The EDAS configuration.
|
|
28636
|
+
*/
|
|
28151
28637
|
edasConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEdasConfig;
|
|
28152
28638
|
/**
|
|
28153
28639
|
* @remarks
|
|
@@ -28161,7 +28647,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28161
28647
|
functionComputeConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig;
|
|
28162
28648
|
/**
|
|
28163
28649
|
* @remarks
|
|
28164
|
-
* The host of the backend service.
|
|
28650
|
+
* The host of the HTTP backend service.
|
|
28165
28651
|
*
|
|
28166
28652
|
* @example
|
|
28167
28653
|
* www.host.com
|
|
@@ -28169,7 +28655,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28169
28655
|
httpTargetHostName?: string;
|
|
28170
28656
|
/**
|
|
28171
28657
|
* @remarks
|
|
28172
|
-
* The information about the backend service
|
|
28658
|
+
* The information about the backend service when the backend service is of the Mock type.
|
|
28173
28659
|
*/
|
|
28174
28660
|
mockConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig;
|
|
28175
28661
|
/**
|
|
@@ -28186,6 +28672,9 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28186
28672
|
*/
|
|
28187
28673
|
serviceAddress?: string;
|
|
28188
28674
|
/**
|
|
28675
|
+
* @remarks
|
|
28676
|
+
* The timeout period of the backend service, in millisecond.
|
|
28677
|
+
*
|
|
28189
28678
|
* @example
|
|
28190
28679
|
* 10000
|
|
28191
28680
|
*/
|
|
@@ -28200,7 +28689,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28200
28689
|
type?: string;
|
|
28201
28690
|
/**
|
|
28202
28691
|
* @remarks
|
|
28203
|
-
* The information about the
|
|
28692
|
+
* The information about the backend service when the backend service is of the VPC type.
|
|
28204
28693
|
*/
|
|
28205
28694
|
vpcConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigVpcConfig;
|
|
28206
28695
|
static names(): {
|
|
@@ -28651,7 +29140,7 @@ export declare class DescribeDatasetItemListResponseBodyDatasetItemInfoList exte
|
|
|
28651
29140
|
export declare class DescribeDatasetListRequestTag extends $tea.Model {
|
|
28652
29141
|
/**
|
|
28653
29142
|
* @remarks
|
|
28654
|
-
*
|
|
29143
|
+
* The tag key.
|
|
28655
29144
|
*
|
|
28656
29145
|
* @example
|
|
28657
29146
|
* env
|
|
@@ -28659,7 +29148,7 @@ export declare class DescribeDatasetListRequestTag extends $tea.Model {
|
|
|
28659
29148
|
key?: string;
|
|
28660
29149
|
/**
|
|
28661
29150
|
* @remarks
|
|
28662
|
-
*
|
|
29151
|
+
* The value of the tag.
|
|
28663
29152
|
*
|
|
28664
29153
|
* @example
|
|
28665
29154
|
* value
|
|
@@ -28678,7 +29167,7 @@ export declare class DescribeDatasetListRequestTag extends $tea.Model {
|
|
|
28678
29167
|
export declare class DescribeDatasetListResponseBodyDatasetInfoListTags extends $tea.Model {
|
|
28679
29168
|
/**
|
|
28680
29169
|
* @remarks
|
|
28681
|
-
*
|
|
29170
|
+
* The tag key.
|
|
28682
29171
|
*
|
|
28683
29172
|
* @example
|
|
28684
29173
|
* ENV
|
|
@@ -28686,7 +29175,7 @@ export declare class DescribeDatasetListResponseBodyDatasetInfoListTags extends
|
|
|
28686
29175
|
key?: string;
|
|
28687
29176
|
/**
|
|
28688
29177
|
* @remarks
|
|
28689
|
-
*
|
|
29178
|
+
* The value of the tag.
|
|
28690
29179
|
*
|
|
28691
29180
|
* @example
|
|
28692
29181
|
* 123
|
|
@@ -28749,7 +29238,7 @@ export declare class DescribeDatasetListResponseBodyDatasetInfoList extends $tea
|
|
|
28749
29238
|
modifiedTime?: string;
|
|
28750
29239
|
/**
|
|
28751
29240
|
* @remarks
|
|
28752
|
-
*
|
|
29241
|
+
* The tags.
|
|
28753
29242
|
*/
|
|
28754
29243
|
tags?: DescribeDatasetListResponseBodyDatasetInfoListTags[];
|
|
28755
29244
|
static names(): {
|
|
@@ -29846,6 +30335,9 @@ export declare class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem
|
|
|
29846
30335
|
*/
|
|
29847
30336
|
apiId?: string;
|
|
29848
30337
|
/**
|
|
30338
|
+
* @remarks
|
|
30339
|
+
* The HTTP method of the API request.
|
|
30340
|
+
*
|
|
29849
30341
|
* @example
|
|
29850
30342
|
* POST
|
|
29851
30343
|
*/
|
|
@@ -29859,6 +30351,9 @@ export declare class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem
|
|
|
29859
30351
|
*/
|
|
29860
30352
|
apiName?: string;
|
|
29861
30353
|
/**
|
|
30354
|
+
* @remarks
|
|
30355
|
+
* The request path of the API.
|
|
30356
|
+
*
|
|
29862
30357
|
* @example
|
|
29863
30358
|
* /trademark/search
|
|
29864
30359
|
*/
|
|
@@ -31138,6 +31633,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInst
|
|
|
31138
31633
|
/**
|
|
31139
31634
|
* @remarks
|
|
31140
31635
|
* The variable name.
|
|
31636
|
+
*
|
|
31637
|
+
* @example
|
|
31638
|
+
* SLA
|
|
31141
31639
|
*/
|
|
31142
31640
|
localName?: string;
|
|
31143
31641
|
/**
|
|
@@ -31145,7 +31643,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInst
|
|
|
31145
31643
|
* The variable value.
|
|
31146
31644
|
*
|
|
31147
31645
|
* @example
|
|
31148
|
-
*
|
|
31646
|
+
* 99.95%
|
|
31149
31647
|
*/
|
|
31150
31648
|
value?: string;
|
|
31151
31649
|
static names(): {
|
|
@@ -31238,7 +31736,21 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributePriv
|
|
|
31238
31736
|
});
|
|
31239
31737
|
}
|
|
31240
31738
|
export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeTagsTagInfo extends $tea.Model {
|
|
31739
|
+
/**
|
|
31740
|
+
* @remarks
|
|
31741
|
+
* The tag key of the instance.
|
|
31742
|
+
*
|
|
31743
|
+
* @example
|
|
31744
|
+
* Cookie
|
|
31745
|
+
*/
|
|
31241
31746
|
key?: string;
|
|
31747
|
+
/**
|
|
31748
|
+
* @remarks
|
|
31749
|
+
* The tag value of the instance.
|
|
31750
|
+
*
|
|
31751
|
+
* @example
|
|
31752
|
+
* 240
|
|
31753
|
+
*/
|
|
31242
31754
|
value?: string;
|
|
31243
31755
|
static names(): {
|
|
31244
31756
|
[key: string]: string;
|
|
@@ -31521,6 +32033,18 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
31521
32033
|
* The network information of the user\\"s VPC if the instance is a VPC integration instance.
|
|
31522
32034
|
*/
|
|
31523
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
|
+
*/
|
|
31524
32048
|
privateDnsList?: DescribeInstancesResponseBodyInstancesInstanceAttributePrivateDnsList;
|
|
31525
32049
|
/**
|
|
31526
32050
|
* @remarks
|
|
@@ -31546,6 +32070,10 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
31546
32070
|
* true
|
|
31547
32071
|
*/
|
|
31548
32072
|
supportIpv6?: boolean;
|
|
32073
|
+
/**
|
|
32074
|
+
* @remarks
|
|
32075
|
+
* The tags of the instance.
|
|
32076
|
+
*/
|
|
31549
32077
|
tags?: DescribeInstancesResponseBodyInstancesInstanceAttributeTags;
|
|
31550
32078
|
/**
|
|
31551
32079
|
* @remarks
|
|
@@ -31606,6 +32134,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
31606
32134
|
/**
|
|
31607
32135
|
* @remarks
|
|
31608
32136
|
* The zone.
|
|
32137
|
+
*
|
|
32138
|
+
* @example
|
|
32139
|
+
* Multi-Availability Zone 3(b,c,a)
|
|
31609
32140
|
*/
|
|
31610
32141
|
zoneLocalName?: string;
|
|
31611
32142
|
static names(): {
|
|
@@ -31774,21 +32305,33 @@ export declare class DescribeIpControlsResponseBodyIpControlInfos extends $tea.M
|
|
|
31774
32305
|
}
|
|
31775
32306
|
export declare class DescribeLogConfigResponseBodyLogInfosLogInfo extends $tea.Model {
|
|
31776
32307
|
/**
|
|
32308
|
+
* @remarks
|
|
32309
|
+
* The log type.
|
|
32310
|
+
*
|
|
31777
32311
|
* @example
|
|
31778
32312
|
* PROVIDER
|
|
31779
32313
|
*/
|
|
31780
32314
|
logType?: string;
|
|
31781
32315
|
/**
|
|
32316
|
+
* @remarks
|
|
32317
|
+
* The region ID of the Logstore.
|
|
32318
|
+
*
|
|
31782
32319
|
* @example
|
|
31783
32320
|
* cn-hangzhou
|
|
31784
32321
|
*/
|
|
31785
32322
|
regionId?: string;
|
|
31786
32323
|
/**
|
|
32324
|
+
* @remarks
|
|
32325
|
+
* The name of the Logstore in Log Service.
|
|
32326
|
+
*
|
|
31787
32327
|
* @example
|
|
31788
32328
|
* slsstore
|
|
31789
32329
|
*/
|
|
31790
32330
|
slsLogStore?: string;
|
|
31791
32331
|
/**
|
|
32332
|
+
* @remarks
|
|
32333
|
+
* The name of the Log Service project.
|
|
32334
|
+
*
|
|
31792
32335
|
* @example
|
|
31793
32336
|
* slsproject
|
|
31794
32337
|
*/
|
|
@@ -33966,7 +34509,7 @@ export declare class ImportOASResponseBodyWarningMessages extends $tea.Model {
|
|
|
33966
34509
|
export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed extends $tea.Model {
|
|
33967
34510
|
/**
|
|
33968
34511
|
* @remarks
|
|
33969
|
-
* The error message returned.
|
|
34512
|
+
* The error message returned when the API is created.
|
|
33970
34513
|
*
|
|
33971
34514
|
* @example
|
|
33972
34515
|
* api already exists : apiUid ===> 8e274ec61cf6468e83b68371956831cb
|
|
@@ -33974,7 +34517,7 @@ export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed exten
|
|
|
33974
34517
|
errorMsg?: string;
|
|
33975
34518
|
/**
|
|
33976
34519
|
* @remarks
|
|
33977
|
-
* The HTTP method
|
|
34520
|
+
* The HTTP method configured when the API is created.
|
|
33978
34521
|
*
|
|
33979
34522
|
* @example
|
|
33980
34523
|
* post
|
|
@@ -33982,7 +34525,7 @@ export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed exten
|
|
|
33982
34525
|
httpMethod?: string;
|
|
33983
34526
|
/**
|
|
33984
34527
|
* @remarks
|
|
33985
|
-
* The request path
|
|
34528
|
+
* The request path configured when the API is created.
|
|
33986
34529
|
*
|
|
33987
34530
|
* @example
|
|
33988
34531
|
* /http/get/mapping
|
|
@@ -34076,7 +34619,10 @@ export declare class ImportSwaggerResponseBodyModelSuccessApiImportModelSuccess
|
|
|
34076
34619
|
modelName?: string;
|
|
34077
34620
|
/**
|
|
34078
34621
|
* @remarks
|
|
34079
|
-
* The model operation
|
|
34622
|
+
* The model operation
|
|
34623
|
+
*
|
|
34624
|
+
* @example
|
|
34625
|
+
* CREATE
|
|
34080
34626
|
*/
|
|
34081
34627
|
modelOperation?: string;
|
|
34082
34628
|
/**
|
|
@@ -34112,7 +34658,7 @@ export declare class ImportSwaggerResponseBodyModelSuccess extends $tea.Model {
|
|
|
34112
34658
|
export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess extends $tea.Model {
|
|
34113
34659
|
/**
|
|
34114
34660
|
* @remarks
|
|
34115
|
-
* Specifies
|
|
34661
|
+
* Specifies whether the operation is CREATE or MODIFY.
|
|
34116
34662
|
*
|
|
34117
34663
|
* @example
|
|
34118
34664
|
* CREATE
|
|
@@ -34120,7 +34666,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
|
|
|
34120
34666
|
apiOperation?: string;
|
|
34121
34667
|
/**
|
|
34122
34668
|
* @remarks
|
|
34123
|
-
* The UID of the imported API.
|
|
34669
|
+
* The UID of the successfully imported API.
|
|
34124
34670
|
*
|
|
34125
34671
|
* @example
|
|
34126
34672
|
* 8e274ec61cf6468e83b68371956831cb
|
|
@@ -34128,7 +34674,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
|
|
|
34128
34674
|
apiUid?: string;
|
|
34129
34675
|
/**
|
|
34130
34676
|
* @remarks
|
|
34131
|
-
* The HTTP method
|
|
34677
|
+
* The HTTP method configured when the API is created.
|
|
34132
34678
|
*
|
|
34133
34679
|
* @example
|
|
34134
34680
|
* get
|
|
@@ -34136,7 +34682,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
|
|
|
34136
34682
|
httpMethod?: string;
|
|
34137
34683
|
/**
|
|
34138
34684
|
* @remarks
|
|
34139
|
-
* The request path
|
|
34685
|
+
* The request path configured when the API is created.
|
|
34140
34686
|
*
|
|
34141
34687
|
* @example
|
|
34142
34688
|
* /http/get/mapping
|
|
@@ -34166,11 +34712,17 @@ export declare class ImportSwaggerResponseBodySuccess extends $tea.Model {
|
|
|
34166
34712
|
}
|
|
34167
34713
|
export declare class ListPrivateDNSResponseBodyPrivateDNSListRecords extends $tea.Model {
|
|
34168
34714
|
/**
|
|
34715
|
+
* @remarks
|
|
34716
|
+
* The resolution record.
|
|
34717
|
+
*
|
|
34169
34718
|
* @example
|
|
34170
34719
|
* 192.168.0.1
|
|
34171
34720
|
*/
|
|
34172
34721
|
record?: string;
|
|
34173
34722
|
/**
|
|
34723
|
+
* @remarks
|
|
34724
|
+
* The weight of the record.
|
|
34725
|
+
*
|
|
34174
34726
|
* @example
|
|
34175
34727
|
* 100
|
|
34176
34728
|
*/
|
|
@@ -34186,19 +34738,39 @@ export declare class ListPrivateDNSResponseBodyPrivateDNSListRecords extends $te
|
|
|
34186
34738
|
});
|
|
34187
34739
|
}
|
|
34188
34740
|
export declare class ListPrivateDNSResponseBodyPrivateDNSList extends $tea.Model {
|
|
34741
|
+
/**
|
|
34742
|
+
* @remarks
|
|
34743
|
+
* The instances that are associated with the resolution.
|
|
34744
|
+
*/
|
|
34189
34745
|
bindInstances?: string[];
|
|
34190
34746
|
/**
|
|
34747
|
+
* @remarks
|
|
34748
|
+
* The time when the resolution was created. The time is displayed in UTC.
|
|
34749
|
+
*
|
|
34191
34750
|
* @example
|
|
34192
34751
|
* 2023-05-10T08:17:00Z
|
|
34193
34752
|
*/
|
|
34194
34753
|
createdTime?: string;
|
|
34195
34754
|
/**
|
|
34755
|
+
* @remarks
|
|
34756
|
+
* The internal domain name.
|
|
34757
|
+
*
|
|
34196
34758
|
* @example
|
|
34197
34759
|
* api.demo.com
|
|
34198
34760
|
*/
|
|
34199
34761
|
intranetDomain?: string;
|
|
34762
|
+
/**
|
|
34763
|
+
* @remarks
|
|
34764
|
+
* The resolution records.
|
|
34765
|
+
*/
|
|
34200
34766
|
records?: ListPrivateDNSResponseBodyPrivateDNSListRecords[];
|
|
34201
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
|
+
*
|
|
34202
34774
|
* @example
|
|
34203
34775
|
* A
|
|
34204
34776
|
*/
|
|
@@ -34333,6 +34905,8 @@ export declare class ModifyApiGroupRequestTag extends $tea.Model {
|
|
|
34333
34905
|
export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
|
|
34334
34906
|
/**
|
|
34335
34907
|
* @remarks
|
|
34908
|
+
* The tag key.
|
|
34909
|
+
*
|
|
34336
34910
|
* This parameter is required.
|
|
34337
34911
|
*
|
|
34338
34912
|
* @example
|
|
@@ -34341,6 +34915,8 @@ export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
|
|
|
34341
34915
|
key?: string;
|
|
34342
34916
|
/**
|
|
34343
34917
|
* @remarks
|
|
34918
|
+
* The tag value.
|
|
34919
|
+
*
|
|
34344
34920
|
* This parameter is required.
|
|
34345
34921
|
*
|
|
34346
34922
|
* @example
|
|
@@ -34360,9 +34936,9 @@ export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
|
|
|
34360
34936
|
export declare class ModifyAppRequestTag extends $tea.Model {
|
|
34361
34937
|
/**
|
|
34362
34938
|
* @remarks
|
|
34363
|
-
* The
|
|
34939
|
+
* The value of the tag.
|
|
34364
34940
|
*
|
|
34365
|
-
*
|
|
34941
|
+
* N can be an integer from 1 to 20.``
|
|
34366
34942
|
*
|
|
34367
34943
|
* This parameter is required.
|
|
34368
34944
|
*
|
|
@@ -34374,7 +34950,7 @@ export declare class ModifyAppRequestTag extends $tea.Model {
|
|
|
34374
34950
|
* @remarks
|
|
34375
34951
|
* The value of the tag.
|
|
34376
34952
|
*
|
|
34377
|
-
*
|
|
34953
|
+
* N can be an integer from 1 to 20.``
|
|
34378
34954
|
*
|
|
34379
34955
|
* @example
|
|
34380
34956
|
* value
|
|
@@ -34496,21 +35072,33 @@ export declare class QueryRequestLogsResponseBodyRequestLogsRequestLog extends $
|
|
|
34496
35072
|
/**
|
|
34497
35073
|
* @remarks
|
|
34498
35074
|
* The time when API Gateway finished forwarding the request to the backend service.
|
|
35075
|
+
*
|
|
35076
|
+
* @example
|
|
35077
|
+
* 1731487224969
|
|
34499
35078
|
*/
|
|
34500
35079
|
backendRequestEnd?: number;
|
|
34501
35080
|
/**
|
|
34502
35081
|
* @remarks
|
|
34503
35082
|
* The time when API Gateway started to forward the request to the backend service.
|
|
35083
|
+
*
|
|
35084
|
+
* @example
|
|
35085
|
+
* 1731487224969
|
|
34504
35086
|
*/
|
|
34505
35087
|
backendRequestStart?: number;
|
|
34506
35088
|
/**
|
|
34507
35089
|
* @remarks
|
|
34508
35090
|
* The time when API Gateway finished receiving the response from the backend service.
|
|
35091
|
+
*
|
|
35092
|
+
* @example
|
|
35093
|
+
* 1731487224989
|
|
34509
35094
|
*/
|
|
34510
35095
|
backendResponseEnd?: number;
|
|
34511
35096
|
/**
|
|
34512
35097
|
* @remarks
|
|
34513
35098
|
* The time when API Gateway started to receive the response from the backend service.
|
|
35099
|
+
*
|
|
35100
|
+
* @example
|
|
35101
|
+
* 1731487224989
|
|
34514
35102
|
*/
|
|
34515
35103
|
backendResponseStart?: number;
|
|
34516
35104
|
/**
|
|
@@ -34588,21 +35176,33 @@ export declare class QueryRequestLogsResponseBodyRequestLogsRequestLog extends $
|
|
|
34588
35176
|
/**
|
|
34589
35177
|
* @remarks
|
|
34590
35178
|
* The time when API Gateway finished receiving the request.
|
|
35179
|
+
*
|
|
35180
|
+
* @example
|
|
35181
|
+
* 1731487224968
|
|
34591
35182
|
*/
|
|
34592
35183
|
frontRequestEnd?: number;
|
|
34593
35184
|
/**
|
|
34594
35185
|
* @remarks
|
|
34595
35186
|
* The time when API Gateway started to receive the request.
|
|
35187
|
+
*
|
|
35188
|
+
* @example
|
|
35189
|
+
* 1731487224968
|
|
34596
35190
|
*/
|
|
34597
35191
|
frontRequestStart?: number;
|
|
34598
35192
|
/**
|
|
34599
35193
|
* @remarks
|
|
34600
35194
|
* The time when API Gateway finished forwarding the response to the client.
|
|
35195
|
+
*
|
|
35196
|
+
* @example
|
|
35197
|
+
* 1731487224989
|
|
34601
35198
|
*/
|
|
34602
35199
|
frontResponseEnd?: number;
|
|
34603
35200
|
/**
|
|
34604
35201
|
* @remarks
|
|
34605
35202
|
* The time when API Gateway started to forward the response to the client.
|
|
35203
|
+
*
|
|
35204
|
+
* @example
|
|
35205
|
+
* 1731487224989
|
|
34606
35206
|
*/
|
|
34607
35207
|
frontResponseStart?: number;
|
|
34608
35208
|
/**
|
|
@@ -34926,11 +35526,17 @@ export declare class TagResourcesRequestTag extends $tea.Model {
|
|
|
34926
35526
|
}
|
|
34927
35527
|
export declare class UpdatePrivateDNSRequestRecords extends $tea.Model {
|
|
34928
35528
|
/**
|
|
35529
|
+
* @remarks
|
|
35530
|
+
* The resolution record.
|
|
35531
|
+
*
|
|
34929
35532
|
* @example
|
|
34930
35533
|
* 192.168.0.2
|
|
34931
35534
|
*/
|
|
34932
35535
|
record?: string;
|
|
34933
35536
|
/**
|
|
35537
|
+
* @remarks
|
|
35538
|
+
* The weight of the record.
|
|
35539
|
+
*
|
|
34934
35540
|
* @example
|
|
34935
35541
|
* 100
|
|
34936
35542
|
*/
|
|
@@ -35043,7 +35649,10 @@ export default class Client extends OpenApi {
|
|
|
35043
35649
|
*/
|
|
35044
35650
|
addTrafficSpecialControl(request: AddTrafficSpecialControlRequest): Promise<AddTrafficSpecialControlResponse>;
|
|
35045
35651
|
/**
|
|
35046
|
-
*
|
|
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.
|
|
35047
35656
|
*
|
|
35048
35657
|
* @param tmpReq - AssociateInstanceWithPrivateDNSRequest
|
|
35049
35658
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35051,7 +35660,10 @@ export default class Client extends OpenApi {
|
|
|
35051
35660
|
*/
|
|
35052
35661
|
associateInstanceWithPrivateDNSWithOptions(tmpReq: AssociateInstanceWithPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<AssociateInstanceWithPrivateDNSResponse>;
|
|
35053
35662
|
/**
|
|
35054
|
-
*
|
|
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.
|
|
35055
35667
|
*
|
|
35056
35668
|
* @param request - AssociateInstanceWithPrivateDNSRequest
|
|
35057
35669
|
* @returns AssociateInstanceWithPrivateDNSResponse
|
|
@@ -35172,12 +35784,16 @@ export default class Client extends OpenApi {
|
|
|
35172
35784
|
*/
|
|
35173
35785
|
createApi(request: CreateApiRequest): Promise<CreateApiResponse>;
|
|
35174
35786
|
/**
|
|
35787
|
+
* 创建API分组
|
|
35788
|
+
*
|
|
35175
35789
|
* @param request - CreateApiGroupRequest
|
|
35176
35790
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
35177
35791
|
* @returns CreateApiGroupResponse
|
|
35178
35792
|
*/
|
|
35179
35793
|
createApiGroupWithOptions(request: CreateApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiGroupResponse>;
|
|
35180
35794
|
/**
|
|
35795
|
+
* 创建API分组
|
|
35796
|
+
*
|
|
35181
35797
|
* @param request - CreateApiGroupRequest
|
|
35182
35798
|
* @returns CreateApiGroupResponse
|
|
35183
35799
|
*/
|
|
@@ -35340,12 +35956,16 @@ export default class Client extends OpenApi {
|
|
|
35340
35956
|
*/
|
|
35341
35957
|
createInstance(request: CreateInstanceRequest): Promise<CreateInstanceResponse>;
|
|
35342
35958
|
/**
|
|
35959
|
+
* 创建内网域名
|
|
35960
|
+
*
|
|
35343
35961
|
* @param request - CreateIntranetDomainRequest
|
|
35344
35962
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
35345
35963
|
* @returns CreateIntranetDomainResponse
|
|
35346
35964
|
*/
|
|
35347
35965
|
createIntranetDomainWithOptions(request: CreateIntranetDomainRequest, runtime: $Util.RuntimeOptions): Promise<CreateIntranetDomainResponse>;
|
|
35348
35966
|
/**
|
|
35967
|
+
* 创建内网域名
|
|
35968
|
+
*
|
|
35349
35969
|
* @param request - CreateIntranetDomainRequest
|
|
35350
35970
|
* @returns CreateIntranetDomainResponse
|
|
35351
35971
|
*/
|
|
@@ -35378,12 +35998,16 @@ export default class Client extends OpenApi {
|
|
|
35378
35998
|
*/
|
|
35379
35999
|
createIpControl(request: CreateIpControlRequest): Promise<CreateIpControlResponse>;
|
|
35380
36000
|
/**
|
|
36001
|
+
* Creates a Simple Log Service configuration for an API.
|
|
36002
|
+
*
|
|
35381
36003
|
* @param request - CreateLogConfigRequest
|
|
35382
36004
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
35383
36005
|
* @returns CreateLogConfigResponse
|
|
35384
36006
|
*/
|
|
35385
36007
|
createLogConfigWithOptions(request: CreateLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<CreateLogConfigResponse>;
|
|
35386
36008
|
/**
|
|
36009
|
+
* Creates a Simple Log Service configuration for an API.
|
|
36010
|
+
*
|
|
35387
36011
|
* @param request - CreateLogConfigRequest
|
|
35388
36012
|
* @returns CreateLogConfigResponse
|
|
35389
36013
|
*/
|
|
@@ -35454,7 +36078,10 @@ export default class Client extends OpenApi {
|
|
|
35454
36078
|
*/
|
|
35455
36079
|
createPlugin(request: CreatePluginRequest): Promise<CreatePluginResponse>;
|
|
35456
36080
|
/**
|
|
35457
|
-
*
|
|
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.
|
|
35458
36085
|
*
|
|
35459
36086
|
* @param tmpReq - CreatePrivateDNSRequest
|
|
35460
36087
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35462,7 +36089,10 @@ export default class Client extends OpenApi {
|
|
|
35462
36089
|
*/
|
|
35463
36090
|
createPrivateDNSWithOptions(tmpReq: CreatePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateDNSResponse>;
|
|
35464
36091
|
/**
|
|
35465
|
-
*
|
|
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.
|
|
35466
36096
|
*
|
|
35467
36097
|
* @param request - CreatePrivateDNSRequest
|
|
35468
36098
|
* @returns CreatePrivateDNSResponse
|
|
@@ -35910,7 +36540,7 @@ export default class Client extends OpenApi {
|
|
|
35910
36540
|
*/
|
|
35911
36541
|
deletePlugin(request: DeletePluginRequest): Promise<DeletePluginResponse>;
|
|
35912
36542
|
/**
|
|
35913
|
-
*
|
|
36543
|
+
* Deletes an internal domain name resolution.
|
|
35914
36544
|
*
|
|
35915
36545
|
* @param request - DeletePrivateDNSRequest
|
|
35916
36546
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35918,7 +36548,7 @@ export default class Client extends OpenApi {
|
|
|
35918
36548
|
*/
|
|
35919
36549
|
deletePrivateDNSWithOptions(request: DeletePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateDNSResponse>;
|
|
35920
36550
|
/**
|
|
35921
|
-
*
|
|
36551
|
+
* Deletes an internal domain name resolution.
|
|
35922
36552
|
*
|
|
35923
36553
|
* @param request - DeletePrivateDNSRequest
|
|
35924
36554
|
* @returns DeletePrivateDNSResponse
|
|
@@ -36025,12 +36655,16 @@ export default class Client extends OpenApi {
|
|
|
36025
36655
|
*/
|
|
36026
36656
|
deployApi(request: DeployApiRequest): Promise<DeployApiResponse>;
|
|
36027
36657
|
/**
|
|
36658
|
+
* 查询批量下线API任务
|
|
36659
|
+
*
|
|
36028
36660
|
* @param request - DescribeAbolishApiTaskRequest
|
|
36029
36661
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
36030
36662
|
* @returns DescribeAbolishApiTaskResponse
|
|
36031
36663
|
*/
|
|
36032
36664
|
describeAbolishApiTaskWithOptions(request: DescribeAbolishApiTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAbolishApiTaskResponse>;
|
|
36033
36665
|
/**
|
|
36666
|
+
* 查询批量下线API任务
|
|
36667
|
+
*
|
|
36034
36668
|
* @param request - DescribeAbolishApiTaskRequest
|
|
36035
36669
|
* @returns DescribeAbolishApiTaskResponse
|
|
36036
36670
|
*/
|
|
@@ -37181,12 +37815,16 @@ export default class Client extends OpenApi {
|
|
|
37181
37815
|
*/
|
|
37182
37816
|
describeIpControls(request: DescribeIpControlsRequest): Promise<DescribeIpControlsResponse>;
|
|
37183
37817
|
/**
|
|
37818
|
+
* 查询日志配置
|
|
37819
|
+
*
|
|
37184
37820
|
* @param request - DescribeLogConfigRequest
|
|
37185
37821
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37186
37822
|
* @returns DescribeLogConfigResponse
|
|
37187
37823
|
*/
|
|
37188
37824
|
describeLogConfigWithOptions(request: DescribeLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLogConfigResponse>;
|
|
37189
37825
|
/**
|
|
37826
|
+
* 查询日志配置
|
|
37827
|
+
*
|
|
37190
37828
|
* @param request - DescribeLogConfigRequest
|
|
37191
37829
|
* @returns DescribeLogConfigResponse
|
|
37192
37830
|
*/
|
|
@@ -37243,23 +37881,31 @@ export default class Client extends OpenApi {
|
|
|
37243
37881
|
*/
|
|
37244
37882
|
describePluginApis(request: DescribePluginApisRequest): Promise<DescribePluginApisResponse>;
|
|
37245
37883
|
/**
|
|
37884
|
+
* 查询插件列表
|
|
37885
|
+
*
|
|
37246
37886
|
* @param request - DescribePluginSchemasRequest
|
|
37247
37887
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37248
37888
|
* @returns DescribePluginSchemasResponse
|
|
37249
37889
|
*/
|
|
37250
37890
|
describePluginSchemasWithOptions(request: DescribePluginSchemasRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginSchemasResponse>;
|
|
37251
37891
|
/**
|
|
37892
|
+
* 查询插件列表
|
|
37893
|
+
*
|
|
37252
37894
|
* @param request - DescribePluginSchemasRequest
|
|
37253
37895
|
* @returns DescribePluginSchemasResponse
|
|
37254
37896
|
*/
|
|
37255
37897
|
describePluginSchemas(request: DescribePluginSchemasRequest): Promise<DescribePluginSchemasResponse>;
|
|
37256
37898
|
/**
|
|
37899
|
+
* 查询插件模板
|
|
37900
|
+
*
|
|
37257
37901
|
* @param request - DescribePluginTemplatesRequest
|
|
37258
37902
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37259
37903
|
* @returns DescribePluginTemplatesResponse
|
|
37260
37904
|
*/
|
|
37261
37905
|
describePluginTemplatesWithOptions(request: DescribePluginTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginTemplatesResponse>;
|
|
37262
37906
|
/**
|
|
37907
|
+
* 查询插件模板
|
|
37908
|
+
*
|
|
37263
37909
|
* @param request - DescribePluginTemplatesRequest
|
|
37264
37910
|
* @returns DescribePluginTemplatesResponse
|
|
37265
37911
|
*/
|
|
@@ -37526,12 +38172,16 @@ export default class Client extends OpenApi {
|
|
|
37526
38172
|
*/
|
|
37527
38173
|
describeUpdateBackendTask(request: DescribeUpdateBackendTaskRequest): Promise<DescribeUpdateBackendTaskResponse>;
|
|
37528
38174
|
/**
|
|
38175
|
+
* 查询更新VPC授权的任务
|
|
38176
|
+
*
|
|
37529
38177
|
* @param request - DescribeUpdateVpcInfoTaskRequest
|
|
37530
38178
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37531
38179
|
* @returns DescribeUpdateVpcInfoTaskResponse
|
|
37532
38180
|
*/
|
|
37533
38181
|
describeUpdateVpcInfoTaskWithOptions(request: DescribeUpdateVpcInfoTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUpdateVpcInfoTaskResponse>;
|
|
37534
38182
|
/**
|
|
38183
|
+
* 查询更新VPC授权的任务
|
|
38184
|
+
*
|
|
37535
38185
|
* @param request - DescribeUpdateVpcInfoTaskRequest
|
|
37536
38186
|
* @returns DescribeUpdateVpcInfoTaskResponse
|
|
37537
38187
|
*/
|
|
@@ -37612,7 +38262,7 @@ export default class Client extends OpenApi {
|
|
|
37612
38262
|
*/
|
|
37613
38263
|
disableInstanceAccessControl(request: DisableInstanceAccessControlRequest): Promise<DisableInstanceAccessControlResponse>;
|
|
37614
38264
|
/**
|
|
37615
|
-
*
|
|
38265
|
+
* Disassociates an internal domain name resolution from a dedicated instance.
|
|
37616
38266
|
*
|
|
37617
38267
|
* @param tmpReq - DissociateInstanceWithPrivateDNSRequest
|
|
37618
38268
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37620,7 +38270,7 @@ export default class Client extends OpenApi {
|
|
|
37620
38270
|
*/
|
|
37621
38271
|
dissociateInstanceWithPrivateDNSWithOptions(tmpReq: DissociateInstanceWithPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<DissociateInstanceWithPrivateDNSResponse>;
|
|
37622
38272
|
/**
|
|
37623
|
-
*
|
|
38273
|
+
* Disassociates an internal domain name resolution from a dedicated instance.
|
|
37624
38274
|
*
|
|
37625
38275
|
* @param request - DissociateInstanceWithPrivateDNSRequest
|
|
37626
38276
|
* @returns DissociateInstanceWithPrivateDNSResponse
|
|
@@ -37642,7 +38292,7 @@ export default class Client extends OpenApi {
|
|
|
37642
38292
|
*/
|
|
37643
38293
|
dryRunSwagger(request: DryRunSwaggerRequest): Promise<DryRunSwaggerResponse>;
|
|
37644
38294
|
/**
|
|
37645
|
-
*
|
|
38295
|
+
* This feature provides instance-level access control capabilities for dedicated API Gateway instances. Specifies the access control policy of an instance.
|
|
37646
38296
|
*
|
|
37647
38297
|
* @param request - EnableInstanceAccessControlRequest
|
|
37648
38298
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37650,7 +38300,7 @@ export default class Client extends OpenApi {
|
|
|
37650
38300
|
*/
|
|
37651
38301
|
enableInstanceAccessControlWithOptions(request: EnableInstanceAccessControlRequest, runtime: $Util.RuntimeOptions): Promise<EnableInstanceAccessControlResponse>;
|
|
37652
38302
|
/**
|
|
37653
|
-
*
|
|
38303
|
+
* This feature provides instance-level access control capabilities for dedicated API Gateway instances. Specifies the access control policy of an instance.
|
|
37654
38304
|
*
|
|
37655
38305
|
* @param request - EnableInstanceAccessControlRequest
|
|
37656
38306
|
* @returns EnableInstanceAccessControlResponse
|
|
@@ -37710,7 +38360,7 @@ export default class Client extends OpenApi {
|
|
|
37710
38360
|
*/
|
|
37711
38361
|
importSwagger(request: ImportSwaggerRequest): Promise<ImportSwaggerResponse>;
|
|
37712
38362
|
/**
|
|
37713
|
-
*
|
|
38363
|
+
* Queries internal domain name resolutions by domain name or resolution type.
|
|
37714
38364
|
*
|
|
37715
38365
|
* @param request - ListPrivateDNSRequest
|
|
37716
38366
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37718,7 +38368,7 @@ export default class Client extends OpenApi {
|
|
|
37718
38368
|
*/
|
|
37719
38369
|
listPrivateDNSWithOptions(request: ListPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateDNSResponse>;
|
|
37720
38370
|
/**
|
|
37721
|
-
*
|
|
38371
|
+
* Queries internal domain name resolutions by domain name or resolution type.
|
|
37722
38372
|
*
|
|
37723
38373
|
* @param request - ListPrivateDNSRequest
|
|
37724
38374
|
* @returns ListPrivateDNSResponse
|
|
@@ -37829,12 +38479,16 @@ export default class Client extends OpenApi {
|
|
|
37829
38479
|
*/
|
|
37830
38480
|
modifyApiGroup(request: ModifyApiGroupRequest): Promise<ModifyApiGroupResponse>;
|
|
37831
38481
|
/**
|
|
38482
|
+
* 变更分组实例
|
|
38483
|
+
*
|
|
37832
38484
|
* @param request - ModifyApiGroupInstanceRequest
|
|
37833
38485
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37834
38486
|
* @returns ModifyApiGroupInstanceResponse
|
|
37835
38487
|
*/
|
|
37836
38488
|
modifyApiGroupInstanceWithOptions(request: ModifyApiGroupInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupInstanceResponse>;
|
|
37837
38489
|
/**
|
|
38490
|
+
* 变更分组实例
|
|
38491
|
+
*
|
|
37838
38492
|
* @param request - ModifyApiGroupInstanceRequest
|
|
37839
38493
|
* @returns ModifyApiGroupInstanceResponse
|
|
37840
38494
|
*/
|
|
@@ -37870,12 +38524,12 @@ export default class Client extends OpenApi {
|
|
|
37870
38524
|
*/
|
|
37871
38525
|
modifyApiGroupVpcWhitelist(request: ModifyApiGroupVpcWhitelistRequest): Promise<ModifyApiGroupVpcWhitelistResponse>;
|
|
37872
38526
|
/**
|
|
37873
|
-
* Modifies a specified
|
|
38527
|
+
* Modifies a specified app.
|
|
37874
38528
|
*
|
|
37875
38529
|
* @remarks
|
|
37876
38530
|
* This operation is intended for API callers.
|
|
37877
|
-
* *
|
|
37878
|
-
* *
|
|
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.
|
|
37879
38533
|
*
|
|
37880
38534
|
* @param request - ModifyAppRequest
|
|
37881
38535
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37883,12 +38537,12 @@ export default class Client extends OpenApi {
|
|
|
37883
38537
|
*/
|
|
37884
38538
|
modifyAppWithOptions(request: ModifyAppRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAppResponse>;
|
|
37885
38539
|
/**
|
|
37886
|
-
* Modifies a specified
|
|
38540
|
+
* Modifies a specified app.
|
|
37887
38541
|
*
|
|
37888
38542
|
* @remarks
|
|
37889
38543
|
* This operation is intended for API callers.
|
|
37890
|
-
* *
|
|
37891
|
-
* *
|
|
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.
|
|
37892
38546
|
*
|
|
37893
38547
|
* @param request - ModifyAppRequest
|
|
37894
38548
|
* @returns ModifyAppResponse
|
|
@@ -37955,7 +38609,7 @@ export default class Client extends OpenApi {
|
|
|
37955
38609
|
*/
|
|
37956
38610
|
modifyDatasetItem(request: ModifyDatasetItemRequest): Promise<ModifyDatasetItemResponse>;
|
|
37957
38611
|
/**
|
|
37958
|
-
*
|
|
38612
|
+
* Modifies the properties of an API Gateway instance.
|
|
37959
38613
|
*
|
|
37960
38614
|
* @param tmpReq - ModifyInstanceAttributeRequest
|
|
37961
38615
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37963,7 +38617,7 @@ export default class Client extends OpenApi {
|
|
|
37963
38617
|
*/
|
|
37964
38618
|
modifyInstanceAttributeWithOptions(tmpReq: ModifyInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceAttributeResponse>;
|
|
37965
38619
|
/**
|
|
37966
|
-
*
|
|
38620
|
+
* Modifies the properties of an API Gateway instance.
|
|
37967
38621
|
*
|
|
37968
38622
|
* @param request - ModifyInstanceAttributeRequest
|
|
37969
38623
|
* @returns ModifyInstanceAttributeResponse
|
|
@@ -38048,12 +38702,16 @@ export default class Client extends OpenApi {
|
|
|
38048
38702
|
*/
|
|
38049
38703
|
modifyIpControlPolicyItem(request: ModifyIpControlPolicyItemRequest): Promise<ModifyIpControlPolicyItemResponse>;
|
|
38050
38704
|
/**
|
|
38705
|
+
* 修改日志配置
|
|
38706
|
+
*
|
|
38051
38707
|
* @param request - ModifyLogConfigRequest
|
|
38052
38708
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38053
38709
|
* @returns ModifyLogConfigResponse
|
|
38054
38710
|
*/
|
|
38055
38711
|
modifyLogConfigWithOptions(request: ModifyLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLogConfigResponse>;
|
|
38056
38712
|
/**
|
|
38713
|
+
* 修改日志配置
|
|
38714
|
+
*
|
|
38057
38715
|
* @param request - ModifyLogConfigRequest
|
|
38058
38716
|
* @returns ModifyLogConfigResponse
|
|
38059
38717
|
*/
|
|
@@ -38164,12 +38822,15 @@ export default class Client extends OpenApi {
|
|
|
38164
38822
|
*/
|
|
38165
38823
|
modifyVpcAccessAndUpdateApis(request: ModifyVpcAccessAndUpdateApisRequest): Promise<ModifyVpcAccessAndUpdateApisResponse>;
|
|
38166
38824
|
/**
|
|
38825
|
+
* 开通API网关服务
|
|
38826
|
+
*
|
|
38167
38827
|
* @param request - OpenApiGatewayServiceRequest
|
|
38168
38828
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38169
38829
|
* @returns OpenApiGatewayServiceResponse
|
|
38170
38830
|
*/
|
|
38171
38831
|
openApiGatewayServiceWithOptions(runtime: $Util.RuntimeOptions): Promise<OpenApiGatewayServiceResponse>;
|
|
38172
38832
|
/**
|
|
38833
|
+
* 开通API网关服务
|
|
38173
38834
|
* @returns OpenApiGatewayServiceResponse
|
|
38174
38835
|
*/
|
|
38175
38836
|
openApiGatewayService(): Promise<OpenApiGatewayServiceResponse>;
|
|
@@ -38407,12 +39068,16 @@ export default class Client extends OpenApi {
|
|
|
38407
39068
|
*/
|
|
38408
39069
|
removeVpcAccess(request: RemoveVpcAccessRequest): Promise<RemoveVpcAccessResponse>;
|
|
38409
39070
|
/**
|
|
39071
|
+
* 删除VPC授权并下线关联API
|
|
39072
|
+
*
|
|
38410
39073
|
* @param request - RemoveVpcAccessAndAbolishApisRequest
|
|
38411
39074
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38412
39075
|
* @returns RemoveVpcAccessAndAbolishApisResponse
|
|
38413
39076
|
*/
|
|
38414
39077
|
removeVpcAccessAndAbolishApisWithOptions(request: RemoveVpcAccessAndAbolishApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVpcAccessAndAbolishApisResponse>;
|
|
38415
39078
|
/**
|
|
39079
|
+
* 删除VPC授权并下线关联API
|
|
39080
|
+
*
|
|
38416
39081
|
* @param request - RemoveVpcAccessAndAbolishApisRequest
|
|
38417
39082
|
* @returns RemoveVpcAccessAndAbolishApisResponse
|
|
38418
39083
|
*/
|
|
@@ -38458,12 +39123,16 @@ export default class Client extends OpenApi {
|
|
|
38458
39123
|
*/
|
|
38459
39124
|
resetAppSecret(request: ResetAppSecretRequest): Promise<ResetAppSecretResponse>;
|
|
38460
39125
|
/**
|
|
39126
|
+
* 根据APP生成SDK
|
|
39127
|
+
*
|
|
38461
39128
|
* @param request - SdkGenerateByAppRequest
|
|
38462
39129
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38463
39130
|
* @returns SdkGenerateByAppResponse
|
|
38464
39131
|
*/
|
|
38465
39132
|
sdkGenerateByAppWithOptions(request: SdkGenerateByAppRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByAppResponse>;
|
|
38466
39133
|
/**
|
|
39134
|
+
* 根据APP生成SDK
|
|
39135
|
+
*
|
|
38467
39136
|
* @param request - SdkGenerateByAppRequest
|
|
38468
39137
|
* @returns SdkGenerateByAppResponse
|
|
38469
39138
|
*/
|
|
@@ -38484,12 +39153,16 @@ export default class Client extends OpenApi {
|
|
|
38484
39153
|
*/
|
|
38485
39154
|
sdkGenerateByAppForRegion(request: SdkGenerateByAppForRegionRequest): Promise<SdkGenerateByAppForRegionResponse>;
|
|
38486
39155
|
/**
|
|
39156
|
+
* 根据分组生成SDK
|
|
39157
|
+
*
|
|
38487
39158
|
* @param request - SdkGenerateByGroupRequest
|
|
38488
39159
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38489
39160
|
* @returns SdkGenerateByGroupResponse
|
|
38490
39161
|
*/
|
|
38491
39162
|
sdkGenerateByGroupWithOptions(request: SdkGenerateByGroupRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByGroupResponse>;
|
|
38492
39163
|
/**
|
|
39164
|
+
* 根据分组生成SDK
|
|
39165
|
+
*
|
|
38493
39166
|
* @param request - SdkGenerateByGroupRequest
|
|
38494
39167
|
* @returns SdkGenerateByGroupResponse
|
|
38495
39168
|
*/
|
|
@@ -38510,7 +39183,7 @@ export default class Client extends OpenApi {
|
|
|
38510
39183
|
*/
|
|
38511
39184
|
setAccessControlListAttribute(request: SetAccessControlListAttributeRequest): Promise<SetAccessControlListAttributeResponse>;
|
|
38512
39185
|
/**
|
|
38513
|
-
*
|
|
39186
|
+
* Grants permissions on API products to an application.
|
|
38514
39187
|
*
|
|
38515
39188
|
* @param tmpReq - SetApiProductsAuthoritiesRequest
|
|
38516
39189
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -38518,7 +39191,7 @@ export default class Client extends OpenApi {
|
|
|
38518
39191
|
*/
|
|
38519
39192
|
setApiProductsAuthoritiesWithOptions(tmpReq: SetApiProductsAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<SetApiProductsAuthoritiesResponse>;
|
|
38520
39193
|
/**
|
|
38521
|
-
*
|
|
39194
|
+
* Grants permissions on API products to an application.
|
|
38522
39195
|
*
|
|
38523
39196
|
* @param request - SetApiProductsAuthoritiesRequest
|
|
38524
39197
|
* @returns SetApiProductsAuthoritiesResponse
|
|
@@ -38550,7 +39223,7 @@ export default class Client extends OpenApi {
|
|
|
38550
39223
|
*/
|
|
38551
39224
|
setApisAuthorities(request: SetApisAuthoritiesRequest): Promise<SetApisAuthoritiesResponse>;
|
|
38552
39225
|
/**
|
|
38553
|
-
*
|
|
39226
|
+
* Authorizes multiple applications to call APIs in an API product.
|
|
38554
39227
|
*
|
|
38555
39228
|
* @param request - SetAppsAuthToApiProductRequest
|
|
38556
39229
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -38558,7 +39231,7 @@ export default class Client extends OpenApi {
|
|
|
38558
39231
|
*/
|
|
38559
39232
|
setAppsAuthToApiProductWithOptions(request: SetAppsAuthToApiProductRequest, runtime: $Util.RuntimeOptions): Promise<SetAppsAuthToApiProductResponse>;
|
|
38560
39233
|
/**
|
|
38561
|
-
*
|
|
39234
|
+
* Authorizes multiple applications to call APIs in an API product.
|
|
38562
39235
|
*
|
|
38563
39236
|
* @param request - SetAppsAuthToApiProductRequest
|
|
38564
39237
|
* @returns SetAppsAuthToApiProductResponse
|
|
@@ -38645,12 +39318,16 @@ export default class Client extends OpenApi {
|
|
|
38645
39318
|
*/
|
|
38646
39319
|
setDomainWebSocketStatus(request: SetDomainWebSocketStatusRequest): Promise<SetDomainWebSocketStatusResponse>;
|
|
38647
39320
|
/**
|
|
39321
|
+
* 设置分组授权AppCode
|
|
39322
|
+
*
|
|
38648
39323
|
* @param request - SetGroupAuthAppCodeRequest
|
|
38649
39324
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38650
39325
|
* @returns SetGroupAuthAppCodeResponse
|
|
38651
39326
|
*/
|
|
38652
39327
|
setGroupAuthAppCodeWithOptions(request: SetGroupAuthAppCodeRequest, runtime: $Util.RuntimeOptions): Promise<SetGroupAuthAppCodeResponse>;
|
|
38653
39328
|
/**
|
|
39329
|
+
* 设置分组授权AppCode
|
|
39330
|
+
*
|
|
38654
39331
|
* @param request - SetGroupAuthAppCodeRequest
|
|
38655
39332
|
* @returns SetGroupAuthAppCodeResponse
|
|
38656
39333
|
*/
|
|
@@ -38828,7 +39505,7 @@ export default class Client extends OpenApi {
|
|
|
38828
39505
|
*/
|
|
38829
39506
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
38830
39507
|
/**
|
|
38831
|
-
*
|
|
39508
|
+
* Modifies an internal domain name resolution.
|
|
38832
39509
|
*
|
|
38833
39510
|
* @param tmpReq - UpdatePrivateDNSRequest
|
|
38834
39511
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -38836,7 +39513,7 @@ export default class Client extends OpenApi {
|
|
|
38836
39513
|
*/
|
|
38837
39514
|
updatePrivateDNSWithOptions(tmpReq: UpdatePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateDNSResponse>;
|
|
38838
39515
|
/**
|
|
38839
|
-
*
|
|
39516
|
+
* Modifies an internal domain name resolution.
|
|
38840
39517
|
*
|
|
38841
39518
|
* @param request - UpdatePrivateDNSRequest
|
|
38842
39519
|
* @returns UpdatePrivateDNSResponse
|