@aws-sdk/client-redshift 3.1091.0 → 3.1092.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 +28 -0
- package/dist-cjs/index.js +151 -1
- package/dist-es/Redshift.js +10 -0
- package/dist-es/commands/CreateQev2IdcApplicationCommand.js +4 -0
- package/dist-es/commands/DeleteQev2IdcApplicationCommand.js +4 -0
- package/dist-es/commands/DescribeQev2IdcApplicationsCommand.js +4 -0
- package/dist-es/commands/ModifyQev2IdcApplicationCommand.js +4 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/errors.js +24 -0
- package/dist-es/pagination/DescribeQev2IdcApplicationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +87 -1
- package/dist-types/Redshift.d.ts +36 -0
- package/dist-types/RedshiftClient.d.ts +6 -2
- package/dist-types/commands/CreateQev2IdcApplicationCommand.d.ts +105 -0
- package/dist-types/commands/DeleteQev2IdcApplicationCommand.d.ts +82 -0
- package/dist-types/commands/DescribeQev2IdcApplicationsCommand.d.ts +102 -0
- package/dist-types/commands/ModifyCustomDomainAssociationCommand.d.ts +1 -1
- package/dist-types/commands/ModifyEndpointAccessCommand.d.ts +2 -1
- package/dist-types/commands/ModifyEventSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/ModifyQev2IdcApplicationCommand.d.ts +98 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/errors.d.ts +24 -0
- package/dist-types/models/models_0.d.ts +133 -147
- package/dist-types/models/models_1.d.ts +173 -1
- package/dist-types/pagination/DescribeQev2IdcApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +14 -0
- package/dist-types/ts3.4/Redshift.d.ts +76 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateQev2IdcApplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteQev2IdcApplicationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeQev2IdcApplicationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ModifyCustomDomainAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyEndpointAccessCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ModifyEventSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ModifyQev2IdcApplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/errors.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -32
- package/dist-types/ts3.4/models/models_1.d.ts +41 -0
- package/dist-types/ts3.4/pagination/DescribeQev2IdcApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
- package/package.json +3 -3
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { Integration
|
|
2
|
+
import { Integration } from "../models/models_0";
|
|
3
|
+
import { ModifyIntegrationMessage } from "../models/models_1";
|
|
3
4
|
export { __MetadataBearer };
|
|
4
5
|
export interface ModifyIntegrationCommandInput extends ModifyIntegrationMessage {}
|
|
5
6
|
export interface ModifyIntegrationCommandOutput extends Integration, __MetadataBearer {}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ModifyQev2IdcApplicationMessage,
|
|
4
|
+
ModifyQev2IdcApplicationResult,
|
|
5
|
+
} from "../models/models_1";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ModifyQev2IdcApplicationCommandInput extends ModifyQev2IdcApplicationMessage {}
|
|
8
|
+
export interface ModifyQev2IdcApplicationCommandOutput
|
|
9
|
+
extends ModifyQev2IdcApplicationResult, __MetadataBearer {}
|
|
10
|
+
declare const ModifyQev2IdcApplicationCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ModifyQev2IdcApplicationCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ModifyQev2IdcApplicationCommandInput,
|
|
15
|
+
ModifyQev2IdcApplicationCommandOutput,
|
|
16
|
+
import("..").RedshiftClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: ModifyQev2IdcApplicationCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ModifyQev2IdcApplicationCommandInput,
|
|
24
|
+
ModifyQev2IdcApplicationCommandOutput,
|
|
25
|
+
import("..").RedshiftClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ModifyQev2IdcApplicationCommand extends ModifyQev2IdcApplicationCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ModifyQev2IdcApplicationMessage;
|
|
35
|
+
output: ModifyQev2IdcApplicationResult;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ModifyQev2IdcApplicationCommandInput;
|
|
39
|
+
output: ModifyQev2IdcApplicationCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -21,6 +21,7 @@ export * from "./CreateEventSubscriptionCommand";
|
|
|
21
21
|
export * from "./CreateHsmClientCertificateCommand";
|
|
22
22
|
export * from "./CreateHsmConfigurationCommand";
|
|
23
23
|
export * from "./CreateIntegrationCommand";
|
|
24
|
+
export * from "./CreateQev2IdcApplicationCommand";
|
|
24
25
|
export * from "./CreateRedshiftIdcApplicationCommand";
|
|
25
26
|
export * from "./CreateScheduledActionCommand";
|
|
26
27
|
export * from "./CreateSnapshotCopyGrantCommand";
|
|
@@ -41,6 +42,7 @@ export * from "./DeleteHsmClientCertificateCommand";
|
|
|
41
42
|
export * from "./DeleteHsmConfigurationCommand";
|
|
42
43
|
export * from "./DeleteIntegrationCommand";
|
|
43
44
|
export * from "./DeletePartnerCommand";
|
|
45
|
+
export * from "./DeleteQev2IdcApplicationCommand";
|
|
44
46
|
export * from "./DeleteRedshiftIdcApplicationCommand";
|
|
45
47
|
export * from "./DeleteResourcePolicyCommand";
|
|
46
48
|
export * from "./DeleteScheduledActionCommand";
|
|
@@ -78,6 +80,7 @@ export * from "./DescribeLoggingStatusCommand";
|
|
|
78
80
|
export * from "./DescribeNodeConfigurationOptionsCommand";
|
|
79
81
|
export * from "./DescribeOrderableClusterOptionsCommand";
|
|
80
82
|
export * from "./DescribePartnersCommand";
|
|
83
|
+
export * from "./DescribeQev2IdcApplicationsCommand";
|
|
81
84
|
export * from "./DescribeRedshiftIdcApplicationsCommand";
|
|
82
85
|
export * from "./DescribeReservedNodeExchangeStatusCommand";
|
|
83
86
|
export * from "./DescribeReservedNodeOfferingsCommand";
|
|
@@ -118,6 +121,7 @@ export * from "./ModifyEndpointAccessCommand";
|
|
|
118
121
|
export * from "./ModifyEventSubscriptionCommand";
|
|
119
122
|
export * from "./ModifyIntegrationCommand";
|
|
120
123
|
export * from "./ModifyLakehouseConfigurationCommand";
|
|
124
|
+
export * from "./ModifyQev2IdcApplicationCommand";
|
|
121
125
|
export * from "./ModifyRedshiftIdcApplicationCommand";
|
|
122
126
|
export * from "./ModifyScheduledActionCommand";
|
|
123
127
|
export * from "./ModifySnapshotCopyRetentionPeriodCommand";
|
|
@@ -478,6 +478,11 @@ export declare class IntegrationTargetNotFoundFault extends __BaseException {
|
|
|
478
478
|
readonly $fault: "client";
|
|
479
479
|
constructor(opts: __ExceptionOptionType<IntegrationTargetNotFoundFault, __BaseException>);
|
|
480
480
|
}
|
|
481
|
+
export declare class Qev2IdcApplicationAlreadyExistsFault extends __BaseException {
|
|
482
|
+
readonly name: "Qev2IdcApplicationAlreadyExistsFault";
|
|
483
|
+
readonly $fault: "client";
|
|
484
|
+
constructor(opts: __ExceptionOptionType<Qev2IdcApplicationAlreadyExistsFault, __BaseException>);
|
|
485
|
+
}
|
|
481
486
|
export declare class RedshiftIdcApplicationAlreadyExistsFault extends __BaseException {
|
|
482
487
|
readonly name: "RedshiftIdcApplicationAlreadyExistsFault";
|
|
483
488
|
readonly $fault: "client";
|
|
@@ -612,6 +617,11 @@ export declare class IntegrationNotFoundFault extends __BaseException {
|
|
|
612
617
|
readonly $fault: "client";
|
|
613
618
|
constructor(opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>);
|
|
614
619
|
}
|
|
620
|
+
export declare class Qev2IdcApplicationNotExistsFault extends __BaseException {
|
|
621
|
+
readonly name: "Qev2IdcApplicationNotExistsFault";
|
|
622
|
+
readonly $fault: "client";
|
|
623
|
+
constructor(opts: __ExceptionOptionType<Qev2IdcApplicationNotExistsFault, __BaseException>);
|
|
624
|
+
}
|
|
615
625
|
export declare class ScheduledActionNotFoundFault extends __BaseException {
|
|
616
626
|
readonly name: "ScheduledActionNotFoundFault";
|
|
617
627
|
readonly $fault: "client";
|
|
@@ -770,6 +770,24 @@ export interface Integration {
|
|
|
770
770
|
AdditionalEncryptionContext?: Record<string, string> | undefined;
|
|
771
771
|
Tags?: Tag[] | undefined;
|
|
772
772
|
}
|
|
773
|
+
export interface CreateQev2IdcApplicationMessage {
|
|
774
|
+
IdcInstanceArn: string | undefined;
|
|
775
|
+
Qev2IdcApplicationName: string | undefined;
|
|
776
|
+
IdcDisplayName: string | undefined;
|
|
777
|
+
Tags?: Tag[] | undefined;
|
|
778
|
+
}
|
|
779
|
+
export interface Qev2IdcApplication {
|
|
780
|
+
IdcInstanceArn?: string | undefined;
|
|
781
|
+
Qev2IdcApplicationName?: string | undefined;
|
|
782
|
+
Qev2IdcApplicationArn?: string | undefined;
|
|
783
|
+
IdcManagedApplicationArn?: string | undefined;
|
|
784
|
+
IdcOnboardStatus?: string | undefined;
|
|
785
|
+
IdcDisplayName?: string | undefined;
|
|
786
|
+
Tags?: Tag[] | undefined;
|
|
787
|
+
}
|
|
788
|
+
export interface CreateQev2IdcApplicationResult {
|
|
789
|
+
Qev2IdcApplication?: Qev2IdcApplication | undefined;
|
|
790
|
+
}
|
|
773
791
|
export interface LakeFormationQuery {
|
|
774
792
|
Authorization: ServiceAuthorization | undefined;
|
|
775
793
|
}
|
|
@@ -1051,6 +1069,9 @@ export interface DeleteHsmConfigurationMessage {
|
|
|
1051
1069
|
export interface DeleteIntegrationMessage {
|
|
1052
1070
|
IntegrationArn: string | undefined;
|
|
1053
1071
|
}
|
|
1072
|
+
export interface DeleteQev2IdcApplicationMessage {
|
|
1073
|
+
Qev2IdcApplicationArn: string | undefined;
|
|
1074
|
+
}
|
|
1054
1075
|
export interface DeleteRedshiftIdcApplicationMessage {
|
|
1055
1076
|
RedshiftIdcApplicationArn: string | undefined;
|
|
1056
1077
|
}
|
|
@@ -1452,6 +1473,15 @@ export interface PartnerIntegrationInfo {
|
|
|
1452
1473
|
export interface DescribePartnersOutputMessage {
|
|
1453
1474
|
PartnerIntegrationInfoList?: PartnerIntegrationInfo[] | undefined;
|
|
1454
1475
|
}
|
|
1476
|
+
export interface DescribeQev2IdcApplicationsMessage {
|
|
1477
|
+
Qev2IdcApplicationArn?: string | undefined;
|
|
1478
|
+
MaxRecords?: number | undefined;
|
|
1479
|
+
Marker?: string | undefined;
|
|
1480
|
+
}
|
|
1481
|
+
export interface DescribeQev2IdcApplicationsResult {
|
|
1482
|
+
Qev2IdcApplications?: Qev2IdcApplication[] | undefined;
|
|
1483
|
+
Marker?: string | undefined;
|
|
1484
|
+
}
|
|
1455
1485
|
export interface DescribeRedshiftIdcApplicationsMessage {
|
|
1456
1486
|
RedshiftIdcApplicationArn?: string | undefined;
|
|
1457
1487
|
MaxRecords?: number | undefined;
|
|
@@ -1837,35 +1867,3 @@ export interface ModifyClusterSubnetGroupMessage {
|
|
|
1837
1867
|
export interface ModifyClusterSubnetGroupResult {
|
|
1838
1868
|
ClusterSubnetGroup?: ClusterSubnetGroup | undefined;
|
|
1839
1869
|
}
|
|
1840
|
-
export interface ModifyCustomDomainAssociationMessage {
|
|
1841
|
-
CustomDomainName: string | undefined;
|
|
1842
|
-
CustomDomainCertificateArn: string | undefined;
|
|
1843
|
-
ClusterIdentifier: string | undefined;
|
|
1844
|
-
}
|
|
1845
|
-
export interface ModifyCustomDomainAssociationResult {
|
|
1846
|
-
CustomDomainName?: string | undefined;
|
|
1847
|
-
CustomDomainCertificateArn?: string | undefined;
|
|
1848
|
-
ClusterIdentifier?: string | undefined;
|
|
1849
|
-
CustomDomainCertExpiryTime?: string | undefined;
|
|
1850
|
-
}
|
|
1851
|
-
export interface ModifyEndpointAccessMessage {
|
|
1852
|
-
EndpointName: string | undefined;
|
|
1853
|
-
VpcSecurityGroupIds?: string[] | undefined;
|
|
1854
|
-
}
|
|
1855
|
-
export interface ModifyEventSubscriptionMessage {
|
|
1856
|
-
SubscriptionName: string | undefined;
|
|
1857
|
-
SnsTopicArn?: string | undefined;
|
|
1858
|
-
SourceType?: string | undefined;
|
|
1859
|
-
SourceIds?: string[] | undefined;
|
|
1860
|
-
EventCategories?: string[] | undefined;
|
|
1861
|
-
Severity?: string | undefined;
|
|
1862
|
-
Enabled?: boolean | undefined;
|
|
1863
|
-
}
|
|
1864
|
-
export interface ModifyEventSubscriptionResult {
|
|
1865
|
-
EventSubscription?: EventSubscription | undefined;
|
|
1866
|
-
}
|
|
1867
|
-
export interface ModifyIntegrationMessage {
|
|
1868
|
-
IntegrationArn: string | undefined;
|
|
1869
|
-
Description?: string | undefined;
|
|
1870
|
-
IntegrationName?: string | undefined;
|
|
1871
|
-
}
|
|
@@ -10,8 +10,10 @@ import {
|
|
|
10
10
|
AuthorizedTokenIssuer,
|
|
11
11
|
Cluster,
|
|
12
12
|
ClusterSecurityGroup,
|
|
13
|
+
EventSubscription,
|
|
13
14
|
NamespaceIdentifierUnion,
|
|
14
15
|
Parameter,
|
|
16
|
+
Qev2IdcApplication,
|
|
15
17
|
RedshiftIdcApplication,
|
|
16
18
|
ReservedNode,
|
|
17
19
|
ResourcePolicy,
|
|
@@ -20,6 +22,38 @@ import {
|
|
|
20
22
|
Snapshot,
|
|
21
23
|
TableRestoreStatus,
|
|
22
24
|
} from "./models_0";
|
|
25
|
+
export interface ModifyCustomDomainAssociationMessage {
|
|
26
|
+
CustomDomainName: string | undefined;
|
|
27
|
+
CustomDomainCertificateArn: string | undefined;
|
|
28
|
+
ClusterIdentifier: string | undefined;
|
|
29
|
+
}
|
|
30
|
+
export interface ModifyCustomDomainAssociationResult {
|
|
31
|
+
CustomDomainName?: string | undefined;
|
|
32
|
+
CustomDomainCertificateArn?: string | undefined;
|
|
33
|
+
ClusterIdentifier?: string | undefined;
|
|
34
|
+
CustomDomainCertExpiryTime?: string | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface ModifyEndpointAccessMessage {
|
|
37
|
+
EndpointName: string | undefined;
|
|
38
|
+
VpcSecurityGroupIds?: string[] | undefined;
|
|
39
|
+
}
|
|
40
|
+
export interface ModifyEventSubscriptionMessage {
|
|
41
|
+
SubscriptionName: string | undefined;
|
|
42
|
+
SnsTopicArn?: string | undefined;
|
|
43
|
+
SourceType?: string | undefined;
|
|
44
|
+
SourceIds?: string[] | undefined;
|
|
45
|
+
EventCategories?: string[] | undefined;
|
|
46
|
+
Severity?: string | undefined;
|
|
47
|
+
Enabled?: boolean | undefined;
|
|
48
|
+
}
|
|
49
|
+
export interface ModifyEventSubscriptionResult {
|
|
50
|
+
EventSubscription?: EventSubscription | undefined;
|
|
51
|
+
}
|
|
52
|
+
export interface ModifyIntegrationMessage {
|
|
53
|
+
IntegrationArn: string | undefined;
|
|
54
|
+
Description?: string | undefined;
|
|
55
|
+
IntegrationName?: string | undefined;
|
|
56
|
+
}
|
|
23
57
|
export interface ModifyLakehouseConfigurationMessage {
|
|
24
58
|
ClusterIdentifier: string | undefined;
|
|
25
59
|
LakehouseRegistration?: LakehouseRegistration | undefined;
|
|
@@ -28,6 +62,13 @@ export interface ModifyLakehouseConfigurationMessage {
|
|
|
28
62
|
LakehouseIdcApplicationArn?: string | undefined;
|
|
29
63
|
DryRun?: boolean | undefined;
|
|
30
64
|
}
|
|
65
|
+
export interface ModifyQev2IdcApplicationMessage {
|
|
66
|
+
Qev2IdcApplicationArn: string | undefined;
|
|
67
|
+
IdcDisplayName?: string | undefined;
|
|
68
|
+
}
|
|
69
|
+
export interface ModifyQev2IdcApplicationResult {
|
|
70
|
+
Qev2IdcApplication?: Qev2IdcApplication | undefined;
|
|
71
|
+
}
|
|
31
72
|
export interface ModifyRedshiftIdcApplicationMessage {
|
|
32
73
|
RedshiftIdcApplicationArn: string | undefined;
|
|
33
74
|
IdentityNamespace?: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeQev2IdcApplicationsCommandInput,
|
|
4
|
+
DescribeQev2IdcApplicationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeQev2IdcApplicationsCommand";
|
|
6
|
+
import { RedshiftPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeQev2IdcApplications: (
|
|
8
|
+
config: RedshiftPaginationConfiguration,
|
|
9
|
+
input: DescribeQev2IdcApplicationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeQev2IdcApplicationsCommandOutput>;
|
|
@@ -23,6 +23,7 @@ export * from "./DescribeInboundIntegrationsPaginator";
|
|
|
23
23
|
export * from "./DescribeIntegrationsPaginator";
|
|
24
24
|
export * from "./DescribeNodeConfigurationOptionsPaginator";
|
|
25
25
|
export * from "./DescribeOrderableClusterOptionsPaginator";
|
|
26
|
+
export * from "./DescribeQev2IdcApplicationsPaginator";
|
|
26
27
|
export * from "./DescribeRedshiftIdcApplicationsPaginator";
|
|
27
28
|
export * from "./DescribeReservedNodeExchangeStatusPaginator";
|
|
28
29
|
export * from "./DescribeReservedNodeOfferingsPaginator";
|
|
@@ -102,6 +102,8 @@ export declare var LimitExceededFault$: StaticErrorSchema;
|
|
|
102
102
|
export declare var NumberOfNodesPerClusterLimitExceededFault$: StaticErrorSchema;
|
|
103
103
|
export declare var NumberOfNodesQuotaExceededFault$: StaticErrorSchema;
|
|
104
104
|
export declare var PartnerNotFoundFault$: StaticErrorSchema;
|
|
105
|
+
export declare var Qev2IdcApplicationAlreadyExistsFault$: StaticErrorSchema;
|
|
106
|
+
export declare var Qev2IdcApplicationNotExistsFault$: StaticErrorSchema;
|
|
105
107
|
export declare var RedshiftIdcApplicationAlreadyExistsFault$: StaticErrorSchema;
|
|
106
108
|
export declare var RedshiftIdcApplicationNotExistsFault$: StaticErrorSchema;
|
|
107
109
|
export declare var RedshiftIdcApplicationQuotaExceededFault$: StaticErrorSchema;
|
|
@@ -222,6 +224,8 @@ export declare var CreateHsmClientCertificateResult$: StaticStructureSchema;
|
|
|
222
224
|
export declare var CreateHsmConfigurationMessage$: StaticStructureSchema;
|
|
223
225
|
export declare var CreateHsmConfigurationResult$: StaticStructureSchema;
|
|
224
226
|
export declare var CreateIntegrationMessage$: StaticStructureSchema;
|
|
227
|
+
export declare var CreateQev2IdcApplicationMessage$: StaticStructureSchema;
|
|
228
|
+
export declare var CreateQev2IdcApplicationResult$: StaticStructureSchema;
|
|
225
229
|
export declare var CreateRedshiftIdcApplicationMessage$: StaticStructureSchema;
|
|
226
230
|
export declare var CreateRedshiftIdcApplicationResult$: StaticStructureSchema;
|
|
227
231
|
export declare var CreateScheduledActionMessage$: StaticStructureSchema;
|
|
@@ -253,6 +257,7 @@ export declare var DeleteEventSubscriptionMessage$: StaticStructureSchema;
|
|
|
253
257
|
export declare var DeleteHsmClientCertificateMessage$: StaticStructureSchema;
|
|
254
258
|
export declare var DeleteHsmConfigurationMessage$: StaticStructureSchema;
|
|
255
259
|
export declare var DeleteIntegrationMessage$: StaticStructureSchema;
|
|
260
|
+
export declare var DeleteQev2IdcApplicationMessage$: StaticStructureSchema;
|
|
256
261
|
export declare var DeleteRedshiftIdcApplicationMessage$: StaticStructureSchema;
|
|
257
262
|
export declare var DeleteResourcePolicyMessage$: StaticStructureSchema;
|
|
258
263
|
export declare var DeleteScheduledActionMessage$: StaticStructureSchema;
|
|
@@ -298,6 +303,8 @@ export declare var DescribeNodeConfigurationOptionsMessage$: StaticStructureSche
|
|
|
298
303
|
export declare var DescribeOrderableClusterOptionsMessage$: StaticStructureSchema;
|
|
299
304
|
export declare var DescribePartnersInputMessage$: StaticStructureSchema;
|
|
300
305
|
export declare var DescribePartnersOutputMessage$: StaticStructureSchema;
|
|
306
|
+
export declare var DescribeQev2IdcApplicationsMessage$: StaticStructureSchema;
|
|
307
|
+
export declare var DescribeQev2IdcApplicationsResult$: StaticStructureSchema;
|
|
301
308
|
export declare var DescribeRedshiftIdcApplicationsMessage$: StaticStructureSchema;
|
|
302
309
|
export declare var DescribeRedshiftIdcApplicationsResult$: StaticStructureSchema;
|
|
303
310
|
export declare var DescribeReservedNodeExchangeStatusInputMessage$: StaticStructureSchema;
|
|
@@ -387,6 +394,8 @@ export declare var ModifyEventSubscriptionMessage$: StaticStructureSchema;
|
|
|
387
394
|
export declare var ModifyEventSubscriptionResult$: StaticStructureSchema;
|
|
388
395
|
export declare var ModifyIntegrationMessage$: StaticStructureSchema;
|
|
389
396
|
export declare var ModifyLakehouseConfigurationMessage$: StaticStructureSchema;
|
|
397
|
+
export declare var ModifyQev2IdcApplicationMessage$: StaticStructureSchema;
|
|
398
|
+
export declare var ModifyQev2IdcApplicationResult$: StaticStructureSchema;
|
|
390
399
|
export declare var ModifyRedshiftIdcApplicationMessage$: StaticStructureSchema;
|
|
391
400
|
export declare var ModifyRedshiftIdcApplicationResult$: StaticStructureSchema;
|
|
392
401
|
export declare var ModifyScheduledActionMessage$: StaticStructureSchema;
|
|
@@ -412,6 +421,7 @@ export declare var PurchaseReservedNodeOfferingMessage$: StaticStructureSchema;
|
|
|
412
421
|
export declare var PurchaseReservedNodeOfferingResult$: StaticStructureSchema;
|
|
413
422
|
export declare var PutResourcePolicyMessage$: StaticStructureSchema;
|
|
414
423
|
export declare var PutResourcePolicyResult$: StaticStructureSchema;
|
|
424
|
+
export declare var Qev2IdcApplication$: StaticStructureSchema;
|
|
415
425
|
export declare var ReadWriteAccess$: StaticStructureSchema;
|
|
416
426
|
export declare var RebootClusterMessage$: StaticStructureSchema;
|
|
417
427
|
export declare var RebootClusterResult$: StaticStructureSchema;
|
|
@@ -506,6 +516,7 @@ export declare var CreateEventSubscription$: StaticOperationSchema;
|
|
|
506
516
|
export declare var CreateHsmClientCertificate$: StaticOperationSchema;
|
|
507
517
|
export declare var CreateHsmConfiguration$: StaticOperationSchema;
|
|
508
518
|
export declare var CreateIntegration$: StaticOperationSchema;
|
|
519
|
+
export declare var CreateQev2IdcApplication$: StaticOperationSchema;
|
|
509
520
|
export declare var CreateRedshiftIdcApplication$: StaticOperationSchema;
|
|
510
521
|
export declare var CreateScheduledAction$: StaticOperationSchema;
|
|
511
522
|
export declare var CreateSnapshotCopyGrant$: StaticOperationSchema;
|
|
@@ -526,6 +537,7 @@ export declare var DeleteHsmClientCertificate$: StaticOperationSchema;
|
|
|
526
537
|
export declare var DeleteHsmConfiguration$: StaticOperationSchema;
|
|
527
538
|
export declare var DeleteIntegration$: StaticOperationSchema;
|
|
528
539
|
export declare var DeletePartner$: StaticOperationSchema;
|
|
540
|
+
export declare var DeleteQev2IdcApplication$: StaticOperationSchema;
|
|
529
541
|
export declare var DeleteRedshiftIdcApplication$: StaticOperationSchema;
|
|
530
542
|
export declare var DeleteResourcePolicy$: StaticOperationSchema;
|
|
531
543
|
export declare var DeleteScheduledAction$: StaticOperationSchema;
|
|
@@ -563,6 +575,7 @@ export declare var DescribeLoggingStatus$: StaticOperationSchema;
|
|
|
563
575
|
export declare var DescribeNodeConfigurationOptions$: StaticOperationSchema;
|
|
564
576
|
export declare var DescribeOrderableClusterOptions$: StaticOperationSchema;
|
|
565
577
|
export declare var DescribePartners$: StaticOperationSchema;
|
|
578
|
+
export declare var DescribeQev2IdcApplications$: StaticOperationSchema;
|
|
566
579
|
export declare var DescribeRedshiftIdcApplications$: StaticOperationSchema;
|
|
567
580
|
export declare var DescribeReservedNodeExchangeStatus$: StaticOperationSchema;
|
|
568
581
|
export declare var DescribeReservedNodeOfferings$: StaticOperationSchema;
|
|
@@ -603,6 +616,7 @@ export declare var ModifyEndpointAccess$: StaticOperationSchema;
|
|
|
603
616
|
export declare var ModifyEventSubscription$: StaticOperationSchema;
|
|
604
617
|
export declare var ModifyIntegration$: StaticOperationSchema;
|
|
605
618
|
export declare var ModifyLakehouseConfiguration$: StaticOperationSchema;
|
|
619
|
+
export declare var ModifyQev2IdcApplication$: StaticOperationSchema;
|
|
606
620
|
export declare var ModifyRedshiftIdcApplication$: StaticOperationSchema;
|
|
607
621
|
export declare var ModifyScheduledAction$: StaticOperationSchema;
|
|
608
622
|
export declare var ModifySnapshotCopyRetentionPeriod$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1092.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Redshift Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-redshift",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@aws-sdk/core": "^3.
|
|
52
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
51
|
+
"@aws-sdk/core": "^3.976.0",
|
|
52
|
+
"@aws-sdk/credential-provider-node": "^3.972.71",
|
|
53
53
|
"@aws-sdk/types": "^3.974.2",
|
|
54
54
|
"@smithy/core": "^3.29.4",
|
|
55
55
|
"@smithy/fetch-http-handler": "^5.6.6",
|