@aws-sdk/client-rds 3.437.0 → 3.439.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 (64) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/RDS.js +6 -0
  3. package/dist-cjs/commands/CreateIntegrationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteIntegrationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeIntegrationsCommand.js +51 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/endpoint/endpointResolver.js +1 -1
  8. package/dist-cjs/index.js +1 -0
  9. package/dist-cjs/models/models_0.js +77 -3
  10. package/dist-cjs/pagination/DescribeIntegrationsPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_query.js +419 -6
  13. package/dist-es/RDS.js +6 -0
  14. package/dist-es/commands/CreateIntegrationCommand.js +47 -0
  15. package/dist-es/commands/DeleteIntegrationCommand.js +47 -0
  16. package/dist-es/commands/DescribeIntegrationsCommand.js +47 -0
  17. package/dist-es/commands/index.js +3 -0
  18. package/dist-es/endpoint/endpointResolver.js +1 -1
  19. package/dist-es/index.js +1 -0
  20. package/dist-es/models/models_0.js +69 -0
  21. package/dist-es/pagination/DescribeIntegrationsPaginator.js +25 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_query.js +408 -1
  24. package/dist-types/RDS.d.ts +21 -0
  25. package/dist-types/RDSClient.d.ts +5 -2
  26. package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
  27. package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +2 -0
  28. package/dist-types/commands/CreateIntegrationCommand.d.ts +130 -0
  29. package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +2 -0
  30. package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
  31. package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +2 -1
  32. package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
  34. package/dist-types/commands/DescribeDBClustersCommand.d.ts +1 -1
  35. package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +3 -2
  36. package/dist-types/commands/DescribeIntegrationsCommand.d.ts +115 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  38. package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +2 -0
  39. package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
  40. package/dist-types/commands/index.d.ts +3 -0
  41. package/dist-types/index.d.ts +1 -0
  42. package/dist-types/models/models_0.d.ts +225 -403
  43. package/dist-types/models/models_1.d.ts +451 -1
  44. package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
  45. package/dist-types/pagination/index.d.ts +1 -0
  46. package/dist-types/protocols/Aws_query.d.ts +27 -0
  47. package/dist-types/ts3.4/RDS.d.ts +51 -0
  48. package/dist-types/ts3.4/RDSClient.d.ts +18 -0
  49. package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +36 -0
  50. package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +36 -0
  51. package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +2 -4
  52. package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/DescribeDBClustersCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/DescribeDBEngineVersionsCommand.d.ts +4 -2
  56. package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +42 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/dist-types/ts3.4/models/models_0.d.ts +78 -51
  60. package/dist-types/ts3.4/models/models_1.d.ts +64 -1
  61. package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
  62. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  63. package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
  64. package/package.json +6 -5
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.437.0",
4
+ "version": "3.439.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",
@@ -21,18 +21,18 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.437.0",
24
+ "@aws-sdk/client-sts": "3.438.0",
25
25
  "@aws-sdk/core": "3.436.0",
26
- "@aws-sdk/credential-provider-node": "3.437.0",
26
+ "@aws-sdk/credential-provider-node": "3.438.0",
27
27
  "@aws-sdk/middleware-host-header": "3.433.0",
28
28
  "@aws-sdk/middleware-logger": "3.433.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.433.0",
30
30
  "@aws-sdk/middleware-sdk-rds": "3.433.0",
31
31
  "@aws-sdk/middleware-signing": "3.433.0",
32
- "@aws-sdk/middleware-user-agent": "3.433.0",
32
+ "@aws-sdk/middleware-user-agent": "3.438.0",
33
33
  "@aws-sdk/region-config-resolver": "3.433.0",
34
34
  "@aws-sdk/types": "3.433.0",
35
- "@aws-sdk/util-endpoints": "3.433.0",
35
+ "@aws-sdk/util-endpoints": "3.438.0",
36
36
  "@aws-sdk/util-user-agent-browser": "3.433.0",
37
37
  "@aws-sdk/util-user-agent-node": "3.437.0",
38
38
  "@smithy/config-resolver": "^2.0.16",
@@ -55,6 +55,7 @@
55
55
  "@smithy/util-body-length-node": "^2.1.0",
56
56
  "@smithy/util-defaults-mode-browser": "^2.0.16",
57
57
  "@smithy/util-defaults-mode-node": "^2.0.21",
58
+ "@smithy/util-endpoints": "^1.0.2",
58
59
  "@smithy/util-retry": "^2.0.5",
59
60
  "@smithy/util-utf8": "^2.0.0",
60
61
  "@smithy/util-waiter": "^2.0.12",