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