@aws-sdk/client-dax 3.490.0 → 3.496.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/dist-cjs/DAX.js +1 -53
- package/dist-cjs/DAXClient.js +1 -43
- package/dist-cjs/commands/CreateClusterCommand.js +1 -28
- package/dist-cjs/commands/CreateParameterGroupCommand.js +1 -28
- package/dist-cjs/commands/CreateSubnetGroupCommand.js +1 -28
- package/dist-cjs/commands/DecreaseReplicationFactorCommand.js +1 -28
- package/dist-cjs/commands/DeleteClusterCommand.js +1 -28
- package/dist-cjs/commands/DeleteParameterGroupCommand.js +1 -28
- package/dist-cjs/commands/DeleteSubnetGroupCommand.js +1 -28
- package/dist-cjs/commands/DescribeClustersCommand.js +1 -28
- package/dist-cjs/commands/DescribeDefaultParametersCommand.js +1 -28
- package/dist-cjs/commands/DescribeEventsCommand.js +1 -28
- package/dist-cjs/commands/DescribeParameterGroupsCommand.js +1 -28
- package/dist-cjs/commands/DescribeParametersCommand.js +1 -28
- package/dist-cjs/commands/DescribeSubnetGroupsCommand.js +1 -28
- package/dist-cjs/commands/IncreaseReplicationFactorCommand.js +1 -28
- package/dist-cjs/commands/ListTagsCommand.js +1 -28
- package/dist-cjs/commands/RebootNodeCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateClusterCommand.js +1 -28
- package/dist-cjs/commands/UpdateParameterGroupCommand.js +1 -28
- package/dist-cjs/commands/UpdateSubnetGroupCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -24
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2647 -10
- package/dist-cjs/models/DAXServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -383
- package/dist-cjs/protocols/Aws_json1_1.js +1 -1567
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +39 -39
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateClusterCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdateClusterCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonDAXV3", "UpdateCluster", {})
|
|
22
|
-
.n("DAXClient", "UpdateClusterCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_UpdateClusterCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_UpdateClusterCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateClusterCommand = UpdateClusterCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateParameterGroupCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdateParameterGroupCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonDAXV3", "UpdateParameterGroup", {})
|
|
22
|
-
.n("DAXClient", "UpdateParameterGroupCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_UpdateParameterGroupCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_UpdateParameterGroupCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateParameterGroupCommand = UpdateParameterGroupCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateSubnetGroupCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdateSubnetGroupCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AmazonDAXV3", "UpdateSubnetGroup", {})
|
|
22
|
-
.n("DAXClient", "UpdateSubnetGroupCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_UpdateSubnetGroupCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_UpdateSubnetGroupCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateSubnetGroupCommand = UpdateSubnetGroupCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,24 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./CreateClusterCommand"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./CreateParameterGroupCommand"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./CreateSubnetGroupCommand"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./DecreaseReplicationFactorCommand"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./DeleteClusterCommand"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./DeleteParameterGroupCommand"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./DeleteSubnetGroupCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./DescribeClustersCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./DescribeDefaultParametersCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./DescribeEventsCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./DescribeParameterGroupsCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./DescribeParametersCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./DescribeSubnetGroupsCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./IncreaseReplicationFactorCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./ListTagsCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./RebootNodeCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./UpdateClusterCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./UpdateParameterGroupCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./UpdateSubnetGroupCommand"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
-
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
return {
|
|
6
|
-
...options,
|
|
7
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
-
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
9
|
-
defaultSigningName: "dax",
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
-
exports.commonParams = {
|
|
14
|
-
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
-
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
-
Region: { type: "builtInParams", name: "region" },
|
|
17
|
-
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("./index.js");
|