@aws-sdk/client-redshift 3.670.0 → 3.672.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/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/package.json +1 -1
|
@@ -22,6 +22,7 @@ import { CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput } f
|
|
|
22
22
|
import { CreateEventSubscriptionCommandInput, CreateEventSubscriptionCommandOutput } from "../commands/CreateEventSubscriptionCommand";
|
|
23
23
|
import { CreateHsmClientCertificateCommandInput, CreateHsmClientCertificateCommandOutput } from "../commands/CreateHsmClientCertificateCommand";
|
|
24
24
|
import { CreateHsmConfigurationCommandInput, CreateHsmConfigurationCommandOutput } from "../commands/CreateHsmConfigurationCommand";
|
|
25
|
+
import { CreateIntegrationCommandInput, CreateIntegrationCommandOutput } from "../commands/CreateIntegrationCommand";
|
|
25
26
|
import { CreateRedshiftIdcApplicationCommandInput, CreateRedshiftIdcApplicationCommandOutput } from "../commands/CreateRedshiftIdcApplicationCommand";
|
|
26
27
|
import { CreateScheduledActionCommandInput, CreateScheduledActionCommandOutput } from "../commands/CreateScheduledActionCommand";
|
|
27
28
|
import { CreateSnapshotCopyGrantCommandInput, CreateSnapshotCopyGrantCommandOutput } from "../commands/CreateSnapshotCopyGrantCommand";
|
|
@@ -40,6 +41,7 @@ import { DeleteEndpointAccessCommandInput, DeleteEndpointAccessCommandOutput } f
|
|
|
40
41
|
import { DeleteEventSubscriptionCommandInput, DeleteEventSubscriptionCommandOutput } from "../commands/DeleteEventSubscriptionCommand";
|
|
41
42
|
import { DeleteHsmClientCertificateCommandInput, DeleteHsmClientCertificateCommandOutput } from "../commands/DeleteHsmClientCertificateCommand";
|
|
42
43
|
import { DeleteHsmConfigurationCommandInput, DeleteHsmConfigurationCommandOutput } from "../commands/DeleteHsmConfigurationCommand";
|
|
44
|
+
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "../commands/DeleteIntegrationCommand";
|
|
43
45
|
import { DeletePartnerCommandInput, DeletePartnerCommandOutput } from "../commands/DeletePartnerCommand";
|
|
44
46
|
import { DeleteRedshiftIdcApplicationCommandInput, DeleteRedshiftIdcApplicationCommandOutput } from "../commands/DeleteRedshiftIdcApplicationCommand";
|
|
45
47
|
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
|
|
@@ -72,6 +74,7 @@ import { DescribeEventSubscriptionsCommandInput, DescribeEventSubscriptionsComma
|
|
|
72
74
|
import { DescribeHsmClientCertificatesCommandInput, DescribeHsmClientCertificatesCommandOutput } from "../commands/DescribeHsmClientCertificatesCommand";
|
|
73
75
|
import { DescribeHsmConfigurationsCommandInput, DescribeHsmConfigurationsCommandOutput } from "../commands/DescribeHsmConfigurationsCommand";
|
|
74
76
|
import { DescribeInboundIntegrationsCommandInput, DescribeInboundIntegrationsCommandOutput } from "../commands/DescribeInboundIntegrationsCommand";
|
|
77
|
+
import { DescribeIntegrationsCommandInput, DescribeIntegrationsCommandOutput } from "../commands/DescribeIntegrationsCommand";
|
|
75
78
|
import { DescribeLoggingStatusCommandInput, DescribeLoggingStatusCommandOutput } from "../commands/DescribeLoggingStatusCommand";
|
|
76
79
|
import { DescribeNodeConfigurationOptionsCommandInput, DescribeNodeConfigurationOptionsCommandOutput } from "../commands/DescribeNodeConfigurationOptionsCommand";
|
|
77
80
|
import { DescribeOrderableClusterOptionsCommandInput, DescribeOrderableClusterOptionsCommandOutput } from "../commands/DescribeOrderableClusterOptionsCommand";
|
|
@@ -113,6 +116,7 @@ import { ModifyClusterSubnetGroupCommandInput, ModifyClusterSubnetGroupCommandOu
|
|
|
113
116
|
import { ModifyCustomDomainAssociationCommandInput, ModifyCustomDomainAssociationCommandOutput } from "../commands/ModifyCustomDomainAssociationCommand";
|
|
114
117
|
import { ModifyEndpointAccessCommandInput, ModifyEndpointAccessCommandOutput } from "../commands/ModifyEndpointAccessCommand";
|
|
115
118
|
import { ModifyEventSubscriptionCommandInput, ModifyEventSubscriptionCommandOutput } from "../commands/ModifyEventSubscriptionCommand";
|
|
119
|
+
import { ModifyIntegrationCommandInput, ModifyIntegrationCommandOutput } from "../commands/ModifyIntegrationCommand";
|
|
116
120
|
import { ModifyRedshiftIdcApplicationCommandInput, ModifyRedshiftIdcApplicationCommandOutput } from "../commands/ModifyRedshiftIdcApplicationCommand";
|
|
117
121
|
import { ModifyScheduledActionCommandInput, ModifyScheduledActionCommandOutput } from "../commands/ModifyScheduledActionCommand";
|
|
118
122
|
import { ModifySnapshotCopyRetentionPeriodCommandInput, ModifySnapshotCopyRetentionPeriodCommandOutput } from "../commands/ModifySnapshotCopyRetentionPeriodCommand";
|
|
@@ -221,6 +225,10 @@ export declare const se_CreateHsmClientCertificateCommand: (input: CreateHsmClie
|
|
|
221
225
|
* serializeAws_queryCreateHsmConfigurationCommand
|
|
222
226
|
*/
|
|
223
227
|
export declare const se_CreateHsmConfigurationCommand: (input: CreateHsmConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
228
|
+
/**
|
|
229
|
+
* serializeAws_queryCreateIntegrationCommand
|
|
230
|
+
*/
|
|
231
|
+
export declare const se_CreateIntegrationCommand: (input: CreateIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
224
232
|
/**
|
|
225
233
|
* serializeAws_queryCreateRedshiftIdcApplicationCommand
|
|
226
234
|
*/
|
|
@@ -293,6 +301,10 @@ export declare const se_DeleteHsmClientCertificateCommand: (input: DeleteHsmClie
|
|
|
293
301
|
* serializeAws_queryDeleteHsmConfigurationCommand
|
|
294
302
|
*/
|
|
295
303
|
export declare const se_DeleteHsmConfigurationCommand: (input: DeleteHsmConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
304
|
+
/**
|
|
305
|
+
* serializeAws_queryDeleteIntegrationCommand
|
|
306
|
+
*/
|
|
307
|
+
export declare const se_DeleteIntegrationCommand: (input: DeleteIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
296
308
|
/**
|
|
297
309
|
* serializeAws_queryDeletePartnerCommand
|
|
298
310
|
*/
|
|
@@ -421,6 +433,10 @@ export declare const se_DescribeHsmConfigurationsCommand: (input: DescribeHsmCon
|
|
|
421
433
|
* serializeAws_queryDescribeInboundIntegrationsCommand
|
|
422
434
|
*/
|
|
423
435
|
export declare const se_DescribeInboundIntegrationsCommand: (input: DescribeInboundIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
436
|
+
/**
|
|
437
|
+
* serializeAws_queryDescribeIntegrationsCommand
|
|
438
|
+
*/
|
|
439
|
+
export declare const se_DescribeIntegrationsCommand: (input: DescribeIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
424
440
|
/**
|
|
425
441
|
* serializeAws_queryDescribeLoggingStatusCommand
|
|
426
442
|
*/
|
|
@@ -585,6 +601,10 @@ export declare const se_ModifyEndpointAccessCommand: (input: ModifyEndpointAcces
|
|
|
585
601
|
* serializeAws_queryModifyEventSubscriptionCommand
|
|
586
602
|
*/
|
|
587
603
|
export declare const se_ModifyEventSubscriptionCommand: (input: ModifyEventSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
604
|
+
/**
|
|
605
|
+
* serializeAws_queryModifyIntegrationCommand
|
|
606
|
+
*/
|
|
607
|
+
export declare const se_ModifyIntegrationCommand: (input: ModifyIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
588
608
|
/**
|
|
589
609
|
* serializeAws_queryModifyRedshiftIdcApplicationCommand
|
|
590
610
|
*/
|
|
@@ -753,6 +773,10 @@ export declare const de_CreateHsmClientCertificateCommand: (output: __HttpRespon
|
|
|
753
773
|
* deserializeAws_queryCreateHsmConfigurationCommand
|
|
754
774
|
*/
|
|
755
775
|
export declare const de_CreateHsmConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHsmConfigurationCommandOutput>;
|
|
776
|
+
/**
|
|
777
|
+
* deserializeAws_queryCreateIntegrationCommand
|
|
778
|
+
*/
|
|
779
|
+
export declare const de_CreateIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIntegrationCommandOutput>;
|
|
756
780
|
/**
|
|
757
781
|
* deserializeAws_queryCreateRedshiftIdcApplicationCommand
|
|
758
782
|
*/
|
|
@@ -825,6 +849,10 @@ export declare const de_DeleteHsmClientCertificateCommand: (output: __HttpRespon
|
|
|
825
849
|
* deserializeAws_queryDeleteHsmConfigurationCommand
|
|
826
850
|
*/
|
|
827
851
|
export declare const de_DeleteHsmConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHsmConfigurationCommandOutput>;
|
|
852
|
+
/**
|
|
853
|
+
* deserializeAws_queryDeleteIntegrationCommand
|
|
854
|
+
*/
|
|
855
|
+
export declare const de_DeleteIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIntegrationCommandOutput>;
|
|
828
856
|
/**
|
|
829
857
|
* deserializeAws_queryDeletePartnerCommand
|
|
830
858
|
*/
|
|
@@ -953,6 +981,10 @@ export declare const de_DescribeHsmConfigurationsCommand: (output: __HttpRespons
|
|
|
953
981
|
* deserializeAws_queryDescribeInboundIntegrationsCommand
|
|
954
982
|
*/
|
|
955
983
|
export declare const de_DescribeInboundIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeInboundIntegrationsCommandOutput>;
|
|
984
|
+
/**
|
|
985
|
+
* deserializeAws_queryDescribeIntegrationsCommand
|
|
986
|
+
*/
|
|
987
|
+
export declare const de_DescribeIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeIntegrationsCommandOutput>;
|
|
956
988
|
/**
|
|
957
989
|
* deserializeAws_queryDescribeLoggingStatusCommand
|
|
958
990
|
*/
|
|
@@ -1117,6 +1149,10 @@ export declare const de_ModifyEndpointAccessCommand: (output: __HttpResponse, co
|
|
|
1117
1149
|
* deserializeAws_queryModifyEventSubscriptionCommand
|
|
1118
1150
|
*/
|
|
1119
1151
|
export declare const de_ModifyEventSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyEventSubscriptionCommandOutput>;
|
|
1152
|
+
/**
|
|
1153
|
+
* deserializeAws_queryModifyIntegrationCommand
|
|
1154
|
+
*/
|
|
1155
|
+
export declare const de_ModifyIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyIntegrationCommandOutput>;
|
|
1120
1156
|
/**
|
|
1121
1157
|
* deserializeAws_queryModifyRedshiftIdcApplicationCommand
|
|
1122
1158
|
*/
|
|
@@ -87,6 +87,10 @@ import {
|
|
|
87
87
|
CreateHsmConfigurationCommandInput,
|
|
88
88
|
CreateHsmConfigurationCommandOutput,
|
|
89
89
|
} from "./commands/CreateHsmConfigurationCommand";
|
|
90
|
+
import {
|
|
91
|
+
CreateIntegrationCommandInput,
|
|
92
|
+
CreateIntegrationCommandOutput,
|
|
93
|
+
} from "./commands/CreateIntegrationCommand";
|
|
90
94
|
import {
|
|
91
95
|
CreateRedshiftIdcApplicationCommandInput,
|
|
92
96
|
CreateRedshiftIdcApplicationCommandOutput,
|
|
@@ -159,6 +163,10 @@ import {
|
|
|
159
163
|
DeleteHsmConfigurationCommandInput,
|
|
160
164
|
DeleteHsmConfigurationCommandOutput,
|
|
161
165
|
} from "./commands/DeleteHsmConfigurationCommand";
|
|
166
|
+
import {
|
|
167
|
+
DeleteIntegrationCommandInput,
|
|
168
|
+
DeleteIntegrationCommandOutput,
|
|
169
|
+
} from "./commands/DeleteIntegrationCommand";
|
|
162
170
|
import {
|
|
163
171
|
DeletePartnerCommandInput,
|
|
164
172
|
DeletePartnerCommandOutput,
|
|
@@ -287,6 +295,10 @@ import {
|
|
|
287
295
|
DescribeInboundIntegrationsCommandInput,
|
|
288
296
|
DescribeInboundIntegrationsCommandOutput,
|
|
289
297
|
} from "./commands/DescribeInboundIntegrationsCommand";
|
|
298
|
+
import {
|
|
299
|
+
DescribeIntegrationsCommandInput,
|
|
300
|
+
DescribeIntegrationsCommandOutput,
|
|
301
|
+
} from "./commands/DescribeIntegrationsCommand";
|
|
290
302
|
import {
|
|
291
303
|
DescribeLoggingStatusCommandInput,
|
|
292
304
|
DescribeLoggingStatusCommandOutput,
|
|
@@ -451,6 +463,10 @@ import {
|
|
|
451
463
|
ModifyEventSubscriptionCommandInput,
|
|
452
464
|
ModifyEventSubscriptionCommandOutput,
|
|
453
465
|
} from "./commands/ModifyEventSubscriptionCommand";
|
|
466
|
+
import {
|
|
467
|
+
ModifyIntegrationCommandInput,
|
|
468
|
+
ModifyIntegrationCommandOutput,
|
|
469
|
+
} from "./commands/ModifyIntegrationCommand";
|
|
454
470
|
import {
|
|
455
471
|
ModifyRedshiftIdcApplicationCommandInput,
|
|
456
472
|
ModifyRedshiftIdcApplicationCommandOutput,
|
|
@@ -825,6 +841,19 @@ export interface Redshift {
|
|
|
825
841
|
options: __HttpHandlerOptions,
|
|
826
842
|
cb: (err: any, data?: CreateHsmConfigurationCommandOutput) => void
|
|
827
843
|
): void;
|
|
844
|
+
createIntegration(
|
|
845
|
+
args: CreateIntegrationCommandInput,
|
|
846
|
+
options?: __HttpHandlerOptions
|
|
847
|
+
): Promise<CreateIntegrationCommandOutput>;
|
|
848
|
+
createIntegration(
|
|
849
|
+
args: CreateIntegrationCommandInput,
|
|
850
|
+
cb: (err: any, data?: CreateIntegrationCommandOutput) => void
|
|
851
|
+
): void;
|
|
852
|
+
createIntegration(
|
|
853
|
+
args: CreateIntegrationCommandInput,
|
|
854
|
+
options: __HttpHandlerOptions,
|
|
855
|
+
cb: (err: any, data?: CreateIntegrationCommandOutput) => void
|
|
856
|
+
): void;
|
|
828
857
|
createRedshiftIdcApplication(
|
|
829
858
|
args: CreateRedshiftIdcApplicationCommandInput,
|
|
830
859
|
options?: __HttpHandlerOptions
|
|
@@ -1060,6 +1089,19 @@ export interface Redshift {
|
|
|
1060
1089
|
options: __HttpHandlerOptions,
|
|
1061
1090
|
cb: (err: any, data?: DeleteHsmConfigurationCommandOutput) => void
|
|
1062
1091
|
): void;
|
|
1092
|
+
deleteIntegration(
|
|
1093
|
+
args: DeleteIntegrationCommandInput,
|
|
1094
|
+
options?: __HttpHandlerOptions
|
|
1095
|
+
): Promise<DeleteIntegrationCommandOutput>;
|
|
1096
|
+
deleteIntegration(
|
|
1097
|
+
args: DeleteIntegrationCommandInput,
|
|
1098
|
+
cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
|
|
1099
|
+
): void;
|
|
1100
|
+
deleteIntegration(
|
|
1101
|
+
args: DeleteIntegrationCommandInput,
|
|
1102
|
+
options: __HttpHandlerOptions,
|
|
1103
|
+
cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
|
|
1104
|
+
): void;
|
|
1063
1105
|
deletePartner(
|
|
1064
1106
|
args: DeletePartnerCommandInput,
|
|
1065
1107
|
options?: __HttpHandlerOptions
|
|
@@ -1498,6 +1540,20 @@ export interface Redshift {
|
|
|
1498
1540
|
options: __HttpHandlerOptions,
|
|
1499
1541
|
cb: (err: any, data?: DescribeInboundIntegrationsCommandOutput) => void
|
|
1500
1542
|
): void;
|
|
1543
|
+
describeIntegrations(): Promise<DescribeIntegrationsCommandOutput>;
|
|
1544
|
+
describeIntegrations(
|
|
1545
|
+
args: DescribeIntegrationsCommandInput,
|
|
1546
|
+
options?: __HttpHandlerOptions
|
|
1547
|
+
): Promise<DescribeIntegrationsCommandOutput>;
|
|
1548
|
+
describeIntegrations(
|
|
1549
|
+
args: DescribeIntegrationsCommandInput,
|
|
1550
|
+
cb: (err: any, data?: DescribeIntegrationsCommandOutput) => void
|
|
1551
|
+
): void;
|
|
1552
|
+
describeIntegrations(
|
|
1553
|
+
args: DescribeIntegrationsCommandInput,
|
|
1554
|
+
options: __HttpHandlerOptions,
|
|
1555
|
+
cb: (err: any, data?: DescribeIntegrationsCommandOutput) => void
|
|
1556
|
+
): void;
|
|
1501
1557
|
describeLoggingStatus(
|
|
1502
1558
|
args: DescribeLoggingStatusCommandInput,
|
|
1503
1559
|
options?: __HttpHandlerOptions
|
|
@@ -2057,6 +2113,19 @@ export interface Redshift {
|
|
|
2057
2113
|
options: __HttpHandlerOptions,
|
|
2058
2114
|
cb: (err: any, data?: ModifyEventSubscriptionCommandOutput) => void
|
|
2059
2115
|
): void;
|
|
2116
|
+
modifyIntegration(
|
|
2117
|
+
args: ModifyIntegrationCommandInput,
|
|
2118
|
+
options?: __HttpHandlerOptions
|
|
2119
|
+
): Promise<ModifyIntegrationCommandOutput>;
|
|
2120
|
+
modifyIntegration(
|
|
2121
|
+
args: ModifyIntegrationCommandInput,
|
|
2122
|
+
cb: (err: any, data?: ModifyIntegrationCommandOutput) => void
|
|
2123
|
+
): void;
|
|
2124
|
+
modifyIntegration(
|
|
2125
|
+
args: ModifyIntegrationCommandInput,
|
|
2126
|
+
options: __HttpHandlerOptions,
|
|
2127
|
+
cb: (err: any, data?: ModifyIntegrationCommandOutput) => void
|
|
2128
|
+
): void;
|
|
2060
2129
|
modifyRedshiftIdcApplication(
|
|
2061
2130
|
args: ModifyRedshiftIdcApplicationCommandInput,
|
|
2062
2131
|
options?: __HttpHandlerOptions
|
|
@@ -133,6 +133,10 @@ import {
|
|
|
133
133
|
CreateHsmConfigurationCommandInput,
|
|
134
134
|
CreateHsmConfigurationCommandOutput,
|
|
135
135
|
} from "./commands/CreateHsmConfigurationCommand";
|
|
136
|
+
import {
|
|
137
|
+
CreateIntegrationCommandInput,
|
|
138
|
+
CreateIntegrationCommandOutput,
|
|
139
|
+
} from "./commands/CreateIntegrationCommand";
|
|
136
140
|
import {
|
|
137
141
|
CreateRedshiftIdcApplicationCommandInput,
|
|
138
142
|
CreateRedshiftIdcApplicationCommandOutput,
|
|
@@ -205,6 +209,10 @@ import {
|
|
|
205
209
|
DeleteHsmConfigurationCommandInput,
|
|
206
210
|
DeleteHsmConfigurationCommandOutput,
|
|
207
211
|
} from "./commands/DeleteHsmConfigurationCommand";
|
|
212
|
+
import {
|
|
213
|
+
DeleteIntegrationCommandInput,
|
|
214
|
+
DeleteIntegrationCommandOutput,
|
|
215
|
+
} from "./commands/DeleteIntegrationCommand";
|
|
208
216
|
import {
|
|
209
217
|
DeletePartnerCommandInput,
|
|
210
218
|
DeletePartnerCommandOutput,
|
|
@@ -333,6 +341,10 @@ import {
|
|
|
333
341
|
DescribeInboundIntegrationsCommandInput,
|
|
334
342
|
DescribeInboundIntegrationsCommandOutput,
|
|
335
343
|
} from "./commands/DescribeInboundIntegrationsCommand";
|
|
344
|
+
import {
|
|
345
|
+
DescribeIntegrationsCommandInput,
|
|
346
|
+
DescribeIntegrationsCommandOutput,
|
|
347
|
+
} from "./commands/DescribeIntegrationsCommand";
|
|
336
348
|
import {
|
|
337
349
|
DescribeLoggingStatusCommandInput,
|
|
338
350
|
DescribeLoggingStatusCommandOutput,
|
|
@@ -497,6 +509,10 @@ import {
|
|
|
497
509
|
ModifyEventSubscriptionCommandInput,
|
|
498
510
|
ModifyEventSubscriptionCommandOutput,
|
|
499
511
|
} from "./commands/ModifyEventSubscriptionCommand";
|
|
512
|
+
import {
|
|
513
|
+
ModifyIntegrationCommandInput,
|
|
514
|
+
ModifyIntegrationCommandOutput,
|
|
515
|
+
} from "./commands/ModifyIntegrationCommand";
|
|
500
516
|
import {
|
|
501
517
|
ModifyRedshiftIdcApplicationCommandInput,
|
|
502
518
|
ModifyRedshiftIdcApplicationCommandOutput,
|
|
@@ -607,6 +623,7 @@ export type ServiceInputTypes =
|
|
|
607
623
|
| CreateEventSubscriptionCommandInput
|
|
608
624
|
| CreateHsmClientCertificateCommandInput
|
|
609
625
|
| CreateHsmConfigurationCommandInput
|
|
626
|
+
| CreateIntegrationCommandInput
|
|
610
627
|
| CreateRedshiftIdcApplicationCommandInput
|
|
611
628
|
| CreateScheduledActionCommandInput
|
|
612
629
|
| CreateSnapshotCopyGrantCommandInput
|
|
@@ -625,6 +642,7 @@ export type ServiceInputTypes =
|
|
|
625
642
|
| DeleteEventSubscriptionCommandInput
|
|
626
643
|
| DeleteHsmClientCertificateCommandInput
|
|
627
644
|
| DeleteHsmConfigurationCommandInput
|
|
645
|
+
| DeleteIntegrationCommandInput
|
|
628
646
|
| DeletePartnerCommandInput
|
|
629
647
|
| DeleteRedshiftIdcApplicationCommandInput
|
|
630
648
|
| DeleteResourcePolicyCommandInput
|
|
@@ -657,6 +675,7 @@ export type ServiceInputTypes =
|
|
|
657
675
|
| DescribeHsmClientCertificatesCommandInput
|
|
658
676
|
| DescribeHsmConfigurationsCommandInput
|
|
659
677
|
| DescribeInboundIntegrationsCommandInput
|
|
678
|
+
| DescribeIntegrationsCommandInput
|
|
660
679
|
| DescribeLoggingStatusCommandInput
|
|
661
680
|
| DescribeNodeConfigurationOptionsCommandInput
|
|
662
681
|
| DescribeOrderableClusterOptionsCommandInput
|
|
@@ -698,6 +717,7 @@ export type ServiceInputTypes =
|
|
|
698
717
|
| ModifyCustomDomainAssociationCommandInput
|
|
699
718
|
| ModifyEndpointAccessCommandInput
|
|
700
719
|
| ModifyEventSubscriptionCommandInput
|
|
720
|
+
| ModifyIntegrationCommandInput
|
|
701
721
|
| ModifyRedshiftIdcApplicationCommandInput
|
|
702
722
|
| ModifyScheduledActionCommandInput
|
|
703
723
|
| ModifySnapshotCopyRetentionPeriodCommandInput
|
|
@@ -741,6 +761,7 @@ export type ServiceOutputTypes =
|
|
|
741
761
|
| CreateEventSubscriptionCommandOutput
|
|
742
762
|
| CreateHsmClientCertificateCommandOutput
|
|
743
763
|
| CreateHsmConfigurationCommandOutput
|
|
764
|
+
| CreateIntegrationCommandOutput
|
|
744
765
|
| CreateRedshiftIdcApplicationCommandOutput
|
|
745
766
|
| CreateScheduledActionCommandOutput
|
|
746
767
|
| CreateSnapshotCopyGrantCommandOutput
|
|
@@ -759,6 +780,7 @@ export type ServiceOutputTypes =
|
|
|
759
780
|
| DeleteEventSubscriptionCommandOutput
|
|
760
781
|
| DeleteHsmClientCertificateCommandOutput
|
|
761
782
|
| DeleteHsmConfigurationCommandOutput
|
|
783
|
+
| DeleteIntegrationCommandOutput
|
|
762
784
|
| DeletePartnerCommandOutput
|
|
763
785
|
| DeleteRedshiftIdcApplicationCommandOutput
|
|
764
786
|
| DeleteResourcePolicyCommandOutput
|
|
@@ -791,6 +813,7 @@ export type ServiceOutputTypes =
|
|
|
791
813
|
| DescribeHsmClientCertificatesCommandOutput
|
|
792
814
|
| DescribeHsmConfigurationsCommandOutput
|
|
793
815
|
| DescribeInboundIntegrationsCommandOutput
|
|
816
|
+
| DescribeIntegrationsCommandOutput
|
|
794
817
|
| DescribeLoggingStatusCommandOutput
|
|
795
818
|
| DescribeNodeConfigurationOptionsCommandOutput
|
|
796
819
|
| DescribeOrderableClusterOptionsCommandOutput
|
|
@@ -832,6 +855,7 @@ export type ServiceOutputTypes =
|
|
|
832
855
|
| ModifyCustomDomainAssociationCommandOutput
|
|
833
856
|
| ModifyEndpointAccessCommandOutput
|
|
834
857
|
| ModifyEventSubscriptionCommandOutput
|
|
858
|
+
| ModifyIntegrationCommandOutput
|
|
835
859
|
| ModifyRedshiftIdcApplicationCommandOutput
|
|
836
860
|
| ModifyScheduledActionCommandOutput
|
|
837
861
|
| ModifySnapshotCopyRetentionPeriodCommandOutput
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateIntegrationMessage, Integration } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
RedshiftClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../RedshiftClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateIntegrationCommandInput
|
|
12
|
+
extends CreateIntegrationMessage {}
|
|
13
|
+
export interface CreateIntegrationCommandOutput
|
|
14
|
+
extends Integration,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const CreateIntegrationCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: CreateIntegrationCommandInput
|
|
19
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
20
|
+
CreateIntegrationCommandInput,
|
|
21
|
+
CreateIntegrationCommandOutput,
|
|
22
|
+
RedshiftClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
__0_0: CreateIntegrationCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
CreateIntegrationCommandInput,
|
|
30
|
+
CreateIntegrationCommandOutput,
|
|
31
|
+
RedshiftClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class CreateIntegrationCommand extends CreateIntegrationCommand_base {
|
|
38
|
+
protected static __types: {
|
|
39
|
+
api: {
|
|
40
|
+
input: CreateIntegrationMessage;
|
|
41
|
+
output: Integration;
|
|
42
|
+
};
|
|
43
|
+
sdk: {
|
|
44
|
+
input: CreateIntegrationCommandInput;
|
|
45
|
+
output: CreateIntegrationCommandOutput;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteIntegrationMessage, Integration } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
RedshiftClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../RedshiftClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteIntegrationCommandInput
|
|
12
|
+
extends DeleteIntegrationMessage {}
|
|
13
|
+
export interface DeleteIntegrationCommandOutput
|
|
14
|
+
extends Integration,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const DeleteIntegrationCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: DeleteIntegrationCommandInput
|
|
19
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
20
|
+
DeleteIntegrationCommandInput,
|
|
21
|
+
DeleteIntegrationCommandOutput,
|
|
22
|
+
RedshiftClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
__0_0: DeleteIntegrationCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
DeleteIntegrationCommandInput,
|
|
30
|
+
DeleteIntegrationCommandOutput,
|
|
31
|
+
RedshiftClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class DeleteIntegrationCommand extends DeleteIntegrationCommand_base {
|
|
38
|
+
protected static __types: {
|
|
39
|
+
api: {
|
|
40
|
+
input: DeleteIntegrationMessage;
|
|
41
|
+
output: Integration;
|
|
42
|
+
};
|
|
43
|
+
sdk: {
|
|
44
|
+
input: DeleteIntegrationCommandInput;
|
|
45
|
+
output: DeleteIntegrationCommandOutput;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
DescribeClusterSecurityGroupsMessage,
|
|
6
|
-
} from "../models/models_0";
|
|
3
|
+
import { ClusterSecurityGroupMessage } from "../models/models_0";
|
|
4
|
+
import { DescribeClusterSecurityGroupsMessage } from "../models/models_1";
|
|
7
5
|
import {
|
|
8
6
|
RedshiftClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
DescribeClusterSubnetGroupsMessage,
|
|
6
|
-
} from "../models/models_0";
|
|
3
|
+
import { ClusterSubnetGroupMessage } from "../models/models_0";
|
|
4
|
+
import { DescribeClusterSubnetGroupsMessage } from "../models/models_1";
|
|
7
5
|
import {
|
|
8
6
|
RedshiftClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeIntegrationsMessage,
|
|
5
|
+
IntegrationsMessage,
|
|
6
|
+
} from "../models/models_1";
|
|
7
|
+
import {
|
|
8
|
+
RedshiftClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../RedshiftClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeIntegrationsCommandInput
|
|
15
|
+
extends DescribeIntegrationsMessage {}
|
|
16
|
+
export interface DescribeIntegrationsCommandOutput
|
|
17
|
+
extends IntegrationsMessage,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeIntegrationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeIntegrationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeIntegrationsCommandInput,
|
|
24
|
+
DescribeIntegrationsCommandOutput,
|
|
25
|
+
RedshiftClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DescribeIntegrationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeIntegrationsCommandInput,
|
|
33
|
+
DescribeIntegrationsCommandOutput,
|
|
34
|
+
RedshiftClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeIntegrationsCommand extends DescribeIntegrationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeIntegrationsMessage;
|
|
44
|
+
output: IntegrationsMessage;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeIntegrationsCommandInput;
|
|
48
|
+
output: DescribeIntegrationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { Integration } from "../models/models_0";
|
|
4
|
+
import { ModifyIntegrationMessage } from "../models/models_1";
|
|
5
|
+
import {
|
|
6
|
+
RedshiftClientResolvedConfig,
|
|
7
|
+
ServiceInputTypes,
|
|
8
|
+
ServiceOutputTypes,
|
|
9
|
+
} from "../RedshiftClient";
|
|
10
|
+
export { __MetadataBearer };
|
|
11
|
+
export { $Command };
|
|
12
|
+
export interface ModifyIntegrationCommandInput
|
|
13
|
+
extends ModifyIntegrationMessage {}
|
|
14
|
+
export interface ModifyIntegrationCommandOutput
|
|
15
|
+
extends Integration,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const ModifyIntegrationCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ModifyIntegrationCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ModifyIntegrationCommandInput,
|
|
22
|
+
ModifyIntegrationCommandOutput,
|
|
23
|
+
RedshiftClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: ModifyIntegrationCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ModifyIntegrationCommandInput,
|
|
31
|
+
ModifyIntegrationCommandOutput,
|
|
32
|
+
RedshiftClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
37
|
+
};
|
|
38
|
+
export declare class ModifyIntegrationCommand extends ModifyIntegrationCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: ModifyIntegrationMessage;
|
|
42
|
+
output: Integration;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: ModifyIntegrationCommandInput;
|
|
46
|
+
output: ModifyIntegrationCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -20,6 +20,7 @@ export * from "./CreateEndpointAccessCommand";
|
|
|
20
20
|
export * from "./CreateEventSubscriptionCommand";
|
|
21
21
|
export * from "./CreateHsmClientCertificateCommand";
|
|
22
22
|
export * from "./CreateHsmConfigurationCommand";
|
|
23
|
+
export * from "./CreateIntegrationCommand";
|
|
23
24
|
export * from "./CreateRedshiftIdcApplicationCommand";
|
|
24
25
|
export * from "./CreateScheduledActionCommand";
|
|
25
26
|
export * from "./CreateSnapshotCopyGrantCommand";
|
|
@@ -38,6 +39,7 @@ export * from "./DeleteEndpointAccessCommand";
|
|
|
38
39
|
export * from "./DeleteEventSubscriptionCommand";
|
|
39
40
|
export * from "./DeleteHsmClientCertificateCommand";
|
|
40
41
|
export * from "./DeleteHsmConfigurationCommand";
|
|
42
|
+
export * from "./DeleteIntegrationCommand";
|
|
41
43
|
export * from "./DeletePartnerCommand";
|
|
42
44
|
export * from "./DeleteRedshiftIdcApplicationCommand";
|
|
43
45
|
export * from "./DeleteResourcePolicyCommand";
|
|
@@ -70,6 +72,7 @@ export * from "./DescribeEventsCommand";
|
|
|
70
72
|
export * from "./DescribeHsmClientCertificatesCommand";
|
|
71
73
|
export * from "./DescribeHsmConfigurationsCommand";
|
|
72
74
|
export * from "./DescribeInboundIntegrationsCommand";
|
|
75
|
+
export * from "./DescribeIntegrationsCommand";
|
|
73
76
|
export * from "./DescribeLoggingStatusCommand";
|
|
74
77
|
export * from "./DescribeNodeConfigurationOptionsCommand";
|
|
75
78
|
export * from "./DescribeOrderableClusterOptionsCommand";
|
|
@@ -111,6 +114,7 @@ export * from "./ModifyClusterSubnetGroupCommand";
|
|
|
111
114
|
export * from "./ModifyCustomDomainAssociationCommand";
|
|
112
115
|
export * from "./ModifyEndpointAccessCommand";
|
|
113
116
|
export * from "./ModifyEventSubscriptionCommand";
|
|
117
|
+
export * from "./ModifyIntegrationCommand";
|
|
114
118
|
export * from "./ModifyRedshiftIdcApplicationCommand";
|
|
115
119
|
export * from "./ModifyScheduledActionCommand";
|
|
116
120
|
export * from "./ModifySnapshotCopyRetentionPeriodCommand";
|