@aws-sdk/client-redshift 3.41.0 → 3.46.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 (69) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/dist-cjs/Redshift.js +30 -0
  3. package/dist-cjs/commands/DescribeHsmConfigurationsCommand.js +2 -1
  4. package/dist-cjs/commands/DescribeLoggingStatusCommand.js +1 -2
  5. package/dist-cjs/commands/DescribeReservedNodeExchangeStatusCommand.js +36 -0
  6. package/dist-cjs/commands/GetReservedNodeExchangeConfigurationOptionsCommand.js +36 -0
  7. package/dist-cjs/commands/index.js +2 -0
  8. package/dist-cjs/endpoints.js +1 -0
  9. package/dist-cjs/models/models_0.js +20 -17
  10. package/dist-cjs/models/models_1.js +56 -3
  11. package/dist-cjs/pagination/DescribeDataSharesForConsumerPaginator.js +35 -0
  12. package/dist-cjs/pagination/DescribeDataSharesForProducerPaginator.js +35 -0
  13. package/dist-cjs/pagination/DescribeDataSharesPaginator.js +35 -0
  14. package/dist-cjs/pagination/DescribeReservedNodeExchangeStatusPaginator.js +35 -0
  15. package/dist-cjs/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.js +35 -0
  16. package/dist-cjs/pagination/index.js +6 -1
  17. package/dist-cjs/protocols/Aws_query.js +508 -4
  18. package/dist-cjs/runtimeConfig.js +0 -2
  19. package/dist-es/Redshift.js +30 -0
  20. package/dist-es/commands/DescribeHsmConfigurationsCommand.js +2 -1
  21. package/dist-es/commands/DescribeLoggingStatusCommand.js +1 -2
  22. package/dist-es/commands/DescribeReservedNodeExchangeStatusCommand.js +39 -0
  23. package/dist-es/commands/GetReservedNodeExchangeConfigurationOptionsCommand.js +39 -0
  24. package/dist-es/commands/index.js +2 -0
  25. package/dist-es/endpoints.js +1 -0
  26. package/dist-es/models/models_0.js +13 -8
  27. package/dist-es/models/models_1.js +37 -0
  28. package/dist-es/pagination/DescribeDataSharesForConsumerPaginator.js +74 -0
  29. package/dist-es/pagination/DescribeDataSharesForProducerPaginator.js +74 -0
  30. package/dist-es/pagination/DescribeDataSharesPaginator.js +74 -0
  31. package/dist-es/pagination/DescribeReservedNodeExchangeStatusPaginator.js +74 -0
  32. package/dist-es/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.js +74 -0
  33. package/dist-es/pagination/index.js +6 -1
  34. package/dist-es/protocols/Aws_query.js +675 -161
  35. package/dist-es/runtimeConfig.js +0 -2
  36. package/dist-types/Redshift.d.ts +18 -1
  37. package/dist-types/RedshiftClient.d.ts +4 -2
  38. package/dist-types/commands/AuthorizeDataShareCommand.d.ts +1 -1
  39. package/dist-types/commands/DescribeHsmConfigurationsCommand.d.ts +2 -1
  40. package/dist-types/commands/DescribeLoggingStatusCommand.d.ts +1 -2
  41. package/dist-types/commands/DescribeReservedNodeExchangeStatusCommand.d.ts +36 -0
  42. package/dist-types/commands/GetReservedNodeExchangeConfigurationOptionsCommand.d.ts +37 -0
  43. package/dist-types/commands/index.d.ts +2 -0
  44. package/dist-types/models/models_0.d.ts +90 -49
  45. package/dist-types/models/models_1.d.ts +202 -1
  46. package/dist-types/pagination/DescribeDataSharesForConsumerPaginator.d.ts +4 -0
  47. package/dist-types/pagination/DescribeDataSharesForProducerPaginator.d.ts +4 -0
  48. package/dist-types/pagination/DescribeDataSharesPaginator.d.ts +4 -0
  49. package/dist-types/pagination/DescribeReservedNodeExchangeStatusPaginator.d.ts +4 -0
  50. package/dist-types/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.d.ts +4 -0
  51. package/dist-types/pagination/index.d.ts +6 -1
  52. package/dist-types/protocols/Aws_query.d.ts +6 -0
  53. package/dist-types/ts3.4/Redshift.d.ts +10 -0
  54. package/dist-types/ts3.4/RedshiftClient.d.ts +4 -2
  55. package/dist-types/ts3.4/commands/DescribeHsmConfigurationsCommand.d.ts +2 -1
  56. package/dist-types/ts3.4/commands/DescribeLoggingStatusCommand.d.ts +1 -2
  57. package/dist-types/ts3.4/commands/DescribeReservedNodeExchangeStatusCommand.d.ts +17 -0
  58. package/dist-types/ts3.4/commands/GetReservedNodeExchangeConfigurationOptionsCommand.d.ts +17 -0
  59. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +45 -20
  61. package/dist-types/ts3.4/models/models_1.d.ts +106 -1
  62. package/dist-types/ts3.4/pagination/DescribeDataSharesForConsumerPaginator.d.ts +4 -0
  63. package/dist-types/ts3.4/pagination/DescribeDataSharesForProducerPaginator.d.ts +4 -0
  64. package/dist-types/ts3.4/pagination/DescribeDataSharesPaginator.d.ts +4 -0
  65. package/dist-types/ts3.4/pagination/DescribeReservedNodeExchangeStatusPaginator.d.ts +4 -0
  66. package/dist-types/ts3.4/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.d.ts +4 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +6 -1
  68. package/dist-types/ts3.4/protocols/Aws_query.d.ts +6 -0
  69. package/package.json +37 -44
@@ -7,8 +7,11 @@ export * from "./DescribeClusterSubnetGroupsPaginator";
7
7
  export * from "./DescribeClusterTracksPaginator";
8
8
  export * from "./DescribeClusterVersionsPaginator";
9
9
  export * from "./DescribeClustersPaginator";
10
- export * from "./DescribeDefaultClusterParametersPaginator";
10
+ export * from "./DescribeDataSharesForConsumerPaginator";
11
11
  export * from "./Interfaces";
12
+ export * from "./DescribeDataSharesForProducerPaginator";
13
+ export * from "./DescribeDataSharesPaginator";
14
+ export * from "./DescribeDefaultClusterParametersPaginator";
12
15
  export * from "./DescribeEndpointAccessPaginator";
13
16
  export * from "./DescribeEndpointAuthorizationPaginator";
14
17
  export * from "./DescribeEventSubscriptionsPaginator";
@@ -17,6 +20,7 @@ export * from "./DescribeHsmClientCertificatesPaginator";
17
20
  export * from "./DescribeHsmConfigurationsPaginator";
18
21
  export * from "./DescribeNodeConfigurationOptionsPaginator";
19
22
  export * from "./DescribeOrderableClusterOptionsPaginator";
23
+ export * from "./DescribeReservedNodeExchangeStatusPaginator";
20
24
  export * from "./DescribeReservedNodeOfferingsPaginator";
21
25
  export * from "./DescribeReservedNodesPaginator";
22
26
  export * from "./DescribeScheduledActionsPaginator";
@@ -25,4 +29,5 @@ export * from "./DescribeSnapshotSchedulesPaginator";
25
29
  export * from "./DescribeTableRestoreStatusPaginator";
26
30
  export * from "./DescribeTagsPaginator";
27
31
  export * from "./DescribeUsageLimitsPaginator";
32
+ export * from "./GetReservedNodeExchangeConfigurationOptionsPaginator";
28
33
  export * from "./GetReservedNodeExchangeOfferingsPaginator";