@aws-sdk/client-app-mesh 3.928.0 → 3.929.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.
Files changed (59) hide show
  1. package/dist-cjs/index.js +2611 -1742
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/AppMeshClient.js +2 -0
  4. package/dist-es/commands/CreateGatewayRouteCommand.js +3 -9
  5. package/dist-es/commands/CreateMeshCommand.js +3 -9
  6. package/dist-es/commands/CreateRouteCommand.js +3 -9
  7. package/dist-es/commands/CreateVirtualGatewayCommand.js +3 -9
  8. package/dist-es/commands/CreateVirtualNodeCommand.js +3 -9
  9. package/dist-es/commands/CreateVirtualRouterCommand.js +3 -9
  10. package/dist-es/commands/CreateVirtualServiceCommand.js +3 -9
  11. package/dist-es/commands/DeleteGatewayRouteCommand.js +3 -9
  12. package/dist-es/commands/DeleteMeshCommand.js +3 -9
  13. package/dist-es/commands/DeleteRouteCommand.js +3 -9
  14. package/dist-es/commands/DeleteVirtualGatewayCommand.js +3 -9
  15. package/dist-es/commands/DeleteVirtualNodeCommand.js +3 -9
  16. package/dist-es/commands/DeleteVirtualRouterCommand.js +3 -9
  17. package/dist-es/commands/DeleteVirtualServiceCommand.js +3 -9
  18. package/dist-es/commands/DescribeGatewayRouteCommand.js +3 -9
  19. package/dist-es/commands/DescribeMeshCommand.js +3 -9
  20. package/dist-es/commands/DescribeRouteCommand.js +3 -9
  21. package/dist-es/commands/DescribeVirtualGatewayCommand.js +3 -9
  22. package/dist-es/commands/DescribeVirtualNodeCommand.js +3 -9
  23. package/dist-es/commands/DescribeVirtualRouterCommand.js +3 -9
  24. package/dist-es/commands/DescribeVirtualServiceCommand.js +3 -9
  25. package/dist-es/commands/ListGatewayRoutesCommand.js +3 -9
  26. package/dist-es/commands/ListMeshesCommand.js +3 -9
  27. package/dist-es/commands/ListRoutesCommand.js +3 -9
  28. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  29. package/dist-es/commands/ListVirtualGatewaysCommand.js +3 -9
  30. package/dist-es/commands/ListVirtualNodesCommand.js +3 -9
  31. package/dist-es/commands/ListVirtualRoutersCommand.js +3 -9
  32. package/dist-es/commands/ListVirtualServicesCommand.js +3 -9
  33. package/dist-es/commands/TagResourceCommand.js +3 -9
  34. package/dist-es/commands/UntagResourceCommand.js +3 -9
  35. package/dist-es/commands/UpdateGatewayRouteCommand.js +3 -9
  36. package/dist-es/commands/UpdateMeshCommand.js +3 -9
  37. package/dist-es/commands/UpdateRouteCommand.js +3 -9
  38. package/dist-es/commands/UpdateVirtualGatewayCommand.js +3 -9
  39. package/dist-es/commands/UpdateVirtualNodeCommand.js +3 -9
  40. package/dist-es/commands/UpdateVirtualRouterCommand.js +3 -9
  41. package/dist-es/commands/UpdateVirtualServiceCommand.js +3 -9
  42. package/dist-es/runtimeConfig.shared.js +2 -0
  43. package/dist-es/schemas/schemas_0.js +2515 -0
  44. package/dist-types/AppMeshClient.d.ts +10 -1
  45. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  46. package/dist-types/runtimeConfig.d.ts +1 -0
  47. package/dist-types/runtimeConfig.native.d.ts +1 -0
  48. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  49. package/dist-types/schemas/schemas_0.d.ts +296 -0
  50. package/dist-types/ts3.4/AppMeshClient.d.ts +4 -0
  51. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  52. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  53. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  54. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  55. package/dist-types/ts3.4/schemas/schemas_0.d.ts +301 -0
  56. package/package.json +2 -3
  57. package/dist-es/protocols/Aws_restJson1.js +0 -1451
  58. package/dist-types/protocols/Aws_restJson1.d.ts +0 -344
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -461
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -25,6 +26,7 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.appmesh" }),
28
30
  serviceId: config?.serviceId ?? "App Mesh",
