@aws-sdk/client-rds 3.216.0 → 3.218.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 (63) hide show
  1. package/dist-cjs/RDS.js +60 -0
  2. package/dist-cjs/commands/CreateBlueGreenDeploymentCommand.js +46 -0
  3. package/dist-cjs/commands/DeleteBlueGreenDeploymentCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeBlueGreenDeploymentsCommand.js +46 -0
  5. package/dist-cjs/commands/DescribeDBProxyTargetGroupsCommand.js +3 -3
  6. package/dist-cjs/commands/DescribeDBProxyTargetsCommand.js +3 -3
  7. package/dist-cjs/commands/DescribeDBSecurityGroupsCommand.js +3 -3
  8. package/dist-cjs/commands/SwitchoverBlueGreenDeploymentCommand.js +46 -0
  9. package/dist-cjs/commands/index.js +4 -0
  10. package/dist-cjs/endpoint/ruleset.js +1 -1
  11. package/dist-cjs/models/models_0.js +150 -115
  12. package/dist-cjs/models/models_1.js +78 -4
  13. package/dist-cjs/pagination/DescribeBlueGreenDeploymentsPaginator.js +36 -0
  14. package/dist-cjs/pagination/index.js +2 -1
  15. package/dist-cjs/protocols/Aws_query.js +544 -6
  16. package/dist-es/RDS.js +60 -0
  17. package/dist-es/commands/CreateBlueGreenDeploymentCommand.js +42 -0
  18. package/dist-es/commands/DeleteBlueGreenDeploymentCommand.js +42 -0
  19. package/dist-es/commands/DescribeBlueGreenDeploymentsCommand.js +42 -0
  20. package/dist-es/commands/DescribeDBProxyTargetGroupsCommand.js +1 -1
  21. package/dist-es/commands/DescribeDBProxyTargetsCommand.js +1 -1
  22. package/dist-es/commands/DescribeDBSecurityGroupsCommand.js +1 -1
  23. package/dist-es/commands/SwitchoverBlueGreenDeploymentCommand.js +42 -0
  24. package/dist-es/commands/index.js +4 -0
  25. package/dist-es/endpoint/ruleset.js +1 -1
  26. package/dist-es/models/models_0.js +126 -95
  27. package/dist-es/models/models_1.js +62 -0
  28. package/dist-es/pagination/DescribeBlueGreenDeploymentsPaginator.js +32 -0
  29. package/dist-es/pagination/index.js +2 -1
  30. package/dist-es/protocols/Aws_query.js +531 -1
  31. package/dist-types/RDS.d.ts +59 -0
  32. package/dist-types/RDSClient.d.ts +6 -2
  33. package/dist-types/commands/CreateBlueGreenDeploymentCommand.d.ts +51 -0
  34. package/dist-types/commands/DeleteBlueGreenDeploymentCommand.d.ts +42 -0
  35. package/dist-types/commands/DescribeBlueGreenDeploymentsCommand.d.ts +42 -0
  36. package/dist-types/commands/DescribeDBProxyTargetGroupsCommand.d.ts +1 -1
  37. package/dist-types/commands/DescribeDBProxyTargetsCommand.d.ts +1 -1
  38. package/dist-types/commands/DescribeDBSecurityGroupsCommand.d.ts +1 -1
  39. package/dist-types/commands/SwitchoverBlueGreenDeploymentCommand.d.ts +44 -0
  40. package/dist-types/commands/index.d.ts +4 -0
  41. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  42. package/dist-types/models/models_0.d.ts +516 -431
  43. package/dist-types/models/models_1.d.ts +370 -1
  44. package/dist-types/pagination/DescribeBlueGreenDeploymentsPaginator.d.ts +4 -0
  45. package/dist-types/pagination/index.d.ts +2 -1
  46. package/dist-types/protocols/Aws_query.d.ts +12 -0
  47. package/dist-types/ts3.4/RDS.d.ts +68 -0
  48. package/dist-types/ts3.4/RDSClient.d.ts +24 -0
  49. package/dist-types/ts3.4/commands/CreateBlueGreenDeploymentCommand.d.ts +41 -0
  50. package/dist-types/ts3.4/commands/DeleteBlueGreenDeploymentCommand.d.ts +41 -0
  51. package/dist-types/ts3.4/commands/DescribeBlueGreenDeploymentsCommand.d.ts +41 -0
  52. package/dist-types/ts3.4/commands/DescribeDBProxyTargetGroupsCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/DescribeDBProxyTargetsCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/DescribeDBSecurityGroupsCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/SwitchoverBlueGreenDeploymentCommand.d.ts +41 -0
  56. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  57. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  58. package/dist-types/ts3.4/models/models_0.d.ts +153 -143
  59. package/dist-types/ts3.4/models/models_1.d.ts +128 -2
  60. package/dist-types/ts3.4/pagination/DescribeBlueGreenDeploymentsPaginator.d.ts +11 -0
  61. package/dist-types/ts3.4/pagination/index.d.ts +2 -1
  62. package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
  63. package/package.json +3 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rds",
3
3
  "description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
4
- "version": "3.216.0",
4
+ "version": "3.218.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",
@@ -19,9 +19,9 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.216.0",
22
+ "@aws-sdk/client-sts": "3.218.0",
23
23
  "@aws-sdk/config-resolver": "3.215.0",
24
- "@aws-sdk/credential-provider-node": "3.216.0",
24
+ "@aws-sdk/credential-provider-node": "3.218.0",
25
25
  "@aws-sdk/fetch-http-handler": "3.215.0",
26
26
  "@aws-sdk/hash-node": "3.215.0",
27
27
  "@aws-sdk/invalid-dependency": "3.215.0",