@aws-sdk/client-appfabric 3.927.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 (50) hide show
  1. package/dist-cjs/index.js +1127 -1145
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/AppFabricClient.js +2 -0
  4. package/dist-es/commands/BatchGetUserAccessTasksCommand.js +3 -10
  5. package/dist-es/commands/ConnectAppAuthorizationCommand.js +3 -10
  6. package/dist-es/commands/CreateAppAuthorizationCommand.js +3 -10
  7. package/dist-es/commands/CreateAppBundleCommand.js +3 -9
  8. package/dist-es/commands/CreateIngestionCommand.js +3 -9
  9. package/dist-es/commands/CreateIngestionDestinationCommand.js +3 -9
  10. package/dist-es/commands/DeleteAppAuthorizationCommand.js +3 -9
  11. package/dist-es/commands/DeleteAppBundleCommand.js +3 -9
  12. package/dist-es/commands/DeleteIngestionCommand.js +3 -9
  13. package/dist-es/commands/DeleteIngestionDestinationCommand.js +3 -9
  14. package/dist-es/commands/GetAppAuthorizationCommand.js +3 -9
  15. package/dist-es/commands/GetAppBundleCommand.js +3 -9
  16. package/dist-es/commands/GetIngestionCommand.js +3 -9
  17. package/dist-es/commands/GetIngestionDestinationCommand.js +3 -9
  18. package/dist-es/commands/ListAppAuthorizationsCommand.js +3 -9
  19. package/dist-es/commands/ListAppBundlesCommand.js +3 -9
  20. package/dist-es/commands/ListIngestionDestinationsCommand.js +3 -9
  21. package/dist-es/commands/ListIngestionsCommand.js +3 -9
  22. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  23. package/dist-es/commands/StartIngestionCommand.js +3 -9
  24. package/dist-es/commands/StartUserAccessTasksCommand.js +3 -10
  25. package/dist-es/commands/StopIngestionCommand.js +3 -9
  26. package/dist-es/commands/TagResourceCommand.js +3 -9
  27. package/dist-es/commands/UntagResourceCommand.js +3 -9
  28. package/dist-es/commands/UpdateAppAuthorizationCommand.js +3 -10
  29. package/dist-es/commands/UpdateIngestionDestinationCommand.js +3 -9
  30. package/dist-es/models/models_0.js +0 -51
  31. package/dist-es/runtimeConfig.shared.js +2 -0
  32. package/dist-es/schemas/schemas_0.js +1059 -0
  33. package/dist-types/AppFabricClient.d.ts +10 -1
  34. package/dist-types/models/models_0.d.ts +0 -40
  35. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  36. package/dist-types/runtimeConfig.d.ts +1 -0
  37. package/dist-types/runtimeConfig.native.d.ts +1 -0
  38. package/dist-types/runtimeConfig.shared.d.ts +2 -5
  39. package/dist-types/schemas/schemas_0.d.ts +125 -0
  40. package/dist-types/ts3.4/AppFabricClient.d.ts +4 -0
  41. package/dist-types/ts3.4/models/models_0.d.ts +0 -26
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +131 -0
  47. package/package.json +5 -6
  48. package/dist-es/protocols/Aws_restJson1.js +0 -887
  49. package/dist-types/protocols/Aws_restJson1.d.ts +0 -236
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -317
@@ -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.appfabric" }),
28
30
  serviceId: config?.serviceId ?? "AppFabric",
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 AppFabricClient 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,23 +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 { BatchGetUserAccessTasksResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_BatchGetUserAccessTasksCommand, se_BatchGetUserAccessTasksCommand } from "../protocols/Aws_restJson1";
4
+ import { BatchGetUserAccessTasks } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class BatchGetUserAccessTasksCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("FabricFrontEndService", "BatchGetUserAccessTasks", {})
18
13
  .n("AppFabricClient", "BatchGetUserAccessTasksCommand")
19
- .f(void 0, BatchGetUserAccessTasksResponseFilterSensitiveLog)
20
- .ser(se_BatchGetUserAccessTasksCommand)
21
- .de(de_BatchGetUserAccessTasksCommand)
14
+ .sc(BatchGetUserAccessTasks)
22
15
  .build() {
23
16
  }
@@ -1,23 +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 { ConnectAppAuthorizationRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_ConnectAppAuthorizationCommand, se_ConnectAppAuthorizationCommand } from "../protocols/Aws_restJson1";
4
+ import { ConnectAppAuthorization } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class ConnectAppAuthorizationCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("FabricFrontEndService", "ConnectAppAuthorization", {})
18
13
  .n("AppFabricClient", "ConnectAppAuthorizationCommand")