29
31
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
32
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class AppMeshClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateGatewayRouteCommand, se_CreateGatewayRouteCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateGatewayRoute } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateGatewayRouteCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "CreateGatewayRoute", {})
17
13
  .n("AppMeshClient", "CreateGatewayRouteCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateGatewayRouteCommand)
20
- .de(de_CreateGatewayRouteCommand)
14
+ .sc(CreateGatewayRoute)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateMeshCommand, se_CreateMeshCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateMesh } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateMeshCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "CreateMesh", {})
17
13
  .n("AppMeshClient", "CreateMeshCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateMeshCommand)
20
- .de(de_CreateMeshCommand)
14
+ .sc(CreateMesh)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateRouteCommand, se_CreateRouteCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateRoute } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateRouteCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "CreateRoute", {})
17
13
  .n("AppMeshClient", "CreateRouteCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateRouteCommand)
20
- .de(de_CreateRouteCommand)
14
+ .sc(CreateRoute)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateVirtualGatewayCommand, se_CreateVirtualGatewayCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateVirtualGateway } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateVirtualGatewayCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "CreateVirtualGateway", {})
17
13
  .n("AppMeshClient", "CreateVirtualGatewayCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateVirtualGatewayCommand)
20
- .de(de_CreateVirtualGatewayCommand)
14
+ .sc(CreateVirtualGateway)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateVirtualNodeCommand, se_CreateVirtualNodeCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateVirtualNode } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateVirtualNodeCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "CreateVirtualNode", {})
17
13
  .n("AppMeshClient", "CreateVirtualNodeCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateVirtualNodeCommand)
20
- .de(de_CreateVirtualNodeCommand)
14
+ .sc(CreateVirtualNode)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateVirtualRouterCommand, se_CreateVirtualRouterCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateVirtualRouter } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateVirtualRouterCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "CreateVirtualRouter", {})
17
13
  .n("AppMeshClient", "CreateVirtualRouterCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateVirtualRouterCommand)
20
- .de(de_CreateVirtualRouterCommand)
14
+ .sc(CreateVirtualRouter)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateVirtualServiceCommand, se_CreateVirtualServiceCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateVirtualService } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateVirtualServiceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "CreateVirtualService", {})
17
13
  .n("AppMeshClient", "CreateVirtualServiceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateVirtualServiceCommand)
20
- .de(de_CreateVirtualServiceCommand)
14
+ .sc(CreateVirtualService)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteGatewayRouteCommand, se_DeleteGatewayRouteCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteGatewayRoute } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteGatewayRouteCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DeleteGatewayRoute", {})
17
13
  .n("AppMeshClient", "DeleteGatewayRouteCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteGatewayRouteCommand)
20
- .de(de_DeleteGatewayRouteCommand)
14
+ .sc(DeleteGatewayRoute)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteMeshCommand, se_DeleteMeshCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteMesh } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteMeshCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DeleteMesh", {})
17
13
  .n("AppMeshClient", "DeleteMeshCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteMeshCommand)
20
- .de(de_DeleteMeshCommand)
14
+ .sc(DeleteMesh)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteRouteCommand, se_DeleteRouteCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteRoute } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteRouteCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DeleteRoute", {})
17
13
  .n("AppMeshClient", "DeleteRouteCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteRouteCommand)
20
- .de(de_DeleteRouteCommand)
14
+ .sc(DeleteRoute)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteVirtualGatewayCommand, se_DeleteVirtualGatewayCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteVirtualGateway } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteVirtualGatewayCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DeleteVirtualGateway", {})
17
13
  .n("AppMeshClient", "DeleteVirtualGatewayCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteVirtualGatewayCommand)
20
- .de(de_DeleteVirtualGatewayCommand)
14
+ .sc(DeleteVirtualGateway)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteVirtualNodeCommand, se_DeleteVirtualNodeCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteVirtualNode } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteVirtualNodeCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DeleteVirtualNode", {})
17
13
  .n("AppMeshClient", "DeleteVirtualNodeCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteVirtualNodeCommand)
20
- .de(de_DeleteVirtualNodeCommand)
14
+ .sc(DeleteVirtualNode)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteVirtualRouterCommand, se_DeleteVirtualRouterCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteVirtualRouter } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteVirtualRouterCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DeleteVirtualRouter", {})
17
13
  .n("AppMeshClient", "DeleteVirtualRouterCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteVirtualRouterCommand)
20
- .de(de_DeleteVirtualRouterCommand)
14
+ .sc(DeleteVirtualRouter)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteVirtualServiceCommand, se_DeleteVirtualServiceCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteVirtualService } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteVirtualServiceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DeleteVirtualService", {})
17
13
  .n("AppMeshClient", "DeleteVirtualServiceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteVirtualServiceCommand)
20
- .de(de_DeleteVirtualServiceCommand)
14
+ .sc(DeleteVirtualService)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeGatewayRouteCommand, se_DescribeGatewayRouteCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeGatewayRoute } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeGatewayRouteCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DescribeGatewayRoute", {})
17
13
  .n("AppMeshClient", "DescribeGatewayRouteCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeGatewayRouteCommand)
20
- .de(de_DescribeGatewayRouteCommand)
14
+ .sc(DescribeGatewayRoute)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeMeshCommand, se_DescribeMeshCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeMesh } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeMeshCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DescribeMesh", {})
17
13
  .n("AppMeshClient", "DescribeMeshCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeMeshCommand)
20
- .de(de_DescribeMeshCommand)
14
+ .sc(DescribeMesh)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeRouteCommand, se_DescribeRouteCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeRoute } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeRouteCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DescribeRoute", {})
17
13
  .n("AppMeshClient", "DescribeRouteCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeRouteCommand)
20
- .de(de_DescribeRouteCommand)
14
+ .sc(DescribeRoute)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeVirtualGatewayCommand, se_DescribeVirtualGatewayCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeVirtualGateway } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeVirtualGatewayCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DescribeVirtualGateway", {})
17
13
  .n("AppMeshClient", "DescribeVirtualGatewayCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeVirtualGatewayCommand)
20
- .de(de_DescribeVirtualGatewayCommand)
14
+ .sc(DescribeVirtualGateway)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeVirtualNodeCommand, se_DescribeVirtualNodeCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeVirtualNode } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeVirtualNodeCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DescribeVirtualNode", {})
17
13
  .n("AppMeshClient", "DescribeVirtualNodeCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeVirtualNodeCommand)
20
- .de(de_DescribeVirtualNodeCommand)
14
+ .sc(DescribeVirtualNode)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeVirtualRouterCommand, se_DescribeVirtualRouterCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeVirtualRouter } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeVirtualRouterCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DescribeVirtualRouter", {})
17
13
  .n("AppMeshClient", "DescribeVirtualRouterCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeVirtualRouterCommand)
20
- .de(de_DescribeVirtualRouterCommand)
14
+ .sc(DescribeVirtualRouter)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeVirtualServiceCommand, se_DescribeVirtualServiceCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeVirtualService } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeVirtualServiceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "DescribeVirtualService", {})
17
13
  .n("AppMeshClient", "DescribeVirtualServiceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeVirtualServiceCommand)
20
- .de(de_DescribeVirtualServiceCommand)
14
+ .sc(DescribeVirtualService)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListGatewayRoutesCommand, se_ListGatewayRoutesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListGatewayRoutes } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListGatewayRoutesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AppMesh", "ListGatewayRoutes", {})
17
13
  .n("AppMeshClient", "ListGatewayRoutesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListGatewayRoutesCommand)
20
- .de(de_ListGatewayRoutesCommand)
14
+ .sc(ListGatewayRoutes)
21
15
  .build() {
22
16
  }