File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/core/src/shared/clients Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 22 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
33 * SPDX-License-Identifier: Apache-2.0
44 */
5-
6- import { APIGateway } from 'aws-sdk'
7- import { RestApi , Stages } from 'aws-sdk/clients/apigateway'
85import { ClientWrapper } from './clientWrapper'
96import {
107 APIGatewayClient as ApiGatewayClientSDK ,
118 GetResourcesCommand ,
129 GetResourcesRequest ,
1310 GetRestApisCommand ,
11+ GetRestApisRequest ,
1412 GetStagesCommand ,
1513 Resource ,
1614 Resources ,
15+ RestApi ,
1716 RestApis ,
17+ Stages ,
1818 TestInvokeMethodCommand ,
1919 TestInvokeMethodRequest ,
2020 TestInvokeMethodResponse ,
@@ -48,7 +48,7 @@ export class ApiGatewayClient extends ClientWrapper<ApiGatewayClientSDK> {
4848 }
4949
5050 public async * listApis ( ) : AsyncIterableIterator < RestApi > {
51- const request : APIGateway . GetRestApisRequest = { }
51+ const request : GetRestApisRequest = { }
5252
5353 do {
5454 const response : RestApis = await this . makeRequest ( GetRestApisCommand , request )
You can’t perform that action at this time.
0 commit comments