@alicloud/cloudapi20160714 4.6.1 → 4.7.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 +677 -0
- package/dist/client.js +680 -15
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1190 -31
package/dist/client.d.ts
CHANGED
|
@@ -1469,6 +1469,15 @@ export declare class DescribeApiResponseBodyServiceConfigFunctionComputeConfig e
|
|
|
1469
1469
|
* fcservicename
|
|
1470
1470
|
*/
|
|
1471
1471
|
serviceName?: string;
|
|
1472
|
+
/**
|
|
1473
|
+
* @remarks
|
|
1474
|
+
* The name of the trigger.
|
|
1475
|
+
*
|
|
1476
|
+
* You can specify the TriggerName or TriggerUrl parameter. The TriggerName parameter is optional.
|
|
1477
|
+
*
|
|
1478
|
+
* @example
|
|
1479
|
+
* test1
|
|
1480
|
+
*/
|
|
1472
1481
|
triggerName?: string;
|
|
1473
1482
|
static names(): {
|
|
1474
1483
|
[key: string]: string;
|
|
@@ -6551,6 +6560,15 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
6551
6560
|
* myservice
|
|
6552
6561
|
*/
|
|
6553
6562
|
serviceName?: string;
|
|
6563
|
+
/**
|
|
6564
|
+
* @remarks
|
|
6565
|
+
* The name of the trigger.
|
|
6566
|
+
*
|
|
6567
|
+
* You can specify the TriggerName or TriggerUrl parameter. The TriggerName parameter is optional.
|
|
6568
|
+
*
|
|
6569
|
+
* @example
|
|
6570
|
+
* test1
|
|
6571
|
+
*/
|
|
6554
6572
|
triggerName?: string;
|
|
6555
6573
|
static names(): {
|
|
6556
6574
|
[key: string]: string;
|
|
@@ -10817,6 +10835,91 @@ export declare class DescribePluginApisResponseBodyApiSummarys extends $dara.Mod
|
|
|
10817
10835
|
[key: string]: any;
|
|
10818
10836
|
});
|
|
10819
10837
|
}
|
|
10838
|
+
export declare class DescribePluginGroupsResponseBodyGroupSummarysGroupPluginSummary extends $dara.Model {
|
|
10839
|
+
/**
|
|
10840
|
+
* @remarks
|
|
10841
|
+
* API root path
|
|
10842
|
+
*
|
|
10843
|
+
* @example
|
|
10844
|
+
* /rpew
|
|
10845
|
+
*/
|
|
10846
|
+
basePath?: string;
|
|
10847
|
+
/**
|
|
10848
|
+
* @remarks
|
|
10849
|
+
* Description
|
|
10850
|
+
*
|
|
10851
|
+
* @example
|
|
10852
|
+
* test
|
|
10853
|
+
*/
|
|
10854
|
+
description?: string;
|
|
10855
|
+
/**
|
|
10856
|
+
* @remarks
|
|
10857
|
+
* API group ID
|
|
10858
|
+
*
|
|
10859
|
+
* @example
|
|
10860
|
+
* 4ed31575e2de43de8c51eb1217a1f56b
|
|
10861
|
+
*/
|
|
10862
|
+
groupId?: string;
|
|
10863
|
+
/**
|
|
10864
|
+
* @remarks
|
|
10865
|
+
* API group name
|
|
10866
|
+
*
|
|
10867
|
+
* @example
|
|
10868
|
+
* ECP_API
|
|
10869
|
+
*/
|
|
10870
|
+
groupName?: string;
|
|
10871
|
+
/**
|
|
10872
|
+
* @remarks
|
|
10873
|
+
* Region ID where the API group is located
|
|
10874
|
+
*
|
|
10875
|
+
* @example
|
|
10876
|
+
* cn-beijing
|
|
10877
|
+
*/
|
|
10878
|
+
regionId?: string;
|
|
10879
|
+
/**
|
|
10880
|
+
* @remarks
|
|
10881
|
+
* Stage name Alias
|
|
10882
|
+
*
|
|
10883
|
+
* @example
|
|
10884
|
+
* DEV
|
|
10885
|
+
*/
|
|
10886
|
+
stageAlias?: string;
|
|
10887
|
+
/**
|
|
10888
|
+
* @remarks
|
|
10889
|
+
* Environment name, possible values:
|
|
10890
|
+
*
|
|
10891
|
+
* - **RELEASE**: Production
|
|
10892
|
+
* - **PRE**: Pre-release
|
|
10893
|
+
* - **TEST**: Testing
|
|
10894
|
+
*
|
|
10895
|
+
* @example
|
|
10896
|
+
* RELEASE
|
|
10897
|
+
*/
|
|
10898
|
+
stageName?: string;
|
|
10899
|
+
static names(): {
|
|
10900
|
+
[key: string]: string;
|
|
10901
|
+
};
|
|
10902
|
+
static types(): {
|
|
10903
|
+
[key: string]: any;
|
|
10904
|
+
};
|
|
10905
|
+
validate(): void;
|
|
10906
|
+
constructor(map?: {
|
|
10907
|
+
[key: string]: any;
|
|
10908
|
+
});
|
|
10909
|
+
}
|
|
10910
|
+
export declare class DescribePluginGroupsResponseBodyGroupSummarys extends $dara.Model {
|
|
10911
|
+
groupPluginSummary?: DescribePluginGroupsResponseBodyGroupSummarysGroupPluginSummary[];
|
|
10912
|
+
static names(): {
|
|
10913
|
+
[key: string]: string;
|
|
10914
|
+
};
|
|
10915
|
+
static types(): {
|
|
10916
|
+
[key: string]: any;
|
|
10917
|
+
};
|
|
10918
|
+
validate(): void;
|
|
10919
|
+
constructor(map?: {
|
|
10920
|
+
[key: string]: any;
|
|
10921
|
+
});
|
|
10922
|
+
}
|
|
10820
10923
|
export declare class DescribePluginSchemasResponseBodyPluginSchemasPluginSchema extends $dara.Model {
|
|
10821
10924
|
/**
|
|
10822
10925
|
* @example
|
|
@@ -11188,6 +11291,95 @@ export declare class DescribePluginsByApiResponseBodyPlugins extends $dara.Model
|
|
|
11188
11291
|
[key: string]: any;
|
|
11189
11292
|
});
|
|
11190
11293
|
}
|
|
11294
|
+
export declare class DescribePluginsByGroupResponseBodyPluginsPluginAttribute extends $dara.Model {
|
|
11295
|
+
/**
|
|
11296
|
+
* @remarks
|
|
11297
|
+
* Creation time, in GMT
|
|
11298
|
+
*
|
|
11299
|
+
* @example
|
|
11300
|
+
* 2024-12-20T02:05:57Z
|
|
11301
|
+
*/
|
|
11302
|
+
createdTime?: string;
|
|
11303
|
+
/**
|
|
11304
|
+
* @remarks
|
|
11305
|
+
* Plugin description
|
|
11306
|
+
*
|
|
11307
|
+
* @example
|
|
11308
|
+
* traffic controll
|
|
11309
|
+
*/
|
|
11310
|
+
description?: string;
|
|
11311
|
+
/**
|
|
11312
|
+
* @remarks
|
|
11313
|
+
* Last modified time, in GMT
|
|
11314
|
+
*
|
|
11315
|
+
* @example
|
|
11316
|
+
* 2022-03-15T02:30:18Z
|
|
11317
|
+
*/
|
|
11318
|
+
modifiedTime?: string;
|
|
11319
|
+
/**
|
|
11320
|
+
* @remarks
|
|
11321
|
+
* Plugin definition statement
|
|
11322
|
+
*
|
|
11323
|
+
* @example
|
|
11324
|
+
* {\\"unit\\":\\"MINUTE\\",\\"apiDefault\\":20}
|
|
11325
|
+
*/
|
|
11326
|
+
pluginData?: string;
|
|
11327
|
+
/**
|
|
11328
|
+
* @remarks
|
|
11329
|
+
* Plugin ID
|
|
11330
|
+
*
|
|
11331
|
+
* @example
|
|
11332
|
+
* 5e204eeb4aa94c919a49f471ad3fc716
|
|
11333
|
+
*/
|
|
11334
|
+
pluginId?: string;
|
|
11335
|
+
/**
|
|
11336
|
+
* @remarks
|
|
11337
|
+
* Plugin name
|
|
11338
|
+
*
|
|
11339
|
+
* @example
|
|
11340
|
+
* firstPlugin
|
|
11341
|
+
*/
|
|
11342
|
+
pluginName?: string;
|
|
11343
|
+
/**
|
|
11344
|
+
* @remarks
|
|
11345
|
+
* Plugin type
|
|
11346
|
+
*
|
|
11347
|
+
* @example
|
|
11348
|
+
* trafficControl
|
|
11349
|
+
*/
|
|
11350
|
+
pluginType?: string;
|
|
11351
|
+
/**
|
|
11352
|
+
* @remarks
|
|
11353
|
+
* 插件所在Region
|
|
11354
|
+
*
|
|
11355
|
+
* @example
|
|
11356
|
+
* cn-hangzhou
|
|
11357
|
+
*/
|
|
11358
|
+
regionId?: string;
|
|
11359
|
+
static names(): {
|
|
11360
|
+
[key: string]: string;
|
|
11361
|
+
};
|
|
11362
|
+
static types(): {
|
|
11363
|
+
[key: string]: any;
|
|
11364
|
+
};
|
|
11365
|
+
validate(): void;
|
|
11366
|
+
constructor(map?: {
|
|
11367
|
+
[key: string]: any;
|
|
11368
|
+
});
|
|
11369
|
+
}
|
|
11370
|
+
export declare class DescribePluginsByGroupResponseBodyPlugins extends $dara.Model {
|
|
11371
|
+
pluginAttribute?: DescribePluginsByGroupResponseBodyPluginsPluginAttribute[];
|
|
11372
|
+
static names(): {
|
|
11373
|
+
[key: string]: string;
|
|
11374
|
+
};
|
|
11375
|
+
static types(): {
|
|
11376
|
+
[key: string]: any;
|
|
11377
|
+
};
|
|
11378
|
+
validate(): void;
|
|
11379
|
+
constructor(map?: {
|
|
11380
|
+
[key: string]: any;
|
|
11381
|
+
});
|
|
11382
|
+
}
|
|
11191
11383
|
export declare class DescribePurchasedApiGroupResponseBodyDomainsDomainItem extends $dara.Model {
|
|
11192
11384
|
/**
|
|
11193
11385
|
* @remarks
|
|
@@ -14350,6 +14542,90 @@ export declare class AttachApiProductResponse extends $dara.Model {
|
|
|
14350
14542
|
[key: string]: any;
|
|
14351
14543
|
});
|
|
14352
14544
|
}
|
|
14545
|
+
export declare class AttachGroupPluginRequest extends $dara.Model {
|
|
14546
|
+
/**
|
|
14547
|
+
* @remarks
|
|
14548
|
+
* The ID of the API group.
|
|
14549
|
+
*
|
|
14550
|
+
* This parameter is required.
|
|
14551
|
+
*
|
|
14552
|
+
* @example
|
|
14553
|
+
* 08ae4aa0f95e4321849ee57f4e0b3077
|
|
14554
|
+
*/
|
|
14555
|
+
groupId?: string;
|
|
14556
|
+
/**
|
|
14557
|
+
* @remarks
|
|
14558
|
+
* The ID of the plug-in to be bound.
|
|
14559
|
+
*
|
|
14560
|
+
* This parameter is required.
|
|
14561
|
+
*
|
|
14562
|
+
* @example
|
|
14563
|
+
* 05df2b52a3644a3a8b1935ab8ab59e9d
|
|
14564
|
+
*/
|
|
14565
|
+
pluginId?: string;
|
|
14566
|
+
securityToken?: string;
|
|
14567
|
+
/**
|
|
14568
|
+
* @remarks
|
|
14569
|
+
* The environment in which the API is requested. Valid values:
|
|
14570
|
+
*
|
|
14571
|
+
* * **RELEASE**: the production environment
|
|
14572
|
+
* * **PRE**: the pre-release environment
|
|
14573
|
+
* * **TEST**: the test environment
|
|
14574
|
+
*
|
|
14575
|
+
* This parameter is required.
|
|
14576
|
+
*
|
|
14577
|
+
* @example
|
|
14578
|
+
* RELEASE
|
|
14579
|
+
*/
|
|
14580
|
+
stageName?: string;
|
|
14581
|
+
static names(): {
|
|
14582
|
+
[key: string]: string;
|
|
14583
|
+
};
|
|
14584
|
+
static types(): {
|
|
14585
|
+
[key: string]: any;
|
|
14586
|
+
};
|
|
14587
|
+
validate(): void;
|
|
14588
|
+
constructor(map?: {
|
|
14589
|
+
[key: string]: any;
|
|
14590
|
+
});
|
|
14591
|
+
}
|
|
14592
|
+
export declare class AttachGroupPluginResponseBody extends $dara.Model {
|
|
14593
|
+
/**
|
|
14594
|
+
* @remarks
|
|
14595
|
+
* The request ID.
|
|
14596
|
+
*
|
|
14597
|
+
* @example
|
|
14598
|
+
* D6E46F10-F26C-4AA0-BB69-FE2743D9AE62
|
|
14599
|
+
*/
|
|
14600
|
+
requestId?: string;
|
|
14601
|
+
static names(): {
|
|
14602
|
+
[key: string]: string;
|
|
14603
|
+
};
|
|
14604
|
+
static types(): {
|
|
14605
|
+
[key: string]: any;
|
|
14606
|
+
};
|
|
14607
|
+
validate(): void;
|
|
14608
|
+
constructor(map?: {
|
|
14609
|
+
[key: string]: any;
|
|
14610
|
+
});
|
|
14611
|
+
}
|
|
14612
|
+
export declare class AttachGroupPluginResponse extends $dara.Model {
|
|
14613
|
+
headers?: {
|
|
14614
|
+
[key: string]: string;
|
|
14615
|
+
};
|
|
14616
|
+
statusCode?: number;
|
|
14617
|
+
body?: AttachGroupPluginResponseBody;
|
|
14618
|
+
static names(): {
|
|
14619
|
+
[key: string]: string;
|
|
14620
|
+
};
|
|
14621
|
+
static types(): {
|
|
14622
|
+
[key: string]: any;
|
|
14623
|
+
};
|
|
14624
|
+
validate(): void;
|
|
14625
|
+
constructor(map?: {
|
|
14626
|
+
[key: string]: any;
|
|
14627
|
+
});
|
|
14628
|
+
}
|
|
14353
14629
|
export declare class AttachPluginRequest extends $dara.Model {
|
|
14354
14630
|
/**
|
|
14355
14631
|
* @remarks
|
|
@@ -20000,6 +20276,13 @@ export declare class DescribeApiGroupVpcWhitelistResponse extends $dara.Model {
|
|
|
20000
20276
|
});
|
|
20001
20277
|
}
|
|
20002
20278
|
export declare class DescribeApiGroupsRequest extends $dara.Model {
|
|
20279
|
+
/**
|
|
20280
|
+
* @remarks
|
|
20281
|
+
* The root path of the API.
|
|
20282
|
+
*
|
|
20283
|
+
* @example
|
|
20284
|
+
* /edmdgp/service20250116management01/v1
|
|
20285
|
+
*/
|
|
20003
20286
|
basePath?: string;
|
|
20004
20287
|
/**
|
|
20005
20288
|
* @remarks
|
|
@@ -27280,6 +27563,135 @@ export declare class DescribePluginApisResponse extends $dara.Model {
|
|
|
27280
27563
|
[key: string]: any;
|
|
27281
27564
|
});
|
|
27282
27565
|
}
|
|
27566
|
+
export declare class DescribePluginGroupsRequest extends $dara.Model {
|
|
27567
|
+
/**
|
|
27568
|
+
* @remarks
|
|
27569
|
+
* API group description
|
|
27570
|
+
*
|
|
27571
|
+
* @example
|
|
27572
|
+
* test
|
|
27573
|
+
*/
|
|
27574
|
+
description?: string;
|
|
27575
|
+
/**
|
|
27576
|
+
* @remarks
|
|
27577
|
+
* API group ID
|
|
27578
|
+
*
|
|
27579
|
+
* @example
|
|
27580
|
+
* 8cc2a3cbe3394524b6e71be5db9b02a3
|
|
27581
|
+
*/
|
|
27582
|
+
groupId?: string;
|
|
27583
|
+
/**
|
|
27584
|
+
* @remarks
|
|
27585
|
+
* API group name
|
|
27586
|
+
*
|
|
27587
|
+
* @example
|
|
27588
|
+
* crm_custom_service
|
|
27589
|
+
*/
|
|
27590
|
+
groupName?: string;
|
|
27591
|
+
/**
|
|
27592
|
+
* @remarks
|
|
27593
|
+
* Pagination parameter: current page number
|
|
27594
|
+
*
|
|
27595
|
+
* @example
|
|
27596
|
+
* 1
|
|
27597
|
+
*/
|
|
27598
|
+
pageNumber?: number;
|
|
27599
|
+
/**
|
|
27600
|
+
* @remarks
|
|
27601
|
+
* Pagination parameter: number of items per page
|
|
27602
|
+
*
|
|
27603
|
+
* @example
|
|
27604
|
+
* 10
|
|
27605
|
+
*/
|
|
27606
|
+
pageSize?: number;
|
|
27607
|
+
/**
|
|
27608
|
+
* @remarks
|
|
27609
|
+
* API Gateway plugin ID
|
|
27610
|
+
*
|
|
27611
|
+
* This parameter is required.
|
|
27612
|
+
*
|
|
27613
|
+
* @example
|
|
27614
|
+
* 1f3bde29b43d4d53989248327ff737f2
|
|
27615
|
+
*/
|
|
27616
|
+
pluginId?: string;
|
|
27617
|
+
securityToken?: string;
|
|
27618
|
+
static names(): {
|
|
27619
|
+
[key: string]: string;
|
|
27620
|
+
};
|
|
27621
|
+
static types(): {
|
|
27622
|
+
[key: string]: any;
|
|
27623
|
+
};
|
|
27624
|
+
validate(): void;
|
|
27625
|
+
constructor(map?: {
|
|
27626
|
+
[key: string]: any;
|
|
27627
|
+
});
|
|
27628
|
+
}
|
|
27629
|
+
export declare class DescribePluginGroupsResponseBody extends $dara.Model {
|
|
27630
|
+
/**
|
|
27631
|
+
* @remarks
|
|
27632
|
+
* Collection of group information
|
|
27633
|
+
*/
|
|
27634
|
+
groupSummarys?: DescribePluginGroupsResponseBodyGroupSummarys;
|
|
27635
|
+
/**
|
|
27636
|
+
* @remarks
|
|
27637
|
+
* Pagination parameter: current page number
|
|
27638
|
+
*
|
|
27639
|
+
* @example
|
|
27640
|
+
* 1
|
|
27641
|
+
*/
|
|
27642
|
+
pageNumber?: number;
|
|
27643
|
+
/**
|
|
27644
|
+
* @remarks
|
|
27645
|
+
* Pagination parameter: number of items per page, default value 10
|
|
27646
|
+
*
|
|
27647
|
+
* @example
|
|
27648
|
+
* 10
|
|
27649
|
+
*/
|
|
27650
|
+
pageSize?: number;
|
|
27651
|
+
/**
|
|
27652
|
+
* @remarks
|
|
27653
|
+
* Request ID
|
|
27654
|
+
*
|
|
27655
|
+
* @example
|
|
27656
|
+
* 765BC99E-F583-5A80-9A42-42AC125C2CDC
|
|
27657
|
+
*/
|
|
27658
|
+
requestId?: string;
|
|
27659
|
+
/**
|
|
27660
|
+
* @remarks
|
|
27661
|
+
* Total number of returned results
|
|
27662
|
+
*
|
|
27663
|
+
* @example
|
|
27664
|
+
* 20
|
|
27665
|
+
*/
|
|
27666
|
+
totalCount?: number;
|
|
27667
|
+
static names(): {
|
|
27668
|
+
[key: string]: string;
|
|
27669
|
+
};
|
|
27670
|
+
static types(): {
|
|
27671
|
+
[key: string]: any;
|
|
27672
|
+
};
|
|
27673
|
+
validate(): void;
|
|
27674
|
+
constructor(map?: {
|
|
27675
|
+
[key: string]: any;
|
|
27676
|
+
});
|
|
27677
|
+
}
|
|
27678
|
+
export declare class DescribePluginGroupsResponse extends $dara.Model {
|
|
27679
|
+
headers?: {
|
|
27680
|
+
[key: string]: string;
|
|
27681
|
+
};
|
|
27682
|
+
statusCode?: number;
|
|
27683
|
+
body?: DescribePluginGroupsResponseBody;
|
|
27684
|
+
static names(): {
|
|
27685
|
+
[key: string]: string;
|
|
27686
|
+
};
|
|
27687
|
+
static types(): {
|
|
27688
|
+
[key: string]: any;
|
|
27689
|
+
};
|
|
27690
|
+
validate(): void;
|
|
27691
|
+
constructor(map?: {
|
|
27692
|
+
[key: string]: any;
|
|
27693
|
+
});
|
|
27694
|
+
}
|
|
27283
27695
|
export declare class DescribePluginSchemasRequest extends $dara.Model {
|
|
27284
27696
|
/**
|
|
27285
27697
|
* @example
|
|
@@ -27664,6 +28076,125 @@ export declare class DescribePluginsByApiResponse extends $dara.Model {
|
|
|
27664
28076
|
[key: string]: any;
|
|
27665
28077
|
});
|
|
27666
28078
|
}
|
|
28079
|
+
export declare class DescribePluginsByGroupRequest extends $dara.Model {
|
|
28080
|
+
/**
|
|
28081
|
+
* @remarks
|
|
28082
|
+
* Group ID
|
|
28083
|
+
*
|
|
28084
|
+
* This parameter is required.
|
|
28085
|
+
*
|
|
28086
|
+
* @example
|
|
28087
|
+
* 08ae4aa0f95e4321849ee57f4e0b3077
|
|
28088
|
+
*/
|
|
28089
|
+
groupId?: string;
|
|
28090
|
+
/**
|
|
28091
|
+
* @remarks
|
|
28092
|
+
* Pagination parameter: current page number
|
|
28093
|
+
*
|
|
28094
|
+
* @example
|
|
28095
|
+
* 1
|
|
28096
|
+
*/
|
|
28097
|
+
pageNumber?: number;
|
|
28098
|
+
/**
|
|
28099
|
+
* @remarks
|
|
28100
|
+
* Pagination parameter: number of items per page.
|
|
28101
|
+
*
|
|
28102
|
+
* @example
|
|
28103
|
+
* 10
|
|
28104
|
+
*/
|
|
28105
|
+
pageSize?: number;
|
|
28106
|
+
securityToken?: string;
|
|
28107
|
+
/**
|
|
28108
|
+
* @remarks
|
|
28109
|
+
* Specifies the environment of the API to operate on.
|
|
28110
|
+
*
|
|
28111
|
+
* - **RELEASE**: Production
|
|
28112
|
+
* - **PRE**: Pre-release
|
|
28113
|
+
* - **TEST**: Test
|
|
28114
|
+
*
|
|
28115
|
+
* This parameter is required.
|
|
28116
|
+
*
|
|
28117
|
+
* @example
|
|
28118
|
+
* RELEASE
|
|
28119
|
+
*/
|
|
28120
|
+
stageName?: string;
|
|
28121
|
+
static names(): {
|
|
28122
|
+
[key: string]: string;
|
|
28123
|
+
};
|
|
28124
|
+
static types(): {
|
|
28125
|
+
[key: string]: any;
|
|
28126
|
+
};
|
|
28127
|
+
validate(): void;
|
|
28128
|
+
constructor(map?: {
|
|
28129
|
+
[key: string]: any;
|
|
28130
|
+
});
|
|
28131
|
+
}
|
|
28132
|
+
export declare class DescribePluginsByGroupResponseBody extends $dara.Model {
|
|
28133
|
+
/**
|
|
28134
|
+
* @remarks
|
|
28135
|
+
* Pagination parameter: current page number
|
|
28136
|
+
*
|
|
28137
|
+
* @example
|
|
28138
|
+
* 1
|
|
28139
|
+
*/
|
|
28140
|
+
pageNumber?: number;
|
|
28141
|
+
/**
|
|
28142
|
+
* @remarks
|
|
28143
|
+
* Pagination parameter: number of items per page.
|
|
28144
|
+
*
|
|
28145
|
+
* @example
|
|
28146
|
+
* 10
|
|
28147
|
+
*/
|
|
28148
|
+
pageSize?: number;
|
|
28149
|
+
/**
|
|
28150
|
+
* @remarks
|
|
28151
|
+
* Returns information about the plugins
|
|
28152
|
+
*/
|
|
28153
|
+
plugins?: DescribePluginsByGroupResponseBodyPlugins;
|
|
28154
|
+
/**
|
|
28155
|
+
* @remarks
|
|
28156
|
+
* Request ID
|
|
28157
|
+
*
|
|
28158
|
+
* @example
|
|
28159
|
+
* 5F5574BA-F22B-563D-841E-C817964F517F
|
|
28160
|
+
*/
|
|
28161
|
+
requestId?: string;
|
|
28162
|
+
/**
|
|
28163
|
+
* @remarks
|
|
28164
|
+
* Total number of results returned
|
|
28165
|
+
*
|
|
28166
|
+
* @example
|
|
28167
|
+
* 32
|
|
28168
|
+
*/
|
|
28169
|
+
totalCount?: number;
|
|
28170
|
+
static names(): {
|
|
28171
|
+
[key: string]: string;
|
|
28172
|
+
};
|
|
28173
|
+
static types(): {
|
|
28174
|
+
[key: string]: any;
|
|
28175
|
+
};
|
|
28176
|
+
validate(): void;
|
|
28177
|
+
constructor(map?: {
|
|
28178
|
+
[key: string]: any;
|
|
28179
|
+
});
|
|
28180
|
+
}
|
|
28181
|
+
export declare class DescribePluginsByGroupResponse extends $dara.Model {
|
|
28182
|
+
headers?: {
|
|
28183
|
+
[key: string]: string;
|
|
28184
|
+
};
|
|
28185
|
+
statusCode?: number;
|
|
28186
|
+
body?: DescribePluginsByGroupResponseBody;
|
|
28187
|
+
static names(): {
|
|
28188
|
+
[key: string]: string;
|
|
28189
|
+
};
|
|
28190
|
+
static types(): {
|
|
28191
|
+
[key: string]: any;
|
|
28192
|
+
};
|
|
28193
|
+
validate(): void;
|
|
28194
|
+
constructor(map?: {
|
|
28195
|
+
[key: string]: any;
|
|
28196
|
+
});
|
|
28197
|
+
}
|
|
27667
28198
|
export declare class DescribePurchasedApiGroupRequest extends $dara.Model {
|
|
27668
28199
|
/**
|
|
27669
28200
|
* @remarks
|
|
@@ -29068,6 +29599,90 @@ export declare class DetachApiProductResponse extends $dara.Model {
|
|
|
29068
29599
|
[key: string]: any;
|
|
29069
29600
|
});
|
|
29070
29601
|
}
|
|
29602
|
+
export declare class DetachGroupPluginRequest extends $dara.Model {
|
|
29603
|
+
/**
|
|
29604
|
+
* @remarks
|
|
29605
|
+
* API group ID
|
|
29606
|
+
*
|
|
29607
|
+
* This parameter is required.
|
|
29608
|
+
*
|
|
29609
|
+
* @example
|
|
29610
|
+
* 0009db9c828549768a200320714b8930
|
|
29611
|
+
*/
|
|
29612
|
+
groupId?: string;
|
|
29613
|
+
/**
|
|
29614
|
+
* @remarks
|
|
29615
|
+
* API Gateway plugin ID
|
|
29616
|
+
*
|
|
29617
|
+
* This parameter is required.
|
|
29618
|
+
*
|
|
29619
|
+
* @example
|
|
29620
|
+
* a96926e82f994915a8da40a119374537
|
|
29621
|
+
*/
|
|
29622
|
+
pluginId?: string;
|
|
29623
|
+
securityToken?: string;
|
|
29624
|
+
/**
|
|
29625
|
+
* @remarks
|
|
29626
|
+
* Specify the environment of the API to operate on.
|
|
29627
|
+
*
|
|
29628
|
+
* - **RELEASE**: Production
|
|
29629
|
+
* - **PRE**: Pre-release
|
|
29630
|
+
* - **TEST**: Test
|
|
29631
|
+
*
|
|
29632
|
+
* This parameter is required.
|
|
29633
|
+
*
|
|
29634
|
+
* @example
|
|
29635
|
+
* RELEASE
|
|
29636
|
+
*/
|
|
29637
|
+
stageName?: string;
|
|
29638
|
+
static names(): {
|
|
29639
|
+
[key: string]: string;
|
|
29640
|
+
};
|
|
29641
|
+
static types(): {
|
|
29642
|
+
[key: string]: any;
|
|
29643
|
+
};
|
|
29644
|
+
validate(): void;
|
|
29645
|
+
constructor(map?: {
|
|
29646
|
+
[key: string]: any;
|
|
29647
|
+
});
|
|
29648
|
+
}
|
|
29649
|
+
export declare class DetachGroupPluginResponseBody extends $dara.Model {
|
|
29650
|
+
/**
|
|
29651
|
+
* @remarks
|
|
29652
|
+
* Request ID
|
|
29653
|
+
*
|
|
29654
|
+
* @example
|
|
29655
|
+
* 3707E6FA-749C-5352-B72A-ABE95D9DEA49
|
|
29656
|
+
*/
|
|
29657
|
+
requestId?: string;
|
|
29658
|
+
static names(): {
|
|
29659
|
+
[key: string]: string;
|
|
29660
|
+
};
|
|
29661
|
+
static types(): {
|
|
29662
|
+
[key: string]: any;
|
|
29663
|
+
};
|
|
29664
|
+
validate(): void;
|
|
29665
|
+
constructor(map?: {
|
|
29666
|
+
[key: string]: any;
|
|
29667
|
+
});
|
|
29668
|
+
}
|
|
29669
|
+
export declare class DetachGroupPluginResponse extends $dara.Model {
|
|
29670
|
+
headers?: {
|
|
29671
|
+
[key: string]: string;
|
|
29672
|
+
};
|
|
29673
|
+
statusCode?: number;
|
|
29674
|
+
body?: DetachGroupPluginResponseBody;
|
|
29675
|
+
static names(): {
|
|
29676
|
+
[key: string]: string;
|
|
29677
|
+
};
|
|
29678
|
+
static types(): {
|
|
29679
|
+
[key: string]: any;
|
|
29680
|
+
};
|
|
29681
|
+
validate(): void;
|
|
29682
|
+
constructor(map?: {
|
|
29683
|
+
[key: string]: any;
|
|
29684
|
+
});
|
|
29685
|
+
}
|
|
29071
29686
|
export declare class DetachPluginRequest extends $dara.Model {
|
|
29072
29687
|
/**
|
|
29073
29688
|
* @example
|
|
@@ -30278,6 +30893,8 @@ export declare class ListPrivateDNSRequest extends $dara.Model {
|
|
|
30278
30893
|
* api.demo.com
|
|
30279
30894
|
*/
|
|
30280
30895
|
intranetDomain?: string;
|
|
30896
|
+
pageNumber?: number;
|
|
30897
|
+
pageSize?: number;
|
|
30281
30898
|
securityToken?: string;
|
|
30282
30899
|
/**
|
|
30283
30900
|
* @remarks
|
|
@@ -36784,6 +37401,21 @@ export default class Client extends OpenApi {
|
|
|
36784
37401
|
* @returns AttachApiProductResponse
|
|
36785
37402
|
*/
|
|
36786
37403
|
attachApiProduct(request: AttachApiProductRequest): Promise<AttachApiProductResponse>;
|
|
37404
|
+
/**
|
|
37405
|
+
* Attach plugin to API group.
|
|
37406
|
+
*
|
|
37407
|
+
* @param request - AttachGroupPluginRequest
|
|
37408
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
37409
|
+
* @returns AttachGroupPluginResponse
|
|
37410
|
+
*/
|
|
37411
|
+
attachGroupPluginWithOptions(request: AttachGroupPluginRequest, runtime: $dara.RuntimeOptions): Promise<AttachGroupPluginResponse>;
|
|
37412
|
+
/**
|
|
37413
|
+
* Attach plugin to API group.
|
|
37414
|
+
*
|
|
37415
|
+
* @param request - AttachGroupPluginRequest
|
|
37416
|
+
* @returns AttachGroupPluginResponse
|
|
37417
|
+
*/
|
|
37418
|
+
attachGroupPlugin(request: AttachGroupPluginRequest): Promise<AttachGroupPluginResponse>;
|
|
36787
37419
|
/**
|
|
36788
37420
|
* Binds a plug-in to an API.
|
|
36789
37421
|
*
|
|
@@ -38980,6 +39612,21 @@ export default class Client extends OpenApi {
|
|
|
38980
39612
|
* @returns DescribePluginApisResponse
|
|
38981
39613
|
*/
|
|
38982
39614
|
describePluginApis(request: DescribePluginApisRequest): Promise<DescribePluginApisResponse>;
|
|
39615
|
+
/**
|
|
39616
|
+
* Query the list of groups bound to a plugin based on the plugin ID
|
|
39617
|
+
*
|
|
39618
|
+
* @param request - DescribePluginGroupsRequest
|
|
39619
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
39620
|
+
* @returns DescribePluginGroupsResponse
|
|
39621
|
+
*/
|
|
39622
|
+
describePluginGroupsWithOptions(request: DescribePluginGroupsRequest, runtime: $dara.RuntimeOptions): Promise<DescribePluginGroupsResponse>;
|
|
39623
|
+
/**
|
|
39624
|
+
* Query the list of groups bound to a plugin based on the plugin ID
|
|
39625
|
+
*
|
|
39626
|
+
* @param request - DescribePluginGroupsRequest
|
|
39627
|
+
* @returns DescribePluginGroupsResponse
|
|
39628
|
+
*/
|
|
39629
|
+
describePluginGroups(request: DescribePluginGroupsRequest): Promise<DescribePluginGroupsResponse>;
|
|
38983
39630
|
/**
|
|
38984
39631
|
* 查询插件列表
|
|
38985
39632
|
*
|
|
@@ -39060,6 +39707,21 @@ export default class Client extends OpenApi {
|
|
|
39060
39707
|
* @returns DescribePluginsByApiResponse
|
|
39061
39708
|
*/
|
|
39062
39709
|
describePluginsByApi(request: DescribePluginsByApiRequest): Promise<DescribePluginsByApiResponse>;
|
|
39710
|
+
/**
|
|
39711
|
+
* Query Plugins Bound to API Group
|
|
39712
|
+
*
|
|
39713
|
+
* @param request - DescribePluginsByGroupRequest
|
|
39714
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
39715
|
+
* @returns DescribePluginsByGroupResponse
|
|
39716
|
+
*/
|
|
39717
|
+
describePluginsByGroupWithOptions(request: DescribePluginsByGroupRequest, runtime: $dara.RuntimeOptions): Promise<DescribePluginsByGroupResponse>;
|
|
39718
|
+
/**
|
|
39719
|
+
* Query Plugins Bound to API Group
|
|
39720
|
+
*
|
|
39721
|
+
* @param request - DescribePluginsByGroupRequest
|
|
39722
|
+
* @returns DescribePluginsByGroupResponse
|
|
39723
|
+
*/
|
|
39724
|
+
describePluginsByGroup(request: DescribePluginsByGroupRequest): Promise<DescribePluginsByGroupResponse>;
|
|
39063
39725
|
/**
|
|
39064
39726
|
* Queries the details about an API group purchased from Alibaba Cloud Marketplace.
|
|
39065
39727
|
*
|
|
@@ -39331,6 +39993,21 @@ export default class Client extends OpenApi {
|
|
|
39331
39993
|
* @returns DetachApiProductResponse
|
|
39332
39994
|
*/
|
|
39333
39995
|
detachApiProduct(request: DetachApiProductRequest): Promise<DetachApiProductResponse>;
|
|
39996
|
+
/**
|
|
39997
|
+
* Unbind group plugin
|
|
39998
|
+
*
|
|
39999
|
+
* @param request - DetachGroupPluginRequest
|
|
40000
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
40001
|
+
* @returns DetachGroupPluginResponse
|
|
40002
|
+
*/
|
|
40003
|
+
detachGroupPluginWithOptions(request: DetachGroupPluginRequest, runtime: $dara.RuntimeOptions): Promise<DetachGroupPluginResponse>;
|
|
40004
|
+
/**
|
|
40005
|
+
* Unbind group plugin
|
|
40006
|
+
*
|
|
40007
|
+
* @param request - DetachGroupPluginRequest
|
|
40008
|
+
* @returns DetachGroupPluginResponse
|
|
40009
|
+
*/
|
|
40010
|
+
detachGroupPlugin(request: DetachGroupPluginRequest): Promise<DetachGroupPluginResponse>;
|
|
39334
40011
|
/**
|
|
39335
40012
|
* 解绑插件
|
|
39336
40013
|
*
|