@aws-sdk/client-kinesis-analytics-v2 3.414.0 → 3.418.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 (63) hide show
  1. package/dist-cjs/commands/AddApplicationCloudWatchLoggingOptionCommand.js +5 -0
  2. package/dist-cjs/commands/AddApplicationInputCommand.js +5 -0
  3. package/dist-cjs/commands/AddApplicationInputProcessingConfigurationCommand.js +5 -0
  4. package/dist-cjs/commands/AddApplicationOutputCommand.js +5 -0
  5. package/dist-cjs/commands/AddApplicationReferenceDataSourceCommand.js +5 -0
  6. package/dist-cjs/commands/AddApplicationVpcConfigurationCommand.js +5 -0
  7. package/dist-cjs/commands/CreateApplicationCommand.js +5 -0
  8. package/dist-cjs/commands/CreateApplicationPresignedUrlCommand.js +5 -0
  9. package/dist-cjs/commands/CreateApplicationSnapshotCommand.js +5 -0
  10. package/dist-cjs/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +5 -0
  11. package/dist-cjs/commands/DeleteApplicationCommand.js +5 -0
  12. package/dist-cjs/commands/DeleteApplicationInputProcessingConfigurationCommand.js +5 -0
  13. package/dist-cjs/commands/DeleteApplicationOutputCommand.js +5 -0
  14. package/dist-cjs/commands/DeleteApplicationReferenceDataSourceCommand.js +5 -0
  15. package/dist-cjs/commands/DeleteApplicationSnapshotCommand.js +5 -0
  16. package/dist-cjs/commands/DeleteApplicationVpcConfigurationCommand.js +5 -0
  17. package/dist-cjs/commands/DescribeApplicationCommand.js +5 -0
  18. package/dist-cjs/commands/DescribeApplicationSnapshotCommand.js +5 -0
  19. package/dist-cjs/commands/DescribeApplicationVersionCommand.js +5 -0
  20. package/dist-cjs/commands/DiscoverInputSchemaCommand.js +5 -0
  21. package/dist-cjs/commands/ListApplicationSnapshotsCommand.js +5 -0
  22. package/dist-cjs/commands/ListApplicationVersionsCommand.js +5 -0
  23. package/dist-cjs/commands/ListApplicationsCommand.js +5 -0
  24. package/dist-cjs/commands/ListTagsForResourceCommand.js +5 -0
  25. package/dist-cjs/commands/RollbackApplicationCommand.js +5 -0
  26. package/dist-cjs/commands/StartApplicationCommand.js +5 -0
  27. package/dist-cjs/commands/StopApplicationCommand.js +5 -0
  28. package/dist-cjs/commands/TagResourceCommand.js +5 -0
  29. package/dist-cjs/commands/UntagResourceCommand.js +5 -0
  30. package/dist-cjs/commands/UpdateApplicationCommand.js +5 -0
  31. package/dist-cjs/commands/UpdateApplicationMaintenanceConfigurationCommand.js +5 -0
  32. package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +5 -0
  33. package/dist-es/commands/AddApplicationInputCommand.js +5 -0
  34. package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +5 -0
  35. package/dist-es/commands/AddApplicationOutputCommand.js +5 -0
  36. package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +5 -0
  37. package/dist-es/commands/AddApplicationVpcConfigurationCommand.js +5 -0
  38. package/dist-es/commands/CreateApplicationCommand.js +5 -0
  39. package/dist-es/commands/CreateApplicationPresignedUrlCommand.js +5 -0
  40. package/dist-es/commands/CreateApplicationSnapshotCommand.js +5 -0
  41. package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +5 -0
  42. package/dist-es/commands/DeleteApplicationCommand.js +5 -0
  43. package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +5 -0
  44. package/dist-es/commands/DeleteApplicationOutputCommand.js +5 -0
  45. package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +5 -0
  46. package/dist-es/commands/DeleteApplicationSnapshotCommand.js +5 -0
  47. package/dist-es/commands/DeleteApplicationVpcConfigurationCommand.js +5 -0
  48. package/dist-es/commands/DescribeApplicationCommand.js +5 -0
  49. package/dist-es/commands/DescribeApplicationSnapshotCommand.js +5 -0
  50. package/dist-es/commands/DescribeApplicationVersionCommand.js +5 -0
  51. package/dist-es/commands/DiscoverInputSchemaCommand.js +5 -0
  52. package/dist-es/commands/ListApplicationSnapshotsCommand.js +5 -0
  53. package/dist-es/commands/ListApplicationVersionsCommand.js +5 -0
  54. package/dist-es/commands/ListApplicationsCommand.js +5 -0
  55. package/dist-es/commands/ListTagsForResourceCommand.js +5 -0
  56. package/dist-es/commands/RollbackApplicationCommand.js +5 -0
  57. package/dist-es/commands/StartApplicationCommand.js +5 -0
  58. package/dist-es/commands/StopApplicationCommand.js +5 -0
  59. package/dist-es/commands/TagResourceCommand.js +5 -0
  60. package/dist-es/commands/UntagResourceCommand.js +5 -0
  61. package/dist-es/commands/UpdateApplicationCommand.js +5 -0
  62. package/dist-es/commands/UpdateApplicationMaintenanceConfigurationCommand.js +5 -0
  63. package/package.json +31 -31
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_AddApplicationInputCommand, se_AddApplicationInputCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class AddApplicationInputCommand extends $Command {
@@ -29,6 +30,10 @@ export class AddApplicationInputCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "AddApplicationInput",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_AddApplicationInputProcessingConfigurationCommand, se_AddApplicationInputProcessingConfigurationCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class AddApplicationInputProcessingConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class AddApplicationInputProcessingConfigurationCommand extends $Command
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "AddApplicationInputProcessingConfiguration",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_AddApplicationOutputCommand, se_AddApplicationOutputCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class AddApplicationOutputCommand extends $Command {
@@ -29,6 +30,10 @@ export class AddApplicationOutputCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "AddApplicationOutput",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_AddApplicationReferenceDataSourceCommand, se_AddApplicationReferenceDataSourceCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class AddApplicationReferenceDataSourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class AddApplicationReferenceDataSourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "AddApplicationReferenceDataSource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_AddApplicationVpcConfigurationCommand, se_AddApplicationVpcConfigurationCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class AddApplicationVpcConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class AddApplicationVpcConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "AddApplicationVpcConfiguration",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_CreateApplicationCommand, se_CreateApplicationCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class CreateApplicationCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateApplicationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "CreateApplication",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_CreateApplicationPresignedUrlCommand, se_CreateApplicationPresignedUrlCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class CreateApplicationPresignedUrlCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateApplicationPresignedUrlCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "CreateApplicationPresignedUrl",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_CreateApplicationSnapshotCommand, se_CreateApplicationSnapshotCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class CreateApplicationSnapshotCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateApplicationSnapshotCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "CreateApplicationSnapshot",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteApplicationCloudWatchLoggingOptionCommand, se_DeleteApplicationCloudWatchLoggingOptionCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DeleteApplicationCloudWatchLoggingOption",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteApplicationCommand, se_DeleteApplicationCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DeleteApplicationCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteApplicationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DeleteApplication",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteApplicationInputProcessingConfigurationCommand, se_DeleteApplicationInputProcessingConfigurationCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DeleteApplicationInputProcessingConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteApplicationInputProcessingConfigurationCommand extends $Comma
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DeleteApplicationInputProcessingConfiguration",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteApplicationOutputCommand, se_DeleteApplicationOutputCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DeleteApplicationOutputCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteApplicationOutputCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DeleteApplicationOutput",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteApplicationReferenceDataSourceCommand, se_DeleteApplicationReferenceDataSourceCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DeleteApplicationReferenceDataSourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteApplicationReferenceDataSourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DeleteApplicationReferenceDataSource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteApplicationSnapshotCommand, se_DeleteApplicationSnapshotCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DeleteApplicationSnapshotCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteApplicationSnapshotCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DeleteApplicationSnapshot",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteApplicationVpcConfigurationCommand, se_DeleteApplicationVpcConfigurationCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DeleteApplicationVpcConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteApplicationVpcConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DeleteApplicationVpcConfiguration",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DescribeApplicationCommand, se_DescribeApplicationCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DescribeApplicationCommand extends $Command {
@@ -29,6 +30,10 @@ export class DescribeApplicationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DescribeApplication",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DescribeApplicationSnapshotCommand, se_DescribeApplicationSnapshotCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DescribeApplicationSnapshotCommand extends $Command {
@@ -29,6 +30,10 @@ export class DescribeApplicationSnapshotCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DescribeApplicationSnapshot",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DescribeApplicationVersionCommand, se_DescribeApplicationVersionCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DescribeApplicationVersionCommand extends $Command {
@@ -29,6 +30,10 @@ export class DescribeApplicationVersionCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DescribeApplicationVersion",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DiscoverInputSchemaCommand, se_DiscoverInputSchemaCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class DiscoverInputSchemaCommand extends $Command {
@@ -29,6 +30,10 @@ export class DiscoverInputSchemaCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "DiscoverInputSchema",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListApplicationSnapshotsCommand, se_ListApplicationSnapshotsCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class ListApplicationSnapshotsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListApplicationSnapshotsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "ListApplicationSnapshots",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListApplicationVersionsCommand, se_ListApplicationVersionsCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class ListApplicationVersionsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListApplicationVersionsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "ListApplicationVersions",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListApplicationsCommand, se_ListApplicationsCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class ListApplicationsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListApplicationsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "ListApplications",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class ListTagsForResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListTagsForResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "ListTagsForResource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_RollbackApplicationCommand, se_RollbackApplicationCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class RollbackApplicationCommand extends $Command {
@@ -29,6 +30,10 @@ export class RollbackApplicationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "RollbackApplication",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_StartApplicationCommand, se_StartApplicationCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class StartApplicationCommand extends $Command {
@@ -29,6 +30,10 @@ export class StartApplicationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "StartApplication",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_StopApplicationCommand, se_StopApplicationCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class StopApplicationCommand extends $Command {
@@ -29,6 +30,10 @@ export class StopApplicationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "StopApplication",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class TagResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class TagResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "TagResource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class UntagResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class UntagResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "UntagResource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_UpdateApplicationCommand, se_UpdateApplicationCommand } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class UpdateApplicationCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateApplicationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "UpdateApplication",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_UpdateApplicationMaintenanceConfigurationCommand, se_UpdateApplicationMaintenanceConfigurationCommand, } from "../protocols/Aws_json1_1";
5
6
  export { $Command };
6
7
  export class UpdateApplicationMaintenanceConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateApplicationMaintenanceConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "KinesisAnalytics_20180523",
35
+ operation: "UpdateApplicationMaintenanceConfiguration",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);