Skip to content

Commit b7817fd

Browse files
author
awstools
committedApr 3, 2024
feat(client-docdb): This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster.
1 parent 66721f6 commit b7817fd

File tree

8 files changed

+342
-2
lines changed

8 files changed

+342
-2
lines changed
 

‎clients/client-docdb/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -629,3 +629,11 @@ StopDBCluster
629629
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/docdb/command/StopDBClusterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-docdb/Interface/StopDBClusterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-docdb/Interface/StopDBClusterCommandOutput/)
630630

631631
</details>
632+
<details>
633+
<summary>
634+
SwitchoverGlobalCluster
635+
</summary>
636+
637+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/docdb/command/SwitchoverGlobalClusterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-docdb/Interface/SwitchoverGlobalClusterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-docdb/Interface/SwitchoverGlobalClusterCommandOutput/)
638+
639+
</details>

‎clients/client-docdb/src/DocDB.ts

+23
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,11 @@ import {
267267
StopDBClusterCommandInput,
268268
StopDBClusterCommandOutput,
269269
} from "./commands/StopDBClusterCommand";
270+
import {
271+
SwitchoverGlobalClusterCommand,
272+
SwitchoverGlobalClusterCommandInput,
273+
SwitchoverGlobalClusterCommandOutput,
274+
} from "./commands/SwitchoverGlobalClusterCommand";
270275
import { DocDBClient, DocDBClientConfig } from "./DocDBClient";
271276

