@aws-sdk/client-redshift 3.670.0 → 3.675.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/README.md +32 -0
- package/dist-cjs/index.js +685 -67
- package/dist-es/Redshift.js +8 -0
- package/dist-es/commands/CreateIntegrationCommand.js +22 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +22 -0
- package/dist-es/commands/DescribeIntegrationsCommand.js +22 -0
- package/dist-es/commands/ModifyIntegrationCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +93 -9
- package/dist-es/models/models_1.js +14 -20
- package/dist-es/pagination/DescribeIntegrationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +458 -31
- package/dist-types/Redshift.d.ts +29 -0
- package/dist-types/RedshiftClient.d.ts +6 -2
- package/dist-types/commands/CreateIntegrationCommand.d.ts +135 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
- package/dist-types/commands/DescribeClusterSecurityGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterSubnetGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterTracksCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +114 -0
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +113 -0
- package/dist-types/commands/ResizeClusterCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +241 -407
- package/dist-types/models/models_1.d.ts +508 -41
- package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_query.d.ts +36 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Redshift.d.ts +69 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DescribeClusterSecurityGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeClusterSubnetGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterTracksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -71
- package/dist-types/ts3.4/models/models_1.d.ts +100 -21
- package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -1
- package/package.json +5 -5
|
@@ -1486,6 +1486,81 @@ export declare class HsmConfigurationQuotaExceededFault extends __BaseException
|
|
|
1486
1486
|
>
|
|
1487
1487
|
);
|
|
1488
1488
|
}
|
|
1489
|
+
export interface CreateIntegrationMessage {
|
|
1490
|
+
SourceArn: string | undefined;
|
|
1491
|
+
TargetArn: string | undefined;
|
|
1492
|
+
IntegrationName: string | undefined;
|
|
1493
|
+
KMSKeyId?: string;
|
|
1494
|
+
TagList?: Tag[];
|
|
1495
|
+
AdditionalEncryptionContext?: Record<string, string>;
|
|
1496
|
+
Description?: string;
|
|
1497
|
+
}
|
|
1498
|
+
export interface IntegrationError {
|
|
1499
|
+
ErrorCode: string | undefined;
|
|
1500
|
+
ErrorMessage?: string;
|
|
1501
|
+
}
|
|
1502
|
+
export declare const ZeroETLIntegrationStatus: {
|
|
1503
|
+
readonly ACTIVE: "active";
|
|
1504
|
+
readonly CREATING: "creating";
|
|
1505
|
+
readonly DELETING: "deleting";
|
|
1506
|
+
readonly FAILED: "failed";
|
|
1507
|
+
readonly MODIFYING: "modifying";
|
|
1508
|
+
readonly NEEDS_ATTENTION: "needs_attention";
|
|
1509
|
+
readonly SYNCING: "syncing";
|
|
1510
|
+
};
|
|
1511
|
+
export type ZeroETLIntegrationStatus =
|
|
1512
|
+
(typeof ZeroETLIntegrationStatus)[keyof typeof ZeroETLIntegrationStatus];
|
|
1513
|
+
export interface Integration {
|
|
1514
|
+
IntegrationArn?: string;
|
|
1515
|
+
IntegrationName?: string;
|
|
1516
|
+
SourceArn?: string;
|
|
1517
|
+
TargetArn?: string;
|
|
1518
|
+
Status?: ZeroETLIntegrationStatus;
|
|
1519
|
+
Errors?: IntegrationError[];
|
|
1520
|
+
CreateTime?: Date;
|
|
1521
|
+
Description?: string;
|
|
1522
|
+
KMSKeyId?: string;
|
|
1523
|
+
AdditionalEncryptionContext?: Record<string, string>;
|
|
1524
|
+
Tags?: Tag[];
|
|
1525
|
+
}
|
|
1526
|
+
export declare class IntegrationAlreadyExistsFault extends __BaseException {
|
|
1527
|
+
readonly name: "IntegrationAlreadyExistsFault";
|
|
1528
|
+
readonly $fault: "client";
|
|
1529
|
+
constructor(
|
|
1530
|
+
opts: __ExceptionOptionType<IntegrationAlreadyExistsFault, __BaseException>
|
|
1531
|
+
);
|
|
1532
|
+
}
|
|
1533
|
+
export declare class IntegrationConflictOperationFault extends __BaseException {
|
|
1534
|
+
readonly name: "IntegrationConflictOperationFault";
|
|
1535
|
+
readonly $fault: "client";
|
|
1536
|
+
constructor(
|
|
1537
|
+
opts: __ExceptionOptionType<
|
|
1538
|
+
IntegrationConflictOperationFault,
|
|
1539
|
+
__BaseException
|
|
1540
|
+
>
|
|
1541
|
+
);
|
|
1542
|
+
}
|
|
1543
|
+
export declare class IntegrationQuotaExceededFault extends __BaseException {
|
|
1544
|
+
readonly name: "IntegrationQuotaExceededFault";
|
|
1545
|
+
readonly $fault: "client";
|
|
1546
|
+
constructor(
|
|
1547
|
+
opts: __ExceptionOptionType<IntegrationQuotaExceededFault, __BaseException>
|
|
1548
|
+
);
|
|
1549
|
+
}
|
|
1550
|
+
export declare class IntegrationSourceNotFoundFault extends __BaseException {
|
|
1551
|
+
readonly name: "IntegrationSourceNotFoundFault";
|
|
1552
|
+
readonly $fault: "client";
|
|
1553
|
+
constructor(
|
|
1554
|
+
opts: __ExceptionOptionType<IntegrationSourceNotFoundFault, __BaseException>
|
|
1555
|
+
);
|
|
1556
|
+
}
|
|
1557
|
+
export declare class IntegrationTargetNotFoundFault extends __BaseException {
|
|
1558
|
+
readonly name: "IntegrationTargetNotFoundFault";
|
|
1559
|
+
readonly $fault: "client";
|
|
1560
|
+
constructor(
|
|
1561
|
+
opts: __ExceptionOptionType<IntegrationTargetNotFoundFault, __BaseException>
|
|
1562
|
+
);
|
|
1563
|
+
}
|
|
1489
1564
|
export declare const ServiceAuthorization: {
|
|
1490
1565
|
readonly DISABLED: "Disabled";
|
|
1491
1566
|
readonly ENABLED: "Enabled";
|
|
@@ -1977,6 +2052,23 @@ export declare class InvalidHsmConfigurationStateFault extends __BaseException {
|
|
|
1977
2052
|
>
|
|
1978
2053
|
);
|
|
1979
2054
|
}
|
|
2055
|
+
export interface DeleteIntegrationMessage {
|
|
2056
|
+
IntegrationArn: string | undefined;
|
|
2057
|
+
}
|
|
2058
|
+
export declare class IntegrationConflictStateFault extends __BaseException {
|
|
2059
|
+
readonly name: "IntegrationConflictStateFault";
|
|
2060
|
+
readonly $fault: "client";
|
|
2061
|
+
constructor(
|
|
2062
|
+
opts: __ExceptionOptionType<IntegrationConflictStateFault, __BaseException>
|
|
2063
|
+
);
|
|
2064
|
+
}
|
|
2065
|
+
export declare class IntegrationNotFoundFault extends __BaseException {
|
|
2066
|
+
readonly name: "IntegrationNotFoundFault";
|
|
2067
|
+
readonly $fault: "client";
|
|
2068
|
+
constructor(
|
|
2069
|
+
opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>
|
|
2070
|
+
);
|
|
2071
|
+
}
|
|
1980
2072
|
export interface DeleteRedshiftIdcApplicationMessage {
|
|
1981
2073
|
RedshiftIdcApplicationArn: string | undefined;
|
|
1982
2074
|
}
|
|
@@ -2074,77 +2166,6 @@ export interface DescribeClustersMessage {
|
|
|
2074
2166
|
TagKeys?: string[];
|
|
2075
2167
|
TagValues?: string[];
|
|
2076
2168
|
}
|
|
2077
|
-
export interface DescribeClusterSecurityGroupsMessage {
|
|
2078
|
-
ClusterSecurityGroupName?: string;
|
|
2079
|
-
MaxRecords?: number;
|
|
2080
|
-
Marker?: string;
|
|
2081
|
-
TagKeys?: string[];
|
|
2082
|
-
TagValues?: string[];
|
|
2083
|
-
}
|
|
2084
|
-
export declare const SnapshotAttributeToSortBy: {
|
|
2085
|
-
readonly CREATE_TIME: "CREATE_TIME";
|
|
2086
|
-
readonly SOURCE_TYPE: "SOURCE_TYPE";
|
|
2087
|
-
readonly TOTAL_SIZE: "TOTAL_SIZE";
|
|
2088
|
-
};
|
|
2089
|
-
export type SnapshotAttributeToSortBy =
|
|
2090
|
-
(typeof SnapshotAttributeToSortBy)[keyof typeof SnapshotAttributeToSortBy];
|
|
2091
|
-
export declare const SortByOrder: {
|
|
2092
|
-
readonly ASCENDING: "ASC";
|
|
2093
|
-
readonly DESCENDING: "DESC";
|
|
2094
|
-
};
|
|
2095
|
-
export type SortByOrder = (typeof SortByOrder)[keyof typeof SortByOrder];
|
|
2096
|
-
export interface SnapshotSortingEntity {
|
|
2097
|
-
Attribute: SnapshotAttributeToSortBy | undefined;
|
|
2098
|
-
SortOrder?: SortByOrder;
|
|
2099
|
-
}
|
|
2100
|
-
export interface DescribeClusterSnapshotsMessage {
|
|
2101
|
-
ClusterIdentifier?: string;
|
|
2102
|
-
SnapshotIdentifier?: string;
|
|
2103
|
-
SnapshotArn?: string;
|
|
2104
|
-
SnapshotType?: string;
|
|
2105
|
-
StartTime?: Date;
|
|
2106
|
-
EndTime?: Date;
|
|
2107
|
-
MaxRecords?: number;
|
|
2108
|
-
Marker?: string;
|
|
2109
|
-
OwnerAccount?: string;
|
|
2110
|
-
TagKeys?: string[];
|
|
2111
|
-
TagValues?: string[];
|
|
2112
|
-
ClusterExists?: boolean;
|
|
2113
|
-
SortingEntities?: SnapshotSortingEntity[];
|
|
2114
|
-
}
|
|
2115
|
-
export interface SnapshotMessage {
|
|
2116
|
-
Marker?: string;
|
|
2117
|
-
Snapshots?: Snapshot[];
|
|
2118
|
-
}
|
|
2119
|
-
export interface DescribeClusterSubnetGroupsMessage {
|
|
2120
|
-
ClusterSubnetGroupName?: string;
|
|
2121
|
-
MaxRecords?: number;
|
|
2122
|
-
Marker?: string;
|
|
2123
|
-
TagKeys?: string[];
|
|
2124
|
-
TagValues?: string[];
|
|
2125
|
-
}
|
|
2126
|
-
export interface DescribeClusterTracksMessage {
|
|
2127
|
-
MaintenanceTrackName?: string;
|
|
2128
|
-
MaxRecords?: number;
|
|
2129
|
-
Marker?: string;
|
|
2130
|
-
}
|
|
2131
|
-
export interface SupportedOperation {
|
|
2132
|
-
OperationName?: string;
|
|
2133
|
-
}
|
|
2134
|
-
export interface UpdateTarget {
|
|
2135
|
-
MaintenanceTrackName?: string;
|
|
2136
|
-
DatabaseVersion?: string;
|
|
2137
|
-
SupportedOperations?: SupportedOperation[];
|
|
2138
|
-
}
|
|
2139
|
-
export interface MaintenanceTrack {
|
|
2140
|
-
MaintenanceTrackName?: string;
|
|
2141
|
-
DatabaseVersion?: string;
|
|
2142
|
-
UpdateTargets?: UpdateTarget[];
|
|
2143
|
-
}
|
|
2144
|
-
export interface TrackListMessage {
|
|
2145
|
-
MaintenanceTracks?: MaintenanceTrack[];
|
|
2146
|
-
Marker?: string;
|
|
2147
|
-
}
|
|
2148
2169
|
export declare const PendingModifiedValuesFilterSensitiveLog: (
|
|
2149
2170
|
obj: PendingModifiedValues
|
|
2150
2171
|
) => any;
|
|
@@ -17,6 +17,8 @@ import {
|
|
|
17
17
|
EventSubscription,
|
|
18
18
|
HsmClientCertificate,
|
|
19
19
|
HsmConfiguration,
|
|
20
|
+
Integration,
|
|
21
|
+
IntegrationError,
|
|
20
22
|
Parameter,
|
|
21
23
|
RecurringCharge,
|
|
22
24
|
RedshiftIdcApplication,
|
|
@@ -33,8 +35,80 @@ import {
|
|
|
33
35
|
UsageLimit,
|
|
34
36
|
UsageLimitBreachAction,
|
|
35
37
|
UsageLimitFeatureType,
|
|
38
|
+
ZeroETLIntegrationStatus,
|
|
36
39
|
} from "./models_0";
|
|
37
40
|
import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
|
|
41
|
+
export interface DescribeClusterSecurityGroupsMessage {
|
|
42
|
+
ClusterSecurityGroupName?: string;
|
|
43
|
+
MaxRecords?: number;
|
|
44
|
+
Marker?: string;
|
|
45
|
+
TagKeys?: string[];
|
|
46
|
+
TagValues?: string[];
|
|
47
|
+
}
|
|
48
|
+
export declare const SnapshotAttributeToSortBy: {
|
|
49
|
+
readonly CREATE_TIME: "CREATE_TIME";
|
|
50
|
+
readonly SOURCE_TYPE: "SOURCE_TYPE";
|
|
51
|
+
readonly TOTAL_SIZE: "TOTAL_SIZE";
|
|
52
|
+
};
|
|
53
|
+
export type SnapshotAttributeToSortBy =
|
|
54
|
+
(typeof SnapshotAttributeToSortBy)[keyof typeof SnapshotAttributeToSortBy];
|
|
55
|
+
export declare const SortByOrder: {
|
|
56
|
+
readonly ASCENDING: "ASC";
|
|
57
|
+
readonly DESCENDING: "DESC";
|
|
58
|
+
};
|
|
59
|
+
export type SortByOrder = (typeof SortByOrder)[keyof typeof SortByOrder];
|
|
60
|
+
export interface SnapshotSortingEntity {
|
|
61
|
+
Attribute: SnapshotAttributeToSortBy | undefined;
|
|
62
|
+
SortOrder?: SortByOrder;
|
|
63
|
+
}
|
|
64
|
+
export interface DescribeClusterSnapshotsMessage {
|
|
65
|
+
ClusterIdentifier?: string;
|
|
66
|
+
SnapshotIdentifier?: string;
|
|
67
|
+
SnapshotArn?: string;
|
|
68
|
+
SnapshotType?: string;
|
|
69
|
+
StartTime?: Date;
|
|
70
|
+
EndTime?: Date;
|
|
71
|
+
MaxRecords?: number;
|
|
72
|
+
Marker?: string;
|
|
73
|
+
OwnerAccount?: string;
|
|
74
|
+
TagKeys?: string[];
|
|
75
|
+
TagValues?: string[];
|
|
76
|
+
ClusterExists?: boolean;
|
|
77
|
+
SortingEntities?: SnapshotSortingEntity[];
|
|
78
|
+
}
|
|
79
|
+
export interface SnapshotMessage {
|
|
80
|
+
Marker?: string;
|
|
81
|
+
Snapshots?: Snapshot[];
|
|
82
|
+
}
|
|
83
|
+
export interface DescribeClusterSubnetGroupsMessage {
|
|
84
|
+
ClusterSubnetGroupName?: string;
|
|
85
|
+
MaxRecords?: number;
|
|
86
|
+
Marker?: string;
|
|
87
|
+
TagKeys?: string[];
|
|
88
|
+
TagValues?: string[];
|
|
89
|
+
}
|
|
90
|
+
export interface DescribeClusterTracksMessage {
|
|
91
|
+
MaintenanceTrackName?: string;
|
|
92
|
+
MaxRecords?: number;
|
|
93
|
+
Marker?: string;
|
|
94
|
+
}
|
|
95
|
+
export interface SupportedOperation {
|
|
96
|
+
OperationName?: string;
|
|
97
|
+
}
|
|
98
|
+
export interface UpdateTarget {
|
|
99
|
+
MaintenanceTrackName?: string;
|
|
100
|
+
DatabaseVersion?: string;
|
|
101
|
+
SupportedOperations?: SupportedOperation[];
|
|
102
|
+
}
|
|
103
|
+
export interface MaintenanceTrack {
|
|
104
|
+
MaintenanceTrackName?: string;
|
|
105
|
+
DatabaseVersion?: string;
|
|
106
|
+
UpdateTargets?: UpdateTarget[];
|
|
107
|
+
}
|
|
108
|
+
export interface TrackListMessage {
|
|
109
|
+
MaintenanceTracks?: MaintenanceTrack[];
|
|
110
|
+
Marker?: string;
|
|
111
|
+
}
|
|
38
112
|
export interface DescribeClusterVersionsMessage {
|
|
39
113
|
ClusterVersion?: string;
|
|
40
114
|
ClusterParameterGroupFamily?: string;
|
|
@@ -192,21 +266,6 @@ export interface DescribeInboundIntegrationsMessage {
|
|
|
192
266
|
MaxRecords?: number;
|
|
193
267
|
Marker?: string;
|
|
194
268
|
}
|
|
195
|
-
export interface IntegrationError {
|
|
196
|
-
ErrorCode: string | undefined;
|
|
197
|
-
ErrorMessage?: string;
|
|
198
|
-
}
|
|
199
|
-
export declare const ZeroETLIntegrationStatus: {
|
|
200
|
-
readonly ACTIVE: "active";
|
|
201
|
-
readonly CREATING: "creating";
|
|
202
|
-
readonly DELETING: "deleting";
|
|
203
|
-
readonly FAILED: "failed";
|
|
204
|
-
readonly MODIFYING: "modifying";
|
|
205
|
-
readonly NEEDS_ATTENTION: "needs_attention";
|
|
206
|
-
readonly SYNCING: "syncing";
|
|
207
|
-
};
|
|
208
|
-
export type ZeroETLIntegrationStatus =
|
|
209
|
-
(typeof ZeroETLIntegrationStatus)[keyof typeof ZeroETLIntegrationStatus];
|
|
210
269
|
export interface InboundIntegration {
|
|
211
270
|
IntegrationArn?: string;
|
|
212
271
|
SourceArn?: string;
|
|
@@ -219,12 +278,27 @@ export interface InboundIntegrationsMessage {
|
|
|
219
278
|
Marker?: string;
|
|
220
279
|
InboundIntegrations?: InboundIntegration[];
|
|
221
280
|
}
|
|
222
|
-
export declare
|
|
223
|
-
readonly
|
|
224
|
-
readonly
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
281
|
+
export declare const DescribeIntegrationsFilterName: {
|
|
282
|
+
readonly INTEGRATION_ARN: "integration-arn";
|
|
283
|
+
readonly SOURCE_ARN: "source-arn";
|
|
284
|
+
readonly SOURCE_TYPES: "source-types";
|
|
285
|
+
readonly STATUS: "status";
|
|
286
|
+
};
|
|
287
|
+
export type DescribeIntegrationsFilterName =
|
|
288
|
+
(typeof DescribeIntegrationsFilterName)[keyof typeof DescribeIntegrationsFilterName];
|
|
289
|
+
export interface DescribeIntegrationsFilter {
|
|
290
|
+
Name: DescribeIntegrationsFilterName | undefined;
|
|
291
|
+
Values: string[] | undefined;
|
|
292
|
+
}
|
|
293
|
+
export interface DescribeIntegrationsMessage {
|
|
294
|
+
IntegrationArn?: string;
|
|
295
|
+
MaxRecords?: number;
|
|
296
|
+
Marker?: string;
|
|
297
|
+
Filters?: DescribeIntegrationsFilter[];
|
|
298
|
+
}
|
|
299
|
+
export interface IntegrationsMessage {
|
|
300
|
+
Marker?: string;
|
|
301
|
+
Integrations?: Integration[];
|
|
228
302
|
}
|
|
229
303
|
export interface DescribeLoggingStatusMessage {
|
|
230
304
|
ClusterIdentifier: string | undefined;
|
|
@@ -909,6 +983,11 @@ export interface ModifyEventSubscriptionMessage {
|
|
|
909
983
|
export interface ModifyEventSubscriptionResult {
|
|
910
984
|
EventSubscription?: EventSubscription;
|
|
911
985
|
}
|
|
986
|
+
export interface ModifyIntegrationMessage {
|
|
987
|
+
IntegrationArn: string | undefined;
|
|
988
|
+
Description?: string;
|
|
989
|
+
IntegrationName?: string;
|
|
990
|
+
}
|
|
912
991
|
export interface ModifyRedshiftIdcApplicationMessage {
|
|
913
992
|
RedshiftIdcApplicationArn: string | undefined;
|
|
914
993
|
IdentityNamespace?: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeIntegrationsCommandInput,
|
|
4
|
+
DescribeIntegrationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeIntegrationsCommand";
|
|
6
|
+
import { RedshiftPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeIntegrations: (
|
|
8
|
+
config: RedshiftPaginationConfiguration,
|
|
9
|
+
input: DescribeIntegrationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeIntegrationsCommandOutput>;
|
|
@@ -20,6 +20,7 @@ export * from "./DescribeEventsPaginator";
|
|
|
20
20
|
export * from "./DescribeHsmClientCertificatesPaginator";
|
|
21
21
|
export * from "./DescribeHsmConfigurationsPaginator";
|
|
22
22
|
export * from "./DescribeInboundIntegrationsPaginator";
|
|
23
|
+
export * from "./DescribeIntegrationsPaginator";
|
|
23
24
|
export * from "./DescribeNodeConfigurationOptionsPaginator";
|
|
24
25
|
export * from "./DescribeOrderableClusterOptionsPaginator";
|
|
25
26
|
export * from "./DescribeRedshiftIdcApplicationsPaginator";
|
|
@@ -91,6 +91,10 @@ import {
|
|
|
91
91
|
CreateHsmConfigurationCommandInput,
|
|
92
92
|
CreateHsmConfigurationCommandOutput,
|
|
93
93
|
} from "../commands/CreateHsmConfigurationCommand";
|
|
94
|
+
import {
|
|
95
|
+
CreateIntegrationCommandInput,
|
|
96
|
+
CreateIntegrationCommandOutput,
|
|
97
|
+
} from "../commands/CreateIntegrationCommand";
|
|
94
98
|
import {
|
|
95
99
|
CreateRedshiftIdcApplicationCommandInput,
|
|
96
100
|
CreateRedshiftIdcApplicationCommandOutput,
|
|
@@ -163,6 +167,10 @@ import {
|
|
|
163
167
|
DeleteHsmConfigurationCommandInput,
|
|
164
168
|
DeleteHsmConfigurationCommandOutput,
|
|
165
169
|
} from "../commands/DeleteHsmConfigurationCommand";
|
|
170
|
+
import {
|
|
171
|
+
DeleteIntegrationCommandInput,
|
|
172
|
+
DeleteIntegrationCommandOutput,
|
|
173
|
+
} from "../commands/DeleteIntegrationCommand";
|
|
166
174
|
import {
|
|
167
175
|
DeletePartnerCommandInput,
|
|
168
176
|
DeletePartnerCommandOutput,
|
|
@@ -291,6 +299,10 @@ import {
|
|
|
291
299
|
DescribeInboundIntegrationsCommandInput,
|
|
292
300
|
DescribeInboundIntegrationsCommandOutput,
|
|
293
301
|
} from "../commands/DescribeInboundIntegrationsCommand";
|
|
302
|
+
import {
|
|
303
|
+
DescribeIntegrationsCommandInput,
|
|
304
|
+
DescribeIntegrationsCommandOutput,
|
|
305
|
+
} from "../commands/DescribeIntegrationsCommand";
|
|
294
306
|
import {
|
|
295
307
|
DescribeLoggingStatusCommandInput,
|
|
296
308
|
DescribeLoggingStatusCommandOutput,
|
|
@@ -455,6 +467,10 @@ import {
|
|
|
455
467
|
ModifyEventSubscriptionCommandInput,
|
|
456
468
|
ModifyEventSubscriptionCommandOutput,
|
|
457
469
|
} from "../commands/ModifyEventSubscriptionCommand";
|
|
470
|
+
import {
|
|
471
|
+
ModifyIntegrationCommandInput,
|
|
472
|
+
ModifyIntegrationCommandOutput,
|
|
473
|
+
} from "../commands/ModifyIntegrationCommand";
|
|
458
474
|
import {
|
|
459
475
|
ModifyRedshiftIdcApplicationCommandInput,
|
|
460
476
|
ModifyRedshiftIdcApplicationCommandOutput,
|
|
@@ -623,6 +639,10 @@ export declare const se_CreateHsmConfigurationCommand: (
|
|
|
623
639
|
input: CreateHsmConfigurationCommandInput,
|
|
624
640
|
context: __SerdeContext
|
|
625
641
|
) => Promise<__HttpRequest>;
|
|
642
|
+
export declare const se_CreateIntegrationCommand: (
|
|
643
|
+
input: CreateIntegrationCommandInput,
|
|
644
|
+
context: __SerdeContext
|
|
645
|
+
) => Promise<__HttpRequest>;
|
|
626
646
|
export declare const se_CreateRedshiftIdcApplicationCommand: (
|
|
627
647
|
input: CreateRedshiftIdcApplicationCommandInput,
|
|
628
648
|
context: __SerdeContext
|
|
@@ -695,6 +715,10 @@ export declare const se_DeleteHsmConfigurationCommand: (
|
|
|
695
715
|
input: DeleteHsmConfigurationCommandInput,
|
|
696
716
|
context: __SerdeContext
|
|
697
717
|
) => Promise<__HttpRequest>;
|
|
718
|
+
export declare const se_DeleteIntegrationCommand: (
|
|
719
|
+
input: DeleteIntegrationCommandInput,
|
|
720
|
+
context: __SerdeContext
|
|
721
|
+
) => Promise<__HttpRequest>;
|
|
698
722
|
export declare const se_DeletePartnerCommand: (
|
|
699
723
|
input: DeletePartnerCommandInput,
|
|
700
724
|
context: __SerdeContext
|
|
@@ -823,6 +847,10 @@ export declare const se_DescribeInboundIntegrationsCommand: (
|
|
|
823
847
|
input: DescribeInboundIntegrationsCommandInput,
|
|
824
848
|
context: __SerdeContext
|
|
825
849
|
) => Promise<__HttpRequest>;
|
|
850
|
+
export declare const se_DescribeIntegrationsCommand: (
|
|
851
|
+
input: DescribeIntegrationsCommandInput,
|
|
852
|
+
context: __SerdeContext
|
|
853
|
+
) => Promise<__HttpRequest>;
|
|
826
854
|
export declare const se_DescribeLoggingStatusCommand: (
|
|
827
855
|
input: DescribeLoggingStatusCommandInput,
|
|
828
856
|
context: __SerdeContext
|
|
@@ -987,6 +1015,10 @@ export declare const se_ModifyEventSubscriptionCommand: (
|
|
|
987
1015
|
input: ModifyEventSubscriptionCommandInput,
|
|
988
1016
|
context: __SerdeContext
|
|
989
1017
|
) => Promise<__HttpRequest>;
|
|
1018
|
+
export declare const se_ModifyIntegrationCommand: (
|
|
1019
|
+
input: ModifyIntegrationCommandInput,
|
|
1020
|
+
context: __SerdeContext
|
|
1021
|
+
) => Promise<__HttpRequest>;
|
|
990
1022
|
export declare const se_ModifyRedshiftIdcApplicationCommand: (
|
|
991
1023
|
input: ModifyRedshiftIdcApplicationCommandInput,
|
|
992
1024
|
context: __SerdeContext
|
|
@@ -1155,6 +1187,10 @@ export declare const de_CreateHsmConfigurationCommand: (
|
|
|
1155
1187
|
output: __HttpResponse,
|
|
1156
1188
|
context: __SerdeContext
|
|
1157
1189
|
) => Promise<CreateHsmConfigurationCommandOutput>;
|
|
1190
|
+
export declare const de_CreateIntegrationCommand: (
|
|
1191
|
+
output: __HttpResponse,
|
|
1192
|
+
context: __SerdeContext
|
|
1193
|
+
) => Promise<CreateIntegrationCommandOutput>;
|
|
1158
1194
|
export declare const de_CreateRedshiftIdcApplicationCommand: (
|
|
1159
1195
|
output: __HttpResponse,
|
|
1160
1196
|
context: __SerdeContext
|
|
@@ -1227,6 +1263,10 @@ export declare const de_DeleteHsmConfigurationCommand: (
|
|
|
1227
1263
|
output: __HttpResponse,
|
|
1228
1264
|
context: __SerdeContext
|
|
1229
1265
|
) => Promise<DeleteHsmConfigurationCommandOutput>;
|
|
1266
|
+
export declare const de_DeleteIntegrationCommand: (
|
|
1267
|
+
output: __HttpResponse,
|
|
1268
|
+
context: __SerdeContext
|
|
1269
|
+
) => Promise<DeleteIntegrationCommandOutput>;
|
|
1230
1270
|
export declare const de_DeletePartnerCommand: (
|
|
1231
1271
|
output: __HttpResponse,
|
|
1232
1272
|
context: __SerdeContext
|
|
@@ -1355,6 +1395,10 @@ export declare const de_DescribeInboundIntegrationsCommand: (
|
|
|
1355
1395
|
output: __HttpResponse,
|
|
1356
1396
|
context: __SerdeContext
|
|
1357
1397
|
) => Promise<DescribeInboundIntegrationsCommandOutput>;
|
|
1398
|
+
export declare const de_DescribeIntegrationsCommand: (
|
|
1399
|
+
output: __HttpResponse,
|
|
1400
|
+
context: __SerdeContext
|
|
1401
|
+
) => Promise<DescribeIntegrationsCommandOutput>;
|
|
1358
1402
|
export declare const de_DescribeLoggingStatusCommand: (
|
|
1359
1403
|
output: __HttpResponse,
|
|
1360
1404
|
context: __SerdeContext
|
|
@@ -1519,6 +1563,10 @@ export declare const de_ModifyEventSubscriptionCommand: (
|
|
|
1519
1563
|
output: __HttpResponse,
|
|
1520
1564
|
context: __SerdeContext
|
|
1521
1565
|
) => Promise<ModifyEventSubscriptionCommandOutput>;
|
|
1566
|
+
export declare const de_ModifyIntegrationCommand: (
|
|
1567
|
+
output: __HttpResponse,
|
|
1568
|
+
context: __SerdeContext
|
|
1569
|
+
) => Promise<ModifyIntegrationCommandOutput>;
|
|
1522
1570
|
export declare const de_ModifyRedshiftIdcApplicationCommand: (
|
|
1523
1571
|
output: __HttpResponse,
|
|
1524
1572
|
context: __SerdeContext
|
|
@@ -10,7 +10,9 @@ export declare const getRuntimeConfig: (config: RedshiftClientConfig) => {
|
|
|
10
10
|
input: any
|
|
11
11
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
12
|
defaultUserAgentProvider: (
|
|
13
|
-
config
|
|
13
|
+
config?:
|
|
14
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
15
|
+
| undefined
|
|
14
16
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
17
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
18
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -23,7 +23,9 @@ export declare const getRuntimeConfig: (config: RedshiftClientConfig) => {
|
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
25
|
defaultUserAgentProvider: (
|
|
26
|
-
config
|
|
26
|
+
config?:
|
|
27
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
28
|
+
| undefined
|
|
27
29
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
28
30
|
credentialDefaultProvider: (
|
|
29
31
|
input: 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.675.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-redshift",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.675.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.675.0",
|
|
25
25
|
"@aws-sdk/core": "3.667.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.675.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.667.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.667.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.667.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.667.0",
|
|
32
32
|
"@aws-sdk/types": "3.667.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.667.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.675.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.669.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.8",
|