@aws-sdk/client-dax 3.296.0 → 3.297.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/DAX.d.ts +22 -0
- package/dist-types/DAXClient.d.ts +24 -4
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateParameterGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateSubnetGroupCommand.d.ts +16 -0
- package/dist-types/commands/DecreaseReplicationFactorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteParameterGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSubnetGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDefaultParametersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeParameterGroupsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeParametersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSubnetGroupsCommand.d.ts +16 -0
- package/dist-types/commands/IncreaseReplicationFactorCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsCommand.d.ts +16 -0
- package/dist-types/commands/RebootNodeCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
- package/dist-types/commands/UpdateParameterGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSubnetGroupCommand.d.ts +16 -0
- package/dist-types/models/DAXServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +187 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { DescribeDefaultParametersRequest, DescribeDefaultParametersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDefaultParametersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDefaultParametersCommandInput extends DescribeDefaultParametersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDefaultParametersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultParametersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the default system parameter information for the DAX caching
|
|
18
23
|
* software.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultP
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeDefaultParametersCommandInput - {@link DescribeDefaultParametersCommandInput}
|
|
35
|
+
* @returns {@link DescribeDefaultParametersCommandOutput}
|
|
29
36
|
* @see {@link DescribeDefaultParametersCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeDefaultParametersCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultP
|
|
|
44
51
|
export declare class DescribeDefaultParametersCommand extends $Command<DescribeDefaultParametersCommandInput, DescribeDefaultParametersCommandOutput, DAXClientResolvedConfig> {
|
|
45
52
|
readonly input: DescribeDefaultParametersCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DescribeDefaultParametersCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDefaultParametersCommandInput, DescribeDefaultParametersCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { DescribeEventsRequest, DescribeEventsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeEventsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeEventsCommandInput extends DescribeEventsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeEventsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns events related to DAX clusters and parameter groups. You can obtain
|
|
18
23
|
* events specific to a particular DAX cluster or parameter group by providing the name
|
|
19
24
|
* as a parameter.</p>
|
|
@@ -29,6 +34,8 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DescribeEventsCommandInput - {@link DescribeEventsCommandInput}
|
|
38
|
+
* @returns {@link DescribeEventsCommandOutput}
|
|
32
39
|
* @see {@link DescribeEventsCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DescribeEventsCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M
|
|
|
47
54
|
export declare class DescribeEventsCommand extends $Command<DescribeEventsCommandInput, DescribeEventsCommandOutput, DAXClientResolvedConfig> {
|
|
48
55
|
readonly input: DescribeEventsCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DescribeEventsCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEventsCommandInput, DescribeEventsCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { DescribeParameterGroupsRequest, DescribeParameterGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeParameterGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeParameterGroupsCommandInput extends DescribeParameterGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeParameterGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeParameterGroupsCommandOutput extends DescribeParameterGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of parameter group descriptions. If a parameter group name is
|
|
18
23
|
* specified, the list will contain only the descriptions for that group.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeParameterGroupsCommandInput - {@link DescribeParameterGroupsCommandInput}
|
|
35
|
+
* @returns {@link DescribeParameterGroupsCommandOutput}
|
|
29
36
|
* @see {@link DescribeParameterGroupsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeParameterGroupsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG
|
|
|
47
54
|
export declare class DescribeParameterGroupsCommand extends $Command<DescribeParameterGroupsCommandInput, DescribeParameterGroupsCommandOutput, DAXClientResolvedConfig> {
|
|
48
55
|
readonly input: DescribeParameterGroupsCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DescribeParameterGroupsCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeParameterGroupsCommandInput, DescribeParameterGroupsCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { DescribeParametersRequest, DescribeParametersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeParametersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeParametersCommandInput extends DescribeParametersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeParametersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeParametersCommandOutput extends DescribeParametersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the detailed parameter list for a particular parameter group.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeParametersCommandInput - {@link DescribeParametersCommandInput}
|
|
34
|
+
* @returns {@link DescribeParametersCommandOutput}
|
|
28
35
|
* @see {@link DescribeParametersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeParametersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo
|
|
|
46
53
|
export declare class DescribeParametersCommand extends $Command<DescribeParametersCommandInput, DescribeParametersCommandOutput, DAXClientResolvedConfig> {
|
|
47
54
|
readonly input: DescribeParametersCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DescribeParametersCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeParametersCommandInput, DescribeParametersCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { DescribeSubnetGroupsRequest, DescribeSubnetGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSubnetGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSubnetGroupsCommandInput extends DescribeSubnetGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSubnetGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of subnet group descriptions. If a subnet group name is specified,
|
|
18
23
|
* the list will contain only the description of that group.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeSubnetGroupsCommandInput - {@link DescribeSubnetGroupsCommandInput}
|
|
35
|
+
* @returns {@link DescribeSubnetGroupsCommandOutput}
|
|
29
36
|
* @see {@link DescribeSubnetGroupsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeSubnetGroupsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR
|
|
|
42
49
|
export declare class DescribeSubnetGroupsCommand extends $Command<DescribeSubnetGroupsCommandInput, DescribeSubnetGroupsCommandOutput, DAXClientResolvedConfig> {
|
|
43
50
|
readonly input: DescribeSubnetGroupsCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: DescribeSubnetGroupsCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSubnetGroupsCommandInput, DescribeSubnetGroupsCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { IncreaseReplicationFactorRequest, IncreaseReplicationFactorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link IncreaseReplicationFactorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface IncreaseReplicationFactorCommandInput extends IncreaseReplicationFactorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link IncreaseReplicationFactorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicationFactorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds one or more nodes to a DAX cluster.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param IncreaseReplicationFactorCommandInput - {@link IncreaseReplicationFactorCommandInput}
|
|
34
|
+
* @returns {@link IncreaseReplicationFactorCommandOutput}
|
|
28
35
|
* @see {@link IncreaseReplicationFactorCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link IncreaseReplicationFactorCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicat
|
|
|
65
72
|
export declare class IncreaseReplicationFactorCommand extends $Command<IncreaseReplicationFactorCommandInput, IncreaseReplicationFactorCommandOutput, DAXClientResolvedConfig> {
|
|
66
73
|
readonly input: IncreaseReplicationFactorCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: IncreaseReplicationFactorCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<IncreaseReplicationFactorCommandInput, IncreaseReplicationFactorCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsCommandInput extends ListTagsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List all of the tags for a DAX cluster. You can call <code>ListTags</code> up to
|
|
18
23
|
* 10 times per second, per account.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListTagsCommandInput - {@link ListTagsCommandInput}
|
|
35
|
+
* @returns {@link ListTagsCommandOutput}
|
|
29
36
|
* @see {@link ListTagsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListTagsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
54
61
|
export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, DAXClientResolvedConfig> {
|
|
55
62
|
readonly input: ListTagsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListTagsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { RebootNodeRequest, RebootNodeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RebootNodeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RebootNodeCommandInput extends RebootNodeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RebootNodeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Reboots a single node of a DAX cluster. The reboot action takes place
|
|
18
23
|
* as soon as possible. During the
|
|
19
24
|
* reboot, the node status is set to REBOOTING.</p>
|
|
@@ -31,6 +36,8 @@ export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataB
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param RebootNodeCommandInput - {@link RebootNodeCommandInput}
|
|
40
|
+
* @returns {@link RebootNodeCommandOutput}
|
|
34
41
|
* @see {@link RebootNodeCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link RebootNodeCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataB
|
|
|
59
66
|
export declare class RebootNodeCommand extends $Command<RebootNodeCommandInput, RebootNodeCommandOutput, DAXClientResolvedConfig> {
|
|
60
67
|
readonly input: RebootNodeCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: RebootNodeCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RebootNodeCommandInput, RebootNodeCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates a set of tags with a DAX resource. You can call <code>TagResource</code> up to 5 times per second, per
|
|
18
23
|
* account. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
57
64
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DAXClientResolvedConfig> {
|
|
58
65
|
readonly input: TagResourceCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: TagResourceCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the association of tags from a DAX resource. You can call
|
|
18
23
|
* <code>UntagResource</code> up to 5 times per second, per account. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
35
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
29
36
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
57
64
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DAXClientResolvedConfig> {
|
|
58
65
|
readonly input: UntagResourceCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: UntagResourceCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateClusterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateClusterCommandInput extends UpdateClusterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateClusterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the settings for a DAX cluster. You can use this action to change one or
|
|
18
23
|
* more cluster configuration parameters by specifying the parameters and the new
|
|
19
24
|
* values.</p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateClusterCommandInput - {@link UpdateClusterCommandInput}
|
|
36
|
+
* @returns {@link UpdateClusterCommandOutput}
|
|
30
37
|
* @see {@link UpdateClusterCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateClusterCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met
|
|
|
58
65
|
export declare class UpdateClusterCommand extends $Command<UpdateClusterCommandInput, UpdateClusterCommandOutput, DAXClientResolvedConfig> {
|
|
59
66
|
readonly input: UpdateClusterCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: UpdateClusterCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateClusterCommandInput, UpdateClusterCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { UpdateParameterGroupRequest, UpdateParameterGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateParameterGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateParameterGroupCommandInput extends UpdateParameterGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateParameterGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the parameters of a parameter group. You can modify up to 20
|
|
18
23
|
* parameters in a single request by submitting a list parameter name and value
|
|
19
24
|
* pairs.</p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateParameterGroupCommandInput - {@link UpdateParameterGroupCommandInput}
|
|
36
|
+
* @returns {@link UpdateParameterGroupCommandOutput}
|
|
30
37
|
* @see {@link UpdateParameterGroupCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateParameterGroupCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR
|
|
|
51
58
|
export declare class UpdateParameterGroupCommand extends $Command<UpdateParameterGroupCommandInput, UpdateParameterGroupCommandOutput, DAXClientResolvedConfig> {
|
|
52
59
|
readonly input: UpdateParameterGroupCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: UpdateParameterGroupCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateParameterGroupCommandInput, UpdateParameterGroupCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
|
|
5
5
|
import { UpdateSubnetGroupRequest, UpdateSubnetGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateSubnetGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateSubnetGroupCommandInput extends UpdateSubnetGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateSubnetGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies an existing subnet group.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateSubnetGroupCommandInput - {@link UpdateSubnetGroupCommandInput}
|
|
34
|
+
* @returns {@link UpdateSubnetGroupCommandOutput}
|
|
28
35
|
* @see {@link UpdateSubnetGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateSubnetGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons
|
|
|
51
58
|
export declare class UpdateSubnetGroupCommand extends $Command<UpdateSubnetGroupCommandInput, UpdateSubnetGroupCommandOutput, DAXClientResolvedConfig> {
|
|
52
59
|
readonly input: UpdateSubnetGroupCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: UpdateSubnetGroupCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSubnetGroupCommandInput, UpdateSubnetGroupCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|