272277
const commands = {
@@ -323,6 +328,7 @@ const commands = {
323328
RestoreDBClusterToPointInTimeCommand,
324329
StartDBClusterCommand,
325330
StopDBClusterCommand,
331+
SwitchoverGlobalClusterCommand,
326332
};
327333

328334
export interface DocDB {
@@ -1218,6 +1224,23 @@ export interface DocDB {
12181224
options: __HttpHandlerOptions,
12191225
cb: (err: any, data?: StopDBClusterCommandOutput) => void
12201226
): void;
1227+
1228+
/**
1229+
* @see {@link SwitchoverGlobalClusterCommand}
1230+
*/
1231+
switchoverGlobalCluster(
1232+
args: SwitchoverGlobalClusterCommandInput,
1233+
options?: __HttpHandlerOptions
1234+
): Promise<SwitchoverGlobalClusterCommandOutput>;
1235+
switchoverGlobalCluster(
1236+
args: SwitchoverGlobalClusterCommandInput,
1237+
cb: (err: any, data?: SwitchoverGlobalClusterCommandOutput) => void
1238+
): void;
1239+
switchoverGlobalCluster(
1240+
args: SwitchoverGlobalClusterCommandInput,
1241+
options: __HttpHandlerOptions,
1242+
cb: (err: any, data?: SwitchoverGlobalClusterCommandOutput) => void
1243+
): void;
12211244
}
12221245

12231246
/**

‎clients/client-docdb/src/DocDBClient.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,10 @@ import {
226226
} from "./commands/RestoreDBClusterToPointInTimeCommand";
227227
import { StartDBClusterCommandInput, StartDBClusterCommandOutput } from "./commands/StartDBClusterCommand";
228228
import { StopDBClusterCommandInput, StopDBClusterCommandOutput } from "./commands/StopDBClusterCommand";
229+
import {
230+
SwitchoverGlobalClusterCommandInput,
231+
SwitchoverGlobalClusterCommandOutput,
232+
} from "./commands/SwitchoverGlobalClusterCommand";
229233
import {
230234
ClientInputEndpointParameters,
231235
ClientResolvedEndpointParameters,
@@ -293,7 +297,8 @@ export type ServiceInputTypes =
293297
| RestoreDBClusterFromSnapshotCommandInput
294298
| RestoreDBClusterToPointInTimeCommandInput
295299
| StartDBClusterCommandInput
296-
| StopDBClusterCommandInput;
300+
| StopDBClusterCommandInput
301+
| SwitchoverGlobalClusterCommandInput;
297302

298303
/**
299304
* @public
@@ -351,7 +356,8 @@ export type ServiceOutputTypes =
351356
| RestoreDBClusterFromSnapshotCommandOutput
352357
| RestoreDBClusterToPointInTimeCommandOutput
353358
| StartDBClusterCommandOutput
354-
| StopDBClusterCommandOutput;
359+
| StopDBClusterCommandOutput
360+
| SwitchoverGlobalClusterCommandOutput;
355361

356362
/**
357363
* @public
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
// smithy-typescript generated code
2+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
3+
import { getSerdePlugin } from "@smithy/middleware-serde";
4+
import { Command as $Command } from "@smithy/smithy-client";
5+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
6+
7+
import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient";
8+
import { commonParams } from "../endpoint/EndpointParameters";
9+
import { SwitchoverGlobalClusterMessage, SwitchoverGlobalClusterResult } from "../models/models_0";
10+
import { de_SwitchoverGlobalClusterCommand, se_SwitchoverGlobalClusterCommand } from "../protocols/Aws_query";
11+
12+
/**
13+
* @public
14+
*/
15+
export { __MetadataBearer, $Command };
16+
/**
17+
* @public
18+
*
19+
* The input for {@link SwitchoverGlobalClusterCommand}.
20+
*/
21+
export interface SwitchoverGlobalClusterCommandInput extends SwitchoverGlobalClusterMessage {}
22+
/**
23+
* @public
24+
*
25+
* The output of {@link SwitchoverGlobalClusterCommand}.
26+
*/
27+
export interface SwitchoverGlobalClusterCommandOutput extends SwitchoverGlobalClusterResult, __MetadataBearer {}
28+
29+
/**
30+
* <p>Switches over the specified secondary Amazon DocumentDB cluster to be the new primary Amazon DocumentDB cluster in the global database cluster.</p>
31+
* @example
32+
* Use a bare-bones client and the command you need to make an API call.
33+
* ```javascript
34+
* import { DocDBClient, SwitchoverGlobalClusterCommand } from "@aws-sdk/client-docdb"; // ES Modules import
35+
* // const { DocDBClient, SwitchoverGlobalClusterCommand } = require("@aws-sdk/client-docdb"); // CommonJS import
36+
* const client = new DocDBClient(config);
37+
* const input = { // SwitchoverGlobalClusterMessage
38+
* GlobalClusterIdentifier: "STRING_VALUE", // required
39+
* TargetDbClusterIdentifier: "STRING_VALUE", // required
40+
* };
41+
* const command = new SwitchoverGlobalClusterCommand(input);
42+
* const response = await client.send(command);
43+
* // { // SwitchoverGlobalClusterResult
44+
* // GlobalCluster: { // GlobalCluster
45+
* // GlobalClusterIdentifier: "STRING_VALUE",
46+
* // GlobalClusterResourceId: "STRING_VALUE",
47+
* // GlobalClusterArn: "STRING_VALUE",
48+
* // Status: "STRING_VALUE",
49+
* // Engine: "STRING_VALUE",
50+
* // EngineVersion: "STRING_VALUE",
51+
* // DatabaseName: "STRING_VALUE",
52+
* // StorageEncrypted: true || false,
53+
* // DeletionProtection: true || false,
54+
* // GlobalClusterMembers: [ // GlobalClusterMemberList
55+
* // { // GlobalClusterMember
56+
* // DBClusterArn: "STRING_VALUE",
57+
* // Readers: [ // ReadersArnList
58+
* // "STRING_VALUE",
59+
* // ],
60+
* // IsWriter: true || false,
61+
* // },
62+
* // ],
63+
* // },
64+
* // };
65+
*
66+
* ```
67+
*
68+
* @param SwitchoverGlobalClusterCommandInput - {@link SwitchoverGlobalClusterCommandInput}
69+
* @returns {@link SwitchoverGlobalClusterCommandOutput}
70+
* @see {@link SwitchoverGlobalClusterCommandInput} for command's `input` shape.
71+
* @see {@link SwitchoverGlobalClusterCommandOutput} for command's `response` shape.
72+
* @see {@link DocDBClientResolvedConfig | config} for DocDBClient's `config` shape.
73+
*
74+
* @throws {@link DBClusterNotFoundFault} (client fault)
75+
* <p>
76+
* <code>DBClusterIdentifier</code> doesn't refer to an existing cluster. </p>
77+
*
78+
* @throws {@link GlobalClusterNotFoundFault} (client fault)
79+
* <p>The <code>GlobalClusterIdentifier</code> doesn't refer to an existing global cluster.</p>
80+
*
81+
* @throws {@link InvalidDBClusterStateFault} (client fault)
82+
* <p>The cluster isn't in a valid state.</p>
83+
*
84+
* @throws {@link InvalidGlobalClusterStateFault} (client fault)
85+
* <p>The requested operation can't be performed while the cluster is in this state.</p>
86+
*
87+
* @throws {@link DocDBServiceException}
88+
* <p>Base exception class for all service exceptions from DocDB service.</p>
89+
*
90+
* @public
91+
*/
92+
export class SwitchoverGlobalClusterCommand extends $Command
93+
.classBuilder<
94+
SwitchoverGlobalClusterCommandInput,
95+
SwitchoverGlobalClusterCommandOutput,
96+
DocDBClientResolvedConfig,
97+
ServiceInputTypes,
98+
ServiceOutputTypes
99+
>()
100+
.ep({
101+
...commonParams,
102+
})
103+
.m(function (this: any, Command: any, cs: any, config: DocDBClientResolvedConfig, o: any) {
104+
return [
105+
getSerdePlugin(config, this.serialize, this.deserialize),
106+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
107+
];
108+
})
109+
.s("AmazonRDSv19", "SwitchoverGlobalCluster", {})
110+
.n("DocDBClient", "SwitchoverGlobalClusterCommand")
111+
.f(void 0, void 0)
112+
.ser(se_SwitchoverGlobalClusterCommand)
113+
.de(de_SwitchoverGlobalClusterCommand)
114+
.build() {}

‎clients/client-docdb/src/commands/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,4 @@ export * from "./RestoreDBClusterFromSnapshotCommand";
5252
export * from "./RestoreDBClusterToPointInTimeCommand";
5353
export * from "./StartDBClusterCommand";
5454
export * from "./StopDBClusterCommand";
55+
export * from "./SwitchoverGlobalClusterCommand";

‎clients/client-docdb/src/models/models_0.ts

+54
Original file line numberDiff line numberDiff line change
@@ -6351,3 +6351,57 @@ export interface StopDBClusterResult {
63516351
*/
63526352
DBCluster?: DBCluster;
63536353
}
6354+
6355+
/**
6356+
* @public
6357+
*/
6358+
export interface SwitchoverGlobalClusterMessage {
6359+
/**
6360+
* <p>The identifier of the Amazon DocumentDB global database cluster to switch over.
6361+
* The identifier is the unique key assigned by the user when the cluster is created.
6362+
* In other words, it's the name of the global cluster.
6363+
* This parameter isn’t case-sensitive.</p>
6364+
* <p>Constraints:</p>
6365+
* <ul>
6366+
* <li>
6367+
* <p>Must match the identifier of an existing global cluster (Amazon DocumentDB global database).</p>
6368+
* </li>
6369+
* <li>
6370+
* <p>Minimum length of 1. Maximum length of 255.</p>
6371+
* </li>
6372+
* </ul>
6373+
* <p>Pattern: <code>[A-Za-z][0-9A-Za-z-:._]*</code>
6374+
* </p>
6375+
* @public
6376+
*/
6377+
GlobalClusterIdentifier: string | undefined;
6378+
6379+
/**
6380+
* <p>The identifier of the secondary Amazon DocumentDB cluster to promote to the new primary for the global database cluster.
6381+
* Use the Amazon Resource Name (ARN) for the identifier so that Amazon DocumentDB can locate the cluster in its Amazon Web Services region.</p>
6382+
* <p>Constraints:</p>
6383+
* <ul>
6384+
* <li>
6385+
* <p>Must match the identifier of an existing secondary cluster.</p>
6386+
* </li>
6387+
* <li>
6388+
* <p>Minimum length of 1. Maximum length of 255.</p>
6389+
* </li>
6390+
* </ul>
6391+
* <p>Pattern: <code>[A-Za-z][0-9A-Za-z-:._]*</code>
6392+
* </p>
6393+
* @public
6394+
*/
6395+
TargetDbClusterIdentifier: string | undefined;
6396+
}
6397+
6398+
/**
6399+
* @public
6400+
*/
6401+
export interface SwitchoverGlobalClusterResult {
6402+
/**
6403+
* <p>A data type representing an Amazon DocumentDB global cluster.</p>
6404+
* @public
6405+
*/
6406+
GlobalCluster?: GlobalCluster;
6407+
}

‎clients/client-docdb/src/protocols/Aws_query.ts

+70
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,10 @@ import {
193193
} from "../commands/RestoreDBClusterToPointInTimeCommand";
194194
import { StartDBClusterCommandInput, StartDBClusterCommandOutput } from "../commands/StartDBClusterCommand";
195195
import { StopDBClusterCommandInput, StopDBClusterCommandOutput } from "../commands/StopDBClusterCommand";
196+
import {
197+
SwitchoverGlobalClusterCommandInput,
198+
SwitchoverGlobalClusterCommandOutput,
199+
} from "../commands/SwitchoverGlobalClusterCommand";
196200
import { DocDBServiceException as __BaseException } from "../models/DocDBServiceException";
197201
import {
198202
AddSourceIdentifierToSubscriptionMessage,
@@ -382,6 +386,8 @@ import {
382386
SubscriptionAlreadyExistFault,
383387
SubscriptionCategoryNotFoundFault,
384388
SubscriptionNotFoundFault,
389+
SwitchoverGlobalClusterMessage,
390+
SwitchoverGlobalClusterResult,
385391
Tag,
386392
TagListMessage,
387393
UpgradeTarget,
@@ -1289,6 +1295,23 @@ export const se_StopDBClusterCommand = async (
12891295
return buildHttpRpcRequest(context, headers, "/", undefined, body);
12901296
};
12911297

1298+
/**
1299+
* serializeAws_querySwitchoverGlobalClusterCommand
1300+
*/
1301+
export const se_SwitchoverGlobalClusterCommand = async (
1302+
input: SwitchoverGlobalClusterCommandInput,
1303+
context: __SerdeContext
1304+
): Promise<__HttpRequest> => {
1305+
const headers: __HeaderBag = SHARED_HEADERS;
1306+
let body: any;
1307+
body = buildFormUrlencodedString({
1308+
...se_SwitchoverGlobalClusterMessage(input, context),
1309+
[_A]: _SGC,
1310+
[_V]: _,
1311+
});
1312+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
1313+
};
1314+
12921315
/**
12931316
* deserializeAws_queryAddSourceIdentifierToSubscriptionCommand
12941317
*/
@@ -2343,6 +2366,26 @@ export const de_StopDBClusterCommand = async (
23432366
return response;
23442367
};
23452368

2369+
/**
2370+
* deserializeAws_querySwitchoverGlobalClusterCommand
2371+
*/
2372+
export const de_SwitchoverGlobalClusterCommand = async (
2373+
output: __HttpResponse,
2374+
context: __SerdeContext
2375+
): Promise<SwitchoverGlobalClusterCommandOutput> => {
2376+
if (output.statusCode >= 300) {
2377+
return de_CommandError(output, context);
2378+
}
2379+
const data: any = await parseBody(output.body, context);
2380+
let contents: any = {};
2381+
contents = de_SwitchoverGlobalClusterResult(data.SwitchoverGlobalClusterResult, context);
2382+
const response: SwitchoverGlobalClusterCommandOutput = {
2383+
$metadata: deserializeMetadata(output),
2384+
...contents,
2385+
};
2386+
return response;
2387+
};
2388+
23462389
/**
23472390
* deserialize_Aws_queryCommandError
23482391
*/
@@ -5257,6 +5300,20 @@ const se_SubnetIdentifierList = (input: string[], context: __SerdeContext): any
52575300
return entries;
52585301
};
52595302

5303+
/**
5304+
* serializeAws_querySwitchoverGlobalClusterMessage
5305+
*/
5306+
const se_SwitchoverGlobalClusterMessage = (input: SwitchoverGlobalClusterMessage, context: __SerdeContext): any => {
5307+
const entries: any = {};
5308+
if (input[_GCI] != null) {
5309+
entries[_GCI] = input[_GCI];
5310+
}
5311+
if (input[_TDCI] != null) {
5312+
entries[_TDCI] = input[_TDCI];
5313+
}
5314+
return entries;
5315+
};
5316+
52605317
/**
52615318
* serializeAws_queryTag
52625319
*/
@@ -7830,6 +7887,17 @@ const de_SubscriptionNotFoundFault = (output: any, context: __SerdeContext): Sub
78307887
return contents;
78317888
};
78327889

7890+
/**
7891+
* deserializeAws_querySwitchoverGlobalClusterResult
7892+
*/
7893+
const de_SwitchoverGlobalClusterResult = (output: any, context: __SerdeContext): SwitchoverGlobalClusterResult => {
7894+
const contents: any = {};
7895+
if (output[_GC] != null) {
7896+
contents[_GC] = de_GlobalCluster(output[_GC], context);
7897+
}
7898+
return contents;
7899+
};
7900+
78337901
/**
78347902
* deserializeAws_queryTag
78357903
*/
@@ -8214,6 +8282,7 @@ const _SDBCSI = "SourceDBClusterSnapshotIdentifier";
82148282
const _SDBCt = "StopDBCluster";
82158283
const _SE = "StorageEncrypted";
82168284
const _SFS = "SkipFinalSnapshot";
8285+
const _SGC = "SwitchoverGlobalCluster";
82178286
const _SGS = "SubnetGroupStatus";
82188287
const _SI = "SourceIdentifier";
82198288
const _SIL = "SourceIdsList";
@@ -8240,6 +8309,7 @@ const _TDBCPGD = "TargetDBClusterParameterGroupDescription";
82408309
const _TDBCPGI = "TargetDBClusterParameterGroupIdentifier";
82418310
const _TDBCSI = "TargetDBClusterSnapshotIdentifier";
82428311
const _TDBII = "TargetDBInstanceIdentifier";
8312+
const _TDCI = "TargetDbClusterIdentifier";
82438313
const _TK = "TagKeys";
82448314
const _TL = "TagList";
82458315
const _Ta = "Tag";

0 commit comments

Comments
 (0)
Please sign in to comment.