@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
@@ -1,5 +1,25 @@
1
1
  import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
- import { ActionType, AquaConfiguration, AquaConfigurationStatus, AvailabilityZone, Cluster, ClusterSecurityGroup, ClusterSubnetGroup, EventSubscription, Parameter, RecurringCharge, ReservedNode, ReservedNodeOfferingType, ScheduledAction, ScheduledActionType, Snapshot, SnapshotCopyGrant, SnapshotSchedule, Tag, UsageLimit, UsageLimitBreachAction, UsageLimitFeatureType } from "./models_0";
2
+ import { ActionType, AquaConfiguration, AquaConfigurationStatus, AvailabilityZone, Cluster, ClusterSecurityGroup, ClusterSubnetGroup, EventSubscription, HsmConfiguration, Parameter, RecurringCharge, ReservedNode, ReservedNodeExchangeStatus, ReservedNodeOfferingType, ScheduledAction, ScheduledActionType, Snapshot, SnapshotCopyGrant, SnapshotSchedule, Tag, UsageLimit, UsageLimitBreachAction, UsageLimitFeatureType } from "./models_0";
3
+
4
+ export interface HsmConfigurationMessage {
5
+
6
+ Marker?: string;
7
+
8
+ HsmConfigurations?: HsmConfiguration[];
9
+ }
10
+ export declare namespace HsmConfigurationMessage {
11
+
12
+ const filterSensitiveLog: (obj: HsmConfigurationMessage) => any;
13
+ }
14
+
15
+ export interface DescribeLoggingStatusMessage {
16
+
17
+ ClusterIdentifier: string | undefined;
18
+ }
19
+ export declare namespace DescribeLoggingStatusMessage {
20
+
21
+ const filterSensitiveLog: (obj: DescribeLoggingStatusMessage) => any;
22
+ }
3
23
 
