@aws-sdk/client-app-mesh 3.952.0 → 3.954.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 +870 -547
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateGatewayRouteCommand.js +2 -2
- package/dist-es/commands/CreateMeshCommand.js +2 -2
- package/dist-es/commands/CreateRouteCommand.js +2 -2
- package/dist-es/commands/CreateVirtualGatewayCommand.js +2 -2
- package/dist-es/commands/CreateVirtualNodeCommand.js +2 -2
- package/dist-es/commands/CreateVirtualRouterCommand.js +2 -2
- package/dist-es/commands/CreateVirtualServiceCommand.js +2 -2
- package/dist-es/commands/DeleteGatewayRouteCommand.js +2 -2
- package/dist-es/commands/DeleteMeshCommand.js +2 -2
- package/dist-es/commands/DeleteRouteCommand.js +2 -2
- package/dist-es/commands/DeleteVirtualGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteVirtualNodeCommand.js +2 -2
- package/dist-es/commands/DeleteVirtualRouterCommand.js +2 -2
- package/dist-es/commands/DeleteVirtualServiceCommand.js +2 -2
- package/dist-es/commands/DescribeGatewayRouteCommand.js +2 -2
- package/dist-es/commands/DescribeMeshCommand.js +2 -2
- package/dist-es/commands/DescribeRouteCommand.js +2 -2
- package/dist-es/commands/DescribeVirtualGatewayCommand.js +2 -2
- package/dist-es/commands/DescribeVirtualNodeCommand.js +2 -2
- package/dist-es/commands/DescribeVirtualRouterCommand.js +2 -2
- package/dist-es/commands/DescribeVirtualServiceCommand.js +2 -2
- package/dist-es/commands/ListGatewayRoutesCommand.js +2 -2
- package/dist-es/commands/ListMeshesCommand.js +2 -2
- package/dist-es/commands/ListRoutesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListVirtualGatewaysCommand.js +2 -2
- package/dist-es/commands/ListVirtualNodesCommand.js +2 -2
- package/dist-es/commands/ListVirtualRoutersCommand.js +2 -2
- package/dist-es/commands/ListVirtualServicesCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateGatewayRouteCommand.js +2 -2
- package/dist-es/commands/UpdateMeshCommand.js +2 -2
- package/dist-es/commands/UpdateRouteCommand.js +2 -2
- package/dist-es/commands/UpdateVirtualGatewayCommand.js +2 -2
- package/dist-es/commands/UpdateVirtualNodeCommand.js +2 -2
- package/dist-es/commands/UpdateVirtualRouterCommand.js +2 -2
- package/dist-es/commands/UpdateVirtualServiceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +542 -486
- package/dist-types/AppMeshClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +268 -296
- package/dist-types/ts3.4/AppMeshClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +267 -296
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.appmesh",
|
|
32
|
+
version: "2019-01-25",
|
|
33
|
+
serviceTarget: "AppMesh",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "App Mesh",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGatewayRoute } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGatewayRoute$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGatewayRouteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateGatewayRouteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "CreateGatewayRoute", {})
|
|
13
13
|
.n("AppMeshClient", "CreateGatewayRouteCommand")
|
|
14
|
-
.sc(CreateGatewayRoute)
|
|
14
|
+
.sc(CreateGatewayRoute$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateMesh } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateMesh$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateMeshCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateMeshCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "CreateMesh", {})
|
|
13
13
|
.n("AppMeshClient", "CreateMeshCommand")
|
|
14
|
-
.sc(CreateMesh)
|
|
14
|
+
.sc(CreateMesh$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRoute } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRoute$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRouteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRouteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "CreateRoute", {})
|
|
13
13
|
.n("AppMeshClient", "CreateRouteCommand")
|
|
14
|
-
.sc(CreateRoute)
|
|
14
|
+
.sc(CreateRoute$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVirtualGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVirtualGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVirtualGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVirtualGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "CreateVirtualGateway", {})
|
|
13
13
|
.n("AppMeshClient", "CreateVirtualGatewayCommand")
|
|
14
|
-
.sc(CreateVirtualGateway)
|
|
14
|
+
.sc(CreateVirtualGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVirtualNode } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVirtualNode$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVirtualNodeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVirtualNodeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "CreateVirtualNode", {})
|
|
13
13
|
.n("AppMeshClient", "CreateVirtualNodeCommand")
|
|
14
|
-
.sc(CreateVirtualNode)
|
|
14
|
+
.sc(CreateVirtualNode$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVirtualRouter } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVirtualRouter$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVirtualRouterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVirtualRouterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "CreateVirtualRouter", {})
|
|
13
13
|
.n("AppMeshClient", "CreateVirtualRouterCommand")
|
|
14
|
-
.sc(CreateVirtualRouter)
|
|
14
|
+
.sc(CreateVirtualRouter$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVirtualService } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVirtualService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVirtualServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVirtualServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "CreateVirtualService", {})
|
|
13
13
|
.n("AppMeshClient", "CreateVirtualServiceCommand")
|
|
14
|
-
.sc(CreateVirtualService)
|
|
14
|
+
.sc(CreateVirtualService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteGatewayRoute } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteGatewayRoute$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteGatewayRouteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteGatewayRouteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DeleteGatewayRoute", {})
|
|
13
13
|
.n("AppMeshClient", "DeleteGatewayRouteCommand")
|
|
14
|
-
.sc(DeleteGatewayRoute)
|
|
14
|
+
.sc(DeleteGatewayRoute$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMesh } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMesh$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMeshCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMeshCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DeleteMesh", {})
|
|
13
13
|
.n("AppMeshClient", "DeleteMeshCommand")
|
|
14
|
-
.sc(DeleteMesh)
|
|
14
|
+
.sc(DeleteMesh$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRoute } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRoute$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRouteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRouteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DeleteRoute", {})
|
|
13
13
|
.n("AppMeshClient", "DeleteRouteCommand")
|
|
14
|
-
.sc(DeleteRoute)
|
|
14
|
+
.sc(DeleteRoute$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVirtualGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVirtualGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVirtualGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVirtualGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DeleteVirtualGateway", {})
|
|
13
13
|
.n("AppMeshClient", "DeleteVirtualGatewayCommand")
|
|
14
|
-
.sc(DeleteVirtualGateway)
|
|
14
|
+
.sc(DeleteVirtualGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVirtualNode } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVirtualNode$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVirtualNodeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVirtualNodeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DeleteVirtualNode", {})
|
|
13
13
|
.n("AppMeshClient", "DeleteVirtualNodeCommand")
|
|
14
|
-
.sc(DeleteVirtualNode)
|
|
14
|
+
.sc(DeleteVirtualNode$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVirtualRouter } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVirtualRouter$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVirtualRouterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVirtualRouterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DeleteVirtualRouter", {})
|
|
13
13
|
.n("AppMeshClient", "DeleteVirtualRouterCommand")
|
|
14
|
-
.sc(DeleteVirtualRouter)
|
|
14
|
+
.sc(DeleteVirtualRouter$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVirtualService } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVirtualService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVirtualServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVirtualServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DeleteVirtualService", {})
|
|
13
13
|
.n("AppMeshClient", "DeleteVirtualServiceCommand")
|
|
14
|
-
.sc(DeleteVirtualService)
|
|
14
|
+
.sc(DeleteVirtualService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeGatewayRoute } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeGatewayRoute$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeGatewayRouteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeGatewayRouteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DescribeGatewayRoute", {})
|
|
13
13
|
.n("AppMeshClient", "DescribeGatewayRouteCommand")
|
|
14
|
-
.sc(DescribeGatewayRoute)
|
|
14
|
+
.sc(DescribeGatewayRoute$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeMesh } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeMesh$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeMeshCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeMeshCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DescribeMesh", {})
|
|
13
13
|
.n("AppMeshClient", "DescribeMeshCommand")
|
|
14
|
-
.sc(DescribeMesh)
|
|
14
|
+
.sc(DescribeMesh$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeRoute } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRoute$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRouteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRouteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DescribeRoute", {})
|
|
13
13
|
.n("AppMeshClient", "DescribeRouteCommand")
|
|
14
|
-
.sc(DescribeRoute)
|
|
14
|
+
.sc(DescribeRoute$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVirtualGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVirtualGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVirtualGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVirtualGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DescribeVirtualGateway", {})
|
|
13
13
|
.n("AppMeshClient", "DescribeVirtualGatewayCommand")
|
|
14
|
-
.sc(DescribeVirtualGateway)
|
|
14
|
+
.sc(DescribeVirtualGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVirtualNode } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVirtualNode$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVirtualNodeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVirtualNodeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DescribeVirtualNode", {})
|
|
13
13
|
.n("AppMeshClient", "DescribeVirtualNodeCommand")
|
|
14
|
-
.sc(DescribeVirtualNode)
|
|
14
|
+
.sc(DescribeVirtualNode$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVirtualRouter } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVirtualRouter$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVirtualRouterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVirtualRouterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DescribeVirtualRouter", {})
|
|
13
13
|
.n("AppMeshClient", "DescribeVirtualRouterCommand")
|
|
14
|
-
.sc(DescribeVirtualRouter)
|
|
14
|
+
.sc(DescribeVirtualRouter$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVirtualService } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVirtualService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVirtualServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVirtualServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "DescribeVirtualService", {})
|
|
13
13
|
.n("AppMeshClient", "DescribeVirtualServiceCommand")
|
|
14
|
-
.sc(DescribeVirtualService)
|
|
14
|
+
.sc(DescribeVirtualService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGatewayRoutes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGatewayRoutes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGatewayRoutesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGatewayRoutesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "ListGatewayRoutes", {})
|
|
13
13
|
.n("AppMeshClient", "ListGatewayRoutesCommand")
|
|
14
|
-
.sc(ListGatewayRoutes)
|
|
14
|
+
.sc(ListGatewayRoutes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMeshes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMeshes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMeshesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMeshesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "ListMeshes", {})
|
|
13
13
|
.n("AppMeshClient", "ListMeshesCommand")
|
|
14
|
-
.sc(ListMeshes)
|
|
14
|
+
.sc(ListMeshes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRoutes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRoutes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRoutesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRoutesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "ListRoutes", {})
|
|
13
13
|
.n("AppMeshClient", "ListRoutesCommand")
|
|
14
|
-
.sc(ListRoutes)
|
|
14
|
+
.sc(ListRoutes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "ListTagsForResource", {})
|
|
13
13
|
.n("AppMeshClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVirtualGateways } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVirtualGateways$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVirtualGatewaysCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVirtualGatewaysCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "ListVirtualGateways", {})
|
|
13
13
|
.n("AppMeshClient", "ListVirtualGatewaysCommand")
|
|
14
|
-
.sc(ListVirtualGateways)
|
|
14
|
+
.sc(ListVirtualGateways$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVirtualNodes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVirtualNodes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVirtualNodesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVirtualNodesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "ListVirtualNodes", {})
|
|
13
13
|
.n("AppMeshClient", "ListVirtualNodesCommand")
|
|
14
|
-
.sc(ListVirtualNodes)
|
|
14
|
+
.sc(ListVirtualNodes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVirtualRouters } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVirtualRouters$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVirtualRoutersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVirtualRoutersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "ListVirtualRouters", {})
|
|
13
13
|
.n("AppMeshClient", "ListVirtualRoutersCommand")
|
|
14
|
-
.sc(ListVirtualRouters)
|
|
14
|
+
.sc(ListVirtualRouters$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVirtualServices } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVirtualServices$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVirtualServicesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVirtualServicesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "ListVirtualServices", {})
|
|
13
13
|
.n("AppMeshClient", "ListVirtualServicesCommand")
|
|
14
|
-
.sc(ListVirtualServices)
|
|
14
|
+
.sc(ListVirtualServices$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "TagResource", {})
|
|
13
13
|
.n("AppMeshClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "UntagResource", {})
|
|
13
13
|
.n("AppMeshClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateGatewayRoute } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateGatewayRoute$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateGatewayRouteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateGatewayRouteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "UpdateGatewayRoute", {})
|
|
13
13
|
.n("AppMeshClient", "UpdateGatewayRouteCommand")
|
|
14
|
-
.sc(UpdateGatewayRoute)
|
|
14
|
+
.sc(UpdateGatewayRoute$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateMesh } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateMesh$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateMeshCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateMeshCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "UpdateMesh", {})
|
|
13
13
|
.n("AppMeshClient", "UpdateMeshCommand")
|
|
14
|
-
.sc(UpdateMesh)
|
|
14
|
+
.sc(UpdateMesh$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateRoute } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRoute$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRouteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRouteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "UpdateRoute", {})
|
|
13
13
|
.n("AppMeshClient", "UpdateRouteCommand")
|
|
14
|
-
.sc(UpdateRoute)
|
|
14
|
+
.sc(UpdateRoute$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateVirtualGateway } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateVirtualGateway$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateVirtualGatewayCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateVirtualGatewayCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppMesh", "UpdateVirtualGateway", {})
|
|
13
13
|
.n("AppMeshClient", "UpdateVirtualGatewayCommand")
|
|
14
|
-
.sc(UpdateVirtualGateway)
|
|
14
|
+
.sc(UpdateVirtualGateway$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|