@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
@@ -10,8 +10,11 @@ tslib_1.__exportStar(require("./DescribeClusterSubnetGroupsPaginator"), exports)
10
10
  tslib_1.__exportStar(require("./DescribeClusterTracksPaginator"), exports);
11
11
  tslib_1.__exportStar(require("./DescribeClusterVersionsPaginator"), exports);
12
12
  tslib_1.__exportStar(require("./DescribeClustersPaginator"), exports);
13
- tslib_1.__exportStar(require("./DescribeDefaultClusterParametersPaginator"), exports);
13
+ tslib_1.__exportStar(require("./DescribeDataSharesForConsumerPaginator"), exports);
14
14
  tslib_1.__exportStar(require("./Interfaces"), exports);
15
+ tslib_1.__exportStar(require("./DescribeDataSharesForProducerPaginator"), exports);
16
+ tslib_1.__exportStar(require("./DescribeDataSharesPaginator"), exports);
17
+ tslib_1.__exportStar(require("./DescribeDefaultClusterParametersPaginator"), exports);
15
18
  tslib_1.__exportStar(require("./DescribeEndpointAccessPaginator"), exports);
16
19
  tslib_1.__exportStar(require("./DescribeEndpointAuthorizationPaginator"), exports);
17
20
  tslib_1.__exportStar(require("./DescribeEventSubscriptionsPaginator"), exports);
@@ -20,6 +23,7 @@ tslib_1.__exportStar(require("./DescribeHsmClientCertificatesPaginator"), export
20
23
  tslib_1.__exportStar(require("./DescribeHsmConfigurationsPaginator"), exports);
21
24
  tslib_1.__exportStar(require("./DescribeNodeConfigurationOptionsPaginator"), exports);
22
25
  tslib_1.__exportStar(require("./DescribeOrderableClusterOptionsPaginator"), exports);
26
+ tslib_1.__exportStar(require("./DescribeReservedNodeExchangeStatusPaginator"), exports);
23
27
  tslib_1.__exportStar(require("./DescribeReservedNodeOfferingsPaginator"), exports);
24
28
  tslib_1.__exportStar(require("./DescribeReservedNodesPaginator"), exports);
25
29
  tslib_1.__exportStar(require("./DescribeScheduledActionsPaginator"), exports);
@@ -28,4 +32,5 @@ tslib_1.__exportStar(require("./DescribeSnapshotSchedulesPaginator"), exports);
28
32
  tslib_1.__exportStar(require("./DescribeTableRestoreStatusPaginator"), exports);
29
33
  tslib_1.__exportStar(require("./DescribeTagsPaginator"), exports);
30
34
  tslib_1.__exportStar(require("./DescribeUsageLimitsPaginator"), exports);
35
+ tslib_1.__exportStar(require("./GetReservedNodeExchangeConfigurationOptionsPaginator"), exports);
31
36
  tslib_1.__exportStar(require("./GetReservedNodeExchangeOfferingsPaginator"), exports);