@aws-sdk/client-kinesis-analytics-v2 3.183.0 → 3.186.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 (44) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/KinesisAnalyticsV2.js +133 -126
  4. package/dist-es/KinesisAnalyticsV2Client.js +28 -22
  5. package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +28 -21
  6. package/dist-es/commands/AddApplicationInputCommand.js +28 -21
  7. package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +28 -21
  8. package/dist-es/commands/AddApplicationOutputCommand.js +28 -21
  9. package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +28 -21
  10. package/dist-es/commands/AddApplicationVpcConfigurationCommand.js +28 -21
  11. package/dist-es/commands/CreateApplicationCommand.js +28 -21
  12. package/dist-es/commands/CreateApplicationPresignedUrlCommand.js +28 -21
  13. package/dist-es/commands/CreateApplicationSnapshotCommand.js +28 -21
  14. package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +28 -21
  15. package/dist-es/commands/DeleteApplicationCommand.js +28 -21
  16. package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +28 -21
  17. package/dist-es/commands/DeleteApplicationOutputCommand.js +28 -21
  18. package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +28 -21
  19. package/dist-es/commands/DeleteApplicationSnapshotCommand.js +28 -21
  20. package/dist-es/commands/DeleteApplicationVpcConfigurationCommand.js +28 -21
  21. package/dist-es/commands/DescribeApplicationCommand.js +28 -21
  22. package/dist-es/commands/DescribeApplicationSnapshotCommand.js +28 -21
  23. package/dist-es/commands/DescribeApplicationVersionCommand.js +28 -21
  24. package/dist-es/commands/DiscoverInputSchemaCommand.js +28 -21
  25. package/dist-es/commands/ListApplicationSnapshotsCommand.js +28 -21
  26. package/dist-es/commands/ListApplicationVersionsCommand.js +28 -21
  27. package/dist-es/commands/ListApplicationsCommand.js +28 -21
  28. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  29. package/dist-es/commands/RollbackApplicationCommand.js +28 -21
  30. package/dist-es/commands/StartApplicationCommand.js +28 -21
  31. package/dist-es/commands/StopApplicationCommand.js +28 -21
  32. package/dist-es/commands/TagResourceCommand.js +28 -21
  33. package/dist-es/commands/UntagResourceCommand.js +28 -21
  34. package/dist-es/commands/UpdateApplicationCommand.js +28 -21
  35. package/dist-es/commands/UpdateApplicationMaintenanceConfigurationCommand.js +28 -21
  36. package/dist-es/endpoints.js +8 -8
  37. package/dist-es/models/KinesisAnalyticsV2ServiceException.js +10 -5
  38. package/dist-es/models/models_0.js +339 -700
  39. package/dist-es/protocols/Aws_json1_1.js +3333 -2967
  40. package/dist-es/runtimeConfig.browser.js +12 -26
  41. package/dist-es/runtimeConfig.js +12 -30
  42. package/dist-es/runtimeConfig.native.js +5 -8
  43. package/dist-es/runtimeConfig.shared.js +11 -8
  44. package/package.json +33 -33
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog, DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteApplicationCloudWatchLoggingOptionCommand, serializeAws_json1_1DeleteApplicationCloudWatchLoggingOptionCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteApplicationCloudWatchLoggingOptionCommand = (function (_super) {
7
+ __extends(DeleteApplicationCloudWatchLoggingOptionCommand, _super);
8
+ function DeleteApplicationCloudWatchLoggingOptionCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteApplicationCloudWatchLoggingOptionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DeleteApplicationCloudWatchLoggingOptionCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DeleteApplicationCloudWatchLoggingOptionCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteApplicationCloudWatchLoggingOptionCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteApplicationCloudWatchLoggingOptionCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteApplicationCloudWatchLoggingOptionCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteApplicationCloudWatchLoggingOptionCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteApplicationCloudWatchLoggingOptionCommand;
38
+ }($Command));
39
+ export { DeleteApplicationCloudWatchLoggingOptionCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteApplicationRequestFilterSensitiveLog, DeleteApplicationResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteApplicationCommand, serializeAws_json1_1DeleteApplicationCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteApplicationCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteApplicationCommand = (function (_super) {
7
+ __extends(DeleteApplicationCommand, _super);
8
+ function DeleteApplicationCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteApplicationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DeleteApplicationCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DeleteApplicationCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteApplicationRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteApplicationResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteApplicationCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteApplicationCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteApplicationCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteApplicationCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteApplicationCommand;
38
+ }($Command));
39
+ export { DeleteApplicationCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog, DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteApplicationInputProcessingConfigurationCommand, serializeAws_json1_1DeleteApplicationInputProcessingConfigurationCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteApplicationInputProcessingConfigurationCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteApplicationInputProcessingConfigurationCommand = (function (_super) {
7
+ __extends(DeleteApplicationInputProcessingConfigurationCommand, _super);
8
+ function DeleteApplicationInputProcessingConfigurationCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteApplicationInputProcessingConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DeleteApplicationInputProcessingConfigurationCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DeleteApplicationInputProcessingConfigurationCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteApplicationInputProcessingConfigurationCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteApplicationInputProcessingConfigurationCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteApplicationInputProcessingConfigurationCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteApplicationInputProcessingConfigurationCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteApplicationInputProcessingConfigurationCommand;
38
+ }($Command));
39
+ export { DeleteApplicationInputProcessingConfigurationCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteApplicationOutputRequestFilterSensitiveLog, DeleteApplicationOutputResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteApplicationOutputCommand, serializeAws_json1_1DeleteApplicationOutputCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteApplicationOutputCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteApplicationOutputCommand = (function (_super) {
7
+ __extends(DeleteApplicationOutputCommand, _super);
8
+ function DeleteApplicationOutputCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteApplicationOutputCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DeleteApplicationOutputCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DeleteApplicationOutputCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteApplicationOutputRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteApplicationOutputResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteApplicationOutputCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteApplicationOutputCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteApplicationOutputCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteApplicationOutputCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteApplicationOutputCommand;
38
+ }($Command));
39
+ export { DeleteApplicationOutputCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog, DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteApplicationReferenceDataSourceCommand, serializeAws_json1_1DeleteApplicationReferenceDataSourceCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteApplicationReferenceDataSourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteApplicationReferenceDataSourceCommand = (function (_super) {
7
+ __extends(DeleteApplicationReferenceDataSourceCommand, _super);
8
+ function DeleteApplicationReferenceDataSourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteApplicationReferenceDataSourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DeleteApplicationReferenceDataSourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DeleteApplicationReferenceDataSourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteApplicationReferenceDataSourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteApplicationReferenceDataSourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteApplicationReferenceDataSourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteApplicationReferenceDataSourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteApplicationReferenceDataSourceCommand;
38
+ }($Command));
39
+ export { DeleteApplicationReferenceDataSourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteApplicationSnapshotRequestFilterSensitiveLog, DeleteApplicationSnapshotResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteApplicationSnapshotCommand, serializeAws_json1_1DeleteApplicationSnapshotCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteApplicationSnapshotCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteApplicationSnapshotCommand = (function (_super) {
7
+ __extends(DeleteApplicationSnapshotCommand, _super);
8
+ function DeleteApplicationSnapshotCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteApplicationSnapshotCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DeleteApplicationSnapshotCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DeleteApplicationSnapshotCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteApplicationSnapshotRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteApplicationSnapshotResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteApplicationSnapshotCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteApplicationSnapshotCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteApplicationSnapshotCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteApplicationSnapshotCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteApplicationSnapshotCommand;
38
+ }($Command));
39
+ export { DeleteApplicationSnapshotCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteApplicationVpcConfigurationRequestFilterSensitiveLog, DeleteApplicationVpcConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteApplicationVpcConfigurationCommand, serializeAws_json1_1DeleteApplicationVpcConfigurationCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteApplicationVpcConfigurationCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteApplicationVpcConfigurationCommand = (function (_super) {
7
+ __extends(DeleteApplicationVpcConfigurationCommand, _super);
8
+ function DeleteApplicationVpcConfigurationCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteApplicationVpcConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DeleteApplicationVpcConfigurationCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DeleteApplicationVpcConfigurationCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteApplicationVpcConfigurationRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteApplicationVpcConfigurationResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteApplicationVpcConfigurationCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteApplicationVpcConfigurationCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteApplicationVpcConfigurationCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteApplicationVpcConfigurationCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteApplicationVpcConfigurationCommand;
38
+ }($Command));
39
+ export { DeleteApplicationVpcConfigurationCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DescribeApplicationRequestFilterSensitiveLog, DescribeApplicationResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeApplicationCommand, serializeAws_json1_1DescribeApplicationCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeApplicationCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeApplicationCommand = (function (_super) {
7
+ __extends(DescribeApplicationCommand, _super);
8
+ function DescribeApplicationCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeApplicationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DescribeApplicationCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DescribeApplicationCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeApplicationRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeApplicationResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeApplicationCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeApplicationCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeApplicationCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeApplicationCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeApplicationCommand;
38
+ }($Command));
39
+ export { DescribeApplicationCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DescribeApplicationSnapshotRequestFilterSensitiveLog, DescribeApplicationSnapshotResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeApplicationSnapshotCommand, serializeAws_json1_1DescribeApplicationSnapshotCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeApplicationSnapshotCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeApplicationSnapshotCommand = (function (_super) {
7
+ __extends(DescribeApplicationSnapshotCommand, _super);
8
+ function DescribeApplicationSnapshotCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeApplicationSnapshotCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DescribeApplicationSnapshotCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DescribeApplicationSnapshotCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeApplicationSnapshotRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeApplicationSnapshotResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeApplicationSnapshotCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeApplicationSnapshotCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeApplicationSnapshotCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeApplicationSnapshotCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeApplicationSnapshotCommand;
38
+ }($Command));
39
+ export { DescribeApplicationSnapshotCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DescribeApplicationVersionRequestFilterSensitiveLog, DescribeApplicationVersionResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeApplicationVersionCommand, serializeAws_json1_1DescribeApplicationVersionCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeApplicationVersionCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeApplicationVersionCommand = (function (_super) {
7
+ __extends(DescribeApplicationVersionCommand, _super);
8
+ function DescribeApplicationVersionCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeApplicationVersionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "KinesisAnalyticsV2Client";
15
- const commandName = "DescribeApplicationVersionCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "KinesisAnalyticsV2Client";
18
+ var commandName = "DescribeApplicationVersionCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeApplicationVersionRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeApplicationVersionResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeApplicationVersionCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeApplicationVersionCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeApplicationVersionCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeApplicationVersionCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeApplicationVersionCommand;
38
+ }($Command));
39
+ export { DescribeApplicationVersionCommand };