We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 804aa38 commit 8506dccCopy full SHA for 8506dcc
src/modules/apigw/index.ts
@@ -661,7 +661,9 @@ export default class Apigw {
661
const { ApiIdStatusSet } = (await this.request({
662
Action: 'DescribeApisStatus',
663
ServiceId: serviceId,
664
- Filters: [{ Name: 'ApiType', Values: ['normal'] }],
+ Offset: 0,
665
+ Limit: 100,
666
+ Filters: [{ Name: 'ApiPath', Values: [path] }],
667
})) as {
668
ApiIdStatusSet: { Method: string; Path: string; ApiId: string; InternalDomain: string }[];
669
};
0 commit comments