@@ -193,6 +193,10 @@ import {
193
193
} from "../commands/RestoreDBClusterToPointInTimeCommand" ;
194
194
import { StartDBClusterCommandInput , StartDBClusterCommandOutput } from "../commands/StartDBClusterCommand" ;
195
195
import { StopDBClusterCommandInput , StopDBClusterCommandOutput } from "../commands/StopDBClusterCommand" ;
196
+ import {
197
+ SwitchoverGlobalClusterCommandInput ,
198
+ SwitchoverGlobalClusterCommandOutput ,
199
+ } from "../commands/SwitchoverGlobalClusterCommand" ;
196
200
import { DocDBServiceException as __BaseException } from "../models/DocDBServiceException" ;
197
201
import {
198
202
AddSourceIdentifierToSubscriptionMessage ,
@@ -382,6 +386,8 @@ import {
382
386
SubscriptionAlreadyExistFault ,
383
387
SubscriptionCategoryNotFoundFault ,
384
388
SubscriptionNotFoundFault ,
389
+ SwitchoverGlobalClusterMessage ,
390
+ SwitchoverGlobalClusterResult ,
385
391
Tag ,
386
392
TagListMessage ,
387
393
UpgradeTarget ,
@@ -1289,6 +1295,23 @@ export const se_StopDBClusterCommand = async (
1289
1295
return buildHttpRpcRequest ( context , headers , "/" , undefined , body ) ;
1290
1296
} ;
1291
1297
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
+
1292
1315
/**
1293
1316
* deserializeAws_queryAddSourceIdentifierToSubscriptionCommand
1294
1317
*/
@@ -2343,6 +2366,26 @@ export const de_StopDBClusterCommand = async (
2343
2366
return response ;
2344
2367
} ;
2345
2368
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
+
2346
2389
/**
2347
2390
* deserialize_Aws_queryCommandError
2348
2391
*/
@@ -5257,6 +5300,20 @@ const se_SubnetIdentifierList = (input: string[], context: __SerdeContext): any
5257
5300
return entries ;
5258
5301
} ;
5259
5302
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
+
5260
5317
/**
5261
5318
* serializeAws_queryTag
5262
5319
*/
@@ -7830,6 +7887,17 @@ const de_SubscriptionNotFoundFault = (output: any, context: __SerdeContext): Sub
7830
7887
return contents ;
7831
7888
} ;
7832
7889
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
+
7833
7901
/**
7834
7902
* deserializeAws_queryTag
7835
7903
*/
@@ -8214,6 +8282,7 @@ const _SDBCSI = "SourceDBClusterSnapshotIdentifier";
8214
8282
const _SDBCt = "StopDBCluster" ;
8215
8283
const _SE = "StorageEncrypted" ;
8216
8284
const _SFS = "SkipFinalSnapshot" ;
8285
+ const _SGC = "SwitchoverGlobalCluster" ;
8217
8286
const _SGS = "SubnetGroupStatus" ;
8218
8287
const _SI = "SourceIdentifier" ;
8219
8288
const _SIL = "SourceIdsList" ;
@@ -8240,6 +8309,7 @@ const _TDBCPGD = "TargetDBClusterParameterGroupDescription";
8240
8309
const _TDBCPGI = "TargetDBClusterParameterGroupIdentifier" ;
8241
8310
const _TDBCSI = "TargetDBClusterSnapshotIdentifier" ;
8242
8311
const _TDBII = "TargetDBInstanceIdentifier" ;
8312
+ const _TDCI = "TargetDbClusterIdentifier" ;
8243
8313
const _TK = "TagKeys" ;
8244
8314
const _TL = "TagList" ;
8245
8315
const _Ta = "Tag" ;
0 commit comments