19
- .f(ConnectAppAuthorizationRequestFilterSensitiveLog, void 0)
20
- .ser(se_ConnectAppAuthorizationCommand)
21
- .de(de_ConnectAppAuthorizationCommand)
14
+ .sc(ConnectAppAuthorization)
22
15
  .build() {
23
16
  }
@@ -1,23 +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 { CreateAppAuthorizationRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CreateAppAuthorizationCommand, se_CreateAppAuthorizationCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateAppAuthorization } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CreateAppAuthorizationCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("FabricFrontEndService", "CreateAppAuthorization", {})
18
13
  .n("AppFabricClient", "CreateAppAuthorizationCommand")
19
- .f(CreateAppAuthorizationRequestFilterSensitiveLog, void 0)
20
- .ser(se_CreateAppAuthorizationCommand)
21
- .de(de_CreateAppAuthorizationCommand)
14
+ .sc(CreateAppAuthorization)
22
15
  .build() {
23
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_CreateAppBundleCommand, se_CreateAppBundleCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateAppBundle } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateAppBundleCommand 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("FabricFrontEndService", "CreateAppBundle", {})
17
13
  .n("AppFabricClient", "CreateAppBundleCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateAppBundleCommand)
20
- .de(de_CreateAppBundleCommand)
14
+ .sc(CreateAppBundle)
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_CreateIngestionCommand, se_CreateIngestionCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateIngestion } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateIngestionCommand 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("FabricFrontEndService", "CreateIngestion", {})
17
13
  .n("AppFabricClient", "CreateIngestionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateIngestionCommand)
20
- .de(de_CreateIngestionCommand)
14
+ .sc(CreateIngestion)
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_CreateIngestionDestinationCommand, se_CreateIngestionDestinationCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateIngestionDestination } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateIngestionDestinationCommand 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("FabricFrontEndService", "CreateIngestionDestination", {})
17
13
  .n("AppFabricClient", "CreateIngestionDestinationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateIngestionDestinationCommand)
20
- .de(de_CreateIngestionDestinationCommand)
14
+ .sc(CreateIngestionDestination)
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_DeleteAppAuthorizationCommand, se_DeleteAppAuthorizationCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteAppAuthorization } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteAppAuthorizationCommand 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("FabricFrontEndService", "DeleteAppAuthorization", {})
17
13
  .n("AppFabricClient", "DeleteAppAuthorizationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteAppAuthorizationCommand)
20
- .de(de_DeleteAppAuthorizationCommand)
14
+ .sc(DeleteAppAuthorization)
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_DeleteAppBundleCommand, se_DeleteAppBundleCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteAppBundle } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteAppBundleCommand 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("FabricFrontEndService", "DeleteAppBundle", {})
17
13
  .n("AppFabricClient", "DeleteAppBundleCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteAppBundleCommand)
20
- .de(de_DeleteAppBundleCommand)
14
+ .sc(DeleteAppBundle)
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_DeleteIngestionCommand, se_DeleteIngestionCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteIngestion } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteIngestionCommand 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("FabricFrontEndService", "DeleteIngestion", {})
17
13
  .n("AppFabricClient", "DeleteIngestionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteIngestionCommand)
20
- .de(de_DeleteIngestionCommand)
14
+ .sc(DeleteIngestion)
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_DeleteIngestionDestinationCommand, se_DeleteIngestionDestinationCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteIngestionDestination } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteIngestionDestinationCommand 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("FabricFrontEndService", "DeleteIngestionDestination", {})
17
13
  .n("AppFabricClient", "DeleteIngestionDestinationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteIngestionDestinationCommand)
20
- .de(de_DeleteIngestionDestinationCommand)
14
+ .sc(DeleteIngestionDestination)
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_GetAppAuthorizationCommand, se_GetAppAuthorizationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetAppAuthorization } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetAppAuthorizationCommand 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("FabricFrontEndService", "GetAppAuthorization", {})
17
13
  .n("AppFabricClient", "GetAppAuthorizationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetAppAuthorizationCommand)
20
- .de(de_GetAppAuthorizationCommand)
14
+ .sc(GetAppAuthorization)
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_GetAppBundleCommand, se_GetAppBundleCommand } from "../protocols/Aws_restJson1";
4
+ import { GetAppBundle } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetAppBundleCommand 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("FabricFrontEndService", "GetAppBundle", {})
17
13
  .n("AppFabricClient", "GetAppBundleCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetAppBundleCommand)
20
- .de(de_GetAppBundleCommand)
14
+ .sc(GetAppBundle)
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_GetIngestionCommand, se_GetIngestionCommand } from "../protocols/Aws_restJson1";
4
+ import { GetIngestion } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetIngestionCommand 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("FabricFrontEndService", "GetIngestion", {})
17
13
  .n("AppFabricClient", "GetIngestionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetIngestionCommand)
20
- .de(de_GetIngestionCommand)
14
+ .sc(GetIngestion)
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_GetIngestionDestinationCommand, se_GetIngestionDestinationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetIngestionDestination } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetIngestionDestinationCommand 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("FabricFrontEndService", "GetIngestionDestination", {})
17
13
  .n("AppFabricClient", "GetIngestionDestinationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetIngestionDestinationCommand)
20
- .de(de_GetIngestionDestinationCommand)
14
+ .sc(GetIngestionDestination)
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_ListAppAuthorizationsCommand, se_ListAppAuthorizationsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListAppAuthorizations } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAppAuthorizationsCommand 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("FabricFrontEndService", "ListAppAuthorizations", {})
17
13
  .n("AppFabricClient", "ListAppAuthorizationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAppAuthorizationsCommand)
20
- .de(de_ListAppAuthorizationsCommand)
14
+ .sc(ListAppAuthorizations)
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_ListAppBundlesCommand, se_ListAppBundlesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListAppBundles } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAppBundlesCommand 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("FabricFrontEndService", "ListAppBundles", {})
17
13
  .n("AppFabricClient", "ListAppBundlesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAppBundlesCommand)
20
- .de(de_ListAppBundlesCommand)
14
+ .sc(ListAppBundles)
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_ListIngestionDestinationsCommand, se_ListIngestionDestinationsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListIngestionDestinations } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListIngestionDestinationsCommand 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("FabricFrontEndService", "ListIngestionDestinations", {})
17
13
  .n("AppFabricClient", "ListIngestionDestinationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListIngestionDestinationsCommand)
20
- .de(de_ListIngestionDestinationsCommand)
14
+ .sc(ListIngestionDestinations)
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_ListIngestionsCommand, se_ListIngestionsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListIngestions } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListIngestionsCommand 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("FabricFrontEndService", "ListIngestions", {})
17
13
  .n("AppFabricClient", "ListIngestionsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListIngestionsCommand)
20
- .de(de_ListIngestionsCommand)
14
+ .sc(ListIngestions)
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_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { ListTagsForResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTagsForResourceCommand 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("FabricFrontEndService", "ListTagsForResource", {})
17
13
  .n("AppFabricClient", "ListTagsForResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTagsForResourceCommand)
20
- .de(de_ListTagsForResourceCommand)
14
+ .sc(ListTagsForResource)
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_StartIngestionCommand, se_StartIngestionCommand } from "../protocols/Aws_restJson1";
4
+ import { StartIngestion } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StartIngestionCommand 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("FabricFrontEndService", "StartIngestion", {})
17
13
  .n("AppFabricClient", "StartIngestionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StartIngestionCommand)
20
- .de(de_StartIngestionCommand)
14
+ .sc(StartIngestion)
21
15
  .build() {
22
16
  }
@@ -1,23 +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 { StartUserAccessTasksRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_StartUserAccessTasksCommand, se_StartUserAccessTasksCommand } from "../protocols/Aws_restJson1";
4
+ import { StartUserAccessTasks } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class StartUserAccessTasksCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("FabricFrontEndService", "StartUserAccessTasks", {})
18
13
  .n("AppFabricClient", "StartUserAccessTasksCommand")
19
- .f(StartUserAccessTasksRequestFilterSensitiveLog, void 0)
20
- .ser(se_StartUserAccessTasksCommand)
21
- .de(de_StartUserAccessTasksCommand)
14
+ .sc(StartUserAccessTasks)
22
15
  .build() {
23
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_StopIngestionCommand, se_StopIngestionCommand } from "../protocols/Aws_restJson1";
4
+ import { StopIngestion } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StopIngestionCommand 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("FabricFrontEndService", "StopIngestion", {})
17
13
  .n("AppFabricClient", "StopIngestionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StopIngestionCommand)
20
- .de(de_StopIngestionCommand)
14
+ .sc(StopIngestion)
21
15
  .build() {
22
16
  }