@alicloud/cloudapi20160714 4.5.0 → 4.6.0
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 +855 -62
- package/dist/client.js +273 -43
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +973 -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.
|
|
@@ -5899,6 +5979,7 @@ export declare class DescribeApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
5899
5979
|
});
|
|
5900
5980
|
}
|
|
5901
5981
|
export declare class DescribeApiGroupsRequest extends $tea.Model {
|
|
5982
|
+
basePath?: string;
|
|
5902
5983
|
/**
|
|
5903
5984
|
* @remarks
|
|
5904
5985
|
* Specifies whether to enable tag verification.
|
|
@@ -7699,17 +7780,25 @@ export declare class DescribeApisResponse extends $tea.Model {
|
|
|
7699
7780
|
}
|
|
7700
7781
|
export declare class DescribeApisByAppRequest extends $tea.Model {
|
|
7701
7782
|
/**
|
|
7783
|
+
* @remarks
|
|
7784
|
+
* The name of the API. The name is used for fuzzy match.
|
|
7785
|
+
*
|
|
7702
7786
|
* @example
|
|
7703
7787
|
* getPersonInfo
|
|
7704
7788
|
*/
|
|
7705
7789
|
apiName?: string;
|
|
7706
7790
|
/**
|
|
7791
|
+
* @remarks
|
|
7792
|
+
* The API ID.
|
|
7793
|
+
*
|
|
7707
7794
|
* @example
|
|
7708
7795
|
* b19240592b1b4e74961fb8438ed7550c
|
|
7709
7796
|
*/
|
|
7710
7797
|
apiUid?: string;
|
|
7711
7798
|
/**
|
|
7712
7799
|
* @remarks
|
|
7800
|
+
* The application ID.
|
|
7801
|
+
*
|
|
7713
7802
|
* This parameter is required.
|
|
7714
7803
|
*
|
|
7715
7804
|
* @example
|
|
@@ -7717,26 +7806,41 @@ export declare class DescribeApisByAppRequest extends $tea.Model {
|
|
|
7717
7806
|
*/
|
|
7718
7807
|
appId?: number;
|
|
7719
7808
|
/**
|
|
7809
|
+
* @remarks
|
|
7810
|
+
* The description of the API.
|
|
7811
|
+
*
|
|
7720
7812
|
* @example
|
|
7721
7813
|
* test
|
|
7722
7814
|
*/
|
|
7723
7815
|
description?: string;
|
|
7724
7816
|
/**
|
|
7817
|
+
* @remarks
|
|
7818
|
+
* The request HTTP method of the API.
|
|
7819
|
+
*
|
|
7725
7820
|
* @example
|
|
7726
7821
|
* POST
|
|
7727
7822
|
*/
|
|
7728
7823
|
method?: string;
|
|
7729
7824
|
/**
|
|
7825
|
+
* @remarks
|
|
7826
|
+
* The number of the current page.
|
|
7827
|
+
*
|
|
7730
7828
|
* @example
|
|
7731
7829
|
* 1
|
|
7732
7830
|
*/
|
|
7733
7831
|
pageNumber?: number;
|
|
7734
7832
|
/**
|
|
7833
|
+
* @remarks
|
|
7834
|
+
* The number of entries per page.
|
|
7835
|
+
*
|
|
7735
7836
|
* @example
|
|
7736
7837
|
* 10
|
|
7737
7838
|
*/
|
|
7738
7839
|
pageSize?: number;
|
|
7739
7840
|
/**
|
|
7841
|
+
* @remarks
|
|
7842
|
+
* The request path of the API.
|
|
7843
|
+
*
|
|
7740
7844
|
* @example
|
|
7741
7845
|
* /tt
|
|
7742
7846
|
*/
|
|
@@ -7759,21 +7863,33 @@ export declare class DescribeApisByAppResponseBody extends $tea.Model {
|
|
|
7759
7863
|
*/
|
|
7760
7864
|
appApiRelationInfos?: DescribeApisByAppResponseBodyAppApiRelationInfos;
|
|
7761
7865
|
/**
|
|
7866
|
+
* @remarks
|
|
7867
|
+
* The number of pages to return the results on.
|
|
7868
|
+
*
|
|
7762
7869
|
* @example
|
|
7763
7870
|
* 1
|
|
7764
7871
|
*/
|
|
7765
7872
|
pageNumber?: number;
|
|
7766
7873
|
/**
|
|
7874
|
+
* @remarks
|
|
7875
|
+
* The number of entries returned per page.
|
|
7876
|
+
*
|
|
7767
7877
|
* @example
|
|
7768
7878
|
* 10
|
|
7769
7879
|
*/
|
|
7770
7880
|
pageSize?: number;
|
|
7771
7881
|
/**
|
|
7882
|
+
* @remarks
|
|
7883
|
+
* The ID of the request.
|
|
7884
|
+
*
|
|
7772
7885
|
* @example
|
|
7773
7886
|
* CEF72CEB-54B6-4AE8-B225-F876FF7BZ015
|
|
7774
7887
|
*/
|
|
7775
7888
|
requestId?: string;
|
|
7776
7889
|
/**
|
|
7890
|
+
* @remarks
|
|
7891
|
+
* The total number of returned entries.
|
|
7892
|
+
*
|
|
7777
7893
|
* @example
|
|
7778
7894
|
* 2
|
|
7779
7895
|
*/
|
|
@@ -9566,6 +9682,10 @@ export declare class DescribeDatasetInfoRequest extends $tea.Model {
|
|
|
9566
9682
|
});
|
|
9567
9683
|
}
|
|
9568
9684
|
export declare class DescribeDatasetInfoResponseBody extends $tea.Model {
|
|
9685
|
+
/**
|
|
9686
|
+
* @remarks
|
|
9687
|
+
* The dataset info.
|
|
9688
|
+
*/
|
|
9569
9689
|
datasetInfo?: DescribeDatasetInfoResponseBodyDatasetInfo;
|
|
9570
9690
|
/**
|
|
9571
9691
|
* @remarks
|
|
@@ -9817,7 +9937,7 @@ export declare class DescribeDatasetListRequest extends $tea.Model {
|
|
|
9817
9937
|
securityToken?: string;
|
|
9818
9938
|
/**
|
|
9819
9939
|
* @remarks
|
|
9820
|
-
*
|
|
9940
|
+
* Specify the object labels to which the rule applies, and multiple labels can be set
|
|
9821
9941
|
*/
|
|
9822
9942
|
tag?: DescribeDatasetListRequestTag[];
|
|
9823
9943
|
static names(): {
|
|
@@ -10268,6 +10388,9 @@ export declare class DescribeDeployedApisRequest extends $tea.Model {
|
|
|
10268
10388
|
*/
|
|
10269
10389
|
apiId?: string;
|
|
10270
10390
|
/**
|
|
10391
|
+
* @remarks
|
|
10392
|
+
* The HTTP method of the API request.
|
|
10393
|
+
*
|
|
10271
10394
|
* @example
|
|
10272
10395
|
* POST
|
|
10273
10396
|
*/
|
|
@@ -10281,6 +10404,9 @@ export declare class DescribeDeployedApisRequest extends $tea.Model {
|
|
|
10281
10404
|
*/
|
|
10282
10405
|
apiName?: string;
|
|
10283
10406
|
/**
|
|
10407
|
+
* @remarks
|
|
10408
|
+
* The request path of the API.
|
|
10409
|
+
*
|
|
10284
10410
|
* @example
|
|
10285
10411
|
* /st4
|
|
10286
10412
|
*/
|
|
@@ -11285,6 +11411,10 @@ export declare class DescribeInstanceClusterListRequest extends $tea.Model {
|
|
|
11285
11411
|
});
|
|
11286
11412
|
}
|
|
11287
11413
|
export declare class DescribeInstanceClusterListResponseBody extends $tea.Model {
|
|
11414
|
+
/**
|
|
11415
|
+
* @remarks
|
|
11416
|
+
* The instance cluster list.
|
|
11417
|
+
*/
|
|
11288
11418
|
instanceClusters?: DescribeInstanceClusterListResponseBodyInstanceClusters;
|
|
11289
11419
|
/**
|
|
11290
11420
|
* @remarks
|
|
@@ -12546,6 +12676,13 @@ export declare class DescribeIpControlsResponse extends $tea.Model {
|
|
|
12546
12676
|
}
|
|
12547
12677
|
export declare class DescribeLogConfigRequest extends $tea.Model {
|
|
12548
12678
|
/**
|
|
12679
|
+
* @remarks
|
|
12680
|
+
* The log type.
|
|
12681
|
+
*
|
|
12682
|
+
* Valid values:
|
|
12683
|
+
*
|
|
12684
|
+
* * PROVIDER
|
|
12685
|
+
*
|
|
12549
12686
|
* @example
|
|
12550
12687
|
* PROVIDER
|
|
12551
12688
|
*/
|
|
@@ -12562,8 +12699,15 @@ export declare class DescribeLogConfigRequest extends $tea.Model {
|
|
|
12562
12699
|
});
|
|
12563
12700
|
}
|
|
12564
12701
|
export declare class DescribeLogConfigResponseBody extends $tea.Model {
|
|
12702
|
+
/**
|
|
12703
|
+
* @remarks
|
|
12704
|
+
* Info of the log config.
|
|
12705
|
+
*/
|
|
12565
12706
|
logInfos?: DescribeLogConfigResponseBodyLogInfos;
|
|
12566
12707
|
/**
|
|
12708
|
+
* @remarks
|
|
12709
|
+
* The ID of the request.
|
|
12710
|
+
*
|
|
12567
12711
|
* @example
|
|
12568
12712
|
* E3BC2706-ABDB-5B64-A12F-08DFD9E3F339
|
|
12569
12713
|
*/
|
|
@@ -14811,6 +14955,8 @@ export declare class DisableInstanceAccessControlResponse extends $tea.Model {
|
|
|
14811
14955
|
export declare class DissociateInstanceWithPrivateDNSRequest extends $tea.Model {
|
|
14812
14956
|
/**
|
|
14813
14957
|
* @remarks
|
|
14958
|
+
* The instance ID.
|
|
14959
|
+
*
|
|
14814
14960
|
* This parameter is required.
|
|
14815
14961
|
*
|
|
14816
14962
|
* @example
|
|
@@ -14819,6 +14965,8 @@ export declare class DissociateInstanceWithPrivateDNSRequest extends $tea.Model
|
|
|
14819
14965
|
instanceId?: string;
|
|
14820
14966
|
/**
|
|
14821
14967
|
* @remarks
|
|
14968
|
+
* The internal domain names included in the resolution.
|
|
14969
|
+
*
|
|
14822
14970
|
* This parameter is required.
|
|
14823
14971
|
*/
|
|
14824
14972
|
intranetDomains?: string[];
|
|
@@ -14836,6 +14984,8 @@ export declare class DissociateInstanceWithPrivateDNSRequest extends $tea.Model
|
|
|
14836
14984
|
export declare class DissociateInstanceWithPrivateDNSShrinkRequest extends $tea.Model {
|
|
14837
14985
|
/**
|
|
14838
14986
|
* @remarks
|
|
14987
|
+
* The instance ID.
|
|
14988
|
+
*
|
|
14839
14989
|
* This parameter is required.
|
|
14840
14990
|
*
|
|
14841
14991
|
* @example
|
|
@@ -14844,6 +14994,8 @@ export declare class DissociateInstanceWithPrivateDNSShrinkRequest extends $tea.
|
|
|
14844
14994
|
instanceId?: string;
|
|
14845
14995
|
/**
|
|
14846
14996
|
* @remarks
|
|
14997
|
+
* The internal domain names included in the resolution.
|
|
14998
|
+
*
|
|
14847
14999
|
* This parameter is required.
|
|
14848
15000
|
*/
|
|
14849
15001
|
intranetDomainsShrink?: string;
|
|
@@ -14860,6 +15012,9 @@ export declare class DissociateInstanceWithPrivateDNSShrinkRequest extends $tea.
|
|
|
14860
15012
|
}
|
|
14861
15013
|
export declare class DissociateInstanceWithPrivateDNSResponseBody extends $tea.Model {
|
|
14862
15014
|
/**
|
|
15015
|
+
* @remarks
|
|
15016
|
+
* The request ID.
|
|
15017
|
+
*
|
|
14863
15018
|
* @example
|
|
14864
15019
|
* 6C87A26A-6A18-4B8E-8099-705278381A2C
|
|
14865
15020
|
*/
|
|
@@ -15088,6 +15243,8 @@ export declare class DryRunSwaggerResponse extends $tea.Model {
|
|
|
15088
15243
|
export declare class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
15089
15244
|
/**
|
|
15090
15245
|
* @remarks
|
|
15246
|
+
* The ID of the access control policy.
|
|
15247
|
+
*
|
|
15091
15248
|
* This parameter is required.
|
|
15092
15249
|
*
|
|
15093
15250
|
* @example
|
|
@@ -15096,15 +15253,29 @@ export declare class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
|
15096
15253
|
aclId?: string;
|
|
15097
15254
|
/**
|
|
15098
15255
|
* @remarks
|
|
15256
|
+
* The ACL type. Valid values:
|
|
15257
|
+
*
|
|
15258
|
+
* * black: blacklist
|
|
15259
|
+
* * white: whitelist
|
|
15260
|
+
*
|
|
15099
15261
|
* This parameter is required.
|
|
15100
15262
|
*
|
|
15101
15263
|
* @example
|
|
15102
15264
|
* black
|
|
15103
15265
|
*/
|
|
15104
15266
|
aclType?: string;
|
|
15267
|
+
/**
|
|
15268
|
+
* @remarks
|
|
15269
|
+
* The IP version. Valid values: **ipv4** and **ipv6**.
|
|
15270
|
+
*
|
|
15271
|
+
* @example
|
|
15272
|
+
* ipv4
|
|
15273
|
+
*/
|
|
15105
15274
|
addressIPVersion?: string;
|
|
15106
15275
|
/**
|
|
15107
15276
|
* @remarks
|
|
15277
|
+
* The ID of the instance.
|
|
15278
|
+
*
|
|
15108
15279
|
* This parameter is required.
|
|
15109
15280
|
*
|
|
15110
15281
|
* @example
|
|
@@ -15124,6 +15295,9 @@ export declare class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
|
15124
15295
|
}
|
|
15125
15296
|
export declare class EnableInstanceAccessControlResponseBody extends $tea.Model {
|
|
15126
15297
|
/**
|
|
15298
|
+
* @remarks
|
|
15299
|
+
* The ID of the request.
|
|
15300
|
+
*
|
|
15127
15301
|
* @example
|
|
15128
15302
|
* CE5722A6-AE78-4741-A9B0-6C817D360510
|
|
15129
15303
|
*/
|
|
@@ -15759,12 +15933,12 @@ export declare class ImportSwaggerResponseBody extends $tea.Model {
|
|
|
15759
15933
|
failed?: ImportSwaggerResponseBodyFailed;
|
|
15760
15934
|
/**
|
|
15761
15935
|
* @remarks
|
|
15762
|
-
* The models that failed to be imported
|
|
15936
|
+
* The models that failed to be imported through the Swagger-compliant data this time.
|
|
15763
15937
|
*/
|
|
15764
15938
|
modelFailed?: ImportSwaggerResponseBodyModelFailed;
|
|
15765
15939
|
/**
|
|
15766
15940
|
* @remarks
|
|
15767
|
-
* The models that were imported
|
|
15941
|
+
* The models that were imported through the Swagger-compliant data this time.
|
|
15768
15942
|
*/
|
|
15769
15943
|
modelSuccess?: ImportSwaggerResponseBodyModelSuccess;
|
|
15770
15944
|
/**
|
|
@@ -15777,7 +15951,7 @@ export declare class ImportSwaggerResponseBody extends $tea.Model {
|
|
|
15777
15951
|
requestId?: string;
|
|
15778
15952
|
/**
|
|
15779
15953
|
* @remarks
|
|
15780
|
-
* The APIs that
|
|
15954
|
+
* The APIs that are created based on the Swagger-compliant data imported this time.
|
|
15781
15955
|
*/
|
|
15782
15956
|
success?: ImportSwaggerResponseBodySuccess;
|
|
15783
15957
|
static names(): {
|
|
@@ -15808,12 +15982,21 @@ export declare class ImportSwaggerResponse extends $tea.Model {
|
|
|
15808
15982
|
}
|
|
15809
15983
|
export declare class ListPrivateDNSRequest extends $tea.Model {
|
|
15810
15984
|
/**
|
|
15985
|
+
* @remarks
|
|
15986
|
+
* The internal domain name.
|
|
15987
|
+
*
|
|
15811
15988
|
* @example
|
|
15812
15989
|
* api.demo.com
|
|
15813
15990
|
*/
|
|
15814
15991
|
intranetDomain?: string;
|
|
15815
15992
|
securityToken?: string;
|
|
15816
15993
|
/**
|
|
15994
|
+
* @remarks
|
|
15995
|
+
* The internal domain name resolution type. Valid values:
|
|
15996
|
+
*
|
|
15997
|
+
* * VPC: resolution for virtual private cloud (VPC) access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
|
|
15998
|
+
* * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
|
|
15999
|
+
*
|
|
15817
16000
|
* @example
|
|
15818
16001
|
* A
|
|
15819
16002
|
*/
|
|
@@ -15830,22 +16013,38 @@ export declare class ListPrivateDNSRequest extends $tea.Model {
|
|
|
15830
16013
|
}
|
|
15831
16014
|
export declare class ListPrivateDNSResponseBody extends $tea.Model {
|
|
15832
16015
|
/**
|
|
16016
|
+
* @remarks
|
|
16017
|
+
* The page number of the returned page.
|
|
16018
|
+
*
|
|
15833
16019
|
* @example
|
|
15834
16020
|
* 1
|
|
15835
16021
|
*/
|
|
15836
16022
|
pageNumber?: number;
|
|
15837
16023
|
/**
|
|
16024
|
+
* @remarks
|
|
16025
|
+
* The number of entries per page.
|
|
16026
|
+
*
|
|
15838
16027
|
* @example
|
|
15839
16028
|
* 10
|
|
15840
16029
|
*/
|
|
15841
16030
|
pageSize?: number;
|
|
16031
|
+
/**
|
|
16032
|
+
* @remarks
|
|
16033
|
+
* The internal domain name resolutions.
|
|
16034
|
+
*/
|
|
15842
16035
|
privateDNSList?: ListPrivateDNSResponseBodyPrivateDNSList[];
|
|
15843
16036
|
/**
|
|
16037
|
+
* @remarks
|
|
16038
|
+
* The request ID.
|
|
16039
|
+
*
|
|
15844
16040
|
* @example
|
|
15845
16041
|
* CEF72CEB-54B6-4AE8-B225-F876FF7BZ016
|
|
15846
16042
|
*/
|
|
15847
16043
|
requestId?: string;
|
|
15848
16044
|
/**
|
|
16045
|
+
* @remarks
|
|
16046
|
+
* The total number of entries returned.
|
|
16047
|
+
*
|
|
15849
16048
|
* @example
|
|
15850
16049
|
* 2
|
|
15851
16050
|
*/
|
|
@@ -16600,6 +16799,14 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
|
|
|
16600
16799
|
* depart:dep1
|
|
16601
16800
|
*/
|
|
16602
16801
|
compatibleFlags?: string;
|
|
16802
|
+
/**
|
|
16803
|
+
* @remarks
|
|
16804
|
+
* The custom appcode configuration.
|
|
16805
|
+
*
|
|
16806
|
+
* @example
|
|
16807
|
+
* {"location":"HEADER","name":"myAppCodeHeader"}
|
|
16808
|
+
*/
|
|
16809
|
+
customAppCodeConfig?: string;
|
|
16603
16810
|
/**
|
|
16604
16811
|
* @remarks
|
|
16605
16812
|
* The custom trace configuration.
|
|
@@ -16632,6 +16839,13 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
|
|
|
16632
16839
|
* New weather informations.
|
|
16633
16840
|
*/
|
|
16634
16841
|
description?: string;
|
|
16842
|
+
/**
|
|
16843
|
+
* @remarks
|
|
16844
|
+
* If filter AppCode for backend.
|
|
16845
|
+
*
|
|
16846
|
+
* @example
|
|
16847
|
+
* false
|
|
16848
|
+
*/
|
|
16635
16849
|
filterAppCodeForBackend?: string;
|
|
16636
16850
|
/**
|
|
16637
16851
|
* @remarks
|
|
@@ -16662,10 +16876,19 @@ export declare class ModifyApiGroupRequest extends $tea.Model {
|
|
|
16662
16876
|
/**
|
|
16663
16877
|
* @remarks
|
|
16664
16878
|
* The RPC mode.
|
|
16879
|
+
*
|
|
16880
|
+
* @example
|
|
16881
|
+
* {}
|
|
16665
16882
|
*/
|
|
16666
16883
|
rpcPattern?: string;
|
|
16667
16884
|
securityToken?: string;
|
|
16668
16885
|
/**
|
|
16886
|
+
* @remarks
|
|
16887
|
+
* If support SSE.
|
|
16888
|
+
*
|
|
16889
|
+
* @example
|
|
16890
|
+
* true
|
|
16891
|
+
*
|
|
16669
16892
|
* **if can be null:**
|
|
16670
16893
|
* true
|
|
16671
16894
|
*/
|
|
@@ -16774,6 +16997,8 @@ export declare class ModifyApiGroupResponse extends $tea.Model {
|
|
|
16774
16997
|
export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
|
|
16775
16998
|
/**
|
|
16776
16999
|
* @remarks
|
|
17000
|
+
* The ID of the API group.
|
|
17001
|
+
*
|
|
16777
17002
|
* This parameter is required.
|
|
16778
17003
|
*
|
|
16779
17004
|
* @example
|
|
@@ -16781,14 +17006,23 @@ export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
|
|
|
16781
17006
|
*/
|
|
16782
17007
|
groupId?: string;
|
|
16783
17008
|
/**
|
|
17009
|
+
* @remarks
|
|
17010
|
+
* The remarks.
|
|
17011
|
+
*
|
|
16784
17012
|
* @example
|
|
16785
17013
|
* migrate
|
|
16786
17014
|
*/
|
|
16787
17015
|
remark?: string;
|
|
16788
17016
|
securityToken?: string;
|
|
17017
|
+
/**
|
|
17018
|
+
* @remarks
|
|
17019
|
+
* The tag of objects that match the rule. You can specify multiple tags.
|
|
17020
|
+
*/
|
|
16789
17021
|
tag?: ModifyApiGroupInstanceRequestTag[];
|
|
16790
17022
|
/**
|
|
16791
17023
|
* @remarks
|
|
17024
|
+
* The ID of the instance to which you want to migrate the API group.
|
|
17025
|
+
*
|
|
16792
17026
|
* This parameter is required.
|
|
16793
17027
|
*
|
|
16794
17028
|
* @example
|
|
@@ -16807,6 +17041,9 @@ export declare class ModifyApiGroupInstanceRequest extends $tea.Model {
|
|
|
16807
17041
|
}
|
|
16808
17042
|
export declare class ModifyApiGroupInstanceResponseBody extends $tea.Model {
|
|
16809
17043
|
/**
|
|
17044
|
+
* @remarks
|
|
17045
|
+
* The request ID.
|
|
17046
|
+
*
|
|
16810
17047
|
* @example
|
|
16811
17048
|
* E07AEFF0-9FB0-599E-8F12-B418D8AE1F3D
|
|
16812
17049
|
*/
|
|
@@ -17015,7 +17252,7 @@ export declare class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
17015
17252
|
export declare class ModifyAppRequest extends $tea.Model {
|
|
17016
17253
|
/**
|
|
17017
17254
|
* @remarks
|
|
17018
|
-
* The ID of the
|
|
17255
|
+
* The ID of the app.
|
|
17019
17256
|
*
|
|
17020
17257
|
* This parameter is required.
|
|
17021
17258
|
*
|
|
@@ -17025,9 +17262,9 @@ export declare class ModifyAppRequest extends $tea.Model {
|
|
|
17025
17262
|
appId?: number;
|
|
17026
17263
|
/**
|
|
17027
17264
|
* @remarks
|
|
17028
|
-
* The
|
|
17265
|
+
* The value must be 4 to 26 characters in length and can contain letters, digits, and underscores (_). It must start with a letter.
|
|
17029
17266
|
*
|
|
17030
|
-
*
|
|
17267
|
+
* This parameter is required only when you want to modify the value.
|
|
17031
17268
|
*
|
|
17032
17269
|
* @example
|
|
17033
17270
|
* jiedian_pord
|
|
@@ -17035,14 +17272,21 @@ export declare class ModifyAppRequest extends $tea.Model {
|
|
|
17035
17272
|
appName?: string;
|
|
17036
17273
|
/**
|
|
17037
17274
|
* @remarks
|
|
17038
|
-
* The description of the
|
|
17275
|
+
* The description of the app. The description can contain a maximum of 180 characters in length.
|
|
17039
17276
|
*
|
|
17040
|
-
*
|
|
17277
|
+
* This parameter is required only when you want to modify the value.
|
|
17041
17278
|
*
|
|
17042
17279
|
* @example
|
|
17043
17280
|
* modidyTest
|
|
17044
17281
|
*/
|
|
17045
17282
|
description?: string;
|
|
17283
|
+
/**
|
|
17284
|
+
* @remarks
|
|
17285
|
+
* 扩展信息
|
|
17286
|
+
*
|
|
17287
|
+
* @example
|
|
17288
|
+
* 110461946884
|
|
17289
|
+
*/
|
|
17046
17290
|
extend?: string;
|
|
17047
17291
|
securityToken?: string;
|
|
17048
17292
|
/**
|
|
@@ -17402,27 +17646,41 @@ export declare class ModifyDatasetItemResponse extends $tea.Model {
|
|
|
17402
17646
|
}
|
|
17403
17647
|
export declare class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
17404
17648
|
/**
|
|
17649
|
+
* @remarks
|
|
17650
|
+
* If delete VPC Ip block.
|
|
17651
|
+
*
|
|
17405
17652
|
* @example
|
|
17406
17653
|
* true
|
|
17407
17654
|
*/
|
|
17408
17655
|
deleteVpcIpBlock?: string;
|
|
17409
17656
|
/**
|
|
17657
|
+
* @remarks
|
|
17658
|
+
* If enable outbound IPv6 Traffic.
|
|
17659
|
+
*
|
|
17410
17660
|
* @example
|
|
17411
17661
|
* true
|
|
17412
17662
|
*/
|
|
17413
17663
|
egressIpv6Enable?: string;
|
|
17414
17664
|
/**
|
|
17665
|
+
* @remarks
|
|
17666
|
+
* The HTTPS policy.
|
|
17667
|
+
*
|
|
17415
17668
|
* @example
|
|
17416
17669
|
* HTTPS2_TLS1_0
|
|
17417
17670
|
*/
|
|
17418
17671
|
httpsPolicy?: string;
|
|
17419
17672
|
/**
|
|
17673
|
+
* @remarks
|
|
17674
|
+
* If enable inbound IPv6 Traffic.
|
|
17675
|
+
*
|
|
17420
17676
|
* @example
|
|
17421
17677
|
* true
|
|
17422
17678
|
*/
|
|
17423
17679
|
IPV6Enabled?: string;
|
|
17424
17680
|
/**
|
|
17425
17681
|
* @remarks
|
|
17682
|
+
* The ID of the instance.
|
|
17683
|
+
*
|
|
17426
17684
|
* This parameter is required.
|
|
17427
17685
|
*
|
|
17428
17686
|
* @example
|
|
@@ -17430,21 +17688,33 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
|
17430
17688
|
*/
|
|
17431
17689
|
instanceId?: string;
|
|
17432
17690
|
/**
|
|
17691
|
+
* @remarks
|
|
17692
|
+
* Instance Name
|
|
17693
|
+
*
|
|
17433
17694
|
* @example
|
|
17434
17695
|
* apigatewayInstance
|
|
17435
17696
|
*/
|
|
17436
17697
|
instanceName?: string;
|
|
17437
17698
|
/**
|
|
17699
|
+
* @remarks
|
|
17700
|
+
* Custom private CIDR block.
|
|
17701
|
+
*
|
|
17438
17702
|
* @example
|
|
17439
17703
|
* 172.0.0.1/24
|
|
17440
17704
|
*/
|
|
17441
17705
|
intranetSegments?: string;
|
|
17442
17706
|
/**
|
|
17707
|
+
* @remarks
|
|
17708
|
+
* Maintainable end time.
|
|
17709
|
+
*
|
|
17443
17710
|
* @example
|
|
17444
17711
|
* 23:00Z
|
|
17445
17712
|
*/
|
|
17446
17713
|
maintainEndTime?: string;
|
|
17447
17714
|
/**
|
|
17715
|
+
* @remarks
|
|
17716
|
+
* Maintainable start time.
|
|
17717
|
+
*
|
|
17448
17718
|
* @example
|
|
17449
17719
|
* 18:00Z
|
|
17450
17720
|
*/
|
|
@@ -17455,11 +17725,17 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
|
17455
17725
|
*/
|
|
17456
17726
|
toConnectVpcIpBlock?: ModifyInstanceAttributeRequestToConnectVpcIpBlock;
|
|
17457
17727
|
/**
|
|
17728
|
+
* @remarks
|
|
17729
|
+
* The token of the request.
|
|
17730
|
+
*
|
|
17458
17731
|
* @example
|
|
17459
17732
|
* c20d86c4-1eb3-4d0b-afe9-c586df1e2136
|
|
17460
17733
|
*/
|
|
17461
17734
|
token?: string;
|
|
17462
17735
|
/**
|
|
17736
|
+
* @remarks
|
|
17737
|
+
* Specifies whether to enable the self-calling domain name.
|
|
17738
|
+
*
|
|
17463
17739
|
* @example
|
|
17464
17740
|
* false
|
|
17465
17741
|
*/
|
|
@@ -17476,27 +17752,41 @@ export declare class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
|
17476
17752
|
}
|
|
17477
17753
|
export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
|
|
17478
17754
|
/**
|
|
17755
|
+
* @remarks
|
|
17756
|
+
* If delete VPC Ip block.
|
|
17757
|
+
*
|
|
17479
17758
|
* @example
|
|
17480
17759
|
* true
|
|
17481
17760
|
*/
|
|
17482
17761
|
deleteVpcIpBlock?: string;
|
|
17483
17762
|
/**
|
|
17763
|
+
* @remarks
|
|
17764
|
+
* If enable outbound IPv6 Traffic.
|
|
17765
|
+
*
|
|
17484
17766
|
* @example
|
|
17485
17767
|
* true
|
|
17486
17768
|
*/
|
|
17487
17769
|
egressIpv6Enable?: string;
|
|
17488
17770
|
/**
|
|
17771
|
+
* @remarks
|
|
17772
|
+
* The HTTPS policy.
|
|
17773
|
+
*
|
|
17489
17774
|
* @example
|
|
17490
17775
|
* HTTPS2_TLS1_0
|
|
17491
17776
|
*/
|
|
17492
17777
|
httpsPolicy?: string;
|
|
17493
17778
|
/**
|
|
17779
|
+
* @remarks
|
|
17780
|
+
* If enable inbound IPv6 Traffic.
|
|
17781
|
+
*
|
|
17494
17782
|
* @example
|
|
17495
17783
|
* true
|
|
17496
17784
|
*/
|
|
17497
17785
|
IPV6Enabled?: string;
|
|
17498
17786
|
/**
|
|
17499
17787
|
* @remarks
|
|
17788
|
+
* The ID of the instance.
|
|
17789
|
+
*
|
|
17500
17790
|
* This parameter is required.
|
|
17501
17791
|
*
|
|
17502
17792
|
* @example
|
|
@@ -17504,21 +17794,33 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
|
|
|
17504
17794
|
*/
|
|
17505
17795
|
instanceId?: string;
|
|
17506
17796
|
/**
|
|
17797
|
+
* @remarks
|
|
17798
|
+
* Instance Name
|
|
17799
|
+
*
|
|
17507
17800
|
* @example
|
|
17508
17801
|
* apigatewayInstance
|
|
17509
17802
|
*/
|
|
17510
17803
|
instanceName?: string;
|
|
17511
17804
|
/**
|
|
17805
|
+
* @remarks
|
|
17806
|
+
* Custom private CIDR block.
|
|
17807
|
+
*
|
|
17512
17808
|
* @example
|
|
17513
17809
|
* 172.0.0.1/24
|
|
17514
17810
|
*/
|
|
17515
17811
|
intranetSegments?: string;
|
|
17516
17812
|
/**
|
|
17813
|
+
* @remarks
|
|
17814
|
+
* Maintainable end time.
|
|
17815
|
+
*
|
|
17517
17816
|
* @example
|
|
17518
17817
|
* 23:00Z
|
|
17519
17818
|
*/
|
|
17520
17819
|
maintainEndTime?: string;
|
|
17521
17820
|
/**
|
|
17821
|
+
* @remarks
|
|
17822
|
+
* Maintainable start time.
|
|
17823
|
+
*
|
|
17522
17824
|
* @example
|
|
17523
17825
|
* 18:00Z
|
|
17524
17826
|
*/
|
|
@@ -17529,11 +17831,17 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
|
|
|
17529
17831
|
*/
|
|
17530
17832
|
toConnectVpcIpBlockShrink?: string;
|
|
17531
17833
|
/**
|
|
17834
|
+
* @remarks
|
|
17835
|
+
* The token of the request.
|
|
17836
|
+
*
|
|
17532
17837
|
* @example
|
|
17533
17838
|
* c20d86c4-1eb3-4d0b-afe9-c586df1e2136
|
|
17534
17839
|
*/
|
|
17535
17840
|
token?: string;
|
|
17536
17841
|
/**
|
|
17842
|
+
* @remarks
|
|
17843
|
+
* Specifies whether to enable the self-calling domain name.
|
|
17844
|
+
*
|
|
17537
17845
|
* @example
|
|
17538
17846
|
* false
|
|
17539
17847
|
*/
|
|
@@ -17550,6 +17858,9 @@ export declare class ModifyInstanceAttributeShrinkRequest extends $tea.Model {
|
|
|
17550
17858
|
}
|
|
17551
17859
|
export declare class ModifyInstanceAttributeResponseBody extends $tea.Model {
|
|
17552
17860
|
/**
|
|
17861
|
+
* @remarks
|
|
17862
|
+
* The ID of the request.
|
|
17863
|
+
*
|
|
17553
17864
|
* @example
|
|
17554
17865
|
* F3186326-2C57-58E1-B6E9-XXXXXXXXXXXX
|
|
17555
17866
|
*/
|
|
@@ -17690,6 +18001,106 @@ export declare class ModifyInstanceSpecResponse extends $tea.Model {
|
|
|
17690
18001
|
[key: string]: any;
|
|
17691
18002
|
});
|
|
17692
18003
|
}
|
|
18004
|
+
export declare class ModifyInstanceVpcAttributeForConsoleRequest extends $tea.Model {
|
|
18005
|
+
/**
|
|
18006
|
+
* @remarks
|
|
18007
|
+
* Whether delete instance client VPC.
|
|
18008
|
+
* - FALSE: set or modify instance client VPC
|
|
18009
|
+
* - TRUE: delete instance client VPC
|
|
18010
|
+
*
|
|
18011
|
+
* @example
|
|
18012
|
+
* false
|
|
18013
|
+
*/
|
|
18014
|
+
deleteVpcAccess?: boolean;
|
|
18015
|
+
/**
|
|
18016
|
+
* @remarks
|
|
18017
|
+
* The ID of the instance.
|
|
18018
|
+
*
|
|
18019
|
+
* This parameter is required.
|
|
18020
|
+
*
|
|
18021
|
+
* @example
|
|
18022
|
+
* apigateway-bj-f28baxxxxb51
|
|
18023
|
+
*/
|
|
18024
|
+
instanceId?: string;
|
|
18025
|
+
/**
|
|
18026
|
+
* @remarks
|
|
18027
|
+
* The token of the request.
|
|
18028
|
+
*
|
|
18029
|
+
* @example
|
|
18030
|
+
* 505959c38776d9324945dbff709582
|
|
18031
|
+
*/
|
|
18032
|
+
token?: string;
|
|
18033
|
+
/**
|
|
18034
|
+
* @remarks
|
|
18035
|
+
* The ID of the VPC.
|
|
18036
|
+
*
|
|
18037
|
+
* This parameter is required.
|
|
18038
|
+
*
|
|
18039
|
+
* @example
|
|
18040
|
+
* vpc-8vbnnd66xxxx2xb5oig4f
|
|
18041
|
+
*/
|
|
18042
|
+
vpcId?: string;
|
|
18043
|
+
/**
|
|
18044
|
+
* @remarks
|
|
18045
|
+
* The ID of the Alibaba Cloud account to which the VPC belongs.
|
|
18046
|
+
*
|
|
18047
|
+
* @example
|
|
18048
|
+
* 1121011712128923
|
|
18049
|
+
*/
|
|
18050
|
+
vpcOwnerId?: number;
|
|
18051
|
+
/**
|
|
18052
|
+
* @remarks
|
|
18053
|
+
* The ID of the vSwitch.
|
|
18054
|
+
*
|
|
18055
|
+
* @example
|
|
18056
|
+
* vsw-bj9e2i8w3wz7shkvnuj9a
|
|
18057
|
+
*/
|
|
18058
|
+
vswitchId?: string;
|
|
18059
|
+
static names(): {
|
|
18060
|
+
[key: string]: string;
|
|
18061
|
+
};
|
|
18062
|
+
static types(): {
|
|
18063
|
+
[key: string]: any;
|
|
18064
|
+
};
|
|
18065
|
+
constructor(map?: {
|
|
18066
|
+
[key: string]: any;
|
|
18067
|
+
});
|
|
18068
|
+
}
|
|
18069
|
+
export declare class ModifyInstanceVpcAttributeForConsoleResponseBody extends $tea.Model {
|
|
18070
|
+
/**
|
|
18071
|
+
* @remarks
|
|
18072
|
+
* The request ID.
|
|
18073
|
+
*
|
|
18074
|
+
* @example
|
|
18075
|
+
* D08741CF-BE59-5DA6-B06F-BB65173110C0
|
|
18076
|
+
*/
|
|
18077
|
+
requestId?: string;
|
|
18078
|
+
static names(): {
|
|
18079
|
+
[key: string]: string;
|
|
18080
|
+
};
|
|
18081
|
+
static types(): {
|
|
18082
|
+
[key: string]: any;
|
|
18083
|
+
};
|
|
18084
|
+
constructor(map?: {
|
|
18085
|
+
[key: string]: any;
|
|
18086
|
+
});
|
|
18087
|
+
}
|
|
18088
|
+
export declare class ModifyInstanceVpcAttributeForConsoleResponse extends $tea.Model {
|
|
18089
|
+
headers?: {
|
|
18090
|
+
[key: string]: string;
|
|
18091
|
+
};
|
|
18092
|
+
statusCode?: number;
|
|
18093
|
+
body?: ModifyInstanceVpcAttributeForConsoleResponseBody;
|
|
18094
|
+
static names(): {
|
|
18095
|
+
[key: string]: string;
|
|
18096
|
+
};
|
|
18097
|
+
static types(): {
|
|
18098
|
+
[key: string]: any;
|
|
18099
|
+
};
|
|
18100
|
+
constructor(map?: {
|
|
18101
|
+
[key: string]: any;
|
|
18102
|
+
});
|
|
18103
|
+
}
|
|
17693
18104
|
export declare class ModifyIntranetDomainPolicyRequest extends $tea.Model {
|
|
17694
18105
|
/**
|
|
17695
18106
|
* @remarks
|
|
@@ -17926,6 +18337,16 @@ export declare class ModifyIpControlPolicyItemResponse extends $tea.Model {
|
|
|
17926
18337
|
}
|
|
17927
18338
|
export declare class ModifyLogConfigRequest extends $tea.Model {
|
|
17928
18339
|
/**
|
|
18340
|
+
* @remarks
|
|
18341
|
+
* The log type. Valid values:
|
|
18342
|
+
*
|
|
18343
|
+
* * **log**: other logs
|
|
18344
|
+
* * **survey**: inspection logs
|
|
18345
|
+
*
|
|
18346
|
+
* Enumeration value:
|
|
18347
|
+
*
|
|
18348
|
+
* * PROVIDER
|
|
18349
|
+
*
|
|
17929
18350
|
* @example
|
|
17930
18351
|
* PROVIDER
|
|
17931
18352
|
*/
|
|
@@ -17933,6 +18354,8 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
|
|
|
17933
18354
|
securityToken?: string;
|
|
17934
18355
|
/**
|
|
17935
18356
|
* @remarks
|
|
18357
|
+
* The name of the Logstore.
|
|
18358
|
+
*
|
|
17936
18359
|
* This parameter is required.
|
|
17937
18360
|
*
|
|
17938
18361
|
* @example
|
|
@@ -17941,6 +18364,8 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
|
|
|
17941
18364
|
slsLogStore?: string;
|
|
17942
18365
|
/**
|
|
17943
18366
|
* @remarks
|
|
18367
|
+
* The name of the Log Service project.
|
|
18368
|
+
*
|
|
17944
18369
|
* This parameter is required.
|
|
17945
18370
|
*
|
|
17946
18371
|
* @example
|
|
@@ -17959,6 +18384,9 @@ export declare class ModifyLogConfigRequest extends $tea.Model {
|
|
|
17959
18384
|
}
|
|
17960
18385
|
export declare class ModifyLogConfigResponseBody extends $tea.Model {
|
|
17961
18386
|
/**
|
|
18387
|
+
* @remarks
|
|
18388
|
+
* The request ID.
|
|
18389
|
+
*
|
|
17962
18390
|
* @example
|
|
17963
18391
|
* 75A4ADCB-AA26-51FB-94D4-AB3240040974
|
|
17964
18392
|
*/
|
|
@@ -19749,6 +20177,8 @@ export declare class SdkGenerateByAppResponse extends $tea.Model {
|
|
|
19749
20177
|
export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
|
|
19750
20178
|
/**
|
|
19751
20179
|
* @remarks
|
|
20180
|
+
* The ID of the app. This ID is generated by the system and globally unique.
|
|
20181
|
+
*
|
|
19752
20182
|
* This parameter is required.
|
|
19753
20183
|
*
|
|
19754
20184
|
* @example
|
|
@@ -19757,6 +20187,8 @@ export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
|
|
|
19757
20187
|
appId?: number;
|
|
19758
20188
|
/**
|
|
19759
20189
|
* @remarks
|
|
20190
|
+
* The programming language in which the SDK is generated.
|
|
20191
|
+
*
|
|
19760
20192
|
* This parameter is required.
|
|
19761
20193
|
*
|
|
19762
20194
|
* @example
|
|
@@ -19776,11 +20208,17 @@ export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
|
|
|
19776
20208
|
}
|
|
19777
20209
|
export declare class SdkGenerateByAppForRegionResponseBody extends $tea.Model {
|
|
19778
20210
|
/**
|
|
20211
|
+
* @remarks
|
|
20212
|
+
* The code of the SDK by using the Base64 scheme. You can obtain the file by using the Base64 decoding scheme.
|
|
20213
|
+
*
|
|
19779
20214
|
* @example
|
|
19780
20215
|
* UEsDBBQACAAIADdwnFQAAAAAAAAAAAAAAAA2AAAAQ0FTREtfSkFWQV8xMjI3NDY2NjY0MzM0MTMzXzE2NTExMjU3MD......
|
|
19781
20216
|
*/
|
|
19782
20217
|
downloadLink?: string;
|
|
19783
20218
|
/**
|
|
20219
|
+
* @remarks
|
|
20220
|
+
* The ID of the request.
|
|
20221
|
+
*
|
|
19784
20222
|
* @example
|
|
19785
20223
|
* CE5722A6-AE78-4741-A9B0-6C817D360510
|
|
19786
20224
|
*/
|
|
@@ -19939,18 +20377,36 @@ export declare class SetAccessControlListAttributeResponse extends $tea.Model {
|
|
|
19939
20377
|
export declare class SetApiProductsAuthoritiesRequest extends $tea.Model {
|
|
19940
20378
|
/**
|
|
19941
20379
|
* @remarks
|
|
20380
|
+
* The API products.
|
|
20381
|
+
*
|
|
19942
20382
|
* This parameter is required.
|
|
19943
20383
|
*/
|
|
19944
20384
|
apiProductIds?: string[];
|
|
19945
20385
|
/**
|
|
19946
20386
|
* @remarks
|
|
20387
|
+
* The application ID.
|
|
20388
|
+
*
|
|
19947
20389
|
* This parameter is required.
|
|
19948
20390
|
*
|
|
19949
20391
|
* @example
|
|
19950
20392
|
* 111385984
|
|
19951
20393
|
*/
|
|
19952
20394
|
appId?: number;
|
|
20395
|
+
/**
|
|
20396
|
+
* @remarks
|
|
20397
|
+
* 授权有效时间的截止时间,请设置格林尼治标准时间(GMT), 如果为空,即为授权永久有效。
|
|
20398
|
+
*
|
|
20399
|
+
* @example
|
|
20400
|
+
* 2023-06-12T03:07:37Z
|
|
20401
|
+
*/
|
|
19953
20402
|
authValidTime?: string;
|
|
20403
|
+
/**
|
|
20404
|
+
* @remarks
|
|
20405
|
+
* The authorization description.
|
|
20406
|
+
*
|
|
20407
|
+
* @example
|
|
20408
|
+
* test
|
|
20409
|
+
*/
|
|
19954
20410
|
description?: string;
|
|
19955
20411
|
securityToken?: string;
|
|
19956
20412
|
static names(): {
|
|
@@ -19966,18 +20422,36 @@ export declare class SetApiProductsAuthoritiesRequest extends $tea.Model {
|
|
|
19966
20422
|
export declare class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
|
|
19967
20423
|
/**
|
|
19968
20424
|
* @remarks
|
|
20425
|
+
* The API products.
|
|
20426
|
+
*
|
|
19969
20427
|
* This parameter is required.
|
|
19970
20428
|
*/
|
|
19971
20429
|
apiProductIdsShrink?: string;
|
|
19972
20430
|
/**
|
|
19973
20431
|
* @remarks
|
|
20432
|
+
* The application ID.
|
|
20433
|
+
*
|
|
19974
20434
|
* This parameter is required.
|
|
19975
20435
|
*
|
|
19976
20436
|
* @example
|
|
19977
20437
|
* 111385984
|
|
19978
20438
|
*/
|
|
19979
20439
|
appId?: number;
|
|
20440
|
+
/**
|
|
20441
|
+
* @remarks
|
|
20442
|
+
* 授权有效时间的截止时间,请设置格林尼治标准时间(GMT), 如果为空,即为授权永久有效。
|
|
20443
|
+
*
|
|
20444
|
+
* @example
|
|
20445
|
+
* 2023-06-12T03:07:37Z
|
|
20446
|
+
*/
|
|
19980
20447
|
authValidTime?: string;
|
|
20448
|
+
/**
|
|
20449
|
+
* @remarks
|
|
20450
|
+
* The authorization description.
|
|
20451
|
+
*
|
|
20452
|
+
* @example
|
|
20453
|
+
* test
|
|
20454
|
+
*/
|
|
19981
20455
|
description?: string;
|
|
19982
20456
|
securityToken?: string;
|
|
19983
20457
|
static names(): {
|
|
@@ -19992,6 +20466,9 @@ export declare class SetApiProductsAuthoritiesShrinkRequest extends $tea.Model {
|
|
|
19992
20466
|
}
|
|
19993
20467
|
export declare class SetApiProductsAuthoritiesResponseBody extends $tea.Model {
|
|
19994
20468
|
/**
|
|
20469
|
+
* @remarks
|
|
20470
|
+
* The request ID.
|
|
20471
|
+
*
|
|
19995
20472
|
* @example
|
|
19996
20473
|
* 2603F41E-77FC-59A3-840E-296578A9BDE0
|
|
19997
20474
|
*/
|
|
@@ -20127,6 +20604,8 @@ export declare class SetApisAuthoritiesResponse extends $tea.Model {
|
|
|
20127
20604
|
export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
|
|
20128
20605
|
/**
|
|
20129
20606
|
* @remarks
|
|
20607
|
+
* The ID of the API product.
|
|
20608
|
+
*
|
|
20130
20609
|
* This parameter is required.
|
|
20131
20610
|
*
|
|
20132
20611
|
* @example
|
|
@@ -20135,14 +20614,26 @@ export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
|
|
|
20135
20614
|
apiProductId?: string;
|
|
20136
20615
|
/**
|
|
20137
20616
|
* @remarks
|
|
20617
|
+
* The IDs of the applications that you want to authorize.
|
|
20618
|
+
*
|
|
20138
20619
|
* This parameter is required.
|
|
20139
20620
|
*/
|
|
20140
20621
|
appIds?: number[];
|
|
20141
20622
|
/**
|
|
20623
|
+
* @remarks
|
|
20624
|
+
* The time (UTC) when the authorization expires. If this parameter is empty, the authorization does not expire.
|
|
20625
|
+
*
|
|
20142
20626
|
* @example
|
|
20143
20627
|
* 2023-05-31T08:15:39Z
|
|
20144
20628
|
*/
|
|
20145
20629
|
authValidTime?: string;
|
|
20630
|
+
/**
|
|
20631
|
+
* @remarks
|
|
20632
|
+
* The description of the authorization.
|
|
20633
|
+
*
|
|
20634
|
+
* @example
|
|
20635
|
+
* Test
|
|
20636
|
+
*/
|
|
20146
20637
|
description?: string;
|
|
20147
20638
|
securityToken?: string;
|
|
20148
20639
|
static names(): {
|
|
@@ -20157,6 +20648,9 @@ export declare class SetAppsAuthToApiProductRequest extends $tea.Model {
|
|
|
20157
20648
|
}
|
|
20158
20649
|
export declare class SetAppsAuthToApiProductResponseBody extends $tea.Model {
|
|
20159
20650
|
/**
|
|
20651
|
+
* @remarks
|
|
20652
|
+
* The request ID.
|
|
20653
|
+
*
|
|
20160
20654
|
* @example
|
|
20161
20655
|
* EF924FE4-2EDD-4CD3-89EC-34E4708574E7
|
|
20162
20656
|
*/
|
|
@@ -20497,6 +20991,14 @@ export declare class SetDomainCertificateRequest extends $tea.Model {
|
|
|
20497
20991
|
* For more information, see the following request examples
|
|
20498
20992
|
*/
|
|
20499
20993
|
certificatePrivateKey?: string;
|
|
20994
|
+
/**
|
|
20995
|
+
* @remarks
|
|
20996
|
+
* If pass ssl_client_s_dn of the cert to backend header \\"X-Client-S-Dn\\".
|
|
20997
|
+
*
|
|
20998
|
+
* @example
|
|
20999
|
+
* True
|
|
21000
|
+
*/
|
|
21001
|
+
clientCertSDnPassThrough?: boolean;
|
|
20500
21002
|
/**
|
|
20501
21003
|
* @remarks
|
|
20502
21004
|
* The custom domain name.
|
|
@@ -20518,6 +21020,14 @@ export declare class SetDomainCertificateRequest extends $tea.Model {
|
|
|
20518
21020
|
*/
|
|
20519
21021
|
groupId?: string;
|
|
20520
21022
|
securityToken?: string;
|
|
21023
|
+
/**
|
|
21024
|
+
* @remarks
|
|
21025
|
+
* If enable ssl OCSP.
|
|
21026
|
+
*
|
|
21027
|
+
* @example
|
|
21028
|
+
* True
|
|
21029
|
+
*/
|
|
21030
|
+
sslOcspEnable?: boolean;
|
|
20521
21031
|
/**
|
|
20522
21032
|
* @remarks
|
|
20523
21033
|
* The certificate verification depth.
|
|
@@ -20603,6 +21113,13 @@ export declare class SetDomainWebSocketStatusRequest extends $tea.Model {
|
|
|
20603
21113
|
*/
|
|
20604
21114
|
groupId?: string;
|
|
20605
21115
|
securityToken?: string;
|
|
21116
|
+
/**
|
|
21117
|
+
* @remarks
|
|
21118
|
+
* If enable WSS.
|
|
21119
|
+
*
|
|
21120
|
+
* @example
|
|
21121
|
+
* false
|
|
21122
|
+
*/
|
|
20606
21123
|
WSSEnable?: string;
|
|
20607
21124
|
static names(): {
|
|
20608
21125
|
[key: string]: string;
|
|
@@ -21449,6 +21966,8 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
21449
21966
|
export declare class UpdatePrivateDNSRequest extends $tea.Model {
|
|
21450
21967
|
/**
|
|
21451
21968
|
* @remarks
|
|
21969
|
+
* The internal domain name.
|
|
21970
|
+
*
|
|
21452
21971
|
* This parameter is required.
|
|
21453
21972
|
*
|
|
21454
21973
|
* @example
|
|
@@ -21457,12 +21976,19 @@ export declare class UpdatePrivateDNSRequest extends $tea.Model {
|
|
|
21457
21976
|
intranetDomain?: string;
|
|
21458
21977
|
/**
|
|
21459
21978
|
* @remarks
|
|
21979
|
+
* The resolution records. This parameter is valid only when Type is set to A.
|
|
21980
|
+
*
|
|
21460
21981
|
* This parameter is required.
|
|
21461
21982
|
*/
|
|
21462
21983
|
records?: UpdatePrivateDNSRequestRecords[];
|
|
21463
21984
|
securityToken?: string;
|
|
21464
21985
|
/**
|
|
21465
21986
|
* @remarks
|
|
21987
|
+
* The internal domain name resolution type. Valid values:
|
|
21988
|
+
*
|
|
21989
|
+
* * VPC: resolution for virtual private cloud (VPC) access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
|
|
21990
|
+
* * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
|
|
21991
|
+
*
|
|
21466
21992
|
* This parameter is required.
|
|
21467
21993
|
*
|
|
21468
21994
|
* @example
|
|
@@ -21482,6 +22008,8 @@ export declare class UpdatePrivateDNSRequest extends $tea.Model {
|
|
|
21482
22008
|
export declare class UpdatePrivateDNSShrinkRequest extends $tea.Model {
|
|
21483
22009
|
/**
|
|
21484
22010
|
* @remarks
|
|
22011
|
+
* The internal domain name.
|
|
22012
|
+
*
|
|
21485
22013
|
* This parameter is required.
|
|
21486
22014
|
*
|
|
21487
22015
|
* @example
|
|
@@ -21490,12 +22018,19 @@ export declare class UpdatePrivateDNSShrinkRequest extends $tea.Model {
|
|
|
21490
22018
|
intranetDomain?: string;
|
|
21491
22019
|
/**
|
|
21492
22020
|
* @remarks
|
|
22021
|
+
* The resolution records. This parameter is valid only when Type is set to A.
|
|
22022
|
+
*
|
|
21493
22023
|
* This parameter is required.
|
|
21494
22024
|
*/
|
|
21495
22025
|
recordsShrink?: string;
|
|
21496
22026
|
securityToken?: string;
|
|
21497
22027
|
/**
|
|
21498
22028
|
* @remarks
|
|
22029
|
+
* The internal domain name resolution type. Valid values:
|
|
22030
|
+
*
|
|
22031
|
+
* * VPC: resolution for virtual private cloud (VPC) access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
|
|
22032
|
+
* * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
|
|
22033
|
+
*
|
|
21499
22034
|
* This parameter is required.
|
|
21500
22035
|
*
|
|
21501
22036
|
* @example
|
|
@@ -21514,6 +22049,9 @@ export declare class UpdatePrivateDNSShrinkRequest extends $tea.Model {
|
|
|
21514
22049
|
}
|
|
21515
22050
|
export declare class UpdatePrivateDNSResponseBody extends $tea.Model {
|
|
21516
22051
|
/**
|
|
22052
|
+
* @remarks
|
|
22053
|
+
* The request ID.
|
|
22054
|
+
*
|
|
21517
22055
|
* @example
|
|
21518
22056
|
* EF924FE4-2EDD-4CD3-89EC-34E4708574E7
|
|
21519
22057
|
*/
|
|
@@ -22052,11 +22590,17 @@ export declare class CreatePluginRequestTag extends $tea.Model {
|
|
|
22052
22590
|
}
|
|
22053
22591
|
export declare class CreatePrivateDNSRequestRecords extends $tea.Model {
|
|
22054
22592
|
/**
|
|
22593
|
+
* @remarks
|
|
22594
|
+
* The resolution record.
|
|
22595
|
+
*
|
|
22055
22596
|
* @example
|
|
22056
22597
|
* 192.168.0.1
|
|
22057
22598
|
*/
|
|
22058
22599
|
record?: string;
|
|
22059
22600
|
/**
|
|
22601
|
+
* @remarks
|
|
22602
|
+
* The weight of the record.
|
|
22603
|
+
*
|
|
22060
22604
|
* @example
|
|
22061
22605
|
* 100
|
|
22062
22606
|
*/
|
|
@@ -23056,6 +23600,7 @@ export declare class DescribeApiResponseBodyServiceConfigFunctionComputeConfig e
|
|
|
23056
23600
|
* fcservicename
|
|
23057
23601
|
*/
|
|
23058
23602
|
serviceName?: string;
|
|
23603
|
+
triggerName?: string;
|
|
23059
23604
|
static names(): {
|
|
23060
23605
|
[key: string]: string;
|
|
23061
23606
|
};
|
|
@@ -27374,6 +27919,9 @@ export declare class DescribeAppsByApiProductResponseBodyAuthorizedAppsAuthorize
|
|
|
27374
27919
|
/**
|
|
27375
27920
|
* @remarks
|
|
27376
27921
|
* The authorization description.
|
|
27922
|
+
*
|
|
27923
|
+
* @example
|
|
27924
|
+
* Test share with nsc qiming
|
|
27377
27925
|
*/
|
|
27378
27926
|
description?: string;
|
|
27379
27927
|
/**
|
|
@@ -27776,16 +28324,25 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27776
28324
|
}
|
|
27777
28325
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig extends $tea.Model {
|
|
27778
28326
|
/**
|
|
28327
|
+
* @remarks
|
|
28328
|
+
* The connection URL of the ZooKeeper server.
|
|
28329
|
+
*
|
|
27779
28330
|
* @example
|
|
27780
28331
|
* http://192.168.1.xxx:2181
|
|
27781
28332
|
*/
|
|
27782
28333
|
connectString?: string;
|
|
27783
28334
|
/**
|
|
28335
|
+
* @remarks
|
|
28336
|
+
* The namespace.
|
|
28337
|
+
*
|
|
27784
28338
|
* @example
|
|
27785
28339
|
* provider
|
|
27786
28340
|
*/
|
|
27787
28341
|
namespace?: string;
|
|
27788
28342
|
/**
|
|
28343
|
+
* @remarks
|
|
28344
|
+
* Service name
|
|
28345
|
+
*
|
|
27789
28346
|
* @example
|
|
27790
28347
|
* service
|
|
27791
28348
|
*/
|
|
@@ -27814,6 +28371,10 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27814
28371
|
* NACOS
|
|
27815
28372
|
*/
|
|
27816
28373
|
rcType?: string;
|
|
28374
|
+
/**
|
|
28375
|
+
* @remarks
|
|
28376
|
+
* The ZooKeeper configuration.
|
|
28377
|
+
*/
|
|
27817
28378
|
zookeeperConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig;
|
|
27818
28379
|
static names(): {
|
|
27819
28380
|
[key: string]: string;
|
|
@@ -27827,36 +28388,57 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27827
28388
|
}
|
|
27828
28389
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEdasConfig extends $tea.Model {
|
|
27829
28390
|
/**
|
|
28391
|
+
* @remarks
|
|
28392
|
+
* The EDAS application ID.
|
|
28393
|
+
*
|
|
27830
28394
|
* @example
|
|
27831
28395
|
* 6cd0c599-dxxx-496d-b3d5-6a71c657xxxxx
|
|
27832
28396
|
*/
|
|
27833
28397
|
edasAppId?: string;
|
|
27834
28398
|
/**
|
|
28399
|
+
* @remarks
|
|
28400
|
+
* The ID of the microservices namespace in EDAS.
|
|
28401
|
+
*
|
|
27835
28402
|
* @example
|
|
27836
28403
|
* cn-hangzhou:edasNacos
|
|
27837
28404
|
*/
|
|
27838
28405
|
microserviceNamespace?: string;
|
|
27839
28406
|
/**
|
|
28407
|
+
* @remarks
|
|
28408
|
+
* The ID of the microservices namespace in EDAS.
|
|
28409
|
+
*
|
|
27840
28410
|
* @example
|
|
27841
28411
|
* cn-hangzhou:edasNacos
|
|
27842
28412
|
*/
|
|
27843
28413
|
microserviceNamespaceId?: string;
|
|
27844
28414
|
/**
|
|
28415
|
+
* @remarks
|
|
28416
|
+
* The name of the microservices namespace in EDAS.
|
|
28417
|
+
*
|
|
27845
28418
|
* @example
|
|
27846
28419
|
* Edas-Nacos
|
|
27847
28420
|
*/
|
|
27848
28421
|
microserviceNamespaceName?: string;
|
|
27849
28422
|
/**
|
|
28423
|
+
* @remarks
|
|
28424
|
+
* The MSE instance ID.
|
|
28425
|
+
*
|
|
27850
28426
|
* @example
|
|
27851
28427
|
* mse-cn-jia3n1rxxxx
|
|
27852
28428
|
*/
|
|
27853
28429
|
mseInstanceId?: string;
|
|
27854
28430
|
/**
|
|
28431
|
+
* @remarks
|
|
28432
|
+
* The registration type.
|
|
28433
|
+
*
|
|
27855
28434
|
* @example
|
|
27856
28435
|
* EDAS
|
|
27857
28436
|
*/
|
|
27858
28437
|
registryType?: string;
|
|
27859
28438
|
/**
|
|
28439
|
+
* @remarks
|
|
28440
|
+
* The service name.
|
|
28441
|
+
*
|
|
27860
28442
|
* @example
|
|
27861
28443
|
* service
|
|
27862
28444
|
*/
|
|
@@ -27979,6 +28561,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27979
28561
|
* myservice
|
|
27980
28562
|
*/
|
|
27981
28563
|
serviceName?: string;
|
|
28564
|
+
triggerName?: string;
|
|
27982
28565
|
static names(): {
|
|
27983
28566
|
[key: string]: string;
|
|
27984
28567
|
};
|
|
@@ -27992,7 +28575,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
27992
28575
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfigMockHeaders extends $tea.Model {
|
|
27993
28576
|
/**
|
|
27994
28577
|
* @remarks
|
|
27995
|
-
* The
|
|
28578
|
+
* The header name.
|
|
27996
28579
|
*
|
|
27997
28580
|
* @example
|
|
27998
28581
|
* test
|
|
@@ -28000,7 +28583,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28000
28583
|
headerName?: string;
|
|
28001
28584
|
/**
|
|
28002
28585
|
* @remarks
|
|
28003
|
-
* The
|
|
28586
|
+
* The header value.
|
|
28004
28587
|
*
|
|
28005
28588
|
* @example
|
|
28006
28589
|
* 123
|
|
@@ -28019,12 +28602,12 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28019
28602
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig extends $tea.Model {
|
|
28020
28603
|
/**
|
|
28021
28604
|
* @remarks
|
|
28022
|
-
* The header
|
|
28605
|
+
* The header in the mocked response.
|
|
28023
28606
|
*/
|
|
28024
28607
|
mockHeaders?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfigMockHeaders[];
|
|
28025
28608
|
/**
|
|
28026
28609
|
* @remarks
|
|
28027
|
-
* The
|
|
28610
|
+
* The mocked response.
|
|
28028
28611
|
*
|
|
28029
28612
|
* @example
|
|
28030
28613
|
* test
|
|
@@ -28032,7 +28615,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28032
28615
|
mockResult?: string;
|
|
28033
28616
|
/**
|
|
28034
28617
|
* @remarks
|
|
28035
|
-
* The status code
|
|
28618
|
+
* The status code in the mocked response.
|
|
28036
28619
|
*
|
|
28037
28620
|
* @example
|
|
28038
28621
|
* 200
|
|
@@ -28126,7 +28709,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28126
28709
|
vpcScheme?: string;
|
|
28127
28710
|
/**
|
|
28128
28711
|
* @remarks
|
|
28129
|
-
* The host of the backend service.
|
|
28712
|
+
* The host of the VPC backend service.
|
|
28130
28713
|
*
|
|
28131
28714
|
* @example
|
|
28132
28715
|
* openapi.alipan.com
|
|
@@ -28145,9 +28728,13 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28145
28728
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig extends $tea.Model {
|
|
28146
28729
|
/**
|
|
28147
28730
|
* @remarks
|
|
28148
|
-
* The information about the backend service
|
|
28731
|
+
* The information about the backend service when the backend service is of the Service Discovery type.
|
|
28149
28732
|
*/
|
|
28150
28733
|
discoveryConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfig;
|
|
28734
|
+
/**
|
|
28735
|
+
* @remarks
|
|
28736
|
+
* The EDAS configuration.
|
|
28737
|
+
*/
|
|
28151
28738
|
edasConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEdasConfig;
|
|
28152
28739
|
/**
|
|
28153
28740
|
* @remarks
|
|
@@ -28161,7 +28748,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28161
28748
|
functionComputeConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig;
|
|
28162
28749
|
/**
|
|
28163
28750
|
* @remarks
|
|
28164
|
-
* The host of the backend service.
|
|
28751
|
+
* The host of the HTTP backend service.
|
|
28165
28752
|
*
|
|
28166
28753
|
* @example
|
|
28167
28754
|
* www.host.com
|
|
@@ -28169,7 +28756,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28169
28756
|
httpTargetHostName?: string;
|
|
28170
28757
|
/**
|
|
28171
28758
|
* @remarks
|
|
28172
|
-
* The information about the backend service
|
|
28759
|
+
* The information about the backend service when the backend service is of the Mock type.
|
|
28173
28760
|
*/
|
|
28174
28761
|
mockConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig;
|
|
28175
28762
|
/**
|
|
@@ -28186,6 +28773,9 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28186
28773
|
*/
|
|
28187
28774
|
serviceAddress?: string;
|
|
28188
28775
|
/**
|
|
28776
|
+
* @remarks
|
|
28777
|
+
* The timeout period of the backend service, in millisecond.
|
|
28778
|
+
*
|
|
28189
28779
|
* @example
|
|
28190
28780
|
* 10000
|
|
28191
28781
|
*/
|
|
@@ -28200,7 +28790,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
28200
28790
|
type?: string;
|
|
28201
28791
|
/**
|
|
28202
28792
|
* @remarks
|
|
28203
|
-
* The information about the
|
|
28793
|
+
* The information about the backend service when the backend service is of the VPC type.
|
|
28204
28794
|
*/
|
|
28205
28795
|
vpcConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigVpcConfig;
|
|
28206
28796
|
static names(): {
|
|
@@ -28651,7 +29241,7 @@ export declare class DescribeDatasetItemListResponseBodyDatasetItemInfoList exte
|
|
|
28651
29241
|
export declare class DescribeDatasetListRequestTag extends $tea.Model {
|
|
28652
29242
|
/**
|
|
28653
29243
|
* @remarks
|
|
28654
|
-
*
|
|
29244
|
+
* The tag key.
|
|
28655
29245
|
*
|
|
28656
29246
|
* @example
|
|
28657
29247
|
* env
|
|
@@ -28659,7 +29249,7 @@ export declare class DescribeDatasetListRequestTag extends $tea.Model {
|
|
|
28659
29249
|
key?: string;
|
|
28660
29250
|
/**
|
|
28661
29251
|
* @remarks
|
|
28662
|
-
*
|
|
29252
|
+
* The value of the tag.
|
|
28663
29253
|
*
|
|
28664
29254
|
* @example
|
|
28665
29255
|
* value
|
|
@@ -28678,7 +29268,7 @@ export declare class DescribeDatasetListRequestTag extends $tea.Model {
|
|
|
28678
29268
|
export declare class DescribeDatasetListResponseBodyDatasetInfoListTags extends $tea.Model {
|
|
28679
29269
|
/**
|
|
28680
29270
|
* @remarks
|
|
28681
|
-
*
|
|
29271
|
+
* The tag key.
|
|
28682
29272
|
*
|
|
28683
29273
|
* @example
|
|
28684
29274
|
* ENV
|
|
@@ -28686,7 +29276,7 @@ export declare class DescribeDatasetListResponseBodyDatasetInfoListTags extends
|
|
|
28686
29276
|
key?: string;
|
|
28687
29277
|
/**
|
|
28688
29278
|
* @remarks
|
|
28689
|
-
*
|
|
29279
|
+
* The value of the tag.
|
|
28690
29280
|
*
|
|
28691
29281
|
* @example
|
|
28692
29282
|
* 123
|
|
@@ -28749,7 +29339,7 @@ export declare class DescribeDatasetListResponseBodyDatasetInfoList extends $tea
|
|
|
28749
29339
|
modifiedTime?: string;
|
|
28750
29340
|
/**
|
|
28751
29341
|
* @remarks
|
|
28752
|
-
*
|
|
29342
|
+
* The tags.
|
|
28753
29343
|
*/
|
|
28754
29344
|
tags?: DescribeDatasetListResponseBodyDatasetInfoListTags[];
|
|
28755
29345
|
static names(): {
|
|
@@ -29846,6 +30436,9 @@ export declare class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem
|
|
|
29846
30436
|
*/
|
|
29847
30437
|
apiId?: string;
|
|
29848
30438
|
/**
|
|
30439
|
+
* @remarks
|
|
30440
|
+
* The HTTP method of the API request.
|
|
30441
|
+
*
|
|
29849
30442
|
* @example
|
|
29850
30443
|
* POST
|
|
29851
30444
|
*/
|
|
@@ -29859,6 +30452,9 @@ export declare class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem
|
|
|
29859
30452
|
*/
|
|
29860
30453
|
apiName?: string;
|
|
29861
30454
|
/**
|
|
30455
|
+
* @remarks
|
|
30456
|
+
* The request path of the API.
|
|
30457
|
+
*
|
|
29862
30458
|
* @example
|
|
29863
30459
|
* /trademark/search
|
|
29864
30460
|
*/
|
|
@@ -31138,6 +31734,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInst
|
|
|
31138
31734
|
/**
|
|
31139
31735
|
* @remarks
|
|
31140
31736
|
* The variable name.
|
|
31737
|
+
*
|
|
31738
|
+
* @example
|
|
31739
|
+
* SLA
|
|
31141
31740
|
*/
|
|
31142
31741
|
localName?: string;
|
|
31143
31742
|
/**
|
|
@@ -31145,7 +31744,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInst
|
|
|
31145
31744
|
* The variable value.
|
|
31146
31745
|
*
|
|
31147
31746
|
* @example
|
|
31148
|
-
*
|
|
31747
|
+
* 99.95%
|
|
31149
31748
|
*/
|
|
31150
31749
|
value?: string;
|
|
31151
31750
|
static names(): {
|
|
@@ -31238,7 +31837,21 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttributePriv
|
|
|
31238
31837
|
});
|
|
31239
31838
|
}
|
|
31240
31839
|
export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeTagsTagInfo extends $tea.Model {
|
|
31840
|
+
/**
|
|
31841
|
+
* @remarks
|
|
31842
|
+
* The tag key of the instance.
|
|
31843
|
+
*
|
|
31844
|
+
* @example
|
|
31845
|
+
* Cookie
|
|
31846
|
+
*/
|
|
31241
31847
|
key?: string;
|
|
31848
|
+
/**
|
|
31849
|
+
* @remarks
|
|
31850
|
+
* The tag value of the instance.
|
|
31851
|
+
*
|
|
31852
|
+
* @example
|
|
31853
|
+
* 240
|
|
31854
|
+
*/
|
|
31242
31855
|
value?: string;
|
|
31243
31856
|
static names(): {
|
|
31244
31857
|
[key: string]: string;
|
|
@@ -31521,6 +32134,18 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
31521
32134
|
* The network information of the user\\"s VPC if the instance is a VPC integration instance.
|
|
31522
32135
|
*/
|
|
31523
32136
|
networkInterfaceAttributes?: DescribeInstancesResponseBodyInstancesInstanceAttributeNetworkInterfaceAttributes;
|
|
32137
|
+
/**
|
|
32138
|
+
* @remarks
|
|
32139
|
+
* The new VPC egress CIDR block.
|
|
32140
|
+
*
|
|
32141
|
+
* @example
|
|
32142
|
+
* 100.104.253.0/26
|
|
32143
|
+
*/
|
|
32144
|
+
newVpcEgressAddress?: string;
|
|
32145
|
+
/**
|
|
32146
|
+
* @remarks
|
|
32147
|
+
* The private DNS list.
|
|
32148
|
+
*/
|
|
31524
32149
|
privateDnsList?: DescribeInstancesResponseBodyInstancesInstanceAttributePrivateDnsList;
|
|
31525
32150
|
/**
|
|
31526
32151
|
* @remarks
|
|
@@ -31546,6 +32171,10 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
31546
32171
|
* true
|
|
31547
32172
|
*/
|
|
31548
32173
|
supportIpv6?: boolean;
|
|
32174
|
+
/**
|
|
32175
|
+
* @remarks
|
|
32176
|
+
* The tags of the instance.
|
|
32177
|
+
*/
|
|
31549
32178
|
tags?: DescribeInstancesResponseBodyInstancesInstanceAttributeTags;
|
|
31550
32179
|
/**
|
|
31551
32180
|
* @remarks
|
|
@@ -31606,6 +32235,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
31606
32235
|
/**
|
|
31607
32236
|
* @remarks
|
|
31608
32237
|
* The zone.
|
|
32238
|
+
*
|
|
32239
|
+
* @example
|
|
32240
|
+
* Multi-Availability Zone 3(b,c,a)
|
|
31609
32241
|
*/
|
|
31610
32242
|
zoneLocalName?: string;
|
|
31611
32243
|
static names(): {
|
|
@@ -31774,21 +32406,33 @@ export declare class DescribeIpControlsResponseBodyIpControlInfos extends $tea.M
|
|
|
31774
32406
|
}
|
|
31775
32407
|
export declare class DescribeLogConfigResponseBodyLogInfosLogInfo extends $tea.Model {
|
|
31776
32408
|
/**
|
|
32409
|
+
* @remarks
|
|
32410
|
+
* The log type.
|
|
32411
|
+
*
|
|
31777
32412
|
* @example
|
|
31778
32413
|
* PROVIDER
|
|
31779
32414
|
*/
|
|
31780
32415
|
logType?: string;
|
|
31781
32416
|
/**
|
|
32417
|
+
* @remarks
|
|
32418
|
+
* The region ID of the Logstore.
|
|
32419
|
+
*
|
|
31782
32420
|
* @example
|
|
31783
32421
|
* cn-hangzhou
|
|
31784
32422
|
*/
|
|
31785
32423
|
regionId?: string;
|
|
31786
32424
|
/**
|
|
32425
|
+
* @remarks
|
|
32426
|
+
* The name of the Logstore in Log Service.
|
|
32427
|
+
*
|
|
31787
32428
|
* @example
|
|
31788
32429
|
* slsstore
|
|
31789
32430
|
*/
|
|
31790
32431
|
slsLogStore?: string;
|
|
31791
32432
|
/**
|
|
32433
|
+
* @remarks
|
|
32434
|
+
* The name of the Log Service project.
|
|
32435
|
+
*
|
|
31792
32436
|
* @example
|
|
31793
32437
|
* slsproject
|
|
31794
32438
|
*/
|
|
@@ -33966,7 +34610,7 @@ export declare class ImportOASResponseBodyWarningMessages extends $tea.Model {
|
|
|
33966
34610
|
export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed extends $tea.Model {
|
|
33967
34611
|
/**
|
|
33968
34612
|
* @remarks
|
|
33969
|
-
* The error message returned.
|
|
34613
|
+
* The error message returned when the API is created.
|
|
33970
34614
|
*
|
|
33971
34615
|
* @example
|
|
33972
34616
|
* api already exists : apiUid ===> 8e274ec61cf6468e83b68371956831cb
|
|
@@ -33974,7 +34618,7 @@ export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed exten
|
|
|
33974
34618
|
errorMsg?: string;
|
|
33975
34619
|
/**
|
|
33976
34620
|
* @remarks
|
|
33977
|
-
* The HTTP method
|
|
34621
|
+
* The HTTP method configured when the API is created.
|
|
33978
34622
|
*
|
|
33979
34623
|
* @example
|
|
33980
34624
|
* post
|
|
@@ -33982,7 +34626,7 @@ export declare class ImportSwaggerResponseBodyFailedApiImportSwaggerFailed exten
|
|
|
33982
34626
|
httpMethod?: string;
|
|
33983
34627
|
/**
|
|
33984
34628
|
* @remarks
|
|
33985
|
-
* The request path
|
|
34629
|
+
* The request path configured when the API is created.
|
|
33986
34630
|
*
|
|
33987
34631
|
* @example
|
|
33988
34632
|
* /http/get/mapping
|
|
@@ -34076,7 +34720,10 @@ export declare class ImportSwaggerResponseBodyModelSuccessApiImportModelSuccess
|
|
|
34076
34720
|
modelName?: string;
|
|
34077
34721
|
/**
|
|
34078
34722
|
* @remarks
|
|
34079
|
-
* The model operation
|
|
34723
|
+
* The model operation
|
|
34724
|
+
*
|
|
34725
|
+
* @example
|
|
34726
|
+
* CREATE
|
|
34080
34727
|
*/
|
|
34081
34728
|
modelOperation?: string;
|
|
34082
34729
|
/**
|
|
@@ -34112,7 +34759,7 @@ export declare class ImportSwaggerResponseBodyModelSuccess extends $tea.Model {
|
|
|
34112
34759
|
export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess extends $tea.Model {
|
|
34113
34760
|
/**
|
|
34114
34761
|
* @remarks
|
|
34115
|
-
* Specifies
|
|
34762
|
+
* Specifies whether the operation is CREATE or MODIFY.
|
|
34116
34763
|
*
|
|
34117
34764
|
* @example
|
|
34118
34765
|
* CREATE
|
|
@@ -34120,7 +34767,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
|
|
|
34120
34767
|
apiOperation?: string;
|
|
34121
34768
|
/**
|
|
34122
34769
|
* @remarks
|
|
34123
|
-
* The UID of the imported API.
|
|
34770
|
+
* The UID of the successfully imported API.
|
|
34124
34771
|
*
|
|
34125
34772
|
* @example
|
|
34126
34773
|
* 8e274ec61cf6468e83b68371956831cb
|
|
@@ -34128,7 +34775,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
|
|
|
34128
34775
|
apiUid?: string;
|
|
34129
34776
|
/**
|
|
34130
34777
|
* @remarks
|
|
34131
|
-
* The HTTP method
|
|
34778
|
+
* The HTTP method configured when the API is created.
|
|
34132
34779
|
*
|
|
34133
34780
|
* @example
|
|
34134
34781
|
* get
|
|
@@ -34136,7 +34783,7 @@ export declare class ImportSwaggerResponseBodySuccessApiImportSwaggerSuccess ext
|
|
|
34136
34783
|
httpMethod?: string;
|
|
34137
34784
|
/**
|
|
34138
34785
|
* @remarks
|
|
34139
|
-
* The request path
|
|
34786
|
+
* The request path configured when the API is created.
|
|
34140
34787
|
*
|
|
34141
34788
|
* @example
|
|
34142
34789
|
* /http/get/mapping
|
|
@@ -34166,11 +34813,17 @@ export declare class ImportSwaggerResponseBodySuccess extends $tea.Model {
|
|
|
34166
34813
|
}
|
|
34167
34814
|
export declare class ListPrivateDNSResponseBodyPrivateDNSListRecords extends $tea.Model {
|
|
34168
34815
|
/**
|
|
34816
|
+
* @remarks
|
|
34817
|
+
* The resolution record.
|
|
34818
|
+
*
|
|
34169
34819
|
* @example
|
|
34170
34820
|
* 192.168.0.1
|
|
34171
34821
|
*/
|
|
34172
34822
|
record?: string;
|
|
34173
34823
|
/**
|
|
34824
|
+
* @remarks
|
|
34825
|
+
* The weight of the record.
|
|
34826
|
+
*
|
|
34174
34827
|
* @example
|
|
34175
34828
|
* 100
|
|
34176
34829
|
*/
|
|
@@ -34186,19 +34839,39 @@ export declare class ListPrivateDNSResponseBodyPrivateDNSListRecords extends $te
|
|
|
34186
34839
|
});
|
|
34187
34840
|
}
|
|
34188
34841
|
export declare class ListPrivateDNSResponseBodyPrivateDNSList extends $tea.Model {
|
|
34842
|
+
/**
|
|
34843
|
+
* @remarks
|
|
34844
|
+
* The instances that are associated with the resolution.
|
|
34845
|
+
*/
|
|
34189
34846
|
bindInstances?: string[];
|
|
34190
34847
|
/**
|
|
34848
|
+
* @remarks
|
|
34849
|
+
* The time when the resolution was created. The time is displayed in UTC.
|
|
34850
|
+
*
|
|
34191
34851
|
* @example
|
|
34192
34852
|
* 2023-05-10T08:17:00Z
|
|
34193
34853
|
*/
|
|
34194
34854
|
createdTime?: string;
|
|
34195
34855
|
/**
|
|
34856
|
+
* @remarks
|
|
34857
|
+
* The internal domain name.
|
|
34858
|
+
*
|
|
34196
34859
|
* @example
|
|
34197
34860
|
* api.demo.com
|
|
34198
34861
|
*/
|
|
34199
34862
|
intranetDomain?: string;
|
|
34863
|
+
/**
|
|
34864
|
+
* @remarks
|
|
34865
|
+
* The resolution records.
|
|
34866
|
+
*/
|
|
34200
34867
|
records?: ListPrivateDNSResponseBodyPrivateDNSListRecords[];
|
|
34201
34868
|
/**
|
|
34869
|
+
* @remarks
|
|
34870
|
+
* The internal domain name resolution type. Valid values:
|
|
34871
|
+
*
|
|
34872
|
+
* * VPC: resolution for VPC access authorizations. A resolution of this type can be bound only to traditional dedicated instances.
|
|
34873
|
+
* * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances.
|
|
34874
|
+
*
|
|
34202
34875
|
* @example
|
|
34203
34876
|
* A
|
|
34204
34877
|
*/
|
|
@@ -34333,6 +35006,8 @@ export declare class ModifyApiGroupRequestTag extends $tea.Model {
|
|
|
34333
35006
|
export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
|
|
34334
35007
|
/**
|
|
34335
35008
|
* @remarks
|
|
35009
|
+
* The tag key.
|
|
35010
|
+
*
|
|
34336
35011
|
* This parameter is required.
|
|
34337
35012
|
*
|
|
34338
35013
|
* @example
|
|
@@ -34341,6 +35016,8 @@ export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
|
|
|
34341
35016
|
key?: string;
|
|
34342
35017
|
/**
|
|
34343
35018
|
* @remarks
|
|
35019
|
+
* The tag value.
|
|
35020
|
+
*
|
|
34344
35021
|
* This parameter is required.
|
|
34345
35022
|
*
|
|
34346
35023
|
* @example
|
|
@@ -34360,9 +35037,9 @@ export declare class ModifyApiGroupInstanceRequestTag extends $tea.Model {
|
|
|
34360
35037
|
export declare class ModifyAppRequestTag extends $tea.Model {
|
|
34361
35038
|
/**
|
|
34362
35039
|
* @remarks
|
|
34363
|
-
* The
|
|
35040
|
+
* The value of the tag.
|
|
34364
35041
|
*
|
|
34365
|
-
*
|
|
35042
|
+
* N can be an integer from 1 to 20.``
|
|
34366
35043
|
*
|
|
34367
35044
|
* This parameter is required.
|
|
34368
35045
|
*
|
|
@@ -34374,7 +35051,7 @@ export declare class ModifyAppRequestTag extends $tea.Model {
|
|
|
34374
35051
|
* @remarks
|
|
34375
35052
|
* The value of the tag.
|
|
34376
35053
|
*
|
|
34377
|
-
*
|
|
35054
|
+
* N can be an integer from 1 to 20.``
|
|
34378
35055
|
*
|
|
34379
35056
|
* @example
|
|
34380
35057
|
* value
|
|
@@ -34496,21 +35173,33 @@ export declare class QueryRequestLogsResponseBodyRequestLogsRequestLog extends $
|
|
|
34496
35173
|
/**
|
|
34497
35174
|
* @remarks
|
|
34498
35175
|
* The time when API Gateway finished forwarding the request to the backend service.
|
|
35176
|
+
*
|
|
35177
|
+
* @example
|
|
35178
|
+
* 1731487224969
|
|
34499
35179
|
*/
|
|
34500
35180
|
backendRequestEnd?: number;
|
|
34501
35181
|
/**
|
|
34502
35182
|
* @remarks
|
|
34503
35183
|
* The time when API Gateway started to forward the request to the backend service.
|
|
35184
|
+
*
|
|
35185
|
+
* @example
|
|
35186
|
+
* 1731487224969
|
|
34504
35187
|
*/
|
|
34505
35188
|
backendRequestStart?: number;
|
|
34506
35189
|
/**
|
|
34507
35190
|
* @remarks
|
|
34508
35191
|
* The time when API Gateway finished receiving the response from the backend service.
|
|
35192
|
+
*
|
|
35193
|
+
* @example
|
|
35194
|
+
* 1731487224989
|
|
34509
35195
|
*/
|
|
34510
35196
|
backendResponseEnd?: number;
|
|
34511
35197
|
/**
|
|
34512
35198
|
* @remarks
|
|
34513
35199
|
* The time when API Gateway started to receive the response from the backend service.
|
|
35200
|
+
*
|
|
35201
|
+
* @example
|
|
35202
|
+
* 1731487224989
|
|
34514
35203
|
*/
|
|
34515
35204
|
backendResponseStart?: number;
|
|
34516
35205
|
/**
|
|
@@ -34588,21 +35277,33 @@ export declare class QueryRequestLogsResponseBodyRequestLogsRequestLog extends $
|
|
|
34588
35277
|
/**
|
|
34589
35278
|
* @remarks
|
|
34590
35279
|
* The time when API Gateway finished receiving the request.
|
|
35280
|
+
*
|
|
35281
|
+
* @example
|
|
35282
|
+
* 1731487224968
|
|
34591
35283
|
*/
|
|
34592
35284
|
frontRequestEnd?: number;
|
|
34593
35285
|
/**
|
|
34594
35286
|
* @remarks
|
|
34595
35287
|
* The time when API Gateway started to receive the request.
|
|
35288
|
+
*
|
|
35289
|
+
* @example
|
|
35290
|
+
* 1731487224968
|
|
34596
35291
|
*/
|
|
34597
35292
|
frontRequestStart?: number;
|
|
34598
35293
|
/**
|
|
34599
35294
|
* @remarks
|
|
34600
35295
|
* The time when API Gateway finished forwarding the response to the client.
|
|
35296
|
+
*
|
|
35297
|
+
* @example
|
|
35298
|
+
* 1731487224989
|
|
34601
35299
|
*/
|
|
34602
35300
|
frontResponseEnd?: number;
|
|
34603
35301
|
/**
|
|
34604
35302
|
* @remarks
|
|
34605
35303
|
* The time when API Gateway started to forward the response to the client.
|
|
35304
|
+
*
|
|
35305
|
+
* @example
|
|
35306
|
+
* 1731487224989
|
|
34606
35307
|
*/
|
|
34607
35308
|
frontResponseStart?: number;
|
|
34608
35309
|
/**
|
|
@@ -34926,11 +35627,17 @@ export declare class TagResourcesRequestTag extends $tea.Model {
|
|
|
34926
35627
|
}
|
|
34927
35628
|
export declare class UpdatePrivateDNSRequestRecords extends $tea.Model {
|
|
34928
35629
|
/**
|
|
35630
|
+
* @remarks
|
|
35631
|
+
* The resolution record.
|
|
35632
|
+
*
|
|
34929
35633
|
* @example
|
|
34930
35634
|
* 192.168.0.2
|
|
34931
35635
|
*/
|
|
34932
35636
|
record?: string;
|
|
34933
35637
|
/**
|
|
35638
|
+
* @remarks
|
|
35639
|
+
* The weight of the record.
|
|
35640
|
+
*
|
|
34934
35641
|
* @example
|
|
34935
35642
|
* 100
|
|
34936
35643
|
*/
|
|
@@ -35043,7 +35750,10 @@ export default class Client extends OpenApi {
|
|
|
35043
35750
|
*/
|
|
35044
35751
|
addTrafficSpecialControl(request: AddTrafficSpecialControlRequest): Promise<AddTrafficSpecialControlResponse>;
|
|
35045
35752
|
/**
|
|
35046
|
-
*
|
|
35753
|
+
* Associates an internal domain name resolution with a dedicated instance.
|
|
35754
|
+
*
|
|
35755
|
+
* @remarks
|
|
35756
|
+
* An internal domain name resolution can be associated only with a dedicated instance, not with a shared instance or shared instance cluster.
|
|
35047
35757
|
*
|
|
35048
35758
|
* @param tmpReq - AssociateInstanceWithPrivateDNSRequest
|
|
35049
35759
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35051,7 +35761,10 @@ export default class Client extends OpenApi {
|
|
|
35051
35761
|
*/
|
|
35052
35762
|
associateInstanceWithPrivateDNSWithOptions(tmpReq: AssociateInstanceWithPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<AssociateInstanceWithPrivateDNSResponse>;
|
|
35053
35763
|
/**
|
|
35054
|
-
*
|
|
35764
|
+
* Associates an internal domain name resolution with a dedicated instance.
|
|
35765
|
+
*
|
|
35766
|
+
* @remarks
|
|
35767
|
+
* An internal domain name resolution can be associated only with a dedicated instance, not with a shared instance or shared instance cluster.
|
|
35055
35768
|
*
|
|
35056
35769
|
* @param request - AssociateInstanceWithPrivateDNSRequest
|
|
35057
35770
|
* @returns AssociateInstanceWithPrivateDNSResponse
|
|
@@ -35172,12 +35885,16 @@ export default class Client extends OpenApi {
|
|
|
35172
35885
|
*/
|
|
35173
35886
|
createApi(request: CreateApiRequest): Promise<CreateApiResponse>;
|
|
35174
35887
|
/**
|
|
35888
|
+
* 创建API分组
|
|
35889
|
+
*
|
|
35175
35890
|
* @param request - CreateApiGroupRequest
|
|
35176
35891
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
35177
35892
|
* @returns CreateApiGroupResponse
|
|
35178
35893
|
*/
|
|
35179
35894
|
createApiGroupWithOptions(request: CreateApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiGroupResponse>;
|
|
35180
35895
|
/**
|
|
35896
|
+
* 创建API分组
|
|
35897
|
+
*
|
|
35181
35898
|
* @param request - CreateApiGroupRequest
|
|
35182
35899
|
* @returns CreateApiGroupResponse
|
|
35183
35900
|
*/
|
|
@@ -35340,12 +36057,16 @@ export default class Client extends OpenApi {
|
|
|
35340
36057
|
*/
|
|
35341
36058
|
createInstance(request: CreateInstanceRequest): Promise<CreateInstanceResponse>;
|
|
35342
36059
|
/**
|
|
36060
|
+
* 创建内网域名
|
|
36061
|
+
*
|
|
35343
36062
|
* @param request - CreateIntranetDomainRequest
|
|
35344
36063
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
35345
36064
|
* @returns CreateIntranetDomainResponse
|
|
35346
36065
|
*/
|
|
35347
36066
|
createIntranetDomainWithOptions(request: CreateIntranetDomainRequest, runtime: $Util.RuntimeOptions): Promise<CreateIntranetDomainResponse>;
|
|
35348
36067
|
/**
|
|
36068
|
+
* 创建内网域名
|
|
36069
|
+
*
|
|
35349
36070
|
* @param request - CreateIntranetDomainRequest
|
|
35350
36071
|
* @returns CreateIntranetDomainResponse
|
|
35351
36072
|
*/
|
|
@@ -35378,12 +36099,16 @@ export default class Client extends OpenApi {
|
|
|
35378
36099
|
*/
|
|
35379
36100
|
createIpControl(request: CreateIpControlRequest): Promise<CreateIpControlResponse>;
|
|
35380
36101
|
/**
|
|
36102
|
+
* Creates a Simple Log Service configuration for an API.
|
|
36103
|
+
*
|
|
35381
36104
|
* @param request - CreateLogConfigRequest
|
|
35382
36105
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
35383
36106
|
* @returns CreateLogConfigResponse
|
|
35384
36107
|
*/
|
|
35385
36108
|
createLogConfigWithOptions(request: CreateLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<CreateLogConfigResponse>;
|
|
35386
36109
|
/**
|
|
36110
|
+
* Creates a Simple Log Service configuration for an API.
|
|
36111
|
+
*
|
|
35387
36112
|
* @param request - CreateLogConfigRequest
|
|
35388
36113
|
* @returns CreateLogConfigResponse
|
|
35389
36114
|
*/
|
|
@@ -35454,7 +36179,10 @@ export default class Client extends OpenApi {
|
|
|
35454
36179
|
*/
|
|
35455
36180
|
createPlugin(request: CreatePluginRequest): Promise<CreatePluginResponse>;
|
|
35456
36181
|
/**
|
|
35457
|
-
*
|
|
36182
|
+
* Creates an internal domain name resolution and adds a resolution record.
|
|
36183
|
+
*
|
|
36184
|
+
* @remarks
|
|
36185
|
+
* 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
36186
|
*
|
|
35459
36187
|
* @param tmpReq - CreatePrivateDNSRequest
|
|
35460
36188
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35462,7 +36190,10 @@ export default class Client extends OpenApi {
|
|
|
35462
36190
|
*/
|
|
35463
36191
|
createPrivateDNSWithOptions(tmpReq: CreatePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateDNSResponse>;
|
|
35464
36192
|
/**
|
|
35465
|
-
*
|
|
36193
|
+
* Creates an internal domain name resolution and adds a resolution record.
|
|
36194
|
+
*
|
|
36195
|
+
* @remarks
|
|
36196
|
+
* 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
36197
|
*
|
|
35467
36198
|
* @param request - CreatePrivateDNSRequest
|
|
35468
36199
|
* @returns CreatePrivateDNSResponse
|
|
@@ -35910,7 +36641,7 @@ export default class Client extends OpenApi {
|
|
|
35910
36641
|
*/
|
|
35911
36642
|
deletePlugin(request: DeletePluginRequest): Promise<DeletePluginResponse>;
|
|
35912
36643
|
/**
|
|
35913
|
-
*
|
|
36644
|
+
* Deletes an internal domain name resolution.
|
|
35914
36645
|
*
|
|
35915
36646
|
* @param request - DeletePrivateDNSRequest
|
|
35916
36647
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35918,7 +36649,7 @@ export default class Client extends OpenApi {
|
|
|
35918
36649
|
*/
|
|
35919
36650
|
deletePrivateDNSWithOptions(request: DeletePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateDNSResponse>;
|
|
35920
36651
|
/**
|
|
35921
|
-
*
|
|
36652
|
+
* Deletes an internal domain name resolution.
|
|
35922
36653
|
*
|
|
35923
36654
|
* @param request - DeletePrivateDNSRequest
|
|
35924
36655
|
* @returns DeletePrivateDNSResponse
|
|
@@ -36025,12 +36756,16 @@ export default class Client extends OpenApi {
|
|
|
36025
36756
|
*/
|
|
36026
36757
|
deployApi(request: DeployApiRequest): Promise<DeployApiResponse>;
|
|
36027
36758
|
/**
|
|
36759
|
+
* 查询批量下线API任务
|
|
36760
|
+
*
|
|
36028
36761
|
* @param request - DescribeAbolishApiTaskRequest
|
|
36029
36762
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
36030
36763
|
* @returns DescribeAbolishApiTaskResponse
|
|
36031
36764
|
*/
|
|
36032
36765
|
describeAbolishApiTaskWithOptions(request: DescribeAbolishApiTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAbolishApiTaskResponse>;
|
|
36033
36766
|
/**
|
|
36767
|
+
* 查询批量下线API任务
|
|
36768
|
+
*
|
|
36034
36769
|
* @param request - DescribeAbolishApiTaskRequest
|
|
36035
36770
|
* @returns DescribeAbolishApiTaskResponse
|
|
36036
36771
|
*/
|
|
@@ -37181,12 +37916,16 @@ export default class Client extends OpenApi {
|
|
|
37181
37916
|
*/
|
|
37182
37917
|
describeIpControls(request: DescribeIpControlsRequest): Promise<DescribeIpControlsResponse>;
|
|
37183
37918
|
/**
|
|
37919
|
+
* 查询日志配置
|
|
37920
|
+
*
|
|
37184
37921
|
* @param request - DescribeLogConfigRequest
|
|
37185
37922
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37186
37923
|
* @returns DescribeLogConfigResponse
|
|
37187
37924
|
*/
|
|
37188
37925
|
describeLogConfigWithOptions(request: DescribeLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLogConfigResponse>;
|
|
37189
37926
|
/**
|
|
37927
|
+
* 查询日志配置
|
|
37928
|
+
*
|
|
37190
37929
|
* @param request - DescribeLogConfigRequest
|
|
37191
37930
|
* @returns DescribeLogConfigResponse
|
|
37192
37931
|
*/
|
|
@@ -37243,23 +37982,31 @@ export default class Client extends OpenApi {
|
|
|
37243
37982
|
*/
|
|
37244
37983
|
describePluginApis(request: DescribePluginApisRequest): Promise<DescribePluginApisResponse>;
|
|
37245
37984
|
/**
|
|
37985
|
+
* 查询插件列表
|
|
37986
|
+
*
|
|
37246
37987
|
* @param request - DescribePluginSchemasRequest
|
|
37247
37988
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37248
37989
|
* @returns DescribePluginSchemasResponse
|
|
37249
37990
|
*/
|
|
37250
37991
|
describePluginSchemasWithOptions(request: DescribePluginSchemasRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginSchemasResponse>;
|
|
37251
37992
|
/**
|
|
37993
|
+
* 查询插件列表
|
|
37994
|
+
*
|
|
37252
37995
|
* @param request - DescribePluginSchemasRequest
|
|
37253
37996
|
* @returns DescribePluginSchemasResponse
|
|
37254
37997
|
*/
|
|
37255
37998
|
describePluginSchemas(request: DescribePluginSchemasRequest): Promise<DescribePluginSchemasResponse>;
|
|
37256
37999
|
/**
|
|
38000
|
+
* 查询插件模板
|
|
38001
|
+
*
|
|
37257
38002
|
* @param request - DescribePluginTemplatesRequest
|
|
37258
38003
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37259
38004
|
* @returns DescribePluginTemplatesResponse
|
|
37260
38005
|
*/
|
|
37261
38006
|
describePluginTemplatesWithOptions(request: DescribePluginTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginTemplatesResponse>;
|
|
37262
38007
|
/**
|
|
38008
|
+
* 查询插件模板
|
|
38009
|
+
*
|
|
37263
38010
|
* @param request - DescribePluginTemplatesRequest
|
|
37264
38011
|
* @returns DescribePluginTemplatesResponse
|
|
37265
38012
|
*/
|
|
@@ -37526,12 +38273,16 @@ export default class Client extends OpenApi {
|
|
|
37526
38273
|
*/
|
|
37527
38274
|
describeUpdateBackendTask(request: DescribeUpdateBackendTaskRequest): Promise<DescribeUpdateBackendTaskResponse>;
|
|
37528
38275
|
/**
|
|
38276
|
+
* 查询更新VPC授权的任务
|
|
38277
|
+
*
|
|
37529
38278
|
* @param request - DescribeUpdateVpcInfoTaskRequest
|
|
37530
38279
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37531
38280
|
* @returns DescribeUpdateVpcInfoTaskResponse
|
|
37532
38281
|
*/
|
|
37533
38282
|
describeUpdateVpcInfoTaskWithOptions(request: DescribeUpdateVpcInfoTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUpdateVpcInfoTaskResponse>;
|
|
37534
38283
|
/**
|
|
38284
|
+
* 查询更新VPC授权的任务
|
|
38285
|
+
*
|
|
37535
38286
|
* @param request - DescribeUpdateVpcInfoTaskRequest
|
|
37536
38287
|
* @returns DescribeUpdateVpcInfoTaskResponse
|
|
37537
38288
|
*/
|
|
@@ -37612,7 +38363,7 @@ export default class Client extends OpenApi {
|
|
|
37612
38363
|
*/
|
|
37613
38364
|
disableInstanceAccessControl(request: DisableInstanceAccessControlRequest): Promise<DisableInstanceAccessControlResponse>;
|
|
37614
38365
|
/**
|
|
37615
|
-
*
|
|
38366
|
+
* Disassociates an internal domain name resolution from a dedicated instance.
|
|
37616
38367
|
*
|
|
37617
38368
|
* @param tmpReq - DissociateInstanceWithPrivateDNSRequest
|
|
37618
38369
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37620,7 +38371,7 @@ export default class Client extends OpenApi {
|
|
|
37620
38371
|
*/
|
|
37621
38372
|
dissociateInstanceWithPrivateDNSWithOptions(tmpReq: DissociateInstanceWithPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<DissociateInstanceWithPrivateDNSResponse>;
|
|
37622
38373
|
/**
|
|
37623
|
-
*
|
|
38374
|
+
* Disassociates an internal domain name resolution from a dedicated instance.
|
|
37624
38375
|
*
|
|
37625
38376
|
* @param request - DissociateInstanceWithPrivateDNSRequest
|
|
37626
38377
|
* @returns DissociateInstanceWithPrivateDNSResponse
|
|
@@ -37642,7 +38393,7 @@ export default class Client extends OpenApi {
|
|
|
37642
38393
|
*/
|
|
37643
38394
|
dryRunSwagger(request: DryRunSwaggerRequest): Promise<DryRunSwaggerResponse>;
|
|
37644
38395
|
/**
|
|
37645
|
-
*
|
|
38396
|
+
* This feature provides instance-level access control capabilities for dedicated API Gateway instances. Specifies the access control policy of an instance.
|
|
37646
38397
|
*
|
|
37647
38398
|
* @param request - EnableInstanceAccessControlRequest
|
|
37648
38399
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37650,7 +38401,7 @@ export default class Client extends OpenApi {
|
|
|
37650
38401
|
*/
|
|
37651
38402
|
enableInstanceAccessControlWithOptions(request: EnableInstanceAccessControlRequest, runtime: $Util.RuntimeOptions): Promise<EnableInstanceAccessControlResponse>;
|
|
37652
38403
|
/**
|
|
37653
|
-
*
|
|
38404
|
+
* This feature provides instance-level access control capabilities for dedicated API Gateway instances. Specifies the access control policy of an instance.
|
|
37654
38405
|
*
|
|
37655
38406
|
* @param request - EnableInstanceAccessControlRequest
|
|
37656
38407
|
* @returns EnableInstanceAccessControlResponse
|
|
@@ -37710,7 +38461,7 @@ export default class Client extends OpenApi {
|
|
|
37710
38461
|
*/
|
|
37711
38462
|
importSwagger(request: ImportSwaggerRequest): Promise<ImportSwaggerResponse>;
|
|
37712
38463
|
/**
|
|
37713
|
-
*
|
|
38464
|
+
* Queries internal domain name resolutions by domain name or resolution type.
|
|
37714
38465
|
*
|
|
37715
38466
|
* @param request - ListPrivateDNSRequest
|
|
37716
38467
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37718,7 +38469,7 @@ export default class Client extends OpenApi {
|
|
|
37718
38469
|
*/
|
|
37719
38470
|
listPrivateDNSWithOptions(request: ListPrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateDNSResponse>;
|
|
37720
38471
|
/**
|
|
37721
|
-
*
|
|
38472
|
+
* Queries internal domain name resolutions by domain name or resolution type.
|
|
37722
38473
|
*
|
|
37723
38474
|
* @param request - ListPrivateDNSRequest
|
|
37724
38475
|
* @returns ListPrivateDNSResponse
|
|
@@ -37829,12 +38580,16 @@ export default class Client extends OpenApi {
|
|
|
37829
38580
|
*/
|
|
37830
38581
|
modifyApiGroup(request: ModifyApiGroupRequest): Promise<ModifyApiGroupResponse>;
|
|
37831
38582
|
/**
|
|
38583
|
+
* 变更分组实例
|
|
38584
|
+
*
|
|
37832
38585
|
* @param request - ModifyApiGroupInstanceRequest
|
|
37833
38586
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
37834
38587
|
* @returns ModifyApiGroupInstanceResponse
|
|
37835
38588
|
*/
|
|
37836
38589
|
modifyApiGroupInstanceWithOptions(request: ModifyApiGroupInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupInstanceResponse>;
|
|
37837
38590
|
/**
|
|
38591
|
+
* 变更分组实例
|
|
38592
|
+
*
|
|
37838
38593
|
* @param request - ModifyApiGroupInstanceRequest
|
|
37839
38594
|
* @returns ModifyApiGroupInstanceResponse
|
|
37840
38595
|
*/
|
|
@@ -37870,12 +38625,12 @@ export default class Client extends OpenApi {
|
|
|
37870
38625
|
*/
|
|
37871
38626
|
modifyApiGroupVpcWhitelist(request: ModifyApiGroupVpcWhitelistRequest): Promise<ModifyApiGroupVpcWhitelistResponse>;
|
|
37872
38627
|
/**
|
|
37873
|
-
* Modifies a specified
|
|
38628
|
+
* Modifies a specified app.
|
|
37874
38629
|
*
|
|
37875
38630
|
* @remarks
|
|
37876
38631
|
* This operation is intended for API callers.
|
|
37877
|
-
* *
|
|
37878
|
-
* *
|
|
38632
|
+
* * 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.********
|
|
38633
|
+
* * The QPS limit on this operation is 50 per user.
|
|
37879
38634
|
*
|
|
37880
38635
|
* @param request - ModifyAppRequest
|
|
37881
38636
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37883,12 +38638,12 @@ export default class Client extends OpenApi {
|
|
|
37883
38638
|
*/
|
|
37884
38639
|
modifyAppWithOptions(request: ModifyAppRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAppResponse>;
|
|
37885
38640
|
/**
|
|
37886
|
-
* Modifies a specified
|
|
38641
|
+
* Modifies a specified app.
|
|
37887
38642
|
*
|
|
37888
38643
|
* @remarks
|
|
37889
38644
|
* This operation is intended for API callers.
|
|
37890
|
-
* *
|
|
37891
|
-
* *
|
|
38645
|
+
* * 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.********
|
|
38646
|
+
* * The QPS limit on this operation is 50 per user.
|
|
37892
38647
|
*
|
|
37893
38648
|
* @param request - ModifyAppRequest
|
|
37894
38649
|
* @returns ModifyAppResponse
|
|
@@ -37955,7 +38710,7 @@ export default class Client extends OpenApi {
|
|
|
37955
38710
|
*/
|
|
37956
38711
|
modifyDatasetItem(request: ModifyDatasetItemRequest): Promise<ModifyDatasetItemResponse>;
|
|
37957
38712
|
/**
|
|
37958
|
-
*
|
|
38713
|
+
* Modifies the properties of an API Gateway instance.
|
|
37959
38714
|
*
|
|
37960
38715
|
* @param tmpReq - ModifyInstanceAttributeRequest
|
|
37961
38716
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -37963,7 +38718,7 @@ export default class Client extends OpenApi {
|
|
|
37963
38718
|
*/
|
|
37964
38719
|
modifyInstanceAttributeWithOptions(tmpReq: ModifyInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceAttributeResponse>;
|
|
37965
38720
|
/**
|
|
37966
|
-
*
|
|
38721
|
+
* Modifies the properties of an API Gateway instance.
|
|
37967
38722
|
*
|
|
37968
38723
|
* @param request - ModifyInstanceAttributeRequest
|
|
37969
38724
|
* @returns ModifyInstanceAttributeResponse
|
|
@@ -37984,6 +38739,21 @@ export default class Client extends OpenApi {
|
|
|
37984
38739
|
* @returns ModifyInstanceSpecResponse
|
|
37985
38740
|
*/
|
|
37986
38741
|
modifyInstanceSpec(request: ModifyInstanceSpecRequest): Promise<ModifyInstanceSpecResponse>;
|
|
38742
|
+
/**
|
|
38743
|
+
* Modify instance client VPC config.
|
|
38744
|
+
*
|
|
38745
|
+
* @param request - ModifyInstanceVpcAttributeForConsoleRequest
|
|
38746
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
38747
|
+
* @returns ModifyInstanceVpcAttributeForConsoleResponse
|
|
38748
|
+
*/
|
|
38749
|
+
modifyInstanceVpcAttributeForConsoleWithOptions(request: ModifyInstanceVpcAttributeForConsoleRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceVpcAttributeForConsoleResponse>;
|
|
38750
|
+
/**
|
|
38751
|
+
* Modify instance client VPC config.
|
|
38752
|
+
*
|
|
38753
|
+
* @param request - ModifyInstanceVpcAttributeForConsoleRequest
|
|
38754
|
+
* @returns ModifyInstanceVpcAttributeForConsoleResponse
|
|
38755
|
+
*/
|
|
38756
|
+
modifyInstanceVpcAttributeForConsole(request: ModifyInstanceVpcAttributeForConsoleRequest): Promise<ModifyInstanceVpcAttributeForConsoleResponse>;
|
|
37987
38757
|
/**
|
|
37988
38758
|
* Modifies the VPC domain name policy of an API group.
|
|
37989
38759
|
*
|
|
@@ -38048,12 +38818,16 @@ export default class Client extends OpenApi {
|
|
|
38048
38818
|
*/
|
|
38049
38819
|
modifyIpControlPolicyItem(request: ModifyIpControlPolicyItemRequest): Promise<ModifyIpControlPolicyItemResponse>;
|
|
38050
38820
|
/**
|
|
38821
|
+
* 修改日志配置
|
|
38822
|
+
*
|
|
38051
38823
|
* @param request - ModifyLogConfigRequest
|
|
38052
38824
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38053
38825
|
* @returns ModifyLogConfigResponse
|
|
38054
38826
|
*/
|
|
38055
38827
|
modifyLogConfigWithOptions(request: ModifyLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLogConfigResponse>;
|
|
38056
38828
|
/**
|
|
38829
|
+
* 修改日志配置
|
|
38830
|
+
*
|
|
38057
38831
|
* @param request - ModifyLogConfigRequest
|
|
38058
38832
|
* @returns ModifyLogConfigResponse
|
|
38059
38833
|
*/
|
|
@@ -38164,12 +38938,15 @@ export default class Client extends OpenApi {
|
|
|
38164
38938
|
*/
|
|
38165
38939
|
modifyVpcAccessAndUpdateApis(request: ModifyVpcAccessAndUpdateApisRequest): Promise<ModifyVpcAccessAndUpdateApisResponse>;
|
|
38166
38940
|
/**
|
|
38941
|
+
* 开通API网关服务
|
|
38942
|
+
*
|
|
38167
38943
|
* @param request - OpenApiGatewayServiceRequest
|
|
38168
38944
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38169
38945
|
* @returns OpenApiGatewayServiceResponse
|
|
38170
38946
|
*/
|
|
38171
38947
|
openApiGatewayServiceWithOptions(runtime: $Util.RuntimeOptions): Promise<OpenApiGatewayServiceResponse>;
|
|
38172
38948
|
/**
|
|
38949
|
+
* 开通API网关服务
|
|
38173
38950
|
* @returns OpenApiGatewayServiceResponse
|
|
38174
38951
|
*/
|
|
38175
38952
|
openApiGatewayService(): Promise<OpenApiGatewayServiceResponse>;
|
|
@@ -38407,12 +39184,16 @@ export default class Client extends OpenApi {
|
|
|
38407
39184
|
*/
|
|
38408
39185
|
removeVpcAccess(request: RemoveVpcAccessRequest): Promise<RemoveVpcAccessResponse>;
|
|
38409
39186
|
/**
|
|
39187
|
+
* 删除VPC授权并下线关联API
|
|
39188
|
+
*
|
|
38410
39189
|
* @param request - RemoveVpcAccessAndAbolishApisRequest
|
|
38411
39190
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38412
39191
|
* @returns RemoveVpcAccessAndAbolishApisResponse
|
|
38413
39192
|
*/
|
|
38414
39193
|
removeVpcAccessAndAbolishApisWithOptions(request: RemoveVpcAccessAndAbolishApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVpcAccessAndAbolishApisResponse>;
|
|
38415
39194
|
/**
|
|
39195
|
+
* 删除VPC授权并下线关联API
|
|
39196
|
+
*
|
|
38416
39197
|
* @param request - RemoveVpcAccessAndAbolishApisRequest
|
|
38417
39198
|
* @returns RemoveVpcAccessAndAbolishApisResponse
|
|
38418
39199
|
*/
|
|
@@ -38458,12 +39239,16 @@ export default class Client extends OpenApi {
|
|
|
38458
39239
|
*/
|
|
38459
39240
|
resetAppSecret(request: ResetAppSecretRequest): Promise<ResetAppSecretResponse>;
|
|
38460
39241
|
/**
|
|
39242
|
+
* 根据APP生成SDK
|
|
39243
|
+
*
|
|
38461
39244
|
* @param request - SdkGenerateByAppRequest
|
|
38462
39245
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38463
39246
|
* @returns SdkGenerateByAppResponse
|
|
38464
39247
|
*/
|
|
38465
39248
|
sdkGenerateByAppWithOptions(request: SdkGenerateByAppRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByAppResponse>;
|
|
38466
39249
|
/**
|
|
39250
|
+
* 根据APP生成SDK
|
|
39251
|
+
*
|
|
38467
39252
|
* @param request - SdkGenerateByAppRequest
|
|
38468
39253
|
* @returns SdkGenerateByAppResponse
|
|
38469
39254
|
*/
|
|
@@ -38484,12 +39269,16 @@ export default class Client extends OpenApi {
|
|
|
38484
39269
|
*/
|
|
38485
39270
|
sdkGenerateByAppForRegion(request: SdkGenerateByAppForRegionRequest): Promise<SdkGenerateByAppForRegionResponse>;
|
|
38486
39271
|
/**
|
|
39272
|
+
* 根据分组生成SDK
|
|
39273
|
+
*
|
|
38487
39274
|
* @param request - SdkGenerateByGroupRequest
|
|
38488
39275
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38489
39276
|
* @returns SdkGenerateByGroupResponse
|
|
38490
39277
|
*/
|
|
38491
39278
|
sdkGenerateByGroupWithOptions(request: SdkGenerateByGroupRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByGroupResponse>;
|
|
38492
39279
|
/**
|
|
39280
|
+
* 根据分组生成SDK
|
|
39281
|
+
*
|
|
38493
39282
|
* @param request - SdkGenerateByGroupRequest
|
|
38494
39283
|
* @returns SdkGenerateByGroupResponse
|
|
38495
39284
|
*/
|
|
@@ -38510,7 +39299,7 @@ export default class Client extends OpenApi {
|
|
|
38510
39299
|
*/
|
|
38511
39300
|
setAccessControlListAttribute(request: SetAccessControlListAttributeRequest): Promise<SetAccessControlListAttributeResponse>;
|
|
38512
39301
|
/**
|
|
38513
|
-
*
|
|
39302
|
+
* Grants permissions on API products to an application.
|
|
38514
39303
|
*
|
|
38515
39304
|
* @param tmpReq - SetApiProductsAuthoritiesRequest
|
|
38516
39305
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -38518,7 +39307,7 @@ export default class Client extends OpenApi {
|
|
|
38518
39307
|
*/
|
|
38519
39308
|
setApiProductsAuthoritiesWithOptions(tmpReq: SetApiProductsAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<SetApiProductsAuthoritiesResponse>;
|
|
38520
39309
|
/**
|
|
38521
|
-
*
|
|
39310
|
+
* Grants permissions on API products to an application.
|
|
38522
39311
|
*
|
|
38523
39312
|
* @param request - SetApiProductsAuthoritiesRequest
|
|
38524
39313
|
* @returns SetApiProductsAuthoritiesResponse
|
|
@@ -38550,7 +39339,7 @@ export default class Client extends OpenApi {
|
|
|
38550
39339
|
*/
|
|
38551
39340
|
setApisAuthorities(request: SetApisAuthoritiesRequest): Promise<SetApisAuthoritiesResponse>;
|
|
38552
39341
|
/**
|
|
38553
|
-
*
|
|
39342
|
+
* Authorizes multiple applications to call APIs in an API product.
|
|
38554
39343
|
*
|
|
38555
39344
|
* @param request - SetAppsAuthToApiProductRequest
|
|
38556
39345
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -38558,7 +39347,7 @@ export default class Client extends OpenApi {
|
|
|
38558
39347
|
*/
|
|
38559
39348
|
setAppsAuthToApiProductWithOptions(request: SetAppsAuthToApiProductRequest, runtime: $Util.RuntimeOptions): Promise<SetAppsAuthToApiProductResponse>;
|
|
38560
39349
|
/**
|
|
38561
|
-
*
|
|
39350
|
+
* Authorizes multiple applications to call APIs in an API product.
|
|
38562
39351
|
*
|
|
38563
39352
|
* @param request - SetAppsAuthToApiProductRequest
|
|
38564
39353
|
* @returns SetAppsAuthToApiProductResponse
|
|
@@ -38645,12 +39434,16 @@ export default class Client extends OpenApi {
|
|
|
38645
39434
|
*/
|
|
38646
39435
|
setDomainWebSocketStatus(request: SetDomainWebSocketStatusRequest): Promise<SetDomainWebSocketStatusResponse>;
|
|
38647
39436
|
/**
|
|
39437
|
+
* 设置分组授权AppCode
|
|
39438
|
+
*
|
|
38648
39439
|
* @param request - SetGroupAuthAppCodeRequest
|
|
38649
39440
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
38650
39441
|
* @returns SetGroupAuthAppCodeResponse
|
|
38651
39442
|
*/
|
|
38652
39443
|
setGroupAuthAppCodeWithOptions(request: SetGroupAuthAppCodeRequest, runtime: $Util.RuntimeOptions): Promise<SetGroupAuthAppCodeResponse>;
|
|
38653
39444
|
/**
|
|
39445
|
+
* 设置分组授权AppCode
|
|
39446
|
+
*
|
|
38654
39447
|
* @param request - SetGroupAuthAppCodeRequest
|
|
38655
39448
|
* @returns SetGroupAuthAppCodeResponse
|
|
38656
39449
|
*/
|
|
@@ -38828,7 +39621,7 @@ export default class Client extends OpenApi {
|
|
|
38828
39621
|
*/
|
|
38829
39622
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
38830
39623
|
/**
|
|
38831
|
-
*
|
|
39624
|
+
* Modifies an internal domain name resolution.
|
|
38832
39625
|
*
|
|
38833
39626
|
* @param tmpReq - UpdatePrivateDNSRequest
|
|
38834
39627
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -38836,7 +39629,7 @@ export default class Client extends OpenApi {
|
|
|
38836
39629
|
*/
|
|
38837
39630
|
updatePrivateDNSWithOptions(tmpReq: UpdatePrivateDNSRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateDNSResponse>;
|
|
38838
39631
|
/**
|
|
38839
|
-
*
|
|
39632
|
+
* Modifies an internal domain name resolution.
|
|
38840
39633
|
*
|
|
38841
39634
|
* @param request - UpdatePrivateDNSRequest
|
|
38842
39635
|
* @returns UpdatePrivateDNSResponse
|