@aws-sdk/client-redshift 3.427.0 → 3.429.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.
- package/dist-cjs/commands/CreateClusterCommand.js +3 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +2 -1
- package/dist-cjs/commands/DescribeClustersCommand.js +2 -1
- package/dist-cjs/commands/DisableSnapshotCopyCommand.js +2 -1
- package/dist-cjs/commands/EnableSnapshotCopyCommand.js +2 -1
- package/dist-cjs/commands/ModifyClusterCommand.js +3 -2
- package/dist-cjs/commands/ModifyClusterDbRevisionCommand.js +2 -1
- package/dist-cjs/commands/ModifyClusterIamRolesCommand.js +2 -1
- package/dist-cjs/commands/ModifyClusterMaintenanceCommand.js +2 -1
- package/dist-cjs/commands/ModifySnapshotCopyRetentionPeriodCommand.js +2 -1
- package/dist-cjs/commands/PauseClusterCommand.js +2 -1
- package/dist-cjs/commands/RebootClusterCommand.js +2 -1
- package/dist-cjs/commands/ResizeClusterCommand.js +2 -1
- package/dist-cjs/commands/RestoreFromClusterSnapshotCommand.js +2 -1
- package/dist-cjs/commands/ResumeClusterCommand.js +2 -1
- package/dist-cjs/commands/RotateEncryptionKeyCommand.js +2 -1
- package/dist-cjs/models/models_0.js +33 -1
- package/dist-cjs/models/models_1.js +73 -1
- package/dist-cjs/protocols/Aws_query.js +30 -0
- package/dist-es/commands/CreateClusterCommand.js +3 -2
- package/dist-es/commands/DeleteClusterCommand.js +2 -1
- package/dist-es/commands/DescribeClustersCommand.js +2 -1
- package/dist-es/commands/DisableSnapshotCopyCommand.js +2 -1
- package/dist-es/commands/EnableSnapshotCopyCommand.js +2 -1
- package/dist-es/commands/ModifyClusterCommand.js +3 -2
- package/dist-es/commands/ModifyClusterDbRevisionCommand.js +2 -1
- package/dist-es/commands/ModifyClusterIamRolesCommand.js +2 -1
- package/dist-es/commands/ModifyClusterMaintenanceCommand.js +2 -1
- package/dist-es/commands/ModifySnapshotCopyRetentionPeriodCommand.js +2 -1
- package/dist-es/commands/PauseClusterCommand.js +2 -1
- package/dist-es/commands/RebootClusterCommand.js +2 -1
- package/dist-es/commands/ResizeClusterCommand.js +2 -1
- package/dist-es/commands/RestoreFromClusterSnapshotCommand.js +2 -1
- package/dist-es/commands/ResumeClusterCommand.js +2 -1
- package/dist-es/commands/RotateEncryptionKeyCommand.js +2 -1
- package/dist-es/models/models_0.js +26 -0
- package/dist-es/models/models_1.js +58 -0
- package/dist-es/protocols/Aws_query.js +30 -0
- package/dist-types/commands/AuthorizeSnapshotAccessCommand.d.ts +2 -0
- package/dist-types/commands/CopyClusterSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +5 -1
- package/dist-types/commands/CreateClusterSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +2 -0
- package/dist-types/commands/DeleteClusterSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/DescribeClusterSnapshotsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +2 -0
- package/dist-types/commands/DescribeCustomDomainAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/DisableSnapshotCopyCommand.d.ts +2 -0
- package/dist-types/commands/EnableSnapshotCopyCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterCommand.d.ts +4 -0
- package/dist-types/commands/ModifyClusterDbRevisionCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterIamRolesCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterMaintenanceCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/ModifySnapshotCopyRetentionPeriodCommand.d.ts +2 -0
- package/dist-types/commands/PauseClusterCommand.d.ts +2 -0
- package/dist-types/commands/RebootClusterCommand.d.ts +2 -0
- package/dist-types/commands/ResizeClusterCommand.d.ts +2 -0
- package/dist-types/commands/RestoreFromClusterSnapshotCommand.d.ts +4 -0
- package/dist-types/commands/ResumeClusterCommand.d.ts +2 -0
- package/dist-types/commands/RevokeSnapshotAccessCommand.d.ts +2 -0
- package/dist-types/commands/RotateEncryptionKeyCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +84 -24
- package/dist-types/models/models_1.d.ts +104 -19
- package/dist-types/ts3.4/models/models_0.d.ts +46 -24
- package/dist-types/ts3.4/models/models_1.d.ts +65 -19
- package/package.json +32 -32
|
@@ -27,7 +27,7 @@ export interface ReservedNode {
|
|
|
27
27
|
State?: string;
|
|
28
28
|
OfferingType?: string;
|
|
29
29
|
RecurringCharges?: RecurringCharge[];
|
|
30
|
-
ReservedNodeOfferingType?: ReservedNodeOfferingType
|
|
30
|
+
ReservedNodeOfferingType?: ReservedNodeOfferingType;
|
|
31
31
|
}
|
|
32
32
|
export interface AcceptReservedNodeExchangeOutputMessage {
|
|
33
33
|
ExchangedReservedNode?: ReservedNode;
|
|
@@ -172,8 +172,8 @@ export declare const AquaStatus: {
|
|
|
172
172
|
};
|
|
173
173
|
export type AquaStatus = (typeof AquaStatus)[keyof typeof AquaStatus];
|
|
174
174
|
export interface AquaConfiguration {
|
|
175
|
-
AquaStatus?: AquaStatus
|
|
176
|
-
AquaConfigurationStatus?: AquaConfigurationStatus
|
|
175
|
+
AquaStatus?: AquaStatus;
|
|
176
|
+
AquaConfigurationStatus?: AquaConfigurationStatus;
|
|
177
177
|
}
|
|
178
178
|
export interface AssociateDataShareConsumerMessage {
|
|
179
179
|
DataShareArn: string | undefined;
|
|
@@ -193,7 +193,7 @@ export type DataShareStatus =
|
|
|
193
193
|
(typeof DataShareStatus)[keyof typeof DataShareStatus];
|
|
194
194
|
export interface DataShareAssociation {
|
|
195
195
|
ConsumerIdentifier?: string;
|
|
196
|
-
Status?: DataShareStatus
|
|
196
|
+
Status?: DataShareStatus;
|
|
197
197
|
ConsumerRegion?: string;
|
|
198
198
|
CreatedDate?: Date;
|
|
199
199
|
StatusChangeDate?: Date;
|
|
@@ -227,7 +227,7 @@ export declare const ScheduleState: {
|
|
|
227
227
|
export type ScheduleState = (typeof ScheduleState)[keyof typeof ScheduleState];
|
|
228
228
|
export interface ClusterAssociatedToSchedule {
|
|
229
229
|
ClusterIdentifier?: string;
|
|
230
|
-
ScheduleAssociationState?: ScheduleState
|
|
230
|
+
ScheduleAssociationState?: ScheduleState;
|
|
231
231
|
}
|
|
232
232
|
export interface CertificateAssociation {
|
|
233
233
|
CustomDomainName?: string;
|
|
@@ -371,7 +371,7 @@ export interface EndpointAuthorization {
|
|
|
371
371
|
ClusterIdentifier?: string;
|
|
372
372
|
AuthorizeTime?: Date;
|
|
373
373
|
ClusterStatus?: string;
|
|
374
|
-
Status?: AuthorizationStatus
|
|
374
|
+
Status?: AuthorizationStatus;
|
|
375
375
|
AllowedAllVPCs?: boolean;
|
|
376
376
|
AllowedVPCs?: string[];
|
|
377
377
|
EndpointCount?: number;
|
|
@@ -451,6 +451,8 @@ export interface Snapshot {
|
|
|
451
451
|
ManualSnapshotRetentionPeriod?: number;
|
|
452
452
|
ManualSnapshotRemainingDays?: number;
|
|
453
453
|
SnapshotRetentionStartTime?: Date;
|
|
454
|
+
MasterPasswordSecretArn?: string;
|
|
455
|
+
MasterPasswordSecretKmsKeyId?: string;
|
|
454
456
|
}
|
|
455
457
|
export interface AuthorizeSnapshotAccessResult {
|
|
456
458
|
Snapshot?: Snapshot;
|
|
@@ -674,7 +676,7 @@ export type ReservedNodeExchangeStatusType =
|
|
|
674
676
|
(typeof ReservedNodeExchangeStatusType)[keyof typeof ReservedNodeExchangeStatusType];
|
|
675
677
|
export interface ReservedNodeExchangeStatus {
|
|
676
678
|
ReservedNodeExchangeRequestId?: string;
|
|
677
|
-
Status?: ReservedNodeExchangeStatusType
|
|
679
|
+
Status?: ReservedNodeExchangeStatusType;
|
|
678
680
|
RequestTime?: Date;
|
|
679
681
|
SourceReservedNodeId?: string;
|
|
680
682
|
SourceReservedNodeType?: string;
|
|
@@ -741,7 +743,7 @@ export interface Cluster {
|
|
|
741
743
|
ElasticResizeNumberOfNodeOptions?: string;
|
|
742
744
|
DeferredMaintenanceWindows?: DeferredMaintenanceWindow[];
|
|
743
745
|
SnapshotScheduleIdentifier?: string;
|
|
744
|
-
SnapshotScheduleState?: ScheduleState
|
|
746
|
+
SnapshotScheduleState?: ScheduleState;
|
|
745
747
|
ExpectedNextSnapshotScheduleTime?: Date;
|
|
746
748
|
ExpectedNextSnapshotScheduleTimeStatus?: string;
|
|
747
749
|
NextMaintenanceWindowStartTime?: Date;
|
|
@@ -755,6 +757,8 @@ export interface Cluster {
|
|
|
755
757
|
CustomDomainName?: string;
|
|
756
758
|
CustomDomainCertificateArn?: string;
|
|
757
759
|
CustomDomainCertificateExpiryDate?: Date;
|
|
760
|
+
MasterPasswordSecretArn?: string;
|
|
761
|
+
MasterPasswordSecretKmsKeyId?: string;
|
|
758
762
|
}
|
|
759
763
|
export declare class ClusterAlreadyExistsFault extends __BaseException {
|
|
760
764
|
readonly name: "ClusterAlreadyExistsFault";
|
|
@@ -825,7 +829,7 @@ export interface Parameter {
|
|
|
825
829
|
Source?: string;
|
|
826
830
|
DataType?: string;
|
|
827
831
|
AllowedValues?: string;
|
|
828
|
-
ApplyType?: ParameterApplyType
|
|
832
|
+
ApplyType?: ParameterApplyType;
|
|
829
833
|
IsModifiable?: boolean;
|
|
830
834
|
MinimumEngineVersion?: string;
|
|
831
835
|
}
|
|
@@ -1022,7 +1026,7 @@ export interface CreateClusterMessage {
|
|
|
1022
1026
|
ClusterType?: string;
|
|
1023
1027
|
NodeType: string | undefined;
|
|
1024
1028
|
MasterUsername: string | undefined;
|
|
1025
|
-
MasterUserPassword
|
|
1029
|
+
MasterUserPassword?: string;
|
|
1026
1030
|
ClusterSecurityGroups?: string[];
|
|
1027
1031
|
VpcSecurityGroupIds?: string[];
|
|
1028
1032
|
ClusterSubnetGroupName?: string;
|
|
@@ -1048,9 +1052,11 @@ export interface CreateClusterMessage {
|
|
|
1048
1052
|
MaintenanceTrackName?: string;
|
|
1049
1053
|
SnapshotScheduleIdentifier?: string;
|
|
1050
1054
|
AvailabilityZoneRelocation?: boolean;
|
|
1051
|
-
AquaConfigurationStatus?: AquaConfigurationStatus
|
|
1055
|
+
AquaConfigurationStatus?: AquaConfigurationStatus;
|
|
1052
1056
|
DefaultIamRoleArn?: string;
|
|
1053
1057
|
LoadSampleData?: string;
|
|
1058
|
+
ManageMasterPassword?: boolean;
|
|
1059
|
+
MasterPasswordSecretKmsKeyId?: string;
|
|
1054
1060
|
}
|
|
1055
1061
|
export interface CreateClusterResult {
|
|
1056
1062
|
Cluster?: Cluster;
|
|
@@ -1491,7 +1497,7 @@ export interface ScheduledAction {
|
|
|
1491
1497
|
Schedule?: string;
|
|
1492
1498
|
IamRole?: string;
|
|
1493
1499
|
ScheduledActionDescription?: string;
|
|
1494
|
-
State?: ScheduledActionState
|
|
1500
|
+
State?: ScheduledActionState;
|
|
1495
1501
|
NextInvocations?: Date[];
|
|
1496
1502
|
StartTime?: Date;
|
|
1497
1503
|
EndTime?: Date;
|
|
@@ -1646,11 +1652,11 @@ export type UsageLimitPeriod =
|
|
|
1646
1652
|
(typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
|
|
1647
1653
|
export interface CreateUsageLimitMessage {
|
|
1648
1654
|
ClusterIdentifier: string | undefined;
|
|
1649
|
-
FeatureType: UsageLimitFeatureType |
|
|
1650
|
-
LimitType: UsageLimitLimitType |
|
|
1655
|
+
FeatureType: UsageLimitFeatureType | undefined;
|
|
1656
|
+
LimitType: UsageLimitLimitType | undefined;
|
|
1651
1657
|
Amount: number | undefined;
|
|
1652
|
-
Period?: UsageLimitPeriod
|
|
1653
|
-
BreachAction?: UsageLimitBreachAction
|
|
1658
|
+
Period?: UsageLimitPeriod;
|
|
1659
|
+
BreachAction?: UsageLimitBreachAction;
|
|
1654
1660
|
Tags?: Tag[];
|
|
1655
1661
|
}
|
|
1656
1662
|
export declare class InvalidUsageLimitFault extends __BaseException {
|
|
@@ -1663,11 +1669,11 @@ export declare class InvalidUsageLimitFault extends __BaseException {
|
|
|
1663
1669
|
export interface UsageLimit {
|
|
1664
1670
|
UsageLimitId?: string;
|
|
1665
1671
|
ClusterIdentifier?: string;
|
|
1666
|
-
FeatureType?: UsageLimitFeatureType
|
|
1667
|
-
LimitType?: UsageLimitLimitType
|
|
1672
|
+
FeatureType?: UsageLimitFeatureType;
|
|
1673
|
+
LimitType?: UsageLimitLimitType;
|
|
1668
1674
|
Amount?: number;
|
|
1669
|
-
Period?: UsageLimitPeriod
|
|
1670
|
-
BreachAction?: UsageLimitBreachAction
|
|
1675
|
+
Period?: UsageLimitPeriod;
|
|
1676
|
+
BreachAction?: UsageLimitBreachAction;
|
|
1671
1677
|
Tags?: Tag[];
|
|
1672
1678
|
}
|
|
1673
1679
|
export declare class UsageLimitAlreadyExistsFault extends __BaseException {
|
|
@@ -1937,8 +1943,8 @@ export declare const SortByOrder: {
|
|
|
1937
1943
|
};
|
|
1938
1944
|
export type SortByOrder = (typeof SortByOrder)[keyof typeof SortByOrder];
|
|
1939
1945
|
export interface SnapshotSortingEntity {
|
|
1940
|
-
Attribute: SnapshotAttributeToSortBy |
|
|
1941
|
-
SortOrder?: SortByOrder
|
|
1946
|
+
Attribute: SnapshotAttributeToSortBy | undefined;
|
|
1947
|
+
SortOrder?: SortByOrder;
|
|
1942
1948
|
}
|
|
1943
1949
|
export interface DescribeClusterSnapshotsMessage {
|
|
1944
1950
|
ClusterIdentifier?: string;
|
|
@@ -2011,7 +2017,7 @@ export interface DescribeDataSharesResult {
|
|
|
2011
2017
|
}
|
|
2012
2018
|
export interface DescribeDataSharesForConsumerMessage {
|
|
2013
2019
|
ConsumerArn?: string;
|
|
2014
|
-
Status?: DataShareStatusForConsumer
|
|
2020
|
+
Status?: DataShareStatusForConsumer;
|
|
2015
2021
|
MaxRecords?: number;
|
|
2016
2022
|
Marker?: string;
|
|
2017
2023
|
}
|
|
@@ -2021,7 +2027,7 @@ export interface DescribeDataSharesForConsumerResult {
|
|
|
2021
2027
|
}
|
|
2022
2028
|
export interface DescribeDataSharesForProducerMessage {
|
|
2023
2029
|
ProducerArn?: string;
|
|
2024
|
-
Status?: DataShareStatusForProducer
|
|
2030
|
+
Status?: DataShareStatusForProducer;
|
|
2025
2031
|
MaxRecords?: number;
|
|
2026
2032
|
Marker?: string;
|
|
2027
2033
|
}
|
|
@@ -2073,9 +2079,25 @@ export interface EventCategoriesMap {
|
|
|
2073
2079
|
SourceType?: string;
|
|
2074
2080
|
Events?: EventInfoMap[];
|
|
2075
2081
|
}
|
|
2082
|
+
export declare const PendingModifiedValuesFilterSensitiveLog: (
|
|
2083
|
+
obj: PendingModifiedValues
|
|
2084
|
+
) => any;
|
|
2085
|
+
export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
|
|
2076
2086
|
export declare const ClusterCredentialsFilterSensitiveLog: (
|
|
2077
2087
|
obj: ClusterCredentials
|
|
2078
2088
|
) => any;
|
|
2079
2089
|
export declare const ClusterExtendedCredentialsFilterSensitiveLog: (
|
|
2080
2090
|
obj: ClusterExtendedCredentials
|
|
2081
2091
|
) => any;
|
|
2092
|
+
export declare const ClustersMessageFilterSensitiveLog: (
|
|
2093
|
+
obj: ClustersMessage
|
|
2094
|
+
) => any;
|
|
2095
|
+
export declare const CreateClusterMessageFilterSensitiveLog: (
|
|
2096
|
+
obj: CreateClusterMessage
|
|
2097
|
+
) => any;
|
|
2098
|
+
export declare const CreateClusterResultFilterSensitiveLog: (
|
|
2099
|
+
obj: CreateClusterResult
|
|
2100
|
+
) => any;
|
|
2101
|
+
export declare const DeleteClusterResultFilterSensitiveLog: (
|
|
2102
|
+
obj: DeleteClusterResult
|
|
2103
|
+
) => any;
|
|
@@ -40,7 +40,7 @@ export declare const SourceType: {
|
|
|
40
40
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
41
41
|
export interface DescribeEventsMessage {
|
|
42
42
|
SourceIdentifier?: string;
|
|
43
|
-
SourceType?: SourceType
|
|
43
|
+
SourceType?: SourceType;
|
|
44
44
|
StartTime?: Date;
|
|
45
45
|
EndTime?: Date;
|
|
46
46
|
Duration?: number;
|
|
@@ -49,7 +49,7 @@ export interface DescribeEventsMessage {
|
|
|
49
49
|
}
|
|
50
50
|
export interface Event {
|
|
51
51
|
SourceIdentifier?: string;
|
|
52
|
-
SourceType?: SourceType
|
|
52
|
+
SourceType?: SourceType;
|
|
53
53
|
Message?: string;
|
|
54
54
|
EventCategories?: string[];
|
|
55
55
|
Severity?: string;
|
|
@@ -109,7 +109,7 @@ export interface LoggingStatus {
|
|
|
109
109
|
LastSuccessfulDeliveryTime?: Date;
|
|
110
110
|
LastFailureTime?: Date;
|
|
111
111
|
LastFailureMessage?: string;
|
|
112
|
-
LogDestinationType?: LogDestinationType
|
|
112
|
+
LogDestinationType?: LogDestinationType;
|
|
113
113
|
LogExports?: string[];
|
|
114
114
|
}
|
|
115
115
|
export declare const NodeConfigurationOptionsFilterName: {
|
|
@@ -131,12 +131,12 @@ export declare const OperatorType: {
|
|
|
131
131
|
};
|
|
132
132
|
export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
|
|
133
133
|
export interface NodeConfigurationOptionsFilter {
|
|
134
|
-
Name?: NodeConfigurationOptionsFilterName
|
|
135
|
-
Operator?: OperatorType
|
|
134
|
+
Name?: NodeConfigurationOptionsFilterName;
|
|
135
|
+
Operator?: OperatorType;
|
|
136
136
|
Values?: string[];
|
|
137
137
|
}
|
|
138
138
|
export interface DescribeNodeConfigurationOptionsMessage {
|
|
139
|
-
ActionType: ActionType |
|
|
139
|
+
ActionType: ActionType | undefined;
|
|
140
140
|
ClusterIdentifier?: string;
|
|
141
141
|
SnapshotIdentifier?: string;
|
|
142
142
|
SnapshotArn?: string;
|
|
@@ -154,7 +154,7 @@ export interface NodeConfigurationOption {
|
|
|
154
154
|
NodeType?: string;
|
|
155
155
|
NumberOfNodes?: number;
|
|
156
156
|
EstimatedDiskUtilizationPercent?: number;
|
|
157
|
-
Mode?: Mode
|
|
157
|
+
Mode?: Mode;
|
|
158
158
|
}
|
|
159
159
|
export interface NodeConfigurationOptionsMessage {
|
|
160
160
|
NodeConfigurationOptionList?: NodeConfigurationOption[];
|
|
@@ -193,7 +193,7 @@ export type PartnerIntegrationStatus =
|
|
|
193
193
|
export interface PartnerIntegrationInfo {
|
|
194
194
|
DatabaseName?: string;
|
|
195
195
|
PartnerName?: string;
|
|
196
|
-
Status?: PartnerIntegrationStatus
|
|
196
|
+
Status?: PartnerIntegrationStatus;
|
|
197
197
|
StatusMessage?: string;
|
|
198
198
|
CreatedAt?: Date;
|
|
199
199
|
UpdatedAt?: Date;
|
|
@@ -235,7 +235,7 @@ export interface ReservedNodeOffering {
|
|
|
235
235
|
CurrencyCode?: string;
|
|
236
236
|
OfferingType?: string;
|
|
237
237
|
RecurringCharges?: RecurringCharge[];
|
|
238
|
-
ReservedNodeOfferingType?: ReservedNodeOfferingType
|
|
238
|
+
ReservedNodeOfferingType?: ReservedNodeOfferingType;
|
|
239
239
|
}
|
|
240
240
|
export interface ReservedNodeOfferingsMessage {
|
|
241
241
|
Marker?: string;
|
|
@@ -260,7 +260,7 @@ export declare const ScheduledActionFilterName: {
|
|
|
260
260
|
export type ScheduledActionFilterName =
|
|
261
261
|
(typeof ScheduledActionFilterName)[keyof typeof ScheduledActionFilterName];
|
|
262
262
|
export interface ScheduledActionFilter {
|
|
263
|
-
Name: ScheduledActionFilterName |
|
|
263
|
+
Name: ScheduledActionFilterName | undefined;
|
|
264
264
|
Values: string[] | undefined;
|
|
265
265
|
}
|
|
266
266
|
export declare const ScheduledActionTypeValues: {
|
|
@@ -272,7 +272,7 @@ export type ScheduledActionTypeValues =
|
|
|
272
272
|
(typeof ScheduledActionTypeValues)[keyof typeof ScheduledActionTypeValues];
|
|
273
273
|
export interface DescribeScheduledActionsMessage {
|
|
274
274
|
ScheduledActionName?: string;
|
|
275
|
-
TargetActionType?: ScheduledActionTypeValues
|
|
275
|
+
TargetActionType?: ScheduledActionTypeValues;
|
|
276
276
|
StartTime?: Date;
|
|
277
277
|
EndTime?: Date;
|
|
278
278
|
Active?: boolean;
|
|
@@ -331,7 +331,7 @@ export type TableRestoreStatusType =
|
|
|
331
331
|
(typeof TableRestoreStatusType)[keyof typeof TableRestoreStatusType];
|
|
332
332
|
export interface TableRestoreStatus {
|
|
333
333
|
TableRestoreRequestId?: string;
|
|
334
|
-
Status?: TableRestoreStatusType
|
|
334
|
+
Status?: TableRestoreStatusType;
|
|
335
335
|
Message?: string;
|
|
336
336
|
RequestTime?: Date;
|
|
337
337
|
ProgressInMegaBytes?: number;
|
|
@@ -369,7 +369,7 @@ export interface TaggedResourceListMessage {
|
|
|
369
369
|
export interface DescribeUsageLimitsMessage {
|
|
370
370
|
UsageLimitId?: string;
|
|
371
371
|
ClusterIdentifier?: string;
|
|
372
|
-
FeatureType?: UsageLimitFeatureType
|
|
372
|
+
FeatureType?: UsageLimitFeatureType;
|
|
373
373
|
MaxRecords?: number;
|
|
374
374
|
Marker?: string;
|
|
375
375
|
TagKeys?: string[];
|
|
@@ -408,7 +408,7 @@ export interface EnableLoggingMessage {
|
|
|
408
408
|
ClusterIdentifier: string | undefined;
|
|
409
409
|
BucketName?: string;
|
|
410
410
|
S3KeyPrefix?: string;
|
|
411
|
-
LogDestinationType?: LogDestinationType
|
|
411
|
+
LogDestinationType?: LogDestinationType;
|
|
412
412
|
LogExports?: string[];
|
|
413
413
|
}
|
|
414
414
|
export declare class InsufficientS3BucketPolicyFault extends __BaseException {
|
|
@@ -501,7 +501,7 @@ export declare const ReservedNodeExchangeActionType: {
|
|
|
501
501
|
export type ReservedNodeExchangeActionType =
|
|
502
502
|
(typeof ReservedNodeExchangeActionType)[keyof typeof ReservedNodeExchangeActionType];
|
|
503
503
|
export interface GetReservedNodeExchangeConfigurationOptionsInputMessage {
|
|
504
|
-
ActionType: ReservedNodeExchangeActionType |
|
|
504
|
+
ActionType: ReservedNodeExchangeActionType | undefined;
|
|
505
505
|
ClusterIdentifier?: string;
|
|
506
506
|
SnapshotIdentifier?: string;
|
|
507
507
|
MaxRecords?: number;
|
|
@@ -554,7 +554,7 @@ export declare class InvalidTableRestoreArgumentFault extends __BaseException {
|
|
|
554
554
|
}
|
|
555
555
|
export interface ModifyAquaInputMessage {
|
|
556
556
|
ClusterIdentifier: string | undefined;
|
|
557
|
-
AquaConfigurationStatus?: AquaConfigurationStatus
|
|
557
|
+
AquaConfigurationStatus?: AquaConfigurationStatus;
|
|
558
558
|
}
|
|
559
559
|
export interface ModifyAquaOutputMessage {
|
|
560
560
|
AquaConfiguration?: AquaConfiguration;
|
|
@@ -593,6 +593,8 @@ export interface ModifyClusterMessage {
|
|
|
593
593
|
AvailabilityZoneRelocation?: boolean;
|
|
594
594
|
AvailabilityZone?: string;
|
|
595
595
|
Port?: number;
|
|
596
|
+
ManageMasterPassword?: boolean;
|
|
597
|
+
MasterPasswordSecretKmsKeyId?: string;
|
|
596
598
|
}
|
|
597
599
|
export interface ModifyClusterResult {
|
|
598
600
|
Cluster?: Cluster;
|
|
@@ -737,7 +739,7 @@ export declare class SnapshotScheduleUpdateInProgressFault extends __BaseExcepti
|
|
|
737
739
|
export interface ModifyUsageLimitMessage {
|
|
738
740
|
UsageLimitId: string | undefined;
|
|
739
741
|
Amount?: number;
|
|
740
|
-
BreachAction?: UsageLimitBreachAction
|
|
742
|
+
BreachAction?: UsageLimitBreachAction;
|
|
741
743
|
}
|
|
742
744
|
export interface PauseClusterResult {
|
|
743
745
|
Cluster?: Cluster;
|
|
@@ -802,11 +804,13 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
802
804
|
SnapshotScheduleIdentifier?: string;
|
|
803
805
|
NumberOfNodes?: number;
|
|
804
806
|
AvailabilityZoneRelocation?: boolean;
|
|
805
|
-
AquaConfigurationStatus?: AquaConfigurationStatus
|
|
807
|
+
AquaConfigurationStatus?: AquaConfigurationStatus;
|
|
806
808
|
DefaultIamRoleArn?: string;
|
|
807
809
|
ReservedNodeId?: string;
|
|
808
810
|
TargetReservedNodeOfferingId?: string;
|
|
809
811
|
Encrypted?: boolean;
|
|
812
|
+
ManageMasterPassword?: boolean;
|
|
813
|
+
MasterPasswordSecretKmsKeyId?: string;
|
|
810
814
|
}
|
|
811
815
|
export interface RestoreFromClusterSnapshotResult {
|
|
812
816
|
Cluster?: Cluster;
|
|
@@ -863,6 +867,48 @@ export interface UpdatePartnerStatusInputMessage {
|
|
|
863
867
|
ClusterIdentifier: string | undefined;
|
|
864
868
|
DatabaseName: string | undefined;
|
|
865
869
|
PartnerName: string | undefined;
|
|
866
|
-
Status: PartnerIntegrationStatus |
|
|
870
|
+
Status: PartnerIntegrationStatus | undefined;
|
|
867
871
|
StatusMessage?: string;
|
|
868
872
|
}
|
|
873
|
+
export declare const DisableSnapshotCopyResultFilterSensitiveLog: (
|
|
874
|
+
obj: DisableSnapshotCopyResult
|
|
875
|
+
) => any;
|
|
876
|
+
export declare const EnableSnapshotCopyResultFilterSensitiveLog: (
|
|
877
|
+
obj: EnableSnapshotCopyResult
|
|
878
|
+
) => any;
|
|
879
|
+
export declare const ModifyClusterMessageFilterSensitiveLog: (
|
|
880
|
+
obj: ModifyClusterMessage
|
|
881
|
+
) => any;
|
|
882
|
+
export declare const ModifyClusterResultFilterSensitiveLog: (
|
|
883
|
+
obj: ModifyClusterResult
|
|
884
|
+
) => any;
|
|
885
|
+
export declare const ModifyClusterDbRevisionResultFilterSensitiveLog: (
|
|
886
|
+
obj: ModifyClusterDbRevisionResult
|
|
887
|
+
) => any;
|
|
888
|
+
export declare const ModifyClusterIamRolesResultFilterSensitiveLog: (
|
|
889
|
+
obj: ModifyClusterIamRolesResult
|
|
890
|
+
) => any;
|
|
891
|
+
export declare const ModifyClusterMaintenanceResultFilterSensitiveLog: (
|
|
892
|
+
obj: ModifyClusterMaintenanceResult
|
|
893
|
+
) => any;
|
|
894
|
+
export declare const ModifySnapshotCopyRetentionPeriodResultFilterSensitiveLog: (
|
|
895
|
+
obj: ModifySnapshotCopyRetentionPeriodResult
|
|
896
|
+
) => any;
|
|
897
|
+
export declare const PauseClusterResultFilterSensitiveLog: (
|
|
898
|
+
obj: PauseClusterResult
|
|
899
|
+
) => any;
|
|
900
|
+
export declare const RebootClusterResultFilterSensitiveLog: (
|
|
901
|
+
obj: RebootClusterResult
|
|
902
|
+
) => any;
|
|
903
|
+
export declare const ResizeClusterResultFilterSensitiveLog: (
|
|
904
|
+
obj: ResizeClusterResult
|
|
905
|
+
) => any;
|
|
906
|
+
export declare const RestoreFromClusterSnapshotResultFilterSensitiveLog: (
|
|
907
|
+
obj: RestoreFromClusterSnapshotResult
|
|
908
|
+
) => any;
|
|
909
|
+
export declare const ResumeClusterResultFilterSensitiveLog: (
|
|
910
|
+
obj: ResumeClusterResult
|
|
911
|
+
) => any;
|
|
912
|
+
export declare const RotateEncryptionKeyResultFilterSensitiveLog: (
|
|
913
|
+
obj: RotateEncryptionKeyResult
|
|
914
|
+
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.
|
|
4
|
+
"version": "3.429.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,41 +21,41 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
|
-
"@smithy/util-waiter": "^2.0.
|
|
58
|
+
"@smithy/util-waiter": "^2.0.11",
|
|
59
59
|
"fast-xml-parser": "4.2.5",
|
|
60
60
|
"tslib": "^2.5.0"
|
|
61
61
|
},
|