@aws-sdk/client-app-mesh 3.1087.0 → 3.1088.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/AppMesh.d.ts +131 -158
- package/dist-types/ts3.4/AppMeshClient.d.ts +24 -61
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateGatewayRouteCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateMeshCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateVirtualGatewayCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateVirtualNodeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateVirtualRouterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateVirtualServiceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteGatewayRouteCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteMeshCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteVirtualGatewayCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteVirtualNodeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteVirtualRouterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteVirtualServiceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeGatewayRouteCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeMeshCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeRouteCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeVirtualGatewayCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeVirtualNodeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeVirtualRouterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeVirtualServiceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListGatewayRoutesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListMeshesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualGatewaysCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualNodesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListVirtualRoutersCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualServicesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateGatewayRouteCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateMeshCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateRouteCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateVirtualGatewayCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateVirtualNodeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateVirtualRouterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateVirtualServiceCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +7 -21
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListMeshesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListRoutesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -40,14 +37,8 @@ import {
|
|
|
40
37
|
CreateGatewayRouteCommandInput,
|
|
41
38
|
CreateGatewayRouteCommandOutput,
|
|
42
39
|
} from "./commands/CreateGatewayRouteCommand";
|
|
43
|
-
import {
|
|
44
|
-
|
|
45
|
-
CreateMeshCommandOutput,
|
|
46
|
-
} from "./commands/CreateMeshCommand";
|
|
47
|
-
import {
|
|
48
|
-
CreateRouteCommandInput,
|
|
49
|
-
CreateRouteCommandOutput,
|
|
50
|
-
} from "./commands/CreateRouteCommand";
|
|
40
|
+
import { CreateMeshCommandInput, CreateMeshCommandOutput } from "./commands/CreateMeshCommand";
|
|
41
|
+
import { CreateRouteCommandInput, CreateRouteCommandOutput } from "./commands/CreateRouteCommand";
|
|
51
42
|
import {
|
|
52
43
|
CreateVirtualGatewayCommandInput,
|
|
53
44
|
CreateVirtualGatewayCommandOutput,
|
|
@@ -68,14 +59,8 @@ import {
|
|
|
68
59
|
DeleteGatewayRouteCommandInput,
|
|
69
60
|
DeleteGatewayRouteCommandOutput,
|
|
70
61
|
} from "./commands/DeleteGatewayRouteCommand";
|
|
71
|
-
import {
|
|
72
|
-
|
|
73
|
-
DeleteMeshCommandOutput,
|
|
74
|
-
} from "./commands/DeleteMeshCommand";
|
|
75
|
-
import {
|
|
76
|
-
DeleteRouteCommandInput,
|
|
77
|
-
DeleteRouteCommandOutput,
|
|
78
|
-
} from "./commands/DeleteRouteCommand";
|
|
62
|
+
import { DeleteMeshCommandInput, DeleteMeshCommandOutput } from "./commands/DeleteMeshCommand";
|
|
63
|
+
import { DeleteRouteCommandInput, DeleteRouteCommandOutput } from "./commands/DeleteRouteCommand";
|
|
79
64
|
import {
|
|
80
65
|
DeleteVirtualGatewayCommandInput,
|
|
81
66
|
DeleteVirtualGatewayCommandOutput,
|
|
@@ -124,14 +109,8 @@ import {
|
|
|
124
109
|
ListGatewayRoutesCommandInput,
|
|
125
110
|
ListGatewayRoutesCommandOutput,
|
|
126
111
|
} from "./commands/ListGatewayRoutesCommand";
|
|
127
|
-
import {
|
|
128
|
-
|
|
129
|
-
ListMeshesCommandOutput,
|
|
130
|
-
} from "./commands/ListMeshesCommand";
|
|
131
|
-
import {
|
|
132
|
-
ListRoutesCommandInput,
|
|
133
|
-
ListRoutesCommandOutput,
|
|
134
|
-
} from "./commands/ListRoutesCommand";
|
|
112
|
+
import { ListMeshesCommandInput, ListMeshesCommandOutput } from "./commands/ListMeshesCommand";
|
|
113
|
+
import { ListRoutesCommandInput, ListRoutesCommandOutput } from "./commands/ListRoutesCommand";
|
|
135
114
|
import {
|
|
136
115
|
ListTagsForResourceCommandInput,
|
|
137
116
|
ListTagsForResourceCommandOutput,
|
|
@@ -152,10 +131,7 @@ import {
|
|
|
152
131
|
ListVirtualServicesCommandInput,
|
|
153
132
|
ListVirtualServicesCommandOutput,
|
|
154
133
|
} from "./commands/ListVirtualServicesCommand";
|
|
155
|
-
import {
|
|
156
|
-
TagResourceCommandInput,
|
|
157
|
-
TagResourceCommandOutput,
|
|
158
|
-
} from "./commands/TagResourceCommand";
|
|
134
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
159
135
|
import {
|
|
160
136
|
UntagResourceCommandInput,
|
|
161
137
|
UntagResourceCommandOutput,
|
|
@@ -164,14 +140,8 @@ import {
|
|
|
164
140
|
UpdateGatewayRouteCommandInput,
|
|
165
141
|
UpdateGatewayRouteCommandOutput,
|
|
166
142
|
} from "./commands/UpdateGatewayRouteCommand";
|
|
167
|
-
import {
|
|
168
|
-
|
|
169
|
-
UpdateMeshCommandOutput,
|
|
170
|
-
} from "./commands/UpdateMeshCommand";
|
|
171
|
-
import {
|
|
172
|
-
UpdateRouteCommandInput,
|
|
173
|
-
UpdateRouteCommandOutput,
|
|
174
|
-
} from "./commands/UpdateRouteCommand";
|
|
143
|
+
import { UpdateMeshCommandInput, UpdateMeshCommandOutput } from "./commands/UpdateMeshCommand";
|
|
144
|
+
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
|
|
175
145
|
import {
|
|
176
146
|
UpdateVirtualGatewayCommandInput,
|
|
177
147
|
UpdateVirtualGatewayCommandOutput,
|
|
@@ -273,8 +243,7 @@ export type ServiceOutputTypes =
|
|
|
273
243
|
| UpdateVirtualNodeCommandOutput
|
|
274
244
|
| UpdateVirtualRouterCommandOutput
|
|
275
245
|
| UpdateVirtualServiceCommandOutput;
|
|
276
|
-
export interface ClientDefaults
|
|
277
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
246
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
278
247
|
requestHandler?: __HttpHandlerUserInput;
|
|
279
248
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
280
249
|
urlParser?: __UrlParser;
|
|
@@ -299,9 +268,7 @@ export interface ClientDefaults
|
|
|
299
268
|
extensions?: RuntimeExtension[];
|
|
300
269
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
301
270
|
}
|
|
302
|
-
export type AppMeshClientConfigType = Partial<
|
|
303
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
304
|
-
> &
|
|
271
|
+
export type AppMeshClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
305
272
|
ClientDefaults &
|
|
306
273
|
UserAgentInputConfig &
|
|
307
274
|
RetryInputConfig &
|
|
@@ -311,19 +278,17 @@ export type AppMeshClientConfigType = Partial<
|
|
|
311
278
|
HttpAuthSchemeInputConfig &
|
|
312
279
|
ClientInputEndpointParameters;
|
|
313
280
|
export interface AppMeshClientConfig extends AppMeshClientConfigType {}
|
|
314
|
-
export type AppMeshClientResolvedConfigType =
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
export interface AppMeshClientResolvedConfig
|
|
326
|
-
extends AppMeshClientResolvedConfigType {}
|
|
281
|
+
export type AppMeshClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
282
|
+
Required<ClientDefaults> &
|
|
283
|
+
RuntimeExtensionsConfig &
|
|
284
|
+
UserAgentResolvedConfig &
|
|
285
|
+
RetryResolvedConfig &
|
|
286
|
+
RegionResolvedConfig &
|
|
287
|
+
HostHeaderResolvedConfig &
|
|
288
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
289
|
+
HttpAuthSchemeResolvedConfig &
|
|
290
|
+
ClientResolvedEndpointParameters;
|
|
291
|
+
export interface AppMeshClientResolvedConfig extends AppMeshClientResolvedConfigType {}
|
|
327
292
|
export declare class AppMeshClient extends __Client<
|
|
328
293
|
__HttpHandlerOptions,
|
|
329
294
|
ServiceInputTypes,
|
|
@@ -331,8 +296,6 @@ export declare class AppMeshClient extends __Client<
|
|
|
331
296
|
AppMeshClientResolvedConfig
|
|
332
297
|
> {
|
|
333
298
|
readonly config: AppMeshClientResolvedConfig;
|
|
334
|
-
constructor(
|
|
335
|
-
...[configuration]: __CheckOptionalClientConfig<AppMeshClientConfig>
|
|
336
|
-
);
|
|
299
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<AppMeshClientConfig>);
|
|
337
300
|
destroy(): void;
|
|
338
301
|
}
|
|
@@ -7,17 +7,10 @@ import { AppMeshHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: AppMeshHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: AppMeshHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): AppMeshHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { AppMeshClientResolvedConfig } from "../AppMeshClient";
|
|
15
|
-
export interface AppMeshHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface AppMeshHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface AppMeshHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface AppMeshHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
AppMeshClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
AppMeshHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultAppMeshHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: AppMeshClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<AppMeshHttpAuthSchemeParameters>;
|
|
31
|
-
export interface AppMeshHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<AppMeshHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface AppMeshHttpAuthSchemeProvider extends HttpAuthSchemeProvider<AppMeshHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultAppMeshHttpAuthSchemeProvider: AppMeshHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: AppMeshHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: AppMeshHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./AppMeshClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
AppMeshClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateGatewayRouteInput,
|
|
4
|
-
CreateGatewayRouteOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateGatewayRouteInput, CreateGatewayRouteOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateGatewayRouteCommandInput
|
|
8
|
-
extends CreateGatewayRouteInput {}
|
|
4
|
+
export interface CreateGatewayRouteCommandInput extends CreateGatewayRouteInput {}
|
|
9
5
|
export interface CreateGatewayRouteCommandOutput
|
|
10
|
-
extends CreateGatewayRouteOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateGatewayRouteOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateGatewayRouteCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateGatewayRouteCommandInput
|
|
9
|
+
input: CreateGatewayRouteCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateGatewayRouteCommandInput,
|
|
17
12
|
CreateGatewayRouteCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateGatewayRouteCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateGatewayRouteCommandInput
|
|
18
|
+
input: CreateGatewayRouteCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateGatewayRouteCommandInput,
|
|
26
21
|
CreateGatewayRouteCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateMeshInput, CreateMeshOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateMeshCommandInput extends CreateMeshInput {}
|
|
5
|
-
export interface CreateMeshCommandOutput
|
|
6
|
-
extends CreateMeshOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateMeshCommandOutput extends CreateMeshOutput, __MetadataBearer {}
|
|
8
6
|
declare const CreateMeshCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateMeshCommandInput
|
|
8
|
+
input: CreateMeshCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateMeshCommandInput,
|
|
13
11
|
CreateMeshCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateMeshCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateMeshCommandInput
|
|
17
|
+
input: CreateMeshCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateMeshCommandInput,
|
|
22
20
|
CreateMeshCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateRouteInput, CreateRouteOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateRouteCommandInput extends CreateRouteInput {}
|
|
5
|
-
export interface CreateRouteCommandOutput
|
|
6
|
-
extends CreateRouteOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateRouteCommandOutput extends CreateRouteOutput, __MetadataBearer {}
|
|
8
6
|
declare const CreateRouteCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateRouteCommandInput
|
|
8
|
+
input: CreateRouteCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateRouteCommandInput,
|
|
13
11
|
CreateRouteCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateRouteCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateRouteCommandInput
|
|
17
|
+
input: CreateRouteCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateRouteCommandInput,
|
|
22
20
|
CreateRouteCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateVirtualGatewayInput,
|
|
4
|
-
CreateVirtualGatewayOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateVirtualGatewayInput, CreateVirtualGatewayOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateVirtualGatewayCommandInput
|
|
8
|
-
extends CreateVirtualGatewayInput {}
|
|
4
|
+
export interface CreateVirtualGatewayCommandInput extends CreateVirtualGatewayInput {}
|
|
9
5
|
export interface CreateVirtualGatewayCommandOutput
|
|
10
|
-
extends CreateVirtualGatewayOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateVirtualGatewayOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateVirtualGatewayCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateVirtualGatewayCommandInput
|
|
9
|
+
input: CreateVirtualGatewayCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateVirtualGatewayCommandInput,
|
|
17
12
|
CreateVirtualGatewayCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateVirtualGatewayCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateVirtualGatewayCommandInput
|
|
18
|
+
input: CreateVirtualGatewayCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateVirtualGatewayCommandInput,
|
|
26
21
|
CreateVirtualGatewayCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateVirtualNodeInput,
|
|
4
|
-
CreateVirtualNodeOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateVirtualNodeInput, CreateVirtualNodeOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateVirtualNodeCommandInput extends CreateVirtualNodeInput {}
|
|
8
|
-
export interface CreateVirtualNodeCommandOutput
|
|
9
|
-
extends CreateVirtualNodeOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateVirtualNodeCommandOutput extends CreateVirtualNodeOutput, __MetadataBearer {}
|
|
11
6
|
declare const CreateVirtualNodeCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateVirtualNodeCommandInput
|
|
8
|
+
input: CreateVirtualNodeCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateVirtualNodeCommandInput,
|
|
16
11
|
CreateVirtualNodeCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateVirtualNodeCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateVirtualNodeCommandInput
|
|
17
|
+
input: CreateVirtualNodeCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateVirtualNodeCommandInput,
|
|
25
20
|
CreateVirtualNodeCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateVirtualRouterInput,
|
|
4
|
-
CreateVirtualRouterOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateVirtualRouterInput, CreateVirtualRouterOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateVirtualRouterCommandInput
|
|
8
|
-
extends CreateVirtualRouterInput {}
|
|
4
|
+
export interface CreateVirtualRouterCommandInput extends CreateVirtualRouterInput {}
|
|
9
5
|
export interface CreateVirtualRouterCommandOutput
|
|
10
|
-
extends CreateVirtualRouterOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateVirtualRouterOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateVirtualRouterCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateVirtualRouterCommandInput
|
|
9
|
+
input: CreateVirtualRouterCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateVirtualRouterCommandInput,
|
|
17
12
|
CreateVirtualRouterCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateVirtualRouterCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateVirtualRouterCommandInput
|
|
18
|
+
input: CreateVirtualRouterCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateVirtualRouterCommandInput,
|
|
26
21
|
CreateVirtualRouterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateVirtualServiceInput,
|
|
4
|
-
CreateVirtualServiceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateVirtualServiceInput, CreateVirtualServiceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateVirtualServiceCommandInput
|
|
8
|
-
extends CreateVirtualServiceInput {}
|
|
4
|
+
export interface CreateVirtualServiceCommandInput extends CreateVirtualServiceInput {}
|
|
9
5
|
export interface CreateVirtualServiceCommandOutput
|
|
10
|
-
extends CreateVirtualServiceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateVirtualServiceOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateVirtualServiceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateVirtualServiceCommandInput
|
|
9
|
+
input: CreateVirtualServiceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateVirtualServiceCommandInput,
|
|
17
12
|
CreateVirtualServiceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateVirtualServiceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateVirtualServiceCommandInput
|
|
18
|
+
input: CreateVirtualServiceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateVirtualServiceCommandInput,
|
|
26
21
|
CreateVirtualServiceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteGatewayRouteInput,
|
|
4
|
-
DeleteGatewayRouteOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteGatewayRouteInput, DeleteGatewayRouteOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteGatewayRouteCommandInput
|
|
8
|
-
extends DeleteGatewayRouteInput {}
|
|
4
|
+
export interface DeleteGatewayRouteCommandInput extends DeleteGatewayRouteInput {}
|
|
9
5
|
export interface DeleteGatewayRouteCommandOutput
|
|
10
|
-
extends DeleteGatewayRouteOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteGatewayRouteOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteGatewayRouteCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteGatewayRouteCommandInput
|
|
9
|
+
input: DeleteGatewayRouteCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteGatewayRouteCommandInput,
|
|
17
12
|
DeleteGatewayRouteCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteGatewayRouteCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteGatewayRouteCommandInput
|
|
18
|
+
input: DeleteGatewayRouteCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteGatewayRouteCommandInput,
|
|
26
21
|
DeleteGatewayRouteCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteMeshInput, DeleteMeshOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteMeshCommandInput extends DeleteMeshInput {}
|
|
5
|
-
export interface DeleteMeshCommandOutput
|
|
6
|
-
extends DeleteMeshOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBearer {}
|
|
8
6
|
declare const DeleteMeshCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteMeshCommandInput
|
|
8
|
+
input: DeleteMeshCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteMeshCommandInput,
|
|
13
11
|
DeleteMeshCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteMeshCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteMeshCommandInput
|
|
17
|
+
input: DeleteMeshCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteMeshCommandInput,
|
|
22
20
|
DeleteMeshCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteRouteInput, DeleteRouteOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteRouteCommandInput extends DeleteRouteInput {}
|
|
5
|
-
export interface DeleteRouteCommandOutput
|
|
6
|
-
extends DeleteRouteOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteRouteCommandOutput extends DeleteRouteOutput, __MetadataBearer {}
|
|
8
6
|
declare const DeleteRouteCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteRouteCommandInput
|
|
8
|
+
input: DeleteRouteCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteRouteCommandInput,
|
|
13
11
|
DeleteRouteCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteRouteCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteRouteCommandInput
|
|
17
|
+
input: DeleteRouteCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteRouteCommandInput,
|
|
22
20
|
DeleteRouteCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteVirtualGatewayInput,
|
|
4
|
-
DeleteVirtualGatewayOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteVirtualGatewayInput, DeleteVirtualGatewayOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteVirtualGatewayCommandInput
|
|
8
|
-
extends DeleteVirtualGatewayInput {}
|
|
4
|
+
export interface DeleteVirtualGatewayCommandInput extends DeleteVirtualGatewayInput {}
|
|
9
5
|
export interface DeleteVirtualGatewayCommandOutput
|
|
10
|
-
extends DeleteVirtualGatewayOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteVirtualGatewayOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteVirtualGatewayCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteVirtualGatewayCommandInput
|
|
9
|
+
input: DeleteVirtualGatewayCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteVirtualGatewayCommandInput,
|
|
17
12
|
DeleteVirtualGatewayCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteVirtualGatewayCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteVirtualGatewayCommandInput
|
|
18
|
+
input: DeleteVirtualGatewayCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteVirtualGatewayCommandInput,
|
|
26
21
|
DeleteVirtualGatewayCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteVirtualNodeInput,
|
|
4
|
-
DeleteVirtualNodeOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteVirtualNodeInput, DeleteVirtualNodeOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteVirtualNodeCommandInput extends DeleteVirtualNodeInput {}
|
|
8
|
-
export interface DeleteVirtualNodeCommandOutput
|
|
9
|
-
extends DeleteVirtualNodeOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteVirtualNodeCommandOutput extends DeleteVirtualNodeOutput, __MetadataBearer {}
|
|
11
6
|
declare const DeleteVirtualNodeCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteVirtualNodeCommandInput
|
|
8
|
+
input: DeleteVirtualNodeCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteVirtualNodeCommandInput,
|
|
16
11
|
DeleteVirtualNodeCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteVirtualNodeCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteVirtualNodeCommandInput
|
|
17
|
+
input: DeleteVirtualNodeCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteVirtualNodeCommandInput,
|
|
25
20
|
DeleteVirtualNodeCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteVirtualRouterInput,
|
|
4
|
-
DeleteVirtualRouterOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteVirtualRouterInput, DeleteVirtualRouterOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteVirtualRouterCommandInput
|
|
8
|
-
extends DeleteVirtualRouterInput {}
|
|
4
|
+
export interface DeleteVirtualRouterCommandInput extends DeleteVirtualRouterInput {}
|
|
9
5
|
export interface DeleteVirtualRouterCommandOutput
|
|
10
|
-
extends DeleteVirtualRouterOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteVirtualRouterOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteVirtualRouterCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteVirtualRouterCommandInput
|
|
9
|
+
input: DeleteVirtualRouterCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteVirtualRouterCommandInput,
|
|
17
12
|
DeleteVirtualRouterCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteVirtualRouterCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteVirtualRouterCommandInput
|
|
18
|
+
input: DeleteVirtualRouterCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteVirtualRouterCommandInput,
|
|
26
21
|
DeleteVirtualRouterCommandOutput,
|