@aws-sdk/client-elasticache 3.325.0 → 3.327.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/AddTagsToResourceCommand.d.ts +11 -0
- package/dist-types/commands/AuthorizeCacheSecurityGroupIngressCommand.d.ts +18 -0
- package/dist-types/commands/BatchApplyUpdateActionCommand.d.ts +22 -0
- package/dist-types/commands/BatchStopUpdateActionCommand.d.ts +22 -0
- package/dist-types/commands/CompleteMigrationCommand.d.ts +123 -0
- package/dist-types/commands/CopySnapshotCommand.d.ts +57 -0
- package/dist-types/commands/CreateCacheClusterCommand.d.ts +117 -0
- package/dist-types/commands/CreateCacheParameterGroupCommand.d.ts +12 -0
- package/dist-types/commands/CreateCacheSecurityGroupCommand.d.ts +18 -0
- package/dist-types/commands/CreateCacheSubnetGroupCommand.d.ts +28 -0
- package/dist-types/commands/CreateGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/CreateReplicationGroupCommand.d.ts +123 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +57 -0
- package/dist-types/commands/CreateUserCommand.d.ts +19 -0
- package/dist-types/commands/CreateUserGroupCommand.d.ts +24 -0
- package/dist-types/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/DecreaseReplicaCountCommand.d.ts +123 -0
- package/dist-types/commands/DeleteCacheClusterCommand.d.ts +117 -0
- package/dist-types/commands/DeleteCacheParameterGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCacheSecurityGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCacheSubnetGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/DeleteReplicationGroupCommand.d.ts +123 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +57 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +19 -0
- package/dist-types/commands/DeleteUserGroupCommand.d.ts +24 -0
- package/dist-types/commands/DescribeCacheClustersCommand.d.ts +120 -0
- package/dist-types/commands/DescribeCacheEngineVersionsCommand.d.ts +15 -0
- package/dist-types/commands/DescribeCacheParameterGroupsCommand.d.ts +15 -0
- package/dist-types/commands/DescribeCacheParametersCommand.d.ts +37 -0
- package/dist-types/commands/DescribeCacheSecurityGroupsCommand.d.ts +21 -0
- package/dist-types/commands/DescribeCacheSubnetGroupsCommand.d.ts +31 -0
- package/dist-types/commands/DescribeEngineDefaultParametersCommand.d.ts +40 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +14 -0
- package/dist-types/commands/DescribeGlobalReplicationGroupsCommand.d.ts +36 -0
- package/dist-types/commands/DescribeReplicationGroupsCommand.d.ts +126 -0
- package/dist-types/commands/DescribeReservedCacheNodesCommand.d.ts +28 -0
- package/dist-types/commands/DescribeReservedCacheNodesOfferingsCommand.d.ts +23 -0
- package/dist-types/commands/DescribeServiceUpdatesCommand.d.ts +22 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +60 -0
- package/dist-types/commands/DescribeUpdateActionsCommand.d.ts +55 -0
- package/dist-types/commands/DescribeUserGroupsCommand.d.ts +29 -0
- package/dist-types/commands/DescribeUsersCommand.d.ts +24 -0
- package/dist-types/commands/DisassociateGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/FailoverGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/IncreaseReplicaCountCommand.d.ts +123 -0
- package/dist-types/commands/ListAllowedNodeTypeModificationsCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ModifyCacheClusterCommand.d.ts +117 -0
- package/dist-types/commands/ModifyCacheParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/ModifyCacheSubnetGroupCommand.d.ts +28 -0
- package/dist-types/commands/ModifyGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/ModifyReplicationGroupCommand.d.ts +123 -0
- package/dist-types/commands/ModifyReplicationGroupShardConfigurationCommand.d.ts +123 -0
- package/dist-types/commands/ModifyUserCommand.d.ts +19 -0
- package/dist-types/commands/ModifyUserGroupCommand.d.ts +24 -0
- package/dist-types/commands/PurchaseReservedCacheNodesOfferingCommand.d.ts +25 -0
- package/dist-types/commands/RebalanceSlotsInGlobalReplicationGroupCommand.d.ts +33 -0
- package/dist-types/commands/RebootCacheClusterCommand.d.ts +117 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +11 -0
- package/dist-types/commands/ResetCacheParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/RevokeCacheSecurityGroupIngressCommand.d.ts +18 -0
- package/dist-types/commands/StartMigrationCommand.d.ts +123 -0
- package/dist-types/commands/TestFailoverCommand.d.ts +123 -0
- package/package.json +7 -7
|
@@ -93,6 +93,127 @@ export interface TestFailoverCommandOutput extends TestFailoverResult, __Metadat
|
|
|
93
93
|
* };
|
|
94
94
|
* const command = new TestFailoverCommand(input);
|
|
95
95
|
* const response = await client.send(command);
|
|
96
|
+
* // { // TestFailoverResult
|
|
97
|
+
* // ReplicationGroup: { // ReplicationGroup
|
|
98
|
+
* // ReplicationGroupId: "STRING_VALUE",
|
|
99
|
+
* // Description: "STRING_VALUE",
|
|
100
|
+
* // GlobalReplicationGroupInfo: { // GlobalReplicationGroupInfo
|
|
101
|
+
* // GlobalReplicationGroupId: "STRING_VALUE",
|
|
102
|
+
* // GlobalReplicationGroupMemberRole: "STRING_VALUE",
|
|
103
|
+
* // },
|
|
104
|
+
* // Status: "STRING_VALUE",
|
|
105
|
+
* // PendingModifiedValues: { // ReplicationGroupPendingModifiedValues
|
|
106
|
+
* // PrimaryClusterId: "STRING_VALUE",
|
|
107
|
+
* // AutomaticFailoverStatus: "enabled" || "disabled",
|
|
108
|
+
* // Resharding: { // ReshardingStatus
|
|
109
|
+
* // SlotMigration: { // SlotMigration
|
|
110
|
+
* // ProgressPercentage: Number("double"),
|
|
111
|
+
* // },
|
|
112
|
+
* // },
|
|
113
|
+
* // AuthTokenStatus: "SETTING" || "ROTATING",
|
|
114
|
+
* // UserGroups: { // UserGroupsUpdateStatus
|
|
115
|
+
* // UserGroupIdsToAdd: [ // UserGroupIdList
|
|
116
|
+
* // "STRING_VALUE",
|
|
117
|
+
* // ],
|
|
118
|
+
* // UserGroupIdsToRemove: [
|
|
119
|
+
* // "STRING_VALUE",
|
|
120
|
+
* // ],
|
|
121
|
+
* // },
|
|
122
|
+
* // LogDeliveryConfigurations: [ // PendingLogDeliveryConfigurationList
|
|
123
|
+
* // { // PendingLogDeliveryConfiguration
|
|
124
|
+
* // LogType: "slow-log" || "engine-log",
|
|
125
|
+
* // DestinationType: "cloudwatch-logs" || "kinesis-firehose",
|
|
126
|
+
* // DestinationDetails: { // DestinationDetails
|
|
127
|
+
* // CloudWatchLogsDetails: { // CloudWatchLogsDestinationDetails
|
|
128
|
+
* // LogGroup: "STRING_VALUE",
|
|
129
|
+
* // },
|
|
130
|
+
* // KinesisFirehoseDetails: { // KinesisFirehoseDestinationDetails
|
|
131
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
132
|
+
* // },
|
|
133
|
+
* // },
|
|
134
|
+
* // LogFormat: "text" || "json",
|
|
135
|
+
* // },
|
|
136
|
+
* // ],
|
|
137
|
+
* // TransitEncryptionEnabled: true || false,
|
|
138
|
+
* // TransitEncryptionMode: "preferred" || "required",
|
|
139
|
+
* // },
|
|
140
|
+
* // MemberClusters: [ // ClusterIdList
|
|
141
|
+
* // "STRING_VALUE",
|
|
142
|
+
* // ],
|
|
143
|
+
* // NodeGroups: [ // NodeGroupList
|
|
144
|
+
* // { // NodeGroup
|
|
145
|
+
* // NodeGroupId: "STRING_VALUE",
|
|
146
|
+
* // Status: "STRING_VALUE",
|
|
147
|
+
* // PrimaryEndpoint: { // Endpoint
|
|
148
|
+
* // Address: "STRING_VALUE",
|
|
149
|
+
* // Port: Number("int"),
|
|
150
|
+
* // },
|
|
151
|
+
* // ReaderEndpoint: {
|
|
152
|
+
* // Address: "STRING_VALUE",
|
|
153
|
+
* // Port: Number("int"),
|
|
154
|
+
* // },
|
|
155
|
+
* // Slots: "STRING_VALUE",
|
|
156
|
+
* // NodeGroupMembers: [ // NodeGroupMemberList
|
|
157
|
+
* // { // NodeGroupMember
|
|
158
|
+
* // CacheClusterId: "STRING_VALUE",
|
|
159
|
+
* // CacheNodeId: "STRING_VALUE",
|
|
160
|
+
* // ReadEndpoint: {
|
|
161
|
+
* // Address: "STRING_VALUE",
|
|
162
|
+
* // Port: Number("int"),
|
|
163
|
+
* // },
|
|
164
|
+
* // PreferredAvailabilityZone: "STRING_VALUE",
|
|
165
|
+
* // PreferredOutpostArn: "STRING_VALUE",
|
|
166
|
+
* // CurrentRole: "STRING_VALUE",
|
|
167
|
+
* // },
|
|
168
|
+
* // ],
|
|
169
|
+
* // },
|
|
170
|
+
* // ],
|
|
171
|
+
* // SnapshottingClusterId: "STRING_VALUE",
|
|
172
|
+
* // AutomaticFailover: "enabled" || "disabled" || "enabling" || "disabling",
|
|
173
|
+
* // MultiAZ: "enabled" || "disabled",
|
|
174
|
+
* // ConfigurationEndpoint: "<Endpoint>",
|
|
175
|
+
* // SnapshotRetentionLimit: Number("int"),
|
|
176
|
+
* // SnapshotWindow: "STRING_VALUE",
|
|
177
|
+
* // ClusterEnabled: true || false,
|
|
178
|
+
* // CacheNodeType: "STRING_VALUE",
|
|
179
|
+
* // AuthTokenEnabled: true || false,
|
|
180
|
+
* // AuthTokenLastModifiedDate: new Date("TIMESTAMP"),
|
|
181
|
+
* // TransitEncryptionEnabled: true || false,
|
|
182
|
+
* // AtRestEncryptionEnabled: true || false,
|
|
183
|
+
* // MemberClustersOutpostArns: [ // ReplicationGroupOutpostArnList
|
|
184
|
+
* // "STRING_VALUE",
|
|
185
|
+
* // ],
|
|
186
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
187
|
+
* // ARN: "STRING_VALUE",
|
|
188
|
+
* // UserGroupIds: [
|
|
189
|
+
* // "STRING_VALUE",
|
|
190
|
+
* // ],
|
|
191
|
+
* // LogDeliveryConfigurations: [ // LogDeliveryConfigurationList
|
|
192
|
+
* // { // LogDeliveryConfiguration
|
|
193
|
+
* // LogType: "slow-log" || "engine-log",
|
|
194
|
+
* // DestinationType: "cloudwatch-logs" || "kinesis-firehose",
|
|
195
|
+
* // DestinationDetails: {
|
|
196
|
+
* // CloudWatchLogsDetails: {
|
|
197
|
+
* // LogGroup: "STRING_VALUE",
|
|
198
|
+
* // },
|
|
199
|
+
* // KinesisFirehoseDetails: {
|
|
200
|
+
* // DeliveryStream: "STRING_VALUE",
|
|
201
|
+
* // },
|
|
202
|
+
* // },
|
|
203
|
+
* // LogFormat: "text" || "json",
|
|
204
|
+
* // Status: "active" || "enabling" || "modifying" || "disabling" || "error",
|
|
205
|
+
* // Message: "STRING_VALUE",
|
|
206
|
+
* // },
|
|
207
|
+
* // ],
|
|
208
|
+
* // ReplicationGroupCreateTime: new Date("TIMESTAMP"),
|
|
209
|
+
* // DataTiering: "enabled" || "disabled",
|
|
210
|
+
* // AutoMinorVersionUpgrade: true || false,
|
|
211
|
+
* // NetworkType: "ipv4" || "ipv6" || "dual_stack",
|
|
212
|
+
* // IpDiscovery: "ipv4" || "ipv6",
|
|
213
|
+
* // TransitEncryptionMode: "preferred" || "required",
|
|
214
|
+
* // },
|
|
215
|
+
* // };
|
|
216
|
+
*
|
|
96
217
|
* ```
|
|
97
218
|
*
|
|
98
219
|
* @param TestFailoverCommandInput - {@link TestFailoverCommandInput}
|
|
@@ -129,6 +250,8 @@ export interface TestFailoverCommandOutput extends TestFailoverResult, __Metadat
|
|
|
129
250
|
* @throws {@link TestFailoverNotAvailableFault} (client fault)
|
|
130
251
|
* <p>The <code>TestFailover</code> action is not available.</p>
|
|
131
252
|
*
|
|
253
|
+
* @throws {@link ElastiCacheServiceException}
|
|
254
|
+
* <p>Base exception class for all service exceptions from ElastiCache service.</p>
|
|
132
255
|
*
|
|
133
256
|
*/
|
|
134
257
|
export declare class TestFailoverCommand extends $Command<TestFailoverCommandInput, TestFailoverCommandOutput, ElastiCacheClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticache",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticache Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|