4
24
  export interface LoggingStatus {
5
25
 
@@ -184,6 +204,40 @@ export declare namespace DescribePartnersOutputMessage {
184
204
 
185
205
  const filterSensitiveLog: (obj: DescribePartnersOutputMessage) => any;
186
206
  }
207
+ export interface DescribeReservedNodeExchangeStatusInputMessage {
208
+
209
+ ReservedNodeId?: string;
210
+
211
+ ReservedNodeExchangeRequestId?: string;
212
+
213
+ MaxRecords?: number;
214
+
215
+ Marker?: string;
216
+ }
217
+ export declare namespace DescribeReservedNodeExchangeStatusInputMessage {
218
+
219
+ const filterSensitiveLog: (obj: DescribeReservedNodeExchangeStatusInputMessage) => any;
220
+ }
221
+ export interface DescribeReservedNodeExchangeStatusOutputMessage {
222
+
223
+ ReservedNodeExchangeStatusDetails?: ReservedNodeExchangeStatus[];
224
+
225
+ Marker?: string;
226
+ }
227
+ export declare namespace DescribeReservedNodeExchangeStatusOutputMessage {
228
+
229
+ const filterSensitiveLog: (obj: DescribeReservedNodeExchangeStatusOutputMessage) => any;
230
+ }
231
+
232
+ export interface ReservedNodeExchangeNotFoundFault extends __SmithyException, $MetadataBearer {
233
+ name: "ReservedNodeExchangeNotFoundFault";
234
+ $fault: "client";
235
+ message?: string;
236
+ }
237
+ export declare namespace ReservedNodeExchangeNotFoundFault {
238
+
239
+ const filterSensitiveLog: (obj: ReservedNodeExchangeNotFoundFault) => any;
240
+ }
187
241
 
188
242
  export interface DescribeReservedNodeOfferingsMessage {
189
243
 
@@ -694,6 +748,49 @@ export declare namespace GetClusterCredentialsMessage {
694
748
 
695
749
  const filterSensitiveLog: (obj: GetClusterCredentialsMessage) => any;
696
750
  }
751
+ export declare enum ReservedNodeExchangeActionType {
752
+ RESIZE_CLUSTER = "resize-cluster",
753
+ RESTORE_CLUSTER = "restore-cluster"
754
+ }
755
+ export interface GetReservedNodeExchangeConfigurationOptionsInputMessage {
756
+
757
+ ActionType: ReservedNodeExchangeActionType | string | undefined;
758
+
759
+ ClusterIdentifier?: string;
760
+
761
+ SnapshotIdentifier?: string;
762
+
763
+ MaxRecords?: number;
764
+
765
+ Marker?: string;
766
+ }
767
+ export declare namespace GetReservedNodeExchangeConfigurationOptionsInputMessage {
768
+
769
+ const filterSensitiveLog: (obj: GetReservedNodeExchangeConfigurationOptionsInputMessage) => any;
770
+ }
771
+
772
+ export interface ReservedNodeConfigurationOption {
773
+
774
+ SourceReservedNode?: ReservedNode;
775
+
776
+ TargetReservedNodeCount?: number;
777
+
778
+ TargetReservedNodeOffering?: ReservedNodeOffering;
779
+ }
780
+ export declare namespace ReservedNodeConfigurationOption {
781
+
782
+ const filterSensitiveLog: (obj: ReservedNodeConfigurationOption) => any;
783
+ }
784
+ export interface GetReservedNodeExchangeConfigurationOptionsOutputMessage {
785
+
786
+ Marker?: string;
787
+
788
+ ReservedNodeConfigurationOptionList?: ReservedNodeConfigurationOption[];
789
+ }
790
+ export declare namespace GetReservedNodeExchangeConfigurationOptionsOutputMessage {
791
+
792
+ const filterSensitiveLog: (obj: GetReservedNodeExchangeConfigurationOptionsOutputMessage) => any;
793
+ }
697
794
 
698
795
  export interface GetReservedNodeExchangeOfferingsInputMessage {
699
796
 
@@ -896,6 +993,8 @@ export interface ModifyClusterIamRolesMessage {
896
993
  AddIamRoles?: string[];
897
994
 
898
995
  RemoveIamRoles?: string[];
996
+
997
+ DefaultIamRoleArn?: string;
899
998
  }
900
999
  export declare namespace ModifyClusterIamRolesMessage {
901
1000
 
@@ -1274,6 +1373,12 @@ export interface RestoreFromClusterSnapshotMessage {
1274
1373
  AvailabilityZoneRelocation?: boolean;
1275
1374
 
1276
1375
  AquaConfigurationStatus?: AquaConfigurationStatus | string;
1376
+
1377
+ DefaultIamRoleArn?: string;
1378
+
1379
+ ReservedNodeId?: string;
1380
+
1381
+ TargetReservedNodeOfferingId?: string;
1277
1382
  }
1278
1383
  export declare namespace RestoreFromClusterSnapshotMessage {
1279
1384
 
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeDataSharesForConsumerCommandInput, DescribeDataSharesForConsumerCommandOutput } from "../commands/DescribeDataSharesForConsumerCommand";
3
+ import { RedshiftPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeDataSharesForConsumer(config: RedshiftPaginationConfiguration, input: DescribeDataSharesForConsumerCommandInput, ...additionalArguments: any): Paginator<DescribeDataSharesForConsumerCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeDataSharesForProducerCommandInput, DescribeDataSharesForProducerCommandOutput } from "../commands/DescribeDataSharesForProducerCommand";
3
+ import { RedshiftPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeDataSharesForProducer(config: RedshiftPaginationConfiguration, input: DescribeDataSharesForProducerCommandInput, ...additionalArguments: any): Paginator<DescribeDataSharesForProducerCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeDataSharesCommandInput, DescribeDataSharesCommandOutput } from "../commands/DescribeDataSharesCommand";
3
+ import { RedshiftPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeDataShares(config: RedshiftPaginationConfiguration, input: DescribeDataSharesCommandInput, ...additionalArguments: any): Paginator<DescribeDataSharesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeReservedNodeExchangeStatusCommandInput, DescribeReservedNodeExchangeStatusCommandOutput } from "../commands/DescribeReservedNodeExchangeStatusCommand";
3
+ import { RedshiftPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeReservedNodeExchangeStatus(config: RedshiftPaginationConfiguration, input: DescribeReservedNodeExchangeStatusCommandInput, ...additionalArguments: any): Paginator<DescribeReservedNodeExchangeStatusCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "../commands/GetReservedNodeExchangeConfigurationOptionsCommand";
3
+ import { RedshiftPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetReservedNodeExchangeConfigurationOptions(config: RedshiftPaginationConfiguration, input: GetReservedNodeExchangeConfigurationOptionsCommandInput, ...additionalArguments: any): Paginator<GetReservedNodeExchangeConfigurationOptionsCommandOutput>;
@@ -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";
@@ -69,6 +69,7 @@ import { DescribeLoggingStatusCommandInput, DescribeLoggingStatusCommandOutput }
69
69
  import { DescribeNodeConfigurationOptionsCommandInput, DescribeNodeConfigurationOptionsCommandOutput } from "../commands/DescribeNodeConfigurationOptionsCommand";
70
70
  import { DescribeOrderableClusterOptionsCommandInput, DescribeOrderableClusterOptionsCommandOutput } from "../commands/DescribeOrderableClusterOptionsCommand";
71
71
  import { DescribePartnersCommandInput, DescribePartnersCommandOutput } from "../commands/DescribePartnersCommand";
72
+ import { DescribeReservedNodeExchangeStatusCommandInput, DescribeReservedNodeExchangeStatusCommandOutput } from "../commands/DescribeReservedNodeExchangeStatusCommand";
72
73
  import { DescribeReservedNodeOfferingsCommandInput, DescribeReservedNodeOfferingsCommandOutput } from "../commands/DescribeReservedNodeOfferingsCommand";
73
74
  import { DescribeReservedNodesCommandInput, DescribeReservedNodesCommandOutput } from "../commands/DescribeReservedNodesCommand";
74
75
  import { DescribeResizeCommandInput, DescribeResizeCommandOutput } from "../commands/DescribeResizeCommand";
@@ -85,6 +86,7 @@ import { DisassociateDataShareConsumerCommandInput, DisassociateDataShareConsume
85
86
  import { EnableLoggingCommandInput, EnableLoggingCommandOutput } from "../commands/EnableLoggingCommand";
86
87
  import { EnableSnapshotCopyCommandInput, EnableSnapshotCopyCommandOutput } from "../commands/EnableSnapshotCopyCommand";
87
88
  import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput } from "../commands/GetClusterCredentialsCommand";
89
+ import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "../commands/GetReservedNodeExchangeConfigurationOptionsCommand";
88
90
  import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "../commands/GetReservedNodeExchangeOfferingsCommand";
89
91
  import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "../commands/ModifyAquaConfigurationCommand";
90
92
  import { ModifyAuthenticationProfileCommandInput, ModifyAuthenticationProfileCommandOutput } from "../commands/ModifyAuthenticationProfileCommand";
@@ -185,6 +187,7 @@ export declare const serializeAws_queryDescribeLoggingStatusCommand: (input: Des
185
187
  export declare const serializeAws_queryDescribeNodeConfigurationOptionsCommand: (input: DescribeNodeConfigurationOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
186
188
  export declare const serializeAws_queryDescribeOrderableClusterOptionsCommand: (input: DescribeOrderableClusterOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
187
189
  export declare const serializeAws_queryDescribePartnersCommand: (input: DescribePartnersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_queryDescribeReservedNodeExchangeStatusCommand: (input: DescribeReservedNodeExchangeStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
188
191
  export declare const serializeAws_queryDescribeReservedNodeOfferingsCommand: (input: DescribeReservedNodeOfferingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
189
192
  export declare const serializeAws_queryDescribeReservedNodesCommand: (input: DescribeReservedNodesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
190
193
  export declare const serializeAws_queryDescribeResizeCommand: (input: DescribeResizeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -201,6 +204,7 @@ export declare const serializeAws_queryDisassociateDataShareConsumerCommand: (in
201
204
  export declare const serializeAws_queryEnableLoggingCommand: (input: EnableLoggingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
202
205
  export declare const serializeAws_queryEnableSnapshotCopyCommand: (input: EnableSnapshotCopyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
203
206
  export declare const serializeAws_queryGetClusterCredentialsCommand: (input: GetClusterCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
207
+ export declare const serializeAws_queryGetReservedNodeExchangeConfigurationOptionsCommand: (input: GetReservedNodeExchangeConfigurationOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
204
208
  export declare const serializeAws_queryGetReservedNodeExchangeOfferingsCommand: (input: GetReservedNodeExchangeOfferingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
205
209
  export declare const serializeAws_queryModifyAquaConfigurationCommand: (input: ModifyAquaConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
206
210
  export declare const serializeAws_queryModifyAuthenticationProfileCommand: (input: ModifyAuthenticationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -301,6 +305,7 @@ export declare const deserializeAws_queryDescribeLoggingStatusCommand: (output:
301
305
  export declare const deserializeAws_queryDescribeNodeConfigurationOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNodeConfigurationOptionsCommandOutput>;
302
306
  export declare const deserializeAws_queryDescribeOrderableClusterOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOrderableClusterOptionsCommandOutput>;
303
307
  export declare const deserializeAws_queryDescribePartnersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePartnersCommandOutput>;
308
+ export declare const deserializeAws_queryDescribeReservedNodeExchangeStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReservedNodeExchangeStatusCommandOutput>;
304
309
  export declare const deserializeAws_queryDescribeReservedNodeOfferingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReservedNodeOfferingsCommandOutput>;
305
310
  export declare const deserializeAws_queryDescribeReservedNodesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReservedNodesCommandOutput>;
306
311
  export declare const deserializeAws_queryDescribeResizeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeResizeCommandOutput>;
@@ -317,6 +322,7 @@ export declare const deserializeAws_queryDisassociateDataShareConsumerCommand: (
317
322
  export declare const deserializeAws_queryEnableLoggingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableLoggingCommandOutput>;
318
323
  export declare const deserializeAws_queryEnableSnapshotCopyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableSnapshotCopyCommandOutput>;
319
324
  export declare const deserializeAws_queryGetClusterCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClusterCredentialsCommandOutput>;
325
+ export declare const deserializeAws_queryGetReservedNodeExchangeConfigurationOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetReservedNodeExchangeConfigurationOptionsCommandOutput>;
320
326
  export declare const deserializeAws_queryGetReservedNodeExchangeOfferingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetReservedNodeExchangeOfferingsCommandOutput>;
321
327
  export declare const deserializeAws_queryModifyAquaConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyAquaConfigurationCommandOutput>;
322
328
  export declare const deserializeAws_queryModifyAuthenticationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyAuthenticationProfileCommandOutput>;
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-redshift",
3
3
  "description": "AWS SDK for JavaScript Redshift Client for Node.js, Browser and React Native",
4
- "version": "3.41.0",
4
+ "version": "3.46.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
8
- "build:docs": "yarn clean:docs && typedoc ./",
8
+ "build:docs": "typedoc",
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
12
  "clean": "yarn clean:dist && yarn clean:docs",
12
- "clean:dist": "rimraf ./dist",
13
- "clean:docs": "rimraf ./docs",
14
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
- "test": "exit 0"
13
+ "clean:dist": "rimraf ./dist-*",
14
+ "clean:docs": "rimraf ./docs"
16
15
  },
17
16
  "main": "./dist-cjs/index.js",
18
17
  "types": "./dist-types/index.d.ts",
@@ -21,51 +20,45 @@
21
20
  "dependencies": {
22
21
  "@aws-crypto/sha256-browser": "2.0.0",
23
22
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.41.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.41.0",
27
- "@aws-sdk/fetch-http-handler": "3.40.0",
28
- "@aws-sdk/hash-node": "3.40.0",
29
- "@aws-sdk/invalid-dependency": "3.40.0",
30
- "@aws-sdk/middleware-content-length": "3.40.0",
31
- "@aws-sdk/middleware-host-header": "3.40.0",
32
- "@aws-sdk/middleware-logger": "3.40.0",
33
- "@aws-sdk/middleware-retry": "3.40.0",
34
- "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.40.0",
36
- "@aws-sdk/middleware-stack": "3.40.0",
37
- "@aws-sdk/middleware-user-agent": "3.40.0",
38
- "@aws-sdk/node-config-provider": "3.40.0",
39
- "@aws-sdk/node-http-handler": "3.40.0",
40
- "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.41.0",
42
- "@aws-sdk/types": "3.40.0",
43
- "@aws-sdk/url-parser": "3.40.0",
44
- "@aws-sdk/util-base64-browser": "3.37.0",
45
- "@aws-sdk/util-base64-node": "3.37.0",
46
- "@aws-sdk/util-body-length-browser": "3.37.0",
47
- "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.40.0",
49
- "@aws-sdk/util-user-agent-node": "3.40.0",
50
- "@aws-sdk/util-utf8-browser": "3.37.0",
51
- "@aws-sdk/util-utf8-node": "3.37.0",
52
- "@aws-sdk/util-waiter": "3.40.0",
23
+ "@aws-sdk/client-sts": "3.46.0",
24
+ "@aws-sdk/config-resolver": "3.46.0",
25
+ "@aws-sdk/credential-provider-node": "3.46.0",
26
+ "@aws-sdk/fetch-http-handler": "3.46.0",
27
+ "@aws-sdk/hash-node": "3.46.0",
28
+ "@aws-sdk/invalid-dependency": "3.46.0",
29
+ "@aws-sdk/middleware-content-length": "3.46.0",
30
+ "@aws-sdk/middleware-host-header": "3.46.0",
31
+ "@aws-sdk/middleware-logger": "3.46.0",
32
+ "@aws-sdk/middleware-retry": "3.46.0",
33
+ "@aws-sdk/middleware-serde": "3.46.0",
34
+ "@aws-sdk/middleware-signing": "3.46.0",
35
+ "@aws-sdk/middleware-stack": "3.46.0",
36
+ "@aws-sdk/middleware-user-agent": "3.46.0",
37
+ "@aws-sdk/node-config-provider": "3.46.0",
38
+ "@aws-sdk/node-http-handler": "3.46.0",
39
+ "@aws-sdk/protocol-http": "3.46.0",
40
+ "@aws-sdk/smithy-client": "3.46.0",
41
+ "@aws-sdk/types": "3.46.0",
42
+ "@aws-sdk/url-parser": "3.46.0",
43
+ "@aws-sdk/util-base64-browser": "3.46.0",
44
+ "@aws-sdk/util-base64-node": "3.46.0",
45
+ "@aws-sdk/util-body-length-browser": "3.46.0",
46
+ "@aws-sdk/util-body-length-node": "3.46.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.46.0",
48
+ "@aws-sdk/util-user-agent-node": "3.46.0",
49
+ "@aws-sdk/util-utf8-browser": "3.46.0",
50
+ "@aws-sdk/util-utf8-node": "3.46.0",
51
+ "@aws-sdk/util-waiter": "3.46.0",
53
52
  "entities": "2.2.0",
54
53
  "fast-xml-parser": "3.19.0",
55
54
  "tslib": "^2.3.0"
56
55
  },
57
56
  "devDependencies": {
58
- "@aws-sdk/service-client-documentation-generator": "3.38.0",
59
- "@types/node": "^12.7.5",
60
- "downlevel-dts": "0.7.0",
61
- "jest": "^26.1.0",
62
- "rimraf": "^3.0.0",
63
- "ts-jest": "^26.4.1",
64
- "typedoc": "^0.19.2",
65
- "typescript": "~4.3.5"
57
+ "@aws-sdk/service-client-documentation-generator": "3.46.0",
58
+ "@types/node": "^12.7.5"
66
59
  },
67
60
  "engines": {
68
- "node": ">=10.0.0"
61
+ "node": ">=12.0.0"
69
62
  },
70
63
  "typesVersions": {
71
64
  "<4.0": {