@aws-sdk/client-rds 3.28.0 → 3.32.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/CHANGELOG.md +35 -0
- package/RDS.ts +1 -1
- package/commands/ModifyCurrentDBClusterCapacityCommand.ts +1 -1
- package/dist/cjs/commands/ModifyCurrentDBClusterCapacityCommand.js +1 -1
- package/dist/cjs/models/models_0.js.map +1 -1
- package/dist/cjs/models/models_1.js.map +1 -1
- package/dist/cjs/package.json +33 -33
- package/dist/cjs/protocols/Aws_query.js +102 -95
- package/dist/cjs/protocols/Aws_query.js.map +1 -1
- package/dist/es/commands/ModifyCurrentDBClusterCapacityCommand.js +1 -1
- package/dist/es/endpoints.js +1 -2
- package/dist/es/endpoints.js.map +1 -1
- package/dist/es/models/models_0.js.map +1 -1
- package/dist/es/models/models_1.js.map +1 -1
- package/dist/es/package.json +33 -33
- package/dist/es/protocols/Aws_query.js +103 -96
- package/dist/es/protocols/Aws_query.js.map +1 -1
- package/dist/types/RDS.d.ts +1 -1
- package/dist/types/commands/ModifyCurrentDBClusterCapacityCommand.d.ts +1 -1
- package/dist/types/models/models_0.d.ts +18 -2
- package/dist/types/models/models_1.d.ts +1 -5
- package/dist/types/ts3.4/RDS.d.ts +1 -1
- package/dist/types/ts3.4/commands/ModifyCurrentDBClusterCapacityCommand.d.ts +1 -1
- package/dist/types/ts3.4/models/models_0.d.ts +18 -2
- package/dist/types/ts3.4/models/models_1.d.ts +1 -5
- package/models/models_0.ts +20 -2
- package/models/models_1.ts +1 -5
- package/package.json +33 -33
- package/protocols/Aws_query.ts +108 -96
|
@@ -16506,6 +16506,9 @@ const serializeAws_queryScalingConfiguration = (input, context) => {
|
|
|
16506
16506
|
if (input.TimeoutAction !== undefined && input.TimeoutAction !== null) {
|
|
16507
16507
|
entries["TimeoutAction"] = input.TimeoutAction;
|
|
16508
16508
|
}
|
|
16509
|
+
if (input.SecondsBeforeTimeout !== undefined && input.SecondsBeforeTimeout !== null) {
|
|
16510
|
+
entries["SecondsBeforeTimeout"] = input.SecondsBeforeTimeout;
|
|
16511
|
+
}
|
|
16509
16512
|
return entries;
|
|
16510
16513
|
};
|
|
16511
16514
|
const serializeAws_querySourceIdsList = (input, context) => {
|
|
@@ -16749,10 +16752,10 @@ const deserializeAws_queryAccountQuota = (output, context) => {
|
|
|
16749
16752
|
contents.AccountQuotaName = smithy_client_1.expectString(output["AccountQuotaName"]);
|
|
16750
16753
|
}
|
|
16751
16754
|
if (output["Used"] !== undefined) {
|
|
16752
|
-
contents.Used = smithy_client_1.
|
|
16755
|
+
contents.Used = smithy_client_1.strictParseLong(output["Used"]);
|
|
16753
16756
|
}
|
|
16754
16757
|
if (output["Max"] !== undefined) {
|
|
16755
|
-
contents.Max = smithy_client_1.
|
|
16758
|
+
contents.Max = smithy_client_1.strictParseLong(output["Max"]);
|
|
16756
16759
|
}
|
|
16757
16760
|
return contents;
|
|
16758
16761
|
};
|
|
@@ -16926,10 +16929,10 @@ const deserializeAws_queryCertificate = (output, context) => {
|
|
|
16926
16929
|
contents.Thumbprint = smithy_client_1.expectString(output["Thumbprint"]);
|
|
16927
16930
|
}
|
|
16928
16931
|
if (output["ValidFrom"] !== undefined) {
|
|
16929
|
-
contents.ValidFrom =
|
|
16932
|
+
contents.ValidFrom = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["ValidFrom"]));
|
|
16930
16933
|
}
|
|
16931
16934
|
if (output["ValidTill"] !== undefined) {
|
|
16932
|
-
contents.ValidTill =
|
|
16935
|
+
contents.ValidTill = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["ValidTill"]));
|
|
16933
16936
|
}
|
|
16934
16937
|
if (output["CertificateArn"] !== undefined) {
|
|
16935
16938
|
contents.CertificateArn = smithy_client_1.expectString(output["CertificateArn"]);
|
|
@@ -16938,7 +16941,7 @@ const deserializeAws_queryCertificate = (output, context) => {
|
|
|
16938
16941
|
contents.CustomerOverride = smithy_client_1.parseBoolean(output["CustomerOverride"]);
|
|
16939
16942
|
}
|
|
16940
16943
|
if (output["CustomerOverrideValidTill"] !== undefined) {
|
|
16941
|
-
contents.CustomerOverrideValidTill =
|
|
16944
|
+
contents.CustomerOverrideValidTill = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["CustomerOverrideValidTill"]));
|
|
16942
16945
|
}
|
|
16943
16946
|
return contents;
|
|
16944
16947
|
};
|
|
@@ -17024,13 +17027,13 @@ const deserializeAws_queryConnectionPoolConfigurationInfo = (output, context) =>
|
|
|
17024
17027
|
InitQuery: undefined,
|
|
17025
17028
|
};
|
|
17026
17029
|
if (output["MaxConnectionsPercent"] !== undefined) {
|
|
17027
|
-
contents.MaxConnectionsPercent = smithy_client_1.
|
|
17030
|
+
contents.MaxConnectionsPercent = smithy_client_1.strictParseInt32(output["MaxConnectionsPercent"]);
|
|
17028
17031
|
}
|
|
17029
17032
|
if (output["MaxIdleConnectionsPercent"] !== undefined) {
|
|
17030
|
-
contents.MaxIdleConnectionsPercent = smithy_client_1.
|
|
17033
|
+
contents.MaxIdleConnectionsPercent = smithy_client_1.strictParseInt32(output["MaxIdleConnectionsPercent"]);
|
|
17031
17034
|
}
|
|
17032
17035
|
if (output["ConnectionBorrowTimeout"] !== undefined) {
|
|
17033
|
-
contents.ConnectionBorrowTimeout = smithy_client_1.
|
|
17036
|
+
contents.ConnectionBorrowTimeout = smithy_client_1.strictParseInt32(output["ConnectionBorrowTimeout"]);
|
|
17034
17037
|
}
|
|
17035
17038
|
if (output.SessionPinningFilters === "") {
|
|
17036
17039
|
contents.SessionPinningFilters = [];
|
|
@@ -17359,7 +17362,7 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
17359
17362
|
PendingModifiedValues: undefined,
|
|
17360
17363
|
};
|
|
17361
17364
|
if (output["AllocatedStorage"] !== undefined) {
|
|
17362
|
-
contents.AllocatedStorage = smithy_client_1.
|
|
17365
|
+
contents.AllocatedStorage = smithy_client_1.strictParseInt32(output["AllocatedStorage"]);
|
|
17363
17366
|
}
|
|
17364
17367
|
if (output.AvailabilityZones === "") {
|
|
17365
17368
|
contents.AvailabilityZones = [];
|
|
@@ -17368,7 +17371,7 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
17368
17371
|
contents.AvailabilityZones = deserializeAws_queryAvailabilityZones(smithy_client_1.getArrayIfSingleItem(output["AvailabilityZones"]["AvailabilityZone"]), context);
|
|
17369
17372
|
}
|
|
17370
17373
|
if (output["BackupRetentionPeriod"] !== undefined) {
|
|
17371
|
-
contents.BackupRetentionPeriod = smithy_client_1.
|
|
17374
|
+
contents.BackupRetentionPeriod = smithy_client_1.strictParseInt32(output["BackupRetentionPeriod"]);
|
|
17372
17375
|
}
|
|
17373
17376
|
if (output["CharacterSetName"] !== undefined) {
|
|
17374
17377
|
contents.CharacterSetName = smithy_client_1.expectString(output["CharacterSetName"]);
|
|
@@ -17389,13 +17392,13 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
17389
17392
|
contents.Status = smithy_client_1.expectString(output["Status"]);
|
|
17390
17393
|
}
|
|
17391
17394
|
if (output["AutomaticRestartTime"] !== undefined) {
|
|
17392
|
-
contents.AutomaticRestartTime =
|
|
17395
|
+
contents.AutomaticRestartTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["AutomaticRestartTime"]));
|
|
17393
17396
|
}
|
|
17394
17397
|
if (output["PercentProgress"] !== undefined) {
|
|
17395
17398
|
contents.PercentProgress = smithy_client_1.expectString(output["PercentProgress"]);
|
|
17396
17399
|
}
|
|
17397
17400
|
if (output["EarliestRestorableTime"] !== undefined) {
|
|
17398
|
-
contents.EarliestRestorableTime =
|
|
17401
|
+
contents.EarliestRestorableTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["EarliestRestorableTime"]));
|
|
17399
17402
|
}
|
|
17400
17403
|
if (output["Endpoint"] !== undefined) {
|
|
17401
17404
|
contents.Endpoint = smithy_client_1.expectString(output["Endpoint"]);
|
|
@@ -17419,10 +17422,10 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
17419
17422
|
contents.EngineVersion = smithy_client_1.expectString(output["EngineVersion"]);
|
|
17420
17423
|
}
|
|
17421
17424
|
if (output["LatestRestorableTime"] !== undefined) {
|
|
17422
|
-
contents.LatestRestorableTime =
|
|
17425
|
+
contents.LatestRestorableTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["LatestRestorableTime"]));
|
|
17423
17426
|
}
|
|
17424
17427
|
if (output["Port"] !== undefined) {
|
|
17425
|
-
contents.Port = smithy_client_1.
|
|
17428
|
+
contents.Port = smithy_client_1.strictParseInt32(output["Port"]);
|
|
17426
17429
|
}
|
|
17427
17430
|
if (output["MasterUsername"] !== undefined) {
|
|
17428
17431
|
contents.MasterUsername = smithy_client_1.expectString(output["MasterUsername"]);
|
|
@@ -17491,16 +17494,16 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
17491
17494
|
contents.CloneGroupId = smithy_client_1.expectString(output["CloneGroupId"]);
|
|
17492
17495
|
}
|
|
17493
17496
|
if (output["ClusterCreateTime"] !== undefined) {
|
|
17494
|
-
contents.ClusterCreateTime =
|
|
17497
|
+
contents.ClusterCreateTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["ClusterCreateTime"]));
|
|
17495
17498
|
}
|
|
17496
17499
|
if (output["EarliestBacktrackTime"] !== undefined) {
|
|
17497
|
-
contents.EarliestBacktrackTime =
|
|
17500
|
+
contents.EarliestBacktrackTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["EarliestBacktrackTime"]));
|
|
17498
17501
|
}
|
|
17499
17502
|
if (output["BacktrackWindow"] !== undefined) {
|
|
17500
|
-
contents.BacktrackWindow = smithy_client_1.
|
|
17503
|
+
contents.BacktrackWindow = smithy_client_1.strictParseLong(output["BacktrackWindow"]);
|
|
17501
17504
|
}
|
|
17502
17505
|
if (output["BacktrackConsumedChangeRecords"] !== undefined) {
|
|
17503
|
-
contents.BacktrackConsumedChangeRecords = smithy_client_1.
|
|
17506
|
+
contents.BacktrackConsumedChangeRecords = smithy_client_1.strictParseLong(output["BacktrackConsumedChangeRecords"]);
|
|
17504
17507
|
}
|
|
17505
17508
|
if (output.EnabledCloudwatchLogsExports === "") {
|
|
17506
17509
|
contents.EnabledCloudwatchLogsExports = [];
|
|
@@ -17510,7 +17513,7 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
17510
17513
|
contents.EnabledCloudwatchLogsExports = deserializeAws_queryLogTypeList(smithy_client_1.getArrayIfSingleItem(output["EnabledCloudwatchLogsExports"]["member"]), context);
|
|
17511
17514
|
}
|
|
17512
17515
|
if (output["Capacity"] !== undefined) {
|
|
17513
|
-
contents.Capacity = smithy_client_1.
|
|
17516
|
+
contents.Capacity = smithy_client_1.strictParseInt32(output["Capacity"]);
|
|
17514
17517
|
}
|
|
17515
17518
|
if (output["EngineMode"] !== undefined) {
|
|
17516
17519
|
contents.EngineMode = smithy_client_1.expectString(output["EngineMode"]);
|
|
@@ -17590,13 +17593,13 @@ const deserializeAws_queryDBClusterBacktrack = (output, context) => {
|
|
|
17590
17593
|
contents.BacktrackIdentifier = smithy_client_1.expectString(output["BacktrackIdentifier"]);
|
|
17591
17594
|
}
|
|
17592
17595
|
if (output["BacktrackTo"] !== undefined) {
|
|
17593
|
-
contents.BacktrackTo =
|
|
17596
|
+
contents.BacktrackTo = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["BacktrackTo"]));
|
|
17594
17597
|
}
|
|
17595
17598
|
if (output["BacktrackedFrom"] !== undefined) {
|
|
17596
|
-
contents.BacktrackedFrom =
|
|
17599
|
+
contents.BacktrackedFrom = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["BacktrackedFrom"]));
|
|
17597
17600
|
}
|
|
17598
17601
|
if (output["BacktrackRequestCreationTime"] !== undefined) {
|
|
17599
|
-
contents.BacktrackRequestCreationTime =
|
|
17602
|
+
contents.BacktrackRequestCreationTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["BacktrackRequestCreationTime"]));
|
|
17600
17603
|
}
|
|
17601
17604
|
if (output["Status"] !== undefined) {
|
|
17602
17605
|
contents.Status = smithy_client_1.expectString(output["Status"]);
|
|
@@ -17651,13 +17654,13 @@ const deserializeAws_queryDBClusterCapacityInfo = (output, context) => {
|
|
|
17651
17654
|
contents.DBClusterIdentifier = smithy_client_1.expectString(output["DBClusterIdentifier"]);
|
|
17652
17655
|
}
|
|
17653
17656
|
if (output["PendingCapacity"] !== undefined) {
|
|
17654
|
-
contents.PendingCapacity = smithy_client_1.
|
|
17657
|
+
contents.PendingCapacity = smithy_client_1.strictParseInt32(output["PendingCapacity"]);
|
|
17655
17658
|
}
|
|
17656
17659
|
if (output["CurrentCapacity"] !== undefined) {
|
|
17657
|
-
contents.CurrentCapacity = smithy_client_1.
|
|
17660
|
+
contents.CurrentCapacity = smithy_client_1.strictParseInt32(output["CurrentCapacity"]);
|
|
17658
17661
|
}
|
|
17659
17662
|
if (output["SecondsBeforeTimeout"] !== undefined) {
|
|
17660
|
-
contents.SecondsBeforeTimeout = smithy_client_1.
|
|
17663
|
+
contents.SecondsBeforeTimeout = smithy_client_1.strictParseInt32(output["SecondsBeforeTimeout"]);
|
|
17661
17664
|
}
|
|
17662
17665
|
if (output["TimeoutAction"] !== undefined) {
|
|
17663
17666
|
contents.TimeoutAction = smithy_client_1.expectString(output["TimeoutAction"]);
|
|
@@ -17796,7 +17799,7 @@ const deserializeAws_queryDBClusterMember = (output, context) => {
|
|
|
17796
17799
|
contents.DBClusterParameterGroupStatus = smithy_client_1.expectString(output["DBClusterParameterGroupStatus"]);
|
|
17797
17800
|
}
|
|
17798
17801
|
if (output["PromotionTier"] !== undefined) {
|
|
17799
|
-
contents.PromotionTier = smithy_client_1.
|
|
17802
|
+
contents.PromotionTier = smithy_client_1.strictParseInt32(output["PromotionTier"]);
|
|
17800
17803
|
}
|
|
17801
17804
|
return contents;
|
|
17802
17805
|
};
|
|
@@ -18041,7 +18044,7 @@ const deserializeAws_queryDBClusterSnapshot = (output, context) => {
|
|
|
18041
18044
|
contents.DBClusterIdentifier = smithy_client_1.expectString(output["DBClusterIdentifier"]);
|
|
18042
18045
|
}
|
|
18043
18046
|
if (output["SnapshotCreateTime"] !== undefined) {
|
|
18044
|
-
contents.SnapshotCreateTime =
|
|
18047
|
+
contents.SnapshotCreateTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["SnapshotCreateTime"]));
|
|
18045
18048
|
}
|
|
18046
18049
|
if (output["Engine"] !== undefined) {
|
|
18047
18050
|
contents.Engine = smithy_client_1.expectString(output["Engine"]);
|
|
@@ -18050,19 +18053,19 @@ const deserializeAws_queryDBClusterSnapshot = (output, context) => {
|
|
|
18050
18053
|
contents.EngineMode = smithy_client_1.expectString(output["EngineMode"]);
|
|
18051
18054
|
}
|
|
18052
18055
|
if (output["AllocatedStorage"] !== undefined) {
|
|
18053
|
-
contents.AllocatedStorage = smithy_client_1.
|
|
18056
|
+
contents.AllocatedStorage = smithy_client_1.strictParseInt32(output["AllocatedStorage"]);
|
|
18054
18057
|
}
|
|
18055
18058
|
if (output["Status"] !== undefined) {
|
|
18056
18059
|
contents.Status = smithy_client_1.expectString(output["Status"]);
|
|
18057
18060
|
}
|
|
18058
18061
|
if (output["Port"] !== undefined) {
|
|
18059
|
-
contents.Port = smithy_client_1.
|
|
18062
|
+
contents.Port = smithy_client_1.strictParseInt32(output["Port"]);
|
|
18060
18063
|
}
|
|
18061
18064
|
if (output["VpcId"] !== undefined) {
|
|
18062
18065
|
contents.VpcId = smithy_client_1.expectString(output["VpcId"]);
|
|
18063
18066
|
}
|
|
18064
18067
|
if (output["ClusterCreateTime"] !== undefined) {
|
|
18065
|
-
contents.ClusterCreateTime =
|
|
18068
|
+
contents.ClusterCreateTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["ClusterCreateTime"]));
|
|
18066
18069
|
}
|
|
18067
18070
|
if (output["MasterUsername"] !== undefined) {
|
|
18068
18071
|
contents.MasterUsername = smithy_client_1.expectString(output["MasterUsername"]);
|
|
@@ -18077,7 +18080,7 @@ const deserializeAws_queryDBClusterSnapshot = (output, context) => {
|
|
|
18077
18080
|
contents.SnapshotType = smithy_client_1.expectString(output["SnapshotType"]);
|
|
18078
18081
|
}
|
|
18079
18082
|
if (output["PercentProgress"] !== undefined) {
|
|
18080
|
-
contents.PercentProgress = smithy_client_1.
|
|
18083
|
+
contents.PercentProgress = smithy_client_1.strictParseInt32(output["PercentProgress"]);
|
|
18081
18084
|
}
|
|
18082
18085
|
if (output["StorageEncrypted"] !== undefined) {
|
|
18083
18086
|
contents.StorageEncrypted = smithy_client_1.parseBoolean(output["StorageEncrypted"]);
|
|
@@ -18401,7 +18404,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18401
18404
|
contents.DBInstanceStatus = smithy_client_1.expectString(output["DBInstanceStatus"]);
|
|
18402
18405
|
}
|
|
18403
18406
|
if (output["AutomaticRestartTime"] !== undefined) {
|
|
18404
|
-
contents.AutomaticRestartTime =
|
|
18407
|
+
contents.AutomaticRestartTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["AutomaticRestartTime"]));
|
|
18405
18408
|
}
|
|
18406
18409
|
if (output["MasterUsername"] !== undefined) {
|
|
18407
18410
|
contents.MasterUsername = smithy_client_1.expectString(output["MasterUsername"]);
|
|
@@ -18413,16 +18416,16 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18413
18416
|
contents.Endpoint = deserializeAws_queryEndpoint(output["Endpoint"], context);
|
|
18414
18417
|
}
|
|
18415
18418
|
if (output["AllocatedStorage"] !== undefined) {
|
|
18416
|
-
contents.AllocatedStorage = smithy_client_1.
|
|
18419
|
+
contents.AllocatedStorage = smithy_client_1.strictParseInt32(output["AllocatedStorage"]);
|
|
18417
18420
|
}
|
|
18418
18421
|
if (output["InstanceCreateTime"] !== undefined) {
|
|
18419
|
-
contents.InstanceCreateTime =
|
|
18422
|
+
contents.InstanceCreateTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["InstanceCreateTime"]));
|
|
18420
18423
|
}
|
|
18421
18424
|
if (output["PreferredBackupWindow"] !== undefined) {
|
|
18422
18425
|
contents.PreferredBackupWindow = smithy_client_1.expectString(output["PreferredBackupWindow"]);
|
|
18423
18426
|
}
|
|
18424
18427
|
if (output["BackupRetentionPeriod"] !== undefined) {
|
|
18425
|
-
contents.BackupRetentionPeriod = smithy_client_1.
|
|
18428
|
+
contents.BackupRetentionPeriod = smithy_client_1.strictParseInt32(output["BackupRetentionPeriod"]);
|
|
18426
18429
|
}
|
|
18427
18430
|
if (output.DBSecurityGroups === "") {
|
|
18428
18431
|
contents.DBSecurityGroups = [];
|
|
@@ -18456,7 +18459,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18456
18459
|
contents.PendingModifiedValues = deserializeAws_queryPendingModifiedValues(output["PendingModifiedValues"], context);
|
|
18457
18460
|
}
|
|
18458
18461
|
if (output["LatestRestorableTime"] !== undefined) {
|
|
18459
|
-
contents.LatestRestorableTime =
|
|
18462
|
+
contents.LatestRestorableTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["LatestRestorableTime"]));
|
|
18460
18463
|
}
|
|
18461
18464
|
if (output["MultiAZ"] !== undefined) {
|
|
18462
18465
|
contents.MultiAZ = smithy_client_1.parseBoolean(output["MultiAZ"]);
|
|
@@ -18491,7 +18494,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18491
18494
|
contents.LicenseModel = smithy_client_1.expectString(output["LicenseModel"]);
|
|
18492
18495
|
}
|
|
18493
18496
|
if (output["Iops"] !== undefined) {
|
|
18494
|
-
contents.Iops = smithy_client_1.
|
|
18497
|
+
contents.Iops = smithy_client_1.strictParseInt32(output["Iops"]);
|
|
18495
18498
|
}
|
|
18496
18499
|
if (output.OptionGroupMemberships === "") {
|
|
18497
18500
|
contents.OptionGroupMemberships = [];
|
|
@@ -18525,7 +18528,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18525
18528
|
contents.TdeCredentialArn = smithy_client_1.expectString(output["TdeCredentialArn"]);
|
|
18526
18529
|
}
|
|
18527
18530
|
if (output["DbInstancePort"] !== undefined) {
|
|
18528
|
-
contents.DbInstancePort = smithy_client_1.
|
|
18531
|
+
contents.DbInstancePort = smithy_client_1.strictParseInt32(output["DbInstancePort"]);
|
|
18529
18532
|
}
|
|
18530
18533
|
if (output["DBClusterIdentifier"] !== undefined) {
|
|
18531
18534
|
contents.DBClusterIdentifier = smithy_client_1.expectString(output["DBClusterIdentifier"]);
|
|
@@ -18552,7 +18555,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18552
18555
|
contents.CopyTagsToSnapshot = smithy_client_1.parseBoolean(output["CopyTagsToSnapshot"]);
|
|
18553
18556
|
}
|
|
18554
18557
|
if (output["MonitoringInterval"] !== undefined) {
|
|
18555
|
-
contents.MonitoringInterval = smithy_client_1.
|
|
18558
|
+
contents.MonitoringInterval = smithy_client_1.strictParseInt32(output["MonitoringInterval"]);
|
|
18556
18559
|
}
|
|
18557
18560
|
if (output["EnhancedMonitoringResourceArn"] !== undefined) {
|
|
18558
18561
|
contents.EnhancedMonitoringResourceArn = smithy_client_1.expectString(output["EnhancedMonitoringResourceArn"]);
|
|
@@ -18561,7 +18564,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18561
18564
|
contents.MonitoringRoleArn = smithy_client_1.expectString(output["MonitoringRoleArn"]);
|
|
18562
18565
|
}
|
|
18563
18566
|
if (output["PromotionTier"] !== undefined) {
|
|
18564
|
-
contents.PromotionTier = smithy_client_1.
|
|
18567
|
+
contents.PromotionTier = smithy_client_1.strictParseInt32(output["PromotionTier"]);
|
|
18565
18568
|
}
|
|
18566
18569
|
if (output["DBInstanceArn"] !== undefined) {
|
|
18567
18570
|
contents.DBInstanceArn = smithy_client_1.expectString(output["DBInstanceArn"]);
|
|
@@ -18579,7 +18582,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18579
18582
|
contents.PerformanceInsightsKMSKeyId = smithy_client_1.expectString(output["PerformanceInsightsKMSKeyId"]);
|
|
18580
18583
|
}
|
|
18581
18584
|
if (output["PerformanceInsightsRetentionPeriod"] !== undefined) {
|
|
18582
|
-
contents.PerformanceInsightsRetentionPeriod = smithy_client_1.
|
|
18585
|
+
contents.PerformanceInsightsRetentionPeriod = smithy_client_1.strictParseInt32(output["PerformanceInsightsRetentionPeriod"]);
|
|
18583
18586
|
}
|
|
18584
18587
|
if (output.EnabledCloudwatchLogsExports === "") {
|
|
18585
18588
|
contents.EnabledCloudwatchLogsExports = [];
|
|
@@ -18607,7 +18610,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
18607
18610
|
contents.ListenerEndpoint = deserializeAws_queryEndpoint(output["ListenerEndpoint"], context);
|
|
18608
18611
|
}
|
|
18609
18612
|
if (output["MaxAllocatedStorage"] !== undefined) {
|
|
18610
|
-
contents.MaxAllocatedStorage = smithy_client_1.
|
|
18613
|
+
contents.MaxAllocatedStorage = smithy_client_1.strictParseInt32(output["MaxAllocatedStorage"]);
|
|
18611
18614
|
}
|
|
18612
18615
|
if (output.TagList === "") {
|
|
18613
18616
|
contents.TagList = [];
|
|
@@ -18699,13 +18702,13 @@ const deserializeAws_queryDBInstanceAutomatedBackup = (output, context) => {
|
|
|
18699
18702
|
contents.RestoreWindow = deserializeAws_queryRestoreWindow(output["RestoreWindow"], context);
|
|
18700
18703
|
}
|
|
18701
18704
|
if (output["AllocatedStorage"] !== undefined) {
|
|
18702
|
-
contents.AllocatedStorage = smithy_client_1.
|
|
18705
|
+
contents.AllocatedStorage = smithy_client_1.strictParseInt32(output["AllocatedStorage"]);
|
|
18703
18706
|
}
|
|
18704
18707
|
if (output["Status"] !== undefined) {
|
|
18705
18708
|
contents.Status = smithy_client_1.expectString(output["Status"]);
|
|
18706
18709
|
}
|
|
18707
18710
|
if (output["Port"] !== undefined) {
|
|
18708
|
-
contents.Port = smithy_client_1.
|
|
18711
|
+
contents.Port = smithy_client_1.strictParseInt32(output["Port"]);
|
|
18709
18712
|
}
|
|
18710
18713
|
if (output["AvailabilityZone"] !== undefined) {
|
|
18711
18714
|
contents.AvailabilityZone = smithy_client_1.expectString(output["AvailabilityZone"]);
|
|
@@ -18714,7 +18717,7 @@ const deserializeAws_queryDBInstanceAutomatedBackup = (output, context) => {
|
|
|
18714
18717
|
contents.VpcId = smithy_client_1.expectString(output["VpcId"]);
|
|
18715
18718
|
}
|
|
18716
18719
|
if (output["InstanceCreateTime"] !== undefined) {
|
|
18717
|
-
contents.InstanceCreateTime =
|
|
18720
|
+
contents.InstanceCreateTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["InstanceCreateTime"]));
|
|
18718
18721
|
}
|
|
18719
18722
|
if (output["MasterUsername"] !== undefined) {
|
|
18720
18723
|
contents.MasterUsername = smithy_client_1.expectString(output["MasterUsername"]);
|
|
@@ -18729,7 +18732,7 @@ const deserializeAws_queryDBInstanceAutomatedBackup = (output, context) => {
|
|
|
18729
18732
|
contents.LicenseModel = smithy_client_1.expectString(output["LicenseModel"]);
|
|
18730
18733
|
}
|
|
18731
18734
|
if (output["Iops"] !== undefined) {
|
|
18732
|
-
contents.Iops = smithy_client_1.
|
|
18735
|
+
contents.Iops = smithy_client_1.strictParseInt32(output["Iops"]);
|
|
18733
18736
|
}
|
|
18734
18737
|
if (output["OptionGroupName"] !== undefined) {
|
|
18735
18738
|
contents.OptionGroupName = smithy_client_1.expectString(output["OptionGroupName"]);
|
|
@@ -18753,7 +18756,7 @@ const deserializeAws_queryDBInstanceAutomatedBackup = (output, context) => {
|
|
|
18753
18756
|
contents.IAMDatabaseAuthenticationEnabled = smithy_client_1.parseBoolean(output["IAMDatabaseAuthenticationEnabled"]);
|
|
18754
18757
|
}
|
|
18755
18758
|
if (output["BackupRetentionPeriod"] !== undefined) {
|
|
18756
|
-
contents.BackupRetentionPeriod = smithy_client_1.
|
|
18759
|
+
contents.BackupRetentionPeriod = smithy_client_1.strictParseInt32(output["BackupRetentionPeriod"]);
|
|
18757
18760
|
}
|
|
18758
18761
|
if (output["DBInstanceAutomatedBackupsArn"] !== undefined) {
|
|
18759
18762
|
contents.DBInstanceAutomatedBackupsArn = smithy_client_1.expectString(output["DBInstanceAutomatedBackupsArn"]);
|
|
@@ -19143,16 +19146,16 @@ const deserializeAws_queryDBProxy = (output, context) => {
|
|
|
19143
19146
|
contents.RequireTLS = smithy_client_1.parseBoolean(output["RequireTLS"]);
|
|
19144
19147
|
}
|
|
19145
19148
|
if (output["IdleClientTimeout"] !== undefined) {
|
|
19146
|
-
contents.IdleClientTimeout = smithy_client_1.
|
|
19149
|
+
contents.IdleClientTimeout = smithy_client_1.strictParseInt32(output["IdleClientTimeout"]);
|
|
19147
19150
|
}
|
|
19148
19151
|
if (output["DebugLogging"] !== undefined) {
|
|
19149
19152
|
contents.DebugLogging = smithy_client_1.parseBoolean(output["DebugLogging"]);
|
|
19150
19153
|
}
|
|
19151
19154
|
if (output["CreatedDate"] !== undefined) {
|
|
19152
|
-
contents.CreatedDate =
|
|
19155
|
+
contents.CreatedDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["CreatedDate"]));
|
|
19153
19156
|
}
|
|
19154
19157
|
if (output["UpdatedDate"] !== undefined) {
|
|
19155
|
-
contents.UpdatedDate =
|
|
19158
|
+
contents.UpdatedDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["UpdatedDate"]));
|
|
19156
19159
|
}
|
|
19157
19160
|
return contents;
|
|
19158
19161
|
};
|
|
@@ -19210,7 +19213,7 @@ const deserializeAws_queryDBProxyEndpoint = (output, context) => {
|
|
|
19210
19213
|
contents.Endpoint = smithy_client_1.expectString(output["Endpoint"]);
|
|
19211
19214
|
}
|
|
19212
19215
|
if (output["CreatedDate"] !== undefined) {
|
|
19213
|
-
contents.CreatedDate =
|
|
19216
|
+
contents.CreatedDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["CreatedDate"]));
|
|
19214
19217
|
}
|
|
19215
19218
|
if (output["TargetRole"] !== undefined) {
|
|
19216
19219
|
contents.TargetRole = smithy_client_1.expectString(output["TargetRole"]);
|
|
@@ -19309,7 +19312,7 @@ const deserializeAws_queryDBProxyTarget = (output, context) => {
|
|
|
19309
19312
|
contents.RdsResourceId = smithy_client_1.expectString(output["RdsResourceId"]);
|
|
19310
19313
|
}
|
|
19311
19314
|
if (output["Port"] !== undefined) {
|
|
19312
|
-
contents.Port = smithy_client_1.
|
|
19315
|
+
contents.Port = smithy_client_1.strictParseInt32(output["Port"]);
|
|
19313
19316
|
}
|
|
19314
19317
|
if (output["Type"] !== undefined) {
|
|
19315
19318
|
contents.Type = smithy_client_1.expectString(output["Type"]);
|
|
@@ -19361,10 +19364,10 @@ const deserializeAws_queryDBProxyTargetGroup = (output, context) => {
|
|
|
19361
19364
|
contents.ConnectionPoolConfig = deserializeAws_queryConnectionPoolConfigurationInfo(output["ConnectionPoolConfig"], context);
|
|
19362
19365
|
}
|
|
19363
19366
|
if (output["CreatedDate"] !== undefined) {
|
|
19364
|
-
contents.CreatedDate =
|
|
19367
|
+
contents.CreatedDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["CreatedDate"]));
|
|
19365
19368
|
}
|
|
19366
19369
|
if (output["UpdatedDate"] !== undefined) {
|
|
19367
|
-
contents.UpdatedDate =
|
|
19370
|
+
contents.UpdatedDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["UpdatedDate"]));
|
|
19368
19371
|
}
|
|
19369
19372
|
return contents;
|
|
19370
19373
|
};
|
|
@@ -19550,19 +19553,19 @@ const deserializeAws_queryDBSnapshot = (output, context) => {
|
|
|
19550
19553
|
contents.DBInstanceIdentifier = smithy_client_1.expectString(output["DBInstanceIdentifier"]);
|
|
19551
19554
|
}
|
|
19552
19555
|
if (output["SnapshotCreateTime"] !== undefined) {
|
|
19553
|
-
contents.SnapshotCreateTime =
|
|
19556
|
+
contents.SnapshotCreateTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["SnapshotCreateTime"]));
|
|
19554
19557
|
}
|
|
19555
19558
|
if (output["Engine"] !== undefined) {
|
|
19556
19559
|
contents.Engine = smithy_client_1.expectString(output["Engine"]);
|
|
19557
19560
|
}
|
|
19558
19561
|
if (output["AllocatedStorage"] !== undefined) {
|
|
19559
|
-
contents.AllocatedStorage = smithy_client_1.
|
|
19562
|
+
contents.AllocatedStorage = smithy_client_1.strictParseInt32(output["AllocatedStorage"]);
|
|
19560
19563
|
}
|
|
19561
19564
|
if (output["Status"] !== undefined) {
|
|
19562
19565
|
contents.Status = smithy_client_1.expectString(output["Status"]);
|
|
19563
19566
|
}
|
|
19564
19567
|
if (output["Port"] !== undefined) {
|
|
19565
|
-
contents.Port = smithy_client_1.
|
|
19568
|
+
contents.Port = smithy_client_1.strictParseInt32(output["Port"]);
|
|
19566
19569
|
}
|
|
19567
19570
|
if (output["AvailabilityZone"] !== undefined) {
|
|
19568
19571
|
contents.AvailabilityZone = smithy_client_1.expectString(output["AvailabilityZone"]);
|
|
@@ -19571,7 +19574,7 @@ const deserializeAws_queryDBSnapshot = (output, context) => {
|
|
|
19571
19574
|
contents.VpcId = smithy_client_1.expectString(output["VpcId"]);
|
|
19572
19575
|
}
|
|
19573
19576
|
if (output["InstanceCreateTime"] !== undefined) {
|
|
19574
|
-
contents.InstanceCreateTime =
|
|
19577
|
+
contents.InstanceCreateTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["InstanceCreateTime"]));
|
|
19575
19578
|
}
|
|
19576
19579
|
if (output["MasterUsername"] !== undefined) {
|
|
19577
19580
|
contents.MasterUsername = smithy_client_1.expectString(output["MasterUsername"]);
|
|
@@ -19586,13 +19589,13 @@ const deserializeAws_queryDBSnapshot = (output, context) => {
|
|
|
19586
19589
|
contents.SnapshotType = smithy_client_1.expectString(output["SnapshotType"]);
|
|
19587
19590
|
}
|
|
19588
19591
|
if (output["Iops"] !== undefined) {
|
|
19589
|
-
contents.Iops = smithy_client_1.
|
|
19592
|
+
contents.Iops = smithy_client_1.strictParseInt32(output["Iops"]);
|
|
19590
19593
|
}
|
|
19591
19594
|
if (output["OptionGroupName"] !== undefined) {
|
|
19592
19595
|
contents.OptionGroupName = smithy_client_1.expectString(output["OptionGroupName"]);
|
|
19593
19596
|
}
|
|
19594
19597
|
if (output["PercentProgress"] !== undefined) {
|
|
19595
|
-
contents.PercentProgress = smithy_client_1.
|
|
19598
|
+
contents.PercentProgress = smithy_client_1.strictParseInt32(output["PercentProgress"]);
|
|
19596
19599
|
}
|
|
19597
19600
|
if (output["SourceRegion"] !== undefined) {
|
|
19598
19601
|
contents.SourceRegion = smithy_client_1.expectString(output["SourceRegion"]);
|
|
@@ -19637,7 +19640,7 @@ const deserializeAws_queryDBSnapshot = (output, context) => {
|
|
|
19637
19640
|
contents.TagList = deserializeAws_queryTagList(smithy_client_1.getArrayIfSingleItem(output["TagList"]["Tag"]), context);
|
|
19638
19641
|
}
|
|
19639
19642
|
if (output["OriginalSnapshotCreateTime"] !== undefined) {
|
|
19640
|
-
contents.OriginalSnapshotCreateTime =
|
|
19643
|
+
contents.OriginalSnapshotCreateTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["OriginalSnapshotCreateTime"]));
|
|
19641
19644
|
}
|
|
19642
19645
|
return contents;
|
|
19643
19646
|
};
|
|
@@ -19962,10 +19965,10 @@ const deserializeAws_queryDescribeDBLogFilesDetails = (output, context) => {
|
|
|
19962
19965
|
contents.LogFileName = smithy_client_1.expectString(output["LogFileName"]);
|
|
19963
19966
|
}
|
|
19964
19967
|
if (output["LastWritten"] !== undefined) {
|
|
19965
|
-
contents.LastWritten = smithy_client_1.
|
|
19968
|
+
contents.LastWritten = smithy_client_1.strictParseLong(output["LastWritten"]);
|
|
19966
19969
|
}
|
|
19967
19970
|
if (output["Size"] !== undefined) {
|
|
19968
|
-
contents.Size = smithy_client_1.
|
|
19971
|
+
contents.Size = smithy_client_1.strictParseLong(output["Size"]);
|
|
19969
19972
|
}
|
|
19970
19973
|
return contents;
|
|
19971
19974
|
};
|
|
@@ -20217,7 +20220,7 @@ const deserializeAws_queryEndpoint = (output, context) => {
|
|
|
20217
20220
|
contents.Address = smithy_client_1.expectString(output["Address"]);
|
|
20218
20221
|
}
|
|
20219
20222
|
if (output["Port"] !== undefined) {
|
|
20220
|
-
contents.Port = smithy_client_1.
|
|
20223
|
+
contents.Port = smithy_client_1.strictParseInt32(output["Port"]);
|
|
20221
20224
|
}
|
|
20222
20225
|
if (output["HostedZoneId"] !== undefined) {
|
|
20223
20226
|
contents.HostedZoneId = smithy_client_1.expectString(output["HostedZoneId"]);
|
|
@@ -20279,7 +20282,7 @@ const deserializeAws_queryEvent = (output, context) => {
|
|
|
20279
20282
|
contents.EventCategories = deserializeAws_queryEventCategoriesList(smithy_client_1.getArrayIfSingleItem(output["EventCategories"]["EventCategory"]), context);
|
|
20280
20283
|
}
|
|
20281
20284
|
if (output["Date"] !== undefined) {
|
|
20282
|
-
contents.Date =
|
|
20285
|
+
contents.Date = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["Date"]));
|
|
20283
20286
|
}
|
|
20284
20287
|
if (output["SourceArn"] !== undefined) {
|
|
20285
20288
|
contents.SourceArn = smithy_client_1.expectString(output["SourceArn"]);
|
|
@@ -20479,13 +20482,13 @@ const deserializeAws_queryExportTask = (output, context) => {
|
|
|
20479
20482
|
contents.ExportOnly = deserializeAws_queryStringList(smithy_client_1.getArrayIfSingleItem(output["ExportOnly"]["member"]), context);
|
|
20480
20483
|
}
|
|
20481
20484
|
if (output["SnapshotTime"] !== undefined) {
|
|
20482
|
-
contents.SnapshotTime =
|
|
20485
|
+
contents.SnapshotTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["SnapshotTime"]));
|
|
20483
20486
|
}
|
|
20484
20487
|
if (output["TaskStartTime"] !== undefined) {
|
|
20485
|
-
contents.TaskStartTime =
|
|
20488
|
+
contents.TaskStartTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["TaskStartTime"]));
|
|
20486
20489
|
}
|
|
20487
20490
|
if (output["TaskEndTime"] !== undefined) {
|
|
20488
|
-
contents.TaskEndTime =
|
|
20491
|
+
contents.TaskEndTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["TaskEndTime"]));
|
|
20489
20492
|
}
|
|
20490
20493
|
if (output["S3Bucket"] !== undefined) {
|
|
20491
20494
|
contents.S3Bucket = smithy_client_1.expectString(output["S3Bucket"]);
|
|
@@ -20503,10 +20506,10 @@ const deserializeAws_queryExportTask = (output, context) => {
|
|
|
20503
20506
|
contents.Status = smithy_client_1.expectString(output["Status"]);
|
|
20504
20507
|
}
|
|
20505
20508
|
if (output["PercentProgress"] !== undefined) {
|
|
20506
|
-
contents.PercentProgress = smithy_client_1.
|
|
20509
|
+
contents.PercentProgress = smithy_client_1.strictParseInt32(output["PercentProgress"]);
|
|
20507
20510
|
}
|
|
20508
20511
|
if (output["TotalExtractedDataInGB"] !== undefined) {
|
|
20509
|
-
contents.TotalExtractedDataInGB = smithy_client_1.
|
|
20512
|
+
contents.TotalExtractedDataInGB = smithy_client_1.strictParseInt32(output["TotalExtractedDataInGB"]);
|
|
20510
20513
|
}
|
|
20511
20514
|
if (output["FailureCause"] !== undefined) {
|
|
20512
20515
|
contents.FailureCause = smithy_client_1.expectString(output["FailureCause"]);
|
|
@@ -21321,7 +21324,7 @@ const deserializeAws_queryOption = (output, context) => {
|
|
|
21321
21324
|
contents.Permanent = smithy_client_1.parseBoolean(output["Permanent"]);
|
|
21322
21325
|
}
|
|
21323
21326
|
if (output["Port"] !== undefined) {
|
|
21324
|
-
contents.Port = smithy_client_1.
|
|
21327
|
+
contents.Port = smithy_client_1.strictParseInt32(output["Port"]);
|
|
21325
21328
|
}
|
|
21326
21329
|
if (output["OptionVersion"] !== undefined) {
|
|
21327
21330
|
contents.OptionVersion = smithy_client_1.expectString(output["OptionVersion"]);
|
|
@@ -21467,7 +21470,7 @@ const deserializeAws_queryOptionGroupOption = (output, context) => {
|
|
|
21467
21470
|
contents.PortRequired = smithy_client_1.parseBoolean(output["PortRequired"]);
|
|
21468
21471
|
}
|
|
21469
21472
|
if (output["DefaultPort"] !== undefined) {
|
|
21470
|
-
contents.DefaultPort = smithy_client_1.
|
|
21473
|
+
contents.DefaultPort = smithy_client_1.strictParseInt32(output["DefaultPort"]);
|
|
21471
21474
|
}
|
|
21472
21475
|
if (output.OptionsDependedOn === "") {
|
|
21473
21476
|
contents.OptionsDependedOn = [];
|
|
@@ -21809,16 +21812,16 @@ const deserializeAws_queryOrderableDBInstanceOption = (output, context) => {
|
|
|
21809
21812
|
contents.SupportsPerformanceInsights = smithy_client_1.parseBoolean(output["SupportsPerformanceInsights"]);
|
|
21810
21813
|
}
|
|
21811
21814
|
if (output["MinStorageSize"] !== undefined) {
|
|
21812
|
-
contents.MinStorageSize = smithy_client_1.
|
|
21815
|
+
contents.MinStorageSize = smithy_client_1.strictParseInt32(output["MinStorageSize"]);
|
|
21813
21816
|
}
|
|
21814
21817
|
if (output["MaxStorageSize"] !== undefined) {
|
|
21815
|
-
contents.MaxStorageSize = smithy_client_1.
|
|
21818
|
+
contents.MaxStorageSize = smithy_client_1.strictParseInt32(output["MaxStorageSize"]);
|
|
21816
21819
|
}
|
|
21817
21820
|
if (output["MinIopsPerDbInstance"] !== undefined) {
|
|
21818
|
-
contents.MinIopsPerDbInstance = smithy_client_1.
|
|
21821
|
+
contents.MinIopsPerDbInstance = smithy_client_1.strictParseInt32(output["MinIopsPerDbInstance"]);
|
|
21819
21822
|
}
|
|
21820
21823
|
if (output["MaxIopsPerDbInstance"] !== undefined) {
|
|
21821
|
-
contents.MaxIopsPerDbInstance = smithy_client_1.
|
|
21824
|
+
contents.MaxIopsPerDbInstance = smithy_client_1.strictParseInt32(output["MaxIopsPerDbInstance"]);
|
|
21822
21825
|
}
|
|
21823
21826
|
if (output["MinIopsPerGib"] !== undefined) {
|
|
21824
21827
|
contents.MinIopsPerGib = smithy_client_1.strictParseFloat(output["MinIopsPerGib"]);
|
|
@@ -21990,16 +21993,16 @@ const deserializeAws_queryPendingMaintenanceAction = (output, context) => {
|
|
|
21990
21993
|
contents.Action = smithy_client_1.expectString(output["Action"]);
|
|
21991
21994
|
}
|
|
21992
21995
|
if (output["AutoAppliedAfterDate"] !== undefined) {
|
|
21993
|
-
contents.AutoAppliedAfterDate =
|
|
21996
|
+
contents.AutoAppliedAfterDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["AutoAppliedAfterDate"]));
|
|
21994
21997
|
}
|
|
21995
21998
|
if (output["ForcedApplyDate"] !== undefined) {
|
|
21996
|
-
contents.ForcedApplyDate =
|
|
21999
|
+
contents.ForcedApplyDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["ForcedApplyDate"]));
|
|
21997
22000
|
}
|
|
21998
22001
|
if (output["OptInStatus"] !== undefined) {
|
|
21999
22002
|
contents.OptInStatus = smithy_client_1.expectString(output["OptInStatus"]);
|
|
22000
22003
|
}
|
|
22001
22004
|
if (output["CurrentApplyDate"] !== undefined) {
|
|
22002
|
-
contents.CurrentApplyDate =
|
|
22005
|
+
contents.CurrentApplyDate = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["CurrentApplyDate"]));
|
|
22003
22006
|
}
|
|
22004
22007
|
if (output["Description"] !== undefined) {
|
|
22005
22008
|
contents.Description = smithy_client_1.expectString(output["Description"]);
|
|
@@ -22066,16 +22069,16 @@ const deserializeAws_queryPendingModifiedValues = (output, context) => {
|
|
|
22066
22069
|
contents.DBInstanceClass = smithy_client_1.expectString(output["DBInstanceClass"]);
|
|
22067
22070
|
}
|
|
22068
22071
|
if (output["AllocatedStorage"] !== undefined) {
|
|
22069
|
-
contents.AllocatedStorage = smithy_client_1.
|
|
22072
|
+
contents.AllocatedStorage = smithy_client_1.strictParseInt32(output["AllocatedStorage"]);
|
|
22070
22073
|
}
|
|
22071
22074
|
if (output["MasterUserPassword"] !== undefined) {
|
|
22072
22075
|
contents.MasterUserPassword = smithy_client_1.expectString(output["MasterUserPassword"]);
|
|
22073
22076
|
}
|
|
22074
22077
|
if (output["Port"] !== undefined) {
|
|
22075
|
-
contents.Port = smithy_client_1.
|
|
22078
|
+
contents.Port = smithy_client_1.strictParseInt32(output["Port"]);
|
|
22076
22079
|
}
|
|
22077
22080
|
if (output["BackupRetentionPeriod"] !== undefined) {
|
|
22078
|
-
contents.BackupRetentionPeriod = smithy_client_1.
|
|
22081
|
+
contents.BackupRetentionPeriod = smithy_client_1.strictParseInt32(output["BackupRetentionPeriod"]);
|
|
22079
22082
|
}
|
|
22080
22083
|
if (output["MultiAZ"] !== undefined) {
|
|
22081
22084
|
contents.MultiAZ = smithy_client_1.parseBoolean(output["MultiAZ"]);
|
|
@@ -22087,7 +22090,7 @@ const deserializeAws_queryPendingModifiedValues = (output, context) => {
|
|
|
22087
22090
|
contents.LicenseModel = smithy_client_1.expectString(output["LicenseModel"]);
|
|
22088
22091
|
}
|
|
22089
22092
|
if (output["Iops"] !== undefined) {
|
|
22090
|
-
contents.Iops = smithy_client_1.
|
|
22093
|
+
contents.Iops = smithy_client_1.strictParseInt32(output["Iops"]);
|
|
22091
22094
|
}
|
|
22092
22095
|
if (output["DBInstanceIdentifier"] !== undefined) {
|
|
22093
22096
|
contents.DBInstanceIdentifier = smithy_client_1.expectString(output["DBInstanceIdentifier"]);
|
|
@@ -22190,13 +22193,13 @@ const deserializeAws_queryRange = (output, context) => {
|
|
|
22190
22193
|
Step: undefined,
|
|
22191
22194
|
};
|
|
22192
22195
|
if (output["From"] !== undefined) {
|
|
22193
|
-
contents.From = smithy_client_1.
|
|
22196
|
+
contents.From = smithy_client_1.strictParseInt32(output["From"]);
|
|
22194
22197
|
}
|
|
22195
22198
|
if (output["To"] !== undefined) {
|
|
22196
|
-
contents.To = smithy_client_1.
|
|
22199
|
+
contents.To = smithy_client_1.strictParseInt32(output["To"]);
|
|
22197
22200
|
}
|
|
22198
22201
|
if (output["Step"] !== undefined) {
|
|
22199
|
-
contents.Step = smithy_client_1.
|
|
22202
|
+
contents.Step = smithy_client_1.strictParseInt32(output["Step"]);
|
|
22200
22203
|
}
|
|
22201
22204
|
return contents;
|
|
22202
22205
|
};
|
|
@@ -22341,10 +22344,10 @@ const deserializeAws_queryReservedDBInstance = (output, context) => {
|
|
|
22341
22344
|
contents.DBInstanceClass = smithy_client_1.expectString(output["DBInstanceClass"]);
|
|
22342
22345
|
}
|
|
22343
22346
|
if (output["StartTime"] !== undefined) {
|
|
22344
|
-
contents.StartTime =
|
|
22347
|
+
contents.StartTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["StartTime"]));
|
|
22345
22348
|
}
|
|
22346
22349
|
if (output["Duration"] !== undefined) {
|
|
22347
|
-
contents.Duration = smithy_client_1.
|
|
22350
|
+
contents.Duration = smithy_client_1.strictParseInt32(output["Duration"]);
|
|
22348
22351
|
}
|
|
22349
22352
|
if (output["FixedPrice"] !== undefined) {
|
|
22350
22353
|
contents.FixedPrice = smithy_client_1.strictParseFloat(output["FixedPrice"]);
|
|
@@ -22356,7 +22359,7 @@ const deserializeAws_queryReservedDBInstance = (output, context) => {
|
|
|
22356
22359
|
contents.CurrencyCode = smithy_client_1.expectString(output["CurrencyCode"]);
|
|
22357
22360
|
}
|
|
22358
22361
|
if (output["DBInstanceCount"] !== undefined) {
|
|
22359
|
-
contents.DBInstanceCount = smithy_client_1.
|
|
22362
|
+
contents.DBInstanceCount = smithy_client_1.strictParseInt32(output["DBInstanceCount"]);
|
|
22360
22363
|
}
|
|
22361
22364
|
if (output["ProductDescription"] !== undefined) {
|
|
22362
22365
|
contents.ProductDescription = smithy_client_1.expectString(output["ProductDescription"]);
|
|
@@ -22458,7 +22461,7 @@ const deserializeAws_queryReservedDBInstancesOffering = (output, context) => {
|
|
|
22458
22461
|
contents.DBInstanceClass = smithy_client_1.expectString(output["DBInstanceClass"]);
|
|
22459
22462
|
}
|
|
22460
22463
|
if (output["Duration"] !== undefined) {
|
|
22461
|
-
contents.Duration = smithy_client_1.
|
|
22464
|
+
contents.Duration = smithy_client_1.strictParseInt32(output["Duration"]);
|
|
22462
22465
|
}
|
|
22463
22466
|
if (output["FixedPrice"] !== undefined) {
|
|
22464
22467
|
contents.FixedPrice = smithy_client_1.strictParseFloat(output["FixedPrice"]);
|
|
@@ -22608,10 +22611,10 @@ const deserializeAws_queryRestoreWindow = (output, context) => {
|
|
|
22608
22611
|
LatestTime: undefined,
|
|
22609
22612
|
};
|
|
22610
22613
|
if (output["EarliestTime"] !== undefined) {
|
|
22611
|
-
contents.EarliestTime =
|
|
22614
|
+
contents.EarliestTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["EarliestTime"]));
|
|
22612
22615
|
}
|
|
22613
22616
|
if (output["LatestTime"] !== undefined) {
|
|
22614
|
-
contents.LatestTime =
|
|
22617
|
+
contents.LatestTime = smithy_client_1.expectNonNull(smithy_client_1.parseRfc3339DateTime(output["LatestTime"]));
|
|
22615
22618
|
}
|
|
22616
22619
|
return contents;
|
|
22617
22620
|
};
|
|
@@ -22631,22 +22634,26 @@ const deserializeAws_queryScalingConfigurationInfo = (output, context) => {
|
|
|
22631
22634
|
AutoPause: undefined,
|
|
22632
22635
|
SecondsUntilAutoPause: undefined,
|
|
22633
22636
|
TimeoutAction: undefined,
|
|
22637
|
+
SecondsBeforeTimeout: undefined,
|
|
22634
22638
|
};
|
|
22635
22639
|
if (output["MinCapacity"] !== undefined) {
|
|
22636
|
-
contents.MinCapacity = smithy_client_1.
|
|
22640
|
+
contents.MinCapacity = smithy_client_1.strictParseInt32(output["MinCapacity"]);
|
|
22637
22641
|
}
|
|
22638
22642
|
if (output["MaxCapacity"] !== undefined) {
|
|
22639
|
-
contents.MaxCapacity = smithy_client_1.
|
|
22643
|
+
contents.MaxCapacity = smithy_client_1.strictParseInt32(output["MaxCapacity"]);
|
|
22640
22644
|
}
|
|
22641
22645
|
if (output["AutoPause"] !== undefined) {
|
|
22642
22646
|
contents.AutoPause = smithy_client_1.parseBoolean(output["AutoPause"]);
|
|
22643
22647
|
}
|
|
22644
22648
|
if (output["SecondsUntilAutoPause"] !== undefined) {
|
|
22645
|
-
contents.SecondsUntilAutoPause = smithy_client_1.
|
|
22649
|
+
contents.SecondsUntilAutoPause = smithy_client_1.strictParseInt32(output["SecondsUntilAutoPause"]);
|
|
22646
22650
|
}
|
|
22647
22651
|
if (output["TimeoutAction"] !== undefined) {
|
|
22648
22652
|
contents.TimeoutAction = smithy_client_1.expectString(output["TimeoutAction"]);
|
|
22649
22653
|
}
|
|
22654
|
+
if (output["SecondsBeforeTimeout"] !== undefined) {
|
|
22655
|
+
contents.SecondsBeforeTimeout = smithy_client_1.strictParseInt32(output["SecondsBeforeTimeout"]);
|
|
22656
|
+
}
|
|
22650
22657
|
return contents;
|
|
22651
22658
|
};
|
|
22652
22659
|
const deserializeAws_querySharedSnapshotQuotaExceededFault = (output, context) => {
|