@aws-sdk/client-redshift 3.301.0 → 3.303.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/models/models_0.js +98 -117
- package/dist-cjs/models/models_1.js +49 -58
- package/dist-es/models/models_0.js +98 -117
- package/dist-es/models/models_1.js +49 -58
- package/dist-types/models/models_0.d.ts +193 -98
- package/dist-types/models/models_1.d.ts +94 -49
- package/dist-types/ts3.4/models/models_0.d.ts +131 -98
- package/dist-types/ts3.4/models/models_1.d.ts +65 -49
- package/package.json +35 -35
|
@@ -8,10 +8,12 @@ export interface RecurringCharge {
|
|
|
8
8
|
RecurringChargeAmount?: number;
|
|
9
9
|
RecurringChargeFrequency?: string;
|
|
10
10
|
}
|
|
11
|
-
export declare
|
|
12
|
-
Regular
|
|
13
|
-
Upgradable
|
|
14
|
-
}
|
|
11
|
+
export declare const ReservedNodeOfferingType: {
|
|
12
|
+
readonly Regular: "Regular";
|
|
13
|
+
readonly Upgradable: "Upgradable";
|
|
14
|
+
};
|
|
15
|
+
export type ReservedNodeOfferingType =
|
|
16
|
+
(typeof ReservedNodeOfferingType)[keyof typeof ReservedNodeOfferingType];
|
|
15
17
|
export interface ReservedNode {
|
|
16
18
|
ReservedNodeId?: string;
|
|
17
19
|
ReservedNodeOfferingId?: string;
|
|
@@ -116,11 +118,12 @@ export interface AccountWithRestoreAccess {
|
|
|
116
118
|
AccountId?: string;
|
|
117
119
|
AccountAlias?: string;
|
|
118
120
|
}
|
|
119
|
-
export declare
|
|
120
|
-
RECOMMEND_NODE_CONFIG
|
|
121
|
-
RESIZE_CLUSTER
|
|
122
|
-
RESTORE_CLUSTER
|
|
123
|
-
}
|
|
121
|
+
export declare const ActionType: {
|
|
122
|
+
readonly RECOMMEND_NODE_CONFIG: "recommend-node-config";
|
|
123
|
+
readonly RESIZE_CLUSTER: "resize-cluster";
|
|
124
|
+
readonly RESTORE_CLUSTER: "restore-cluster";
|
|
125
|
+
};
|
|
126
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
124
127
|
export declare class ClusterNotFoundFault extends __BaseException {
|
|
125
128
|
readonly name: "ClusterNotFoundFault";
|
|
126
129
|
readonly $fault: "client";
|
|
@@ -155,16 +158,19 @@ export declare class UnauthorizedPartnerIntegrationFault extends __BaseException
|
|
|
155
158
|
>
|
|
156
159
|
);
|
|
157
160
|
}
|
|
158
|
-
export declare
|
|
159
|
-
AUTO
|
|
160
|
-
DISABLED
|
|
161
|
-
ENABLED
|
|
162
|
-
}
|
|
163
|
-
export
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
161
|
+
export declare const AquaConfigurationStatus: {
|
|
162
|
+
readonly AUTO: "auto";
|
|
163
|
+
readonly DISABLED: "disabled";
|
|
164
|
+
readonly ENABLED: "enabled";
|
|
165
|
+
};
|
|
166
|
+
export type AquaConfigurationStatus =
|
|
167
|
+
(typeof AquaConfigurationStatus)[keyof typeof AquaConfigurationStatus];
|
|
168
|
+
export declare const AquaStatus: {
|
|
169
|
+
readonly APPLYING: "applying";
|
|
170
|
+
readonly DISABLED: "disabled";
|
|
171
|
+
readonly ENABLED: "enabled";
|
|
172
|
+
};
|
|
173
|
+
export type AquaStatus = (typeof AquaStatus)[keyof typeof AquaStatus];
|
|
168
174
|
export interface AquaConfiguration {
|
|
169
175
|
AquaStatus?: AquaStatus | string;
|
|
170
176
|
AquaConfigurationStatus?: AquaConfigurationStatus | string;
|
|
@@ -175,14 +181,16 @@ export interface AssociateDataShareConsumerMessage {
|
|
|
175
181
|
ConsumerArn?: string;
|
|
176
182
|
ConsumerRegion?: string;
|
|
177
183
|
}
|
|
178
|
-
export declare
|
|
179
|
-
ACTIVE
|
|
180
|
-
AUTHORIZED
|
|
181
|
-
AVAILABLE
|
|
182
|
-
DEAUTHORIZED
|
|
183
|
-
PENDING_AUTHORIZATION
|
|
184
|
-
REJECTED
|
|
185
|
-
}
|
|
184
|
+
export declare const DataShareStatus: {
|
|
185
|
+
readonly ACTIVE: "ACTIVE";
|
|
186
|
+
readonly AUTHORIZED: "AUTHORIZED";
|
|
187
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
188
|
+
readonly DEAUTHORIZED: "DEAUTHORIZED";
|
|
189
|
+
readonly PENDING_AUTHORIZATION: "PENDING_AUTHORIZATION";
|
|
190
|
+
readonly REJECTED: "REJECTED";
|
|
191
|
+
};
|
|
192
|
+
export type DataShareStatus =
|
|
193
|
+
(typeof DataShareStatus)[keyof typeof DataShareStatus];
|
|
186
194
|
export interface DataShareAssociation {
|
|
187
195
|
ConsumerIdentifier?: string;
|
|
188
196
|
Status?: DataShareStatus | string;
|
|
@@ -211,11 +219,12 @@ export declare class InvalidNamespaceFault extends __BaseException {
|
|
|
211
219
|
opts: __ExceptionOptionType<InvalidNamespaceFault, __BaseException>
|
|
212
220
|
);
|
|
213
221
|
}
|
|
214
|
-
export declare
|
|
215
|
-
ACTIVE
|
|
216
|
-
FAILED
|
|
217
|
-
MODIFYING
|
|
218
|
-
}
|
|
222
|
+
export declare const ScheduleState: {
|
|
223
|
+
readonly ACTIVE: "ACTIVE";
|
|
224
|
+
readonly FAILED: "FAILED";
|
|
225
|
+
readonly MODIFYING: "MODIFYING";
|
|
226
|
+
};
|
|
227
|
+
export type ScheduleState = (typeof ScheduleState)[keyof typeof ScheduleState];
|
|
219
228
|
export interface ClusterAssociatedToSchedule {
|
|
220
229
|
ClusterIdentifier?: string;
|
|
221
230
|
ScheduleAssociationState?: ScheduleState | string;
|
|
@@ -281,10 +290,12 @@ export declare class AuthorizationQuotaExceededFault extends __BaseException {
|
|
|
281
290
|
>
|
|
282
291
|
);
|
|
283
292
|
}
|
|
284
|
-
export declare
|
|
285
|
-
AUTHORIZED
|
|
286
|
-
REVOKING
|
|
287
|
-
}
|
|
293
|
+
export declare const AuthorizationStatus: {
|
|
294
|
+
readonly AUTHORIZED: "Authorized";
|
|
295
|
+
readonly REVOKING: "Revoking";
|
|
296
|
+
};
|
|
297
|
+
export type AuthorizationStatus =
|
|
298
|
+
(typeof AuthorizationStatus)[keyof typeof AuthorizationStatus];
|
|
288
299
|
export interface AuthorizeClusterSecurityGroupIngressMessage {
|
|
289
300
|
ClusterSecurityGroupName: string | undefined;
|
|
290
301
|
CIDRIP?: string;
|
|
@@ -642,14 +653,16 @@ export interface PendingModifiedValues {
|
|
|
642
653
|
MaintenanceTrackName?: string;
|
|
643
654
|
EncryptionType?: string;
|
|
644
655
|
}
|
|
645
|
-
export declare
|
|
646
|
-
FAILED
|
|
647
|
-
IN_PROGRESS
|
|
648
|
-
PENDING
|
|
649
|
-
REQUESTED
|
|
650
|
-
RETRYING
|
|
651
|
-
SUCCEEDED
|
|
652
|
-
}
|
|
656
|
+
export declare const ReservedNodeExchangeStatusType: {
|
|
657
|
+
readonly FAILED: "FAILED";
|
|
658
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
659
|
+
readonly PENDING: "PENDING";
|
|
660
|
+
readonly REQUESTED: "REQUESTED";
|
|
661
|
+
readonly RETRYING: "RETRYING";
|
|
662
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
663
|
+
};
|
|
664
|
+
export type ReservedNodeExchangeStatusType =
|
|
665
|
+
(typeof ReservedNodeExchangeStatusType)[keyof typeof ReservedNodeExchangeStatusType];
|
|
653
666
|
export interface ReservedNodeExchangeStatus {
|
|
654
667
|
ReservedNodeExchangeRequestId?: string;
|
|
655
668
|
Status?: ReservedNodeExchangeStatusType | string;
|
|
@@ -787,10 +800,12 @@ export declare class ClusterParameterGroupAlreadyExistsFault extends __BaseExcep
|
|
|
787
800
|
>
|
|
788
801
|
);
|
|
789
802
|
}
|
|
790
|
-
export declare
|
|
791
|
-
dynamic
|
|
792
|
-
static
|
|
793
|
-
}
|
|
803
|
+
export declare const ParameterApplyType: {
|
|
804
|
+
readonly dynamic: "dynamic";
|
|
805
|
+
readonly static: "static";
|
|
806
|
+
};
|
|
807
|
+
export type ParameterApplyType =
|
|
808
|
+
(typeof ParameterApplyType)[keyof typeof ParameterApplyType];
|
|
794
809
|
export interface Parameter {
|
|
795
810
|
ParameterName?: string;
|
|
796
811
|
ParameterValue?: string;
|
|
@@ -1434,10 +1449,12 @@ export declare class InvalidScheduleFault extends __BaseException {
|
|
|
1434
1449
|
opts: __ExceptionOptionType<InvalidScheduleFault, __BaseException>
|
|
1435
1450
|
);
|
|
1436
1451
|
}
|
|
1437
|
-
export declare
|
|
1438
|
-
ACTIVE
|
|
1439
|
-
DISABLED
|
|
1440
|
-
}
|
|
1452
|
+
export declare const ScheduledActionState: {
|
|
1453
|
+
readonly ACTIVE: "ACTIVE";
|
|
1454
|
+
readonly DISABLED: "DISABLED";
|
|
1455
|
+
};
|
|
1456
|
+
export type ScheduledActionState =
|
|
1457
|
+
(typeof ScheduledActionState)[keyof typeof ScheduledActionState];
|
|
1441
1458
|
export interface ScheduledAction {
|
|
1442
1459
|
ScheduledActionName?: string;
|
|
1443
1460
|
TargetAction?: ScheduledActionType;
|
|
@@ -1570,25 +1587,33 @@ export declare class ResourceNotFoundFault extends __BaseException {
|
|
|
1570
1587
|
opts: __ExceptionOptionType<ResourceNotFoundFault, __BaseException>
|
|
1571
1588
|
);
|
|
1572
1589
|
}
|
|
1573
|
-
export declare
|
|
1574
|
-
DISABLE
|
|
1575
|
-
EMIT_METRIC
|
|
1576
|
-
LOG
|
|
1577
|
-
}
|
|
1578
|
-
export
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
export declare
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1590
|
+
export declare const UsageLimitBreachAction: {
|
|
1591
|
+
readonly DISABLE: "disable";
|
|
1592
|
+
readonly EMIT_METRIC: "emit-metric";
|
|
1593
|
+
readonly LOG: "log";
|
|
1594
|
+
};
|
|
1595
|
+
export type UsageLimitBreachAction =
|
|
1596
|
+
(typeof UsageLimitBreachAction)[keyof typeof UsageLimitBreachAction];
|
|
1597
|
+
export declare const UsageLimitFeatureType: {
|
|
1598
|
+
readonly CONCURRENCY_SCALING: "concurrency-scaling";
|
|
1599
|
+
readonly CROSS_REGION_DATASHARING: "cross-region-datasharing";
|
|
1600
|
+
readonly SPECTRUM: "spectrum";
|
|
1601
|
+
};
|
|
1602
|
+
export type UsageLimitFeatureType =
|
|
1603
|
+
(typeof UsageLimitFeatureType)[keyof typeof UsageLimitFeatureType];
|
|
1604
|
+
export declare const UsageLimitLimitType: {
|
|
1605
|
+
readonly DATA_SCANNED: "data-scanned";
|
|
1606
|
+
readonly TIME: "time";
|
|
1607
|
+
};
|
|
1608
|
+
export type UsageLimitLimitType =
|
|
1609
|
+
(typeof UsageLimitLimitType)[keyof typeof UsageLimitLimitType];
|
|
1610
|
+
export declare const UsageLimitPeriod: {
|
|
1611
|
+
readonly DAILY: "daily";
|
|
1612
|
+
readonly MONTHLY: "monthly";
|
|
1613
|
+
readonly WEEKLY: "weekly";
|
|
1614
|
+
};
|
|
1615
|
+
export type UsageLimitPeriod =
|
|
1616
|
+
(typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
|
|
1592
1617
|
export interface CreateUsageLimitMessage {
|
|
1593
1618
|
ClusterIdentifier: string | undefined;
|
|
1594
1619
|
FeatureType: UsageLimitFeatureType | string | undefined;
|
|
@@ -1626,17 +1651,21 @@ export interface CustomerStorageMessage {
|
|
|
1626
1651
|
TotalBackupSizeInMegaBytes?: number;
|
|
1627
1652
|
TotalProvisionedStorageInMegaBytes?: number;
|
|
1628
1653
|
}
|
|
1629
|
-
export declare
|
|
1630
|
-
ACTIVE
|
|
1631
|
-
AVAILABLE
|
|
1632
|
-
}
|
|
1633
|
-
export
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1654
|
+
export declare const DataShareStatusForConsumer: {
|
|
1655
|
+
readonly ACTIVE: "ACTIVE";
|
|
1656
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
1657
|
+
};
|
|
1658
|
+
export type DataShareStatusForConsumer =
|
|
1659
|
+
(typeof DataShareStatusForConsumer)[keyof typeof DataShareStatusForConsumer];
|
|
1660
|
+
export declare const DataShareStatusForProducer: {
|
|
1661
|
+
readonly ACTIVE: "ACTIVE";
|
|
1662
|
+
readonly AUTHORIZED: "AUTHORIZED";
|
|
1663
|
+
readonly DEAUTHORIZED: "DEAUTHORIZED";
|
|
1664
|
+
readonly PENDING_AUTHORIZATION: "PENDING_AUTHORIZATION";
|
|
1665
|
+
readonly REJECTED: "REJECTED";
|
|
1666
|
+
};
|
|
1667
|
+
export type DataShareStatusForProducer =
|
|
1668
|
+
(typeof DataShareStatusForProducer)[keyof typeof DataShareStatusForProducer];
|
|
1640
1669
|
export interface DeauthorizeDataShareMessage {
|
|
1641
1670
|
DataShareArn: string | undefined;
|
|
1642
1671
|
ConsumerIdentifier: string | undefined;
|
|
@@ -1848,15 +1877,18 @@ export interface DescribeClusterSecurityGroupsMessage {
|
|
|
1848
1877
|
TagKeys?: string[];
|
|
1849
1878
|
TagValues?: string[];
|
|
1850
1879
|
}
|
|
1851
|
-
export declare
|
|
1852
|
-
CREATE_TIME
|
|
1853
|
-
SOURCE_TYPE
|
|
1854
|
-
TOTAL_SIZE
|
|
1855
|
-
}
|
|
1856
|
-
export
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1880
|
+
export declare const SnapshotAttributeToSortBy: {
|
|
1881
|
+
readonly CREATE_TIME: "CREATE_TIME";
|
|
1882
|
+
readonly SOURCE_TYPE: "SOURCE_TYPE";
|
|
1883
|
+
readonly TOTAL_SIZE: "TOTAL_SIZE";
|
|
1884
|
+
};
|
|
1885
|
+
export type SnapshotAttributeToSortBy =
|
|
1886
|
+
(typeof SnapshotAttributeToSortBy)[keyof typeof SnapshotAttributeToSortBy];
|
|
1887
|
+
export declare const SortByOrder: {
|
|
1888
|
+
readonly ASCENDING: "ASC";
|
|
1889
|
+
readonly DESCENDING: "DESC";
|
|
1890
|
+
};
|
|
1891
|
+
export type SortByOrder = (typeof SortByOrder)[keyof typeof SortByOrder];
|
|
1860
1892
|
export interface SnapshotSortingEntity {
|
|
1861
1893
|
Attribute: SnapshotAttributeToSortBy | string | undefined;
|
|
1862
1894
|
SortOrder?: SortByOrder | string;
|
|
@@ -1991,13 +2023,14 @@ export interface EventCategoriesMap {
|
|
|
1991
2023
|
export interface EventCategoriesMessage {
|
|
1992
2024
|
EventCategoriesMapList?: EventCategoriesMap[];
|
|
1993
2025
|
}
|
|
1994
|
-
export declare
|
|
1995
|
-
cluster
|
|
1996
|
-
cluster_parameter_group
|
|
1997
|
-
cluster_security_group
|
|
1998
|
-
cluster_snapshot
|
|
1999
|
-
scheduled_action
|
|
2000
|
-
}
|
|
2026
|
+
export declare const SourceType: {
|
|
2027
|
+
readonly cluster: "cluster";
|
|
2028
|
+
readonly cluster_parameter_group: "cluster-parameter-group";
|
|
2029
|
+
readonly cluster_security_group: "cluster-security-group";
|
|
2030
|
+
readonly cluster_snapshot: "cluster-snapshot";
|
|
2031
|
+
readonly scheduled_action: "scheduled-action";
|
|
2032
|
+
};
|
|
2033
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
2001
2034
|
export interface DescribeEventsMessage {
|
|
2002
2035
|
SourceIdentifier?: string;
|
|
2003
2036
|
SourceType?: SourceType | string;
|
|
@@ -39,10 +39,12 @@ export interface HsmConfigurationMessage {
|
|
|
39
39
|
export interface DescribeLoggingStatusMessage {
|
|
40
40
|
ClusterIdentifier: string | undefined;
|
|
41
41
|
}
|
|
42
|
-
export declare
|
|
43
|
-
CLOUDWATCH
|
|
44
|
-
S3
|
|
45
|
-
}
|
|
42
|
+
export declare const LogDestinationType: {
|
|
43
|
+
readonly CLOUDWATCH: "cloudwatch";
|
|
44
|
+
readonly S3: "s3";
|
|
45
|
+
};
|
|
46
|
+
export type LogDestinationType =
|
|
47
|
+
(typeof LogDestinationType)[keyof typeof LogDestinationType];
|
|
46
48
|
export interface LoggingStatus {
|
|
47
49
|
LoggingEnabled?: boolean;
|
|
48
50
|
BucketName?: string;
|
|
@@ -53,21 +55,24 @@ export interface LoggingStatus {
|
|
|
53
55
|
LogDestinationType?: LogDestinationType | string;
|
|
54
56
|
LogExports?: string[];
|
|
55
57
|
}
|
|
56
|
-
export declare
|
|
57
|
-
ESTIMATED_DISK_UTILIZATION_PERCENT
|
|
58
|
-
MODE
|
|
59
|
-
NODE_TYPE
|
|
60
|
-
NUM_NODES
|
|
61
|
-
}
|
|
62
|
-
export
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
58
|
+
export declare const NodeConfigurationOptionsFilterName: {
|
|
59
|
+
readonly ESTIMATED_DISK_UTILIZATION_PERCENT: "EstimatedDiskUtilizationPercent";
|
|
60
|
+
readonly MODE: "Mode";
|
|
61
|
+
readonly NODE_TYPE: "NodeType";
|
|
62
|
+
readonly NUM_NODES: "NumberOfNodes";
|
|
63
|
+
};
|
|
64
|
+
export type NodeConfigurationOptionsFilterName =
|
|
65
|
+
(typeof NodeConfigurationOptionsFilterName)[keyof typeof NodeConfigurationOptionsFilterName];
|
|
66
|
+
export declare const OperatorType: {
|
|
67
|
+
readonly BETWEEN: "between";
|
|
68
|
+
readonly EQ: "eq";
|
|
69
|
+
readonly GE: "ge";
|
|
70
|
+
readonly GT: "gt";
|
|
71
|
+
readonly IN: "in";
|
|
72
|
+
readonly LE: "le";
|
|
73
|
+
readonly LT: "lt";
|
|
74
|
+
};
|
|
75
|
+
export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
|
|
71
76
|
export interface NodeConfigurationOptionsFilter {
|
|
72
77
|
Name?: NodeConfigurationOptionsFilterName | string;
|
|
73
78
|
Operator?: OperatorType | string;
|
|
@@ -83,10 +88,11 @@ export interface DescribeNodeConfigurationOptionsMessage {
|
|
|
83
88
|
Marker?: string;
|
|
84
89
|
MaxRecords?: number;
|
|
85
90
|
}
|
|
86
|
-
export declare
|
|
87
|
-
HIGH_PERFORMANCE
|
|
88
|
-
STANDARD
|
|
89
|
-
}
|
|
91
|
+
export declare const Mode: {
|
|
92
|
+
readonly HIGH_PERFORMANCE: "high-performance";
|
|
93
|
+
readonly STANDARD: "standard";
|
|
94
|
+
};
|
|
95
|
+
export type Mode = (typeof Mode)[keyof typeof Mode];
|
|
90
96
|
export interface NodeConfigurationOption {
|
|
91
97
|
NodeType?: string;
|
|
92
98
|
NumberOfNodes?: number;
|
|
@@ -119,12 +125,14 @@ export interface DescribePartnersInputMessage {
|
|
|
119
125
|
DatabaseName?: string;
|
|
120
126
|
PartnerName?: string;
|
|
121
127
|
}
|
|
122
|
-
export declare
|
|
123
|
-
Active
|
|
124
|
-
ConnectionFailure
|
|
125
|
-
Inactive
|
|
126
|
-
RuntimeFailure
|
|
127
|
-
}
|
|
128
|
+
export declare const PartnerIntegrationStatus: {
|
|
129
|
+
readonly Active: "Active";
|
|
130
|
+
readonly ConnectionFailure: "ConnectionFailure";
|
|
131
|
+
readonly Inactive: "Inactive";
|
|
132
|
+
readonly RuntimeFailure: "RuntimeFailure";
|
|
133
|
+
};
|
|
134
|
+
export type PartnerIntegrationStatus =
|
|
135
|
+
(typeof PartnerIntegrationStatus)[keyof typeof PartnerIntegrationStatus];
|
|
128
136
|
export interface PartnerIntegrationInfo {
|
|
129
137
|
DatabaseName?: string;
|
|
130
138
|
PartnerName?: string;
|
|
@@ -188,19 +196,23 @@ export interface ReservedNodesMessage {
|
|
|
188
196
|
export interface DescribeResizeMessage {
|
|
189
197
|
ClusterIdentifier: string | undefined;
|
|
190
198
|
}
|
|
191
|
-
export declare
|
|
192
|
-
CLUSTER_IDENTIFIER
|
|
193
|
-
IAM_ROLE
|
|
194
|
-
}
|
|
199
|
+
export declare const ScheduledActionFilterName: {
|
|
200
|
+
readonly CLUSTER_IDENTIFIER: "cluster-identifier";
|
|
201
|
+
readonly IAM_ROLE: "iam-role";
|
|
202
|
+
};
|
|
203
|
+
export type ScheduledActionFilterName =
|
|
204
|
+
(typeof ScheduledActionFilterName)[keyof typeof ScheduledActionFilterName];
|
|
195
205
|
export interface ScheduledActionFilter {
|
|
196
206
|
Name: ScheduledActionFilterName | string | undefined;
|
|
197
207
|
Values: string[] | undefined;
|
|
198
208
|
}
|
|
199
|
-
export declare
|
|
200
|
-
PAUSE_CLUSTER
|
|
201
|
-
RESIZE_CLUSTER
|
|
202
|
-
RESUME_CLUSTER
|
|
203
|
-
}
|
|
209
|
+
export declare const ScheduledActionTypeValues: {
|
|
210
|
+
readonly PAUSE_CLUSTER: "PauseCluster";
|
|
211
|
+
readonly RESIZE_CLUSTER: "ResizeCluster";
|
|
212
|
+
readonly RESUME_CLUSTER: "ResumeCluster";
|
|
213
|
+
};
|
|
214
|
+
export type ScheduledActionTypeValues =
|
|
215
|
+
(typeof ScheduledActionTypeValues)[keyof typeof ScheduledActionTypeValues];
|
|
204
216
|
export interface DescribeScheduledActionsMessage {
|
|
205
217
|
ScheduledActionName?: string;
|
|
206
218
|
TargetActionType?: ScheduledActionTypeValues | string;
|
|
@@ -251,13 +263,15 @@ export declare class TableRestoreNotFoundFault extends __BaseException {
|
|
|
251
263
|
opts: __ExceptionOptionType<TableRestoreNotFoundFault, __BaseException>
|
|
252
264
|
);
|
|
253
265
|
}
|
|
254
|
-
export declare
|
|
255
|
-
CANCELED
|
|
256
|
-
FAILED
|
|
257
|
-
IN_PROGRESS
|
|
258
|
-
PENDING
|
|
259
|
-
SUCCEEDED
|
|
260
|
-
}
|
|
266
|
+
export declare const TableRestoreStatusType: {
|
|
267
|
+
readonly CANCELED: "CANCELED";
|
|
268
|
+
readonly FAILED: "FAILED";
|
|
269
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
270
|
+
readonly PENDING: "PENDING";
|
|
271
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
272
|
+
};
|
|
273
|
+
export type TableRestoreStatusType =
|
|
274
|
+
(typeof TableRestoreStatusType)[keyof typeof TableRestoreStatusType];
|
|
261
275
|
export interface TableRestoreStatus {
|
|
262
276
|
TableRestoreRequestId?: string;
|
|
263
277
|
Status?: TableRestoreStatusType | string;
|
|
@@ -421,10 +435,12 @@ export interface GetClusterCredentialsWithIAMMessage {
|
|
|
421
435
|
ClusterIdentifier: string | undefined;
|
|
422
436
|
DurationSeconds?: number;
|
|
423
437
|
}
|
|
424
|
-
export declare
|
|
425
|
-
RESIZE_CLUSTER
|
|
426
|
-
RESTORE_CLUSTER
|
|
427
|
-
}
|
|
438
|
+
export declare const ReservedNodeExchangeActionType: {
|
|
439
|
+
readonly RESIZE_CLUSTER: "resize-cluster";
|
|
440
|
+
readonly RESTORE_CLUSTER: "restore-cluster";
|
|
441
|
+
};
|
|
442
|
+
export type ReservedNodeExchangeActionType =
|
|
443
|
+
(typeof ReservedNodeExchangeActionType)[keyof typeof ReservedNodeExchangeActionType];
|
|
428
444
|
export interface GetReservedNodeExchangeConfigurationOptionsInputMessage {
|
|
429
445
|
ActionType: ReservedNodeExchangeActionType | string | undefined;
|
|
430
446
|
ClusterIdentifier?: string;
|
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.303.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,44 +21,44 @@
|
|
|
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/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
56
|
-
"@aws-sdk/util-waiter": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
|
+
"@aws-sdk/util-waiter": "3.303.0",
|
|
57
57
|
"fast-xml-parser": "4.1.2",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
62
62
|
"@tsconfig/node14": "1.0.3",
|
|
63
63
|
"@types/node": "^14.14.31",
|
|
64
64
|
"concurrently": "7.0.0",
|