@aws-sdk/client-rds 3.379.1 → 3.382.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.
Files changed (62) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/RDS.js +4 -0
  3. package/dist-cjs/commands/DeleteDBClusterAutomatedBackupCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeDBClusterAutomatedBackupsCommand.js +46 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/endpoint/ruleset.js +1 -1
  7. package/dist-cjs/models/models_0.js +48 -2
  8. package/dist-cjs/protocols/Aws_query.js +316 -6
  9. package/dist-es/RDS.js +4 -0
  10. package/dist-es/commands/DeleteDBClusterAutomatedBackupCommand.js +42 -0
  11. package/dist-es/commands/DescribeDBClusterAutomatedBackupsCommand.js +42 -0
  12. package/dist-es/commands/index.js +2 -0
  13. package/dist-es/endpoint/ruleset.js +1 -1
  14. package/dist-es/models/models_0.js +43 -0
  15. package/dist-es/protocols/Aws_query.js +307 -1
  16. package/dist-types/RDS.d.ts +14 -0
  17. package/dist-types/RDSClient.d.ts +4 -2
  18. package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +1 -0
  19. package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +2 -0
  20. package/dist-types/commands/CreateDBClusterCommand.d.ts +2 -0
  21. package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +1 -0
  22. package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +2 -0
  23. package/dist-types/commands/DeleteDBClusterAutomatedBackupCommand.d.ts +110 -0
  24. package/dist-types/commands/DeleteDBClusterCommand.d.ts +6 -0
  25. package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +1 -0
  26. package/dist-types/commands/DeleteDBInstanceCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +122 -0
  28. package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +2 -0
  29. package/dist-types/commands/DescribeDBClustersCommand.d.ts +1 -0
  30. package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +2 -0
  31. package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeDBInstancesCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeDBLogFilesCommand.d.ts +1 -1
  34. package/dist-types/commands/DescribeDBParameterGroupsCommand.d.ts +1 -1
  35. package/dist-types/commands/FailoverDBClusterCommand.d.ts +1 -0
  36. package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +2 -0
  37. package/dist-types/commands/ModifyDBClusterCommand.d.ts +2 -0
  38. package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +1 -0
  39. package/dist-types/commands/RebootDBClusterCommand.d.ts +1 -0
  40. package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +1 -0
  41. package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +1 -0
  42. package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +6 -1
  43. package/dist-types/commands/StartDBClusterCommand.d.ts +1 -0
  44. package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -1
  45. package/dist-types/commands/StopDBClusterCommand.d.ts +1 -0
  46. package/dist-types/commands/index.d.ts +2 -0
  47. package/dist-types/models/models_0.d.ts +1357 -322
  48. package/dist-types/models/models_1.d.ts +1199 -2
  49. package/dist-types/protocols/Aws_query.d.ts +18 -0
  50. package/dist-types/ts3.4/RDS.d.ts +40 -0
  51. package/dist-types/ts3.4/RDSClient.d.ts +12 -0
  52. package/dist-types/ts3.4/commands/DeleteDBClusterAutomatedBackupCommand.d.ts +42 -0
  53. package/dist-types/ts3.4/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +42 -0
  54. package/dist-types/ts3.4/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/DescribeDBInstancesCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/DescribeDBLogFilesCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/DescribeDBParameterGroupsCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  59. package/dist-types/ts3.4/models/models_0.d.ts +92 -54
  60. package/dist-types/ts3.4/models/models_1.d.ts +54 -1
  61. package/dist-types/ts3.4/protocols/Aws_query.d.ts +24 -0
  62. package/package.json +5 -5
@@ -93,7 +93,7 @@ export interface StartDBInstanceAutomatedBackupsReplicationCommandOutput extends
93
93
  * @throws {@link DBInstanceAutomatedBackupQuotaExceededFault} (client fault)
94
94
  * <p>The quota for retained automated backups was exceeded. This prevents you
95
95
  * from retaining any additional automated backups. The retained automated backups
96
- * quota is the same as your DB Instance quota.</p>
96
+ * quota is the same as your DB instance quota.</p>
97
97
  *
98
98
  * @throws {@link DBInstanceNotFoundFault} (client fault)
99
99
  * <p>
@@ -196,6 +196,7 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
196
196
  * // KmsKeyId: "STRING_VALUE",
197
197
  * // },
198
198
  * // IOOptimizedNextAllowedModificationTime: new Date("TIMESTAMP"),
199
+ * // LocalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "requested",
199
200
  * // },
200
201
  * // };
201
202
  *
@@ -30,6 +30,7 @@ export * from "./CreateGlobalClusterCommand";
30
30
  export * from "./CreateOptionGroupCommand";
31
31
  export * from "./DeleteBlueGreenDeploymentCommand";
32
32
  export * from "./DeleteCustomDBEngineVersionCommand";
33
+ export * from "./DeleteDBClusterAutomatedBackupCommand";
33
34
  export * from "./DeleteDBClusterCommand";
34
35
  export * from "./DeleteDBClusterEndpointCommand";
35
36
  export * from "./DeleteDBClusterParameterGroupCommand";
@@ -49,6 +50,7 @@ export * from "./DeregisterDBProxyTargetsCommand";
49
50
  export * from "./DescribeAccountAttributesCommand";
50
51
  export * from "./DescribeBlueGreenDeploymentsCommand";
51
52
  export * from "./DescribeCertificatesCommand";
53
+ export * from "./DescribeDBClusterAutomatedBackupsCommand";
52
54
  export * from "./DescribeDBClusterBacktracksCommand";
53
55
  export * from "./DescribeDBClusterEndpointsCommand";
54
56
  export * from "./DescribeDBClusterParameterGroupsCommand";