@aws-sdk/client-dax 3.50.0 → 3.51.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 +8 -0
- package/dist-types/ts3.4/DAX.d.ts +110 -0
- package/dist-types/ts3.4/DAXClient.d.ts +94 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +21 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +4 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +861 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +65 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export * from "./CreateClusterCommand";
|
|
2
|
+
export * from "./CreateParameterGroupCommand";
|
|
3
|
+
export * from "./CreateSubnetGroupCommand";
|
|
4
|
+
export * from "./DecreaseReplicationFactorCommand";
|
|
5
|
+
export * from "./DeleteClusterCommand";
|
|
6
|
+
export * from "./DeleteParameterGroupCommand";
|
|
7
|
+
export * from "./DeleteSubnetGroupCommand";
|
|
8
|
+
export * from "./DescribeClustersCommand";
|
|
9
|
+
export * from "./DescribeDefaultParametersCommand";
|
|
10
|
+
export * from "./DescribeEventsCommand";
|
|
11
|
+
export * from "./DescribeParameterGroupsCommand";
|
|
12
|
+
export * from "./DescribeParametersCommand";
|
|
13
|
+
export * from "./DescribeSubnetGroupsCommand";
|
|
14
|
+
export * from "./IncreaseReplicationFactorCommand";
|
|
15
|
+
export * from "./ListTagsCommand";
|
|
16
|
+
export * from "./RebootNodeCommand";
|
|
17
|
+
export * from "./TagResourceCommand";
|
|
18
|
+
export * from "./UntagResourceCommand";
|
|
19
|
+
export * from "./UpdateClusterCommand";
|
|
20
|
+
export * from "./UpdateParameterGroupCommand";
|
|
21
|
+
export * from "./UpdateSubnetGroupCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|