@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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/ElasticsearchService.js +173 -166
- package/dist-es/ElasticsearchServiceClient.js +28 -22
- package/dist-es/commands/AcceptInboundCrossClusterSearchConnectionCommand.js +28 -21
- package/dist-es/commands/AddTagsCommand.js +29 -22
- package/dist-es/commands/AssociatePackageCommand.js +28 -21
- package/dist-es/commands/CancelElasticsearchServiceSoftwareUpdateCommand.js +28 -21
- package/dist-es/commands/CreateElasticsearchDomainCommand.js +28 -21
- package/dist-es/commands/CreateOutboundCrossClusterSearchConnectionCommand.js +28 -21
- package/dist-es/commands/CreatePackageCommand.js +28 -21
- package/dist-es/commands/DeleteElasticsearchDomainCommand.js +28 -21
- package/dist-es/commands/DeleteElasticsearchServiceRoleCommand.js +30 -23
- package/dist-es/commands/DeleteInboundCrossClusterSearchConnectionCommand.js +28 -21
- package/dist-es/commands/DeleteOutboundCrossClusterSearchConnectionCommand.js +28 -21
- package/dist-es/commands/DeletePackageCommand.js +28 -21
- package/dist-es/commands/DescribeDomainAutoTunesCommand.js +28 -21
- package/dist-es/commands/DescribeDomainChangeProgressCommand.js +28 -21
- package/dist-es/commands/DescribeElasticsearchDomainCommand.js +28 -21
- package/dist-es/commands/DescribeElasticsearchDomainConfigCommand.js +28 -21
- package/dist-es/commands/DescribeElasticsearchDomainsCommand.js +28 -21
- package/dist-es/commands/DescribeElasticsearchInstanceTypeLimitsCommand.js +28 -21
- package/dist-es/commands/DescribeInboundCrossClusterSearchConnectionsCommand.js +28 -21
- package/dist-es/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.js +28 -21
- package/dist-es/commands/DescribePackagesCommand.js +28 -21
- package/dist-es/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.js +28 -21
- package/dist-es/commands/DescribeReservedElasticsearchInstancesCommand.js +28 -21
- package/dist-es/commands/DissociatePackageCommand.js +28 -21
- package/dist-es/commands/GetCompatibleElasticsearchVersionsCommand.js +28 -21
- package/dist-es/commands/GetPackageVersionHistoryCommand.js +28 -21
- package/dist-es/commands/GetUpgradeHistoryCommand.js +28 -21
- package/dist-es/commands/GetUpgradeStatusCommand.js +28 -21
- package/dist-es/commands/ListDomainNamesCommand.js +28 -21
- package/dist-es/commands/ListDomainsForPackageCommand.js +28 -21
- package/dist-es/commands/ListElasticsearchInstanceTypesCommand.js +28 -21
- package/dist-es/commands/ListElasticsearchVersionsCommand.js +28 -21
- package/dist-es/commands/ListPackagesForDomainCommand.js +28 -21
- package/dist-es/commands/ListTagsCommand.js +28 -21
- package/dist-es/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.js +28 -21
- package/dist-es/commands/RejectInboundCrossClusterSearchConnectionCommand.js +28 -21
- package/dist-es/commands/RemoveTagsCommand.js +29 -22
- package/dist-es/commands/StartElasticsearchServiceSoftwareUpdateCommand.js +28 -21
- package/dist-es/commands/UpdateElasticsearchDomainConfigCommand.js +28 -21
- package/dist-es/commands/UpdatePackageCommand.js +28 -21
- package/dist-es/commands/UpgradeElasticsearchDomainCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ElasticsearchServiceServiceException.js +10 -5
- package/dist-es/models/models_0.js +279 -591
- package/dist-es/pagination/DescribeDomainAutoTunesPaginator.js +68 -25
- package/dist-es/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.js +68 -25
- package/dist-es/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.js +68 -25
- package/dist-es/pagination/DescribePackagesPaginator.js +68 -25
- package/dist-es/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.js +68 -25
- package/dist-es/pagination/DescribeReservedElasticsearchInstancesPaginator.js +68 -25
- package/dist-es/pagination/GetPackageVersionHistoryPaginator.js +68 -25
- package/dist-es/pagination/GetUpgradeHistoryPaginator.js +68 -25
- package/dist-es/pagination/ListDomainsForPackagePaginator.js +68 -25
- package/dist-es/pagination/ListElasticsearchInstanceTypesPaginator.js +68 -25
- package/dist-es/pagination/ListElasticsearchVersionsPaginator.js +68 -25
- package/dist-es/pagination/ListPackagesForDomainPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +4382 -3228
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- 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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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 };
|