@aws-sdk/client-elasticsearch-service 3.183.0 → 3.185.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 (66) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/ElasticsearchService.js +173 -166
  4. package/dist-es/ElasticsearchServiceClient.js +28 -22
  5. package/dist-es/commands/AcceptInboundCrossClusterSearchConnectionCommand.js +28 -21
  6. package/dist-es/commands/AddTagsCommand.js +29 -22
  7. package/dist-es/commands/AssociatePackageCommand.js +28 -21
  8. package/dist-es/commands/CancelElasticsearchServiceSoftwareUpdateCommand.js +28 -21
  9. package/dist-es/commands/CreateElasticsearchDomainCommand.js +28 -21
  10. package/dist-es/commands/CreateOutboundCrossClusterSearchConnectionCommand.js +28 -21
  11. package/dist-es/commands/CreatePackageCommand.js +28 -21
  12. package/dist-es/commands/DeleteElasticsearchDomainCommand.js +28 -21
  13. package/dist-es/commands/DeleteElasticsearchServiceRoleCommand.js +30 -23
  14. package/dist-es/commands/DeleteInboundCrossClusterSearchConnectionCommand.js +28 -21
  15. package/dist-es/commands/DeleteOutboundCrossClusterSearchConnectionCommand.js +28 -21
  16. package/dist-es/commands/DeletePackageCommand.js +28 -21
  17. package/dist-es/commands/DescribeDomainAutoTunesCommand.js +28 -21
  18. package/dist-es/commands/DescribeDomainChangeProgressCommand.js +28 -21
  19. package/dist-es/commands/DescribeElasticsearchDomainCommand.js +28 -21
  20. package/dist-es/commands/DescribeElasticsearchDomainConfigCommand.js +28 -21
  21. package/dist-es/commands/DescribeElasticsearchDomainsCommand.js +28 -21
  22. package/dist-es/commands/DescribeElasticsearchInstanceTypeLimitsCommand.js +28 -21
  23. package/dist-es/commands/DescribeInboundCrossClusterSearchConnectionsCommand.js +28 -21
  24. package/dist-es/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.js +28 -21
  25. package/dist-es/commands/DescribePackagesCommand.js +28 -21
  26. package/dist-es/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.js +28 -21
  27. package/dist-es/commands/DescribeReservedElasticsearchInstancesCommand.js +28 -21
  28. package/dist-es/commands/DissociatePackageCommand.js +28 -21
  29. package/dist-es/commands/GetCompatibleElasticsearchVersionsCommand.js +28 -21
  30. package/dist-es/commands/GetPackageVersionHistoryCommand.js +28 -21
  31. package/dist-es/commands/GetUpgradeHistoryCommand.js +28 -21
  32. package/dist-es/commands/GetUpgradeStatusCommand.js +28 -21
  33. package/dist-es/commands/ListDomainNamesCommand.js +28 -21
  34. package/dist-es/commands/ListDomainsForPackageCommand.js +28 -21
  35. package/dist-es/commands/ListElasticsearchInstanceTypesCommand.js +28 -21
  36. package/dist-es/commands/ListElasticsearchVersionsCommand.js +28 -21
  37. package/dist-es/commands/ListPackagesForDomainCommand.js +28 -21
  38. package/dist-es/commands/ListTagsCommand.js +28 -21
  39. package/dist-es/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.js +28 -21
  40. package/dist-es/commands/RejectInboundCrossClusterSearchConnectionCommand.js +28 -21
  41. package/dist-es/commands/RemoveTagsCommand.js +29 -22
  42. package/dist-es/commands/StartElasticsearchServiceSoftwareUpdateCommand.js +28 -21
  43. package/dist-es/commands/UpdateElasticsearchDomainConfigCommand.js +28 -21
  44. package/dist-es/commands/UpdatePackageCommand.js +28 -21
  45. package/dist-es/commands/UpgradeElasticsearchDomainCommand.js +28 -21
  46. package/dist-es/endpoints.js +8 -8
  47. package/dist-es/models/ElasticsearchServiceServiceException.js +10 -5
  48. package/dist-es/models/models_0.js +279 -591
  49. package/dist-es/pagination/DescribeDomainAutoTunesPaginator.js +68 -25
  50. package/dist-es/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.js +68 -25
  51. package/dist-es/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.js +68 -25
  52. package/dist-es/pagination/DescribePackagesPaginator.js +68 -25
  53. package/dist-es/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.js +68 -25
  54. package/dist-es/pagination/DescribeReservedElasticsearchInstancesPaginator.js +68 -25
  55. package/dist-es/pagination/GetPackageVersionHistoryPaginator.js +68 -25
  56. package/dist-es/pagination/GetUpgradeHistoryPaginator.js +68 -25
  57. package/dist-es/pagination/ListDomainsForPackagePaginator.js +68 -25
  58. package/dist-es/pagination/ListElasticsearchInstanceTypesPaginator.js +68 -25
  59. package/dist-es/pagination/ListElasticsearchVersionsPaginator.js +68 -25
  60. package/dist-es/pagination/ListPackagesForDomainPaginator.js +68 -25
  61. package/dist-es/protocols/Aws_restJson1.js +4382 -3228
  62. package/dist-es/runtimeConfig.browser.js +12 -26
  63. package/dist-es/runtimeConfig.js +12 -30
  64. package/dist-es/runtimeConfig.native.js +5 -8
  65. package/dist-es/runtimeConfig.shared.js +11 -8
  66. package/package.json +5 -5
@@ -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 { DescribeOutboundCrossClusterSearchConnectionsRequestFilterSensitiveLog, DescribeOutboundCrossClusterSearchConnectionsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeOutboundCrossClusterSearchConnectionsCommand, serializeAws_restJson1DescribeOutboundCrossClusterSearchConnectionsCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeOutboundCrossClusterSearchConnectionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeOutboundCrossClusterSearchConnectionsCommand = (function (_super) {
7
+ __extends(DescribeOutboundCrossClusterSearchConnectionsCommand, _super);
8
+ function DescribeOutboundCrossClusterSearchConnectionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeOutboundCrossClusterSearchConnectionsCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "DescribeOutboundCrossClusterSearchConnectionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "DescribeOutboundCrossClusterSearchConnectionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeOutboundCrossClusterSearchConnectionsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeOutboundCrossClusterSearchConnectionsResponseFilterSensitiveLog,
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
+ DescribeOutboundCrossClusterSearchConnectionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeOutboundCrossClusterSearchConnectionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeOutboundCrossClusterSearchConnectionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeOutboundCrossClusterSearchConnectionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeOutboundCrossClusterSearchConnectionsCommand;
38
+ }($Command));
39
+ export { DescribeOutboundCrossClusterSearchConnectionsCommand };
@@ -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 { DescribePackagesRequestFilterSensitiveLog, DescribePackagesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribePackagesCommand, serializeAws_restJson1DescribePackagesCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribePackagesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribePackagesCommand = (function (_super) {
7
+ __extends(DescribePackagesCommand, _super);
8
+ function DescribePackagesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribePackagesCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "DescribePackagesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "DescribePackagesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribePackagesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribePackagesResponseFilterSensitiveLog,
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
+ DescribePackagesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribePackagesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribePackagesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribePackagesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribePackagesCommand;
38
+ }($Command));
39
+ export { DescribePackagesCommand };
@@ -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 { DescribeReservedElasticsearchInstanceOfferingsRequestFilterSensitiveLog, DescribeReservedElasticsearchInstanceOfferingsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeReservedElasticsearchInstanceOfferingsCommand, serializeAws_restJson1DescribeReservedElasticsearchInstanceOfferingsCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeReservedElasticsearchInstanceOfferingsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeReservedElasticsearchInstanceOfferingsCommand = (function (_super) {
7
+ __extends(DescribeReservedElasticsearchInstanceOfferingsCommand, _super);
8
+ function DescribeReservedElasticsearchInstanceOfferingsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeReservedElasticsearchInstanceOfferingsCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "DescribeReservedElasticsearchInstanceOfferingsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "DescribeReservedElasticsearchInstanceOfferingsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeReservedElasticsearchInstanceOfferingsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeReservedElasticsearchInstanceOfferingsResponseFilterSensitiveLog,
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
+ DescribeReservedElasticsearchInstanceOfferingsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeReservedElasticsearchInstanceOfferingsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeReservedElasticsearchInstanceOfferingsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeReservedElasticsearchInstanceOfferingsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeReservedElasticsearchInstanceOfferingsCommand;
38
+ }($Command));
39
+ export { DescribeReservedElasticsearchInstanceOfferingsCommand };
@@ -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 { DescribeReservedElasticsearchInstancesRequestFilterSensitiveLog, DescribeReservedElasticsearchInstancesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeReservedElasticsearchInstancesCommand, serializeAws_restJson1DescribeReservedElasticsearchInstancesCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeReservedElasticsearchInstancesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeReservedElasticsearchInstancesCommand = (function (_super) {
7
+ __extends(DescribeReservedElasticsearchInstancesCommand, _super);
8
+ function DescribeReservedElasticsearchInstancesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeReservedElasticsearchInstancesCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "DescribeReservedElasticsearchInstancesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "DescribeReservedElasticsearchInstancesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeReservedElasticsearchInstancesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeReservedElasticsearchInstancesResponseFilterSensitiveLog,
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
+ DescribeReservedElasticsearchInstancesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeReservedElasticsearchInstancesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeReservedElasticsearchInstancesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeReservedElasticsearchInstancesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeReservedElasticsearchInstancesCommand;
38
+ }($Command));
39
+ export { DescribeReservedElasticsearchInstancesCommand };
@@ -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 { DissociatePackageRequestFilterSensitiveLog, DissociatePackageResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DissociatePackageCommand, serializeAws_restJson1DissociatePackageCommand, } from "../protocols/Aws_restJson1";
5
- export class DissociatePackageCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DissociatePackageCommand = (function (_super) {
7
+ __extends(DissociatePackageCommand, _super);
8
+ function DissociatePackageCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DissociatePackageCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "DissociatePackageCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "DissociatePackageCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DissociatePackageRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DissociatePackageResponseFilterSensitiveLog,
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
+ DissociatePackageCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DissociatePackageCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DissociatePackageCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DissociatePackageCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DissociatePackageCommand;
38
+ }($Command));
39
+ export { DissociatePackageCommand };
@@ -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 { GetCompatibleElasticsearchVersionsRequestFilterSensitiveLog, GetCompatibleElasticsearchVersionsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetCompatibleElasticsearchVersionsCommand, serializeAws_restJson1GetCompatibleElasticsearchVersionsCommand, } from "../protocols/Aws_restJson1";
5
- export class GetCompatibleElasticsearchVersionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetCompatibleElasticsearchVersionsCommand = (function (_super) {
7
+ __extends(GetCompatibleElasticsearchVersionsCommand, _super);
8
+ function GetCompatibleElasticsearchVersionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetCompatibleElasticsearchVersionsCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "GetCompatibleElasticsearchVersionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "GetCompatibleElasticsearchVersionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetCompatibleElasticsearchVersionsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetCompatibleElasticsearchVersionsResponseFilterSensitiveLog,
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
+ GetCompatibleElasticsearchVersionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetCompatibleElasticsearchVersionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetCompatibleElasticsearchVersionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetCompatibleElasticsearchVersionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetCompatibleElasticsearchVersionsCommand;
38
+ }($Command));
39
+ export { GetCompatibleElasticsearchVersionsCommand };
@@ -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 { GetPackageVersionHistoryRequestFilterSensitiveLog, GetPackageVersionHistoryResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetPackageVersionHistoryCommand, serializeAws_restJson1GetPackageVersionHistoryCommand, } from "../protocols/Aws_restJson1";
5
- export class GetPackageVersionHistoryCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetPackageVersionHistoryCommand = (function (_super) {
7
+ __extends(GetPackageVersionHistoryCommand, _super);
8
+ function GetPackageVersionHistoryCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetPackageVersionHistoryCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "GetPackageVersionHistoryCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "GetPackageVersionHistoryCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetPackageVersionHistoryRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetPackageVersionHistoryResponseFilterSensitiveLog,
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
+ GetPackageVersionHistoryCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetPackageVersionHistoryCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetPackageVersionHistoryCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetPackageVersionHistoryCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetPackageVersionHistoryCommand;
38
+ }($Command));
39
+ export { GetPackageVersionHistoryCommand };
@@ -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 { GetUpgradeHistoryRequestFilterSensitiveLog, GetUpgradeHistoryResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetUpgradeHistoryCommand, serializeAws_restJson1GetUpgradeHistoryCommand, } from "../protocols/Aws_restJson1";
5
- export class GetUpgradeHistoryCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetUpgradeHistoryCommand = (function (_super) {
7
+ __extends(GetUpgradeHistoryCommand, _super);
8
+ function GetUpgradeHistoryCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetUpgradeHistoryCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "GetUpgradeHistoryCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "GetUpgradeHistoryCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetUpgradeHistoryRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetUpgradeHistoryResponseFilterSensitiveLog,
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
+ GetUpgradeHistoryCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetUpgradeHistoryCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetUpgradeHistoryCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetUpgradeHistoryCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetUpgradeHistoryCommand;
38
+ }($Command));
39
+ export { GetUpgradeHistoryCommand };
@@ -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 { GetUpgradeStatusRequestFilterSensitiveLog, GetUpgradeStatusResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetUpgradeStatusCommand, serializeAws_restJson1GetUpgradeStatusCommand, } from "../protocols/Aws_restJson1";
5
- export class GetUpgradeStatusCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetUpgradeStatusCommand = (function (_super) {
7
+ __extends(GetUpgradeStatusCommand, _super);
8
+ function GetUpgradeStatusCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetUpgradeStatusCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "GetUpgradeStatusCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "GetUpgradeStatusCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetUpgradeStatusRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetUpgradeStatusResponseFilterSensitiveLog,
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
+ GetUpgradeStatusCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetUpgradeStatusCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetUpgradeStatusCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetUpgradeStatusCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetUpgradeStatusCommand;
38
+ }($Command));
39
+ export { GetUpgradeStatusCommand };
@@ -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 { ListDomainNamesRequestFilterSensitiveLog, ListDomainNamesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListDomainNamesCommand, serializeAws_restJson1ListDomainNamesCommand, } from "../protocols/Aws_restJson1";
5
- export class ListDomainNamesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListDomainNamesCommand = (function (_super) {
7
+ __extends(ListDomainNamesCommand, _super);
8
+ function ListDomainNamesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListDomainNamesCommand.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 = "ElasticsearchServiceClient";
15
- const commandName = "ListDomainNamesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ElasticsearchServiceClient";
18
+ var commandName = "ListDomainNamesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListDomainNamesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListDomainNamesResponseFilterSensitiveLog,
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
+ ListDomainNamesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListDomainNamesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListDomainNamesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListDomainNamesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListDomainNamesCommand;
38
+ }($Command));
39
+ export { ListDomainNamesCommand };