@aws-sdk/client-dax 3.288.0 → 3.290.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-types/commands/CreateClusterCommand.d.ts +54 -0
- package/dist-types/commands/CreateParameterGroupCommand.d.ts +19 -0
- package/dist-types/commands/CreateSubnetGroupCommand.d.ts +18 -0
- package/dist-types/commands/DecreaseReplicationFactorCommand.d.ts +20 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +17 -0
- package/dist-types/commands/DeleteParameterGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSubnetGroupCommand.d.ts +11 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +13 -0
- package/dist-types/commands/DescribeDefaultParametersCommand.d.ts +10 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeParameterGroupsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeParametersCommand.d.ts +13 -0
- package/dist-types/commands/DescribeSubnetGroupsCommand.d.ts +8 -0
- package/dist-types/commands/IncreaseReplicationFactorCommand.d.ts +32 -0
- package/dist-types/commands/ListTagsCommand.d.ts +20 -0
- package/dist-types/commands/RebootNodeCommand.d.ts +20 -0
- package/dist-types/commands/TagResourceCommand.d.ts +23 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +23 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +23 -0
- package/dist-types/commands/UpdateParameterGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSubnetGroupCommand.d.ts +18 -0
- package/package.json +29 -29
|
@@ -29,6 +29,60 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
29
29
|
* @see {@link CreateClusterCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ClusterAlreadyExistsFault} (client fault)
|
|
33
|
+
* <p>You already have a DAX cluster with the given identifier.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClusterQuotaForCustomerExceededFault} (client fault)
|
|
36
|
+
* <p>You have attempted to exceed the maximum number of DAX clusters for your AWS
|
|
37
|
+
* account.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InsufficientClusterCapacityFault} (client fault)
|
|
40
|
+
* <p>There are not enough system resources to create the cluster you requested (or to
|
|
41
|
+
* resize an already-existing cluster). </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
44
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
45
|
+
* state.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
48
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidParameterGroupStateFault} (client fault)
|
|
51
|
+
* <p>One or more parameters in a parameter group are in an invalid state.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
54
|
+
* <p>The value for a parameter is invalid.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InvalidVPCNetworkStateFault} (client fault)
|
|
57
|
+
* <p>The VPC network is in an invalid state.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link NodeQuotaForClusterExceededFault} (client fault)
|
|
60
|
+
* <p>You have attempted to exceed the maximum number of nodes for a DAX
|
|
61
|
+
* cluster.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link NodeQuotaForCustomerExceededFault} (client fault)
|
|
64
|
+
* <p>You have attempted to exceed the maximum number of nodes for your AWS
|
|
65
|
+
* account.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ParameterGroupNotFoundFault} (client fault)
|
|
68
|
+
* <p>The specified parameter group does not exist.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
71
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
74
|
+
* <p>You have reached the maximum number of x509 certificates that can be created for
|
|
75
|
+
* encrypted clusters in a 30 day period. Contact AWS customer support to discuss options
|
|
76
|
+
* for continuing to create encrypted clusters.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link SubnetGroupNotFoundFault} (client fault)
|
|
79
|
+
* <p>The requested subnet group name does not refer to an existing subnet
|
|
80
|
+
* group.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link TagQuotaPerResourceExceeded} (client fault)
|
|
83
|
+
* <p>You have exceeded the maximum number of tags for this DAX cluster.</p>
|
|
84
|
+
*
|
|
85
|
+
*
|
|
32
86
|
*/
|
|
33
87
|
export declare class CreateClusterCommand extends $Command<CreateClusterCommandInput, CreateClusterCommandOutput, DAXClientResolvedConfig> {
|
|
34
88
|
readonly input: CreateClusterCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface CreateParameterGroupCommandOutput extends CreateParameterGroupR
|
|
|
30
30
|
* @see {@link CreateParameterGroupCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
34
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterGroupStateFault} (client fault)
|
|
37
|
+
* <p>One or more parameters in a parameter group are in an invalid state.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
40
|
+
* <p>The value for a parameter is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ParameterGroupAlreadyExistsFault} (client fault)
|
|
43
|
+
* <p>The specified parameter group already exists.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ParameterGroupQuotaExceededFault} (client fault)
|
|
46
|
+
* <p>You have attempted to exceed the maximum number of parameter groups.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
49
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class CreateParameterGroupCommand extends $Command<CreateParameterGroupCommandInput, CreateParameterGroupCommandOutput, DAXClientResolvedConfig> {
|
|
35
54
|
readonly input: CreateParameterGroupCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface CreateSubnetGroupCommandOutput extends CreateSubnetGroupRespons
|
|
|
29
29
|
* @see {@link CreateSubnetGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidSubnet} (client fault)
|
|
33
|
+
* <p>An invalid subnet identifier was specified.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
36
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link SubnetGroupAlreadyExistsFault} (client fault)
|
|
39
|
+
* <p>The specified subnet group already exists.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link SubnetGroupQuotaExceededFault} (client fault)
|
|
42
|
+
* <p>The request cannot be processed because it would exceed the allowed number of
|
|
43
|
+
* subnets in a subnet group.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link SubnetQuotaExceededFault} (client fault)
|
|
46
|
+
* <p>The request cannot be processed because it would exceed the allowed number of
|
|
47
|
+
* subnets in a subnet group.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class CreateSubnetGroupCommand extends $Command<CreateSubnetGroupCommandInput, CreateSubnetGroupCommandOutput, DAXClientResolvedConfig> {
|
|
34
52
|
readonly input: CreateSubnetGroupCommandInput;
|
|
@@ -32,6 +32,26 @@ export interface DecreaseReplicationFactorCommandOutput extends DecreaseReplicat
|
|
|
32
32
|
* @see {@link DecreaseReplicationFactorCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
36
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
39
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
40
|
+
* state.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
43
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
46
|
+
* <p>The value for a parameter is invalid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NodeNotFoundFault} (client fault)
|
|
49
|
+
* <p>None of the nodes in the cluster have the given node ID.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
52
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
35
55
|
*/
|
|
36
56
|
export declare class DecreaseReplicationFactorCommand extends $Command<DecreaseReplicationFactorCommandInput, DecreaseReplicationFactorCommandOutput, DAXClientResolvedConfig> {
|
|
37
57
|
readonly input: DecreaseReplicationFactorCommandInput;
|
|
@@ -33,6 +33,23 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
33
33
|
* @see {@link DeleteClusterCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
37
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
40
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
41
|
+
* state.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
44
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
47
|
+
* <p>The value for a parameter is invalid.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
50
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
36
53
|
*/
|
|
37
54
|
export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, DAXClientResolvedConfig> {
|
|
38
55
|
readonly input: DeleteClusterCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface DeleteParameterGroupCommandOutput extends DeleteParameterGroupR
|
|
|
30
30
|
* @see {@link DeleteParameterGroupCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
34
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterGroupStateFault} (client fault)
|
|
37
|
+
* <p>One or more parameters in a parameter group are in an invalid state.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
40
|
+
* <p>The value for a parameter is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ParameterGroupNotFoundFault} (client fault)
|
|
43
|
+
* <p>The specified parameter group does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
46
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class DeleteParameterGroupCommand extends $Command<DeleteParameterGroupCommandInput, DeleteParameterGroupCommandOutput, DAXClientResolvedConfig> {
|
|
35
51
|
readonly input: DeleteParameterGroupCommandInput;
|
|
@@ -33,6 +33,17 @@ export interface DeleteSubnetGroupCommandOutput extends DeleteSubnetGroupRespons
|
|
|
33
33
|
* @see {@link DeleteSubnetGroupCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
37
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link SubnetGroupInUseFault} (client fault)
|
|
40
|
+
* <p>The specified subnet group is currently in use.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link SubnetGroupNotFoundFault} (client fault)
|
|
43
|
+
* <p>The requested subnet group name does not refer to an existing subnet
|
|
44
|
+
* group.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
36
47
|
*/
|
|
37
48
|
export declare class DeleteSubnetGroupCommand extends $Command<DeleteSubnetGroupCommandInput, DeleteSubnetGroupCommandOutput, DAXClientResolvedConfig> {
|
|
38
49
|
readonly input: DeleteSubnetGroupCommandInput;
|
|
@@ -41,6 +41,19 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
|
|
|
41
41
|
* @see {@link DescribeClustersCommandOutput} for command's `response` shape.
|
|
42
42
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
43
43
|
*
|
|
44
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
45
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
48
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
51
|
+
* <p>The value for a parameter is invalid.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
54
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
44
57
|
*/
|
|
45
58
|
export declare class DescribeClustersCommand extends $Command<DescribeClustersCommandInput, DescribeClustersCommandOutput, DAXClientResolvedConfig> {
|
|
46
59
|
readonly input: DescribeClustersCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultP
|
|
|
30
30
|
* @see {@link DescribeDefaultParametersCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
34
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
37
|
+
* <p>The value for a parameter is invalid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
40
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class DescribeDefaultParametersCommand extends $Command<DescribeDefaultParametersCommandInput, DescribeDefaultParametersCommandOutput, DAXClientResolvedConfig> {
|
|
35
45
|
readonly input: DescribeDefaultParametersCommandInput;
|
|
@@ -33,6 +33,16 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M
|
|
|
33
33
|
* @see {@link DescribeEventsCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
37
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
40
|
+
* <p>The value for a parameter is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
43
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
36
46
|
*/
|
|
37
47
|
export declare class DescribeEventsCommand extends $Command<DescribeEventsCommandInput, DescribeEventsCommandOutput, DAXClientResolvedConfig> {
|
|
38
48
|
readonly input: DescribeEventsCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG
|
|
|
30
30
|
* @see {@link DescribeParameterGroupsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
34
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
37
|
+
* <p>The value for a parameter is invalid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ParameterGroupNotFoundFault} (client fault)
|
|
40
|
+
* <p>The specified parameter group does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
43
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class DescribeParameterGroupsCommand extends $Command<DescribeParameterGroupsCommandInput, DescribeParameterGroupsCommandOutput, DAXClientResolvedConfig> {
|
|
35
48
|
readonly input: DescribeParameterGroupsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo
|
|
|
29
29
|
* @see {@link DescribeParametersCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
33
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
36
|
+
* <p>The value for a parameter is invalid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ParameterGroupNotFoundFault} (client fault)
|
|
39
|
+
* <p>The specified parameter group does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
42
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DescribeParametersCommand extends $Command<DescribeParametersCommandInput, DescribeParametersCommandOutput, DAXClientResolvedConfig> {
|
|
34
47
|
readonly input: DescribeParametersCommandInput;
|
|
@@ -30,6 +30,14 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR
|
|
|
30
30
|
* @see {@link DescribeSubnetGroupsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
34
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link SubnetGroupNotFoundFault} (client fault)
|
|
37
|
+
* <p>The requested subnet group name does not refer to an existing subnet
|
|
38
|
+
* group.</p>
|
|
39
|
+
*
|
|
40
|
+
*
|
|
33
41
|
*/
|
|
34
42
|
export declare class DescribeSubnetGroupsCommand extends $Command<DescribeSubnetGroupsCommandInput, DescribeSubnetGroupsCommandOutput, DAXClientResolvedConfig> {
|
|
35
43
|
readonly input: DescribeSubnetGroupsCommandInput;
|
|
@@ -29,6 +29,38 @@ export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicat
|
|
|
29
29
|
* @see {@link IncreaseReplicationFactorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
33
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InsufficientClusterCapacityFault} (client fault)
|
|
36
|
+
* <p>There are not enough system resources to create the cluster you requested (or to
|
|
37
|
+
* resize an already-existing cluster). </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
40
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
41
|
+
* state.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
44
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
47
|
+
* <p>The value for a parameter is invalid.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InvalidVPCNetworkStateFault} (client fault)
|
|
50
|
+
* <p>The VPC network is in an invalid state.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link NodeQuotaForClusterExceededFault} (client fault)
|
|
53
|
+
* <p>You have attempted to exceed the maximum number of nodes for a DAX
|
|
54
|
+
* cluster.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link NodeQuotaForCustomerExceededFault} (client fault)
|
|
57
|
+
* <p>You have attempted to exceed the maximum number of nodes for your AWS
|
|
58
|
+
* account.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
61
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
32
64
|
*/
|
|
33
65
|
export declare class IncreaseReplicationFactorCommand extends $Command<IncreaseReplicationFactorCommandInput, IncreaseReplicationFactorCommandOutput, DAXClientResolvedConfig> {
|
|
34
66
|
readonly input: IncreaseReplicationFactorCommandInput;
|
|
@@ -30,6 +30,26 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
30
30
|
* @see {@link ListTagsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
34
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidARNFault} (client fault)
|
|
37
|
+
* <p>The Amazon Resource Name (ARN) supplied in the request is not valid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
40
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
41
|
+
* state.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
44
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
47
|
+
* <p>The value for a parameter is invalid.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
50
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
33
53
|
*/
|
|
34
54
|
export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, DAXClientResolvedConfig> {
|
|
35
55
|
readonly input: ListTagsCommandInput;
|
|
@@ -35,6 +35,26 @@ export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataB
|
|
|
35
35
|
* @see {@link RebootNodeCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
39
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
42
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
43
|
+
* state.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
46
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
49
|
+
* <p>The value for a parameter is invalid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link NodeNotFoundFault} (client fault)
|
|
52
|
+
* <p>None of the nodes in the cluster have the given node ID.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
55
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
38
58
|
*/
|
|
39
59
|
export declare class RebootNodeCommand extends $Command<RebootNodeCommandInput, RebootNodeCommandOutput, DAXClientResolvedConfig> {
|
|
40
60
|
readonly input: RebootNodeCommandInput;
|
|
@@ -30,6 +30,29 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
30
30
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
34
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidARNFault} (client fault)
|
|
37
|
+
* <p>The Amazon Resource Name (ARN) supplied in the request is not valid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
40
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
41
|
+
* state.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
44
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
47
|
+
* <p>The value for a parameter is invalid.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
50
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TagQuotaPerResourceExceeded} (client fault)
|
|
53
|
+
* <p>You have exceeded the maximum number of tags for this DAX cluster.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
33
56
|
*/
|
|
34
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DAXClientResolvedConfig> {
|
|
35
58
|
readonly input: TagResourceCommandInput;
|
|
@@ -30,6 +30,29 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
30
30
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
34
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidARNFault} (client fault)
|
|
37
|
+
* <p>The Amazon Resource Name (ARN) supplied in the request is not valid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
40
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
41
|
+
* state.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
44
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
47
|
+
* <p>The value for a parameter is invalid.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
50
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link TagNotFoundFault} (client fault)
|
|
53
|
+
* <p>The tag does not exist.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
33
56
|
*/
|
|
34
57
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DAXClientResolvedConfig> {
|
|
35
58
|
readonly input: UntagResourceCommandInput;
|
|
@@ -31,6 +31,29 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met
|
|
|
31
31
|
* @see {@link UpdateClusterCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ClusterNotFoundFault} (client fault)
|
|
35
|
+
* <p>The requested cluster ID does not refer to an existing DAX cluster.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidClusterStateFault} (client fault)
|
|
38
|
+
* <p>The requested DAX cluster is not in the <i>available</i>
|
|
39
|
+
* state.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
42
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidParameterGroupStateFault} (client fault)
|
|
45
|
+
* <p>One or more parameters in a parameter group are in an invalid state.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
48
|
+
* <p>The value for a parameter is invalid.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ParameterGroupNotFoundFault} (client fault)
|
|
51
|
+
* <p>The specified parameter group does not exist.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
54
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
34
57
|
*/
|
|
35
58
|
export declare class UpdateClusterCommand extends $Command<UpdateClusterCommandInput, UpdateClusterCommandOutput, DAXClientResolvedConfig> {
|
|
36
59
|
readonly input: UpdateClusterCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR
|
|
|
31
31
|
* @see {@link UpdateParameterGroupCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
35
|
+
* <p>Two or more incompatible parameters were specified.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidParameterGroupStateFault} (client fault)
|
|
38
|
+
* <p>One or more parameters in a parameter group are in an invalid state.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
41
|
+
* <p>The value for a parameter is invalid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ParameterGroupNotFoundFault} (client fault)
|
|
44
|
+
* <p>The specified parameter group does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
47
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class UpdateParameterGroupCommand extends $Command<UpdateParameterGroupCommandInput, UpdateParameterGroupCommandOutput, DAXClientResolvedConfig> {
|
|
36
52
|
readonly input: UpdateParameterGroupCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons
|
|
|
29
29
|
* @see {@link UpdateSubnetGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidSubnet} (client fault)
|
|
33
|
+
* <p>An invalid subnet identifier was specified.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ServiceLinkedRoleNotFoundFault} (client fault)
|
|
36
|
+
* <p>The specified service linked role (SLR) was not found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link SubnetGroupNotFoundFault} (client fault)
|
|
39
|
+
* <p>The requested subnet group name does not refer to an existing subnet
|
|
40
|
+
* group.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link SubnetInUse} (client fault)
|
|
43
|
+
* <p>The requested subnet is being used by another subnet group.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link SubnetQuotaExceededFault} (client fault)
|
|
46
|
+
* <p>The request cannot be processed because it would exceed the allowed number of
|
|
47
|
+
* subnets in a subnet group.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class UpdateSubnetGroupCommand extends $Command<UpdateSubnetGroupCommandInput, UpdateSubnetGroupCommandOutput, DAXClientResolvedConfig> {
|
|
34
52
|
readonly input: UpdateSubnetGroupCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dax",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|