@aws-sdk/client-redshift 3.1090.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,152 @@
|
|
|
1
1
|
import type { AquaConfigurationStatus, LakehouseIdcRegistration, LakehouseRegistration, NamespaceRegistrationStatus, PartnerIntegrationStatus, UsageLimitBreachAction } from "./enums";
|
|
2
|
-
import type { AuthorizedTokenIssuer, Cluster, ClusterSecurityGroup, NamespaceIdentifierUnion, Parameter, RedshiftIdcApplication, ReservedNode, ResourcePolicy, ScheduledActionType, ServiceIntegrationsUnion, Snapshot, TableRestoreStatus } from "./models_0";
|
|
2
|
+
import type { AuthorizedTokenIssuer, Cluster, ClusterSecurityGroup, EventSubscription, NamespaceIdentifierUnion, Parameter, Qev2IdcApplication, RedshiftIdcApplication, ReservedNode, ResourcePolicy, ScheduledActionType, ServiceIntegrationsUnion, Snapshot, TableRestoreStatus } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface ModifyCustomDomainAssociationMessage {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The custom domain name for a changed custom domain association.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
CustomDomainName: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The certificate Amazon Resource Name (ARN) for the changed custom domain association.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
CustomDomainCertificateArn: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The identifier of the cluster to change a custom domain association for.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
ClusterIdentifier: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface ModifyCustomDomainAssociationResult {
|
|
27
|
+
/**
|
|
28
|
+
* <p>The custom domain name associated with the result for the changed custom domain association.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
CustomDomainName?: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
CustomDomainCertificateArn?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The identifier of the cluster associated with the result for the changed custom domain association.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
ClusterIdentifier?: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The certificate expiration time associated with the result for the changed custom domain association.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
CustomDomainCertExpiryTime?: string | undefined;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export interface ModifyEndpointAccessMessage {
|
|
52
|
+
/**
|
|
53
|
+
* <p>The endpoint to be modified.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
EndpointName: string | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The complete list of VPC security groups associated with the endpoint after the endpoint is modified.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
VpcSecurityGroupIds?: string[] | undefined;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p></p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export interface ModifyEventSubscriptionMessage {
|
|
68
|
+
/**
|
|
69
|
+
* <p>The name of the modified Amazon Redshift event notification subscription.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
SubscriptionName: string | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The Amazon Resource Name (ARN) of the SNS topic to be used by the event
|
|
75
|
+
* notification subscription.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
SnsTopicArn?: string | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* <p>The type of source that will be generating the events. For example, if you want to
|
|
81
|
+
* be notified of events generated by a cluster, you would set this parameter to cluster.
|
|
82
|
+
* If this value is not specified, events are returned for all Amazon Redshift objects in your
|
|
83
|
+
* Amazon Web Services account. You must specify a source type in order to specify source IDs.</p>
|
|
84
|
+
* <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
SourceType?: string | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects
|
|
90
|
+
* must be of the same type as was specified in the source type parameter. The event
|
|
91
|
+
* subscription will return only events generated by the specified objects. If not
|
|
92
|
+
* specified, then events are returned for all objects within the source type
|
|
93
|
+
* specified.</p>
|
|
94
|
+
* <p>Example: my-cluster-1, my-cluster-2</p>
|
|
95
|
+
* <p>Example: my-snapshot-20131010</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
SourceIds?: string[] | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* <p>Specifies the Amazon Redshift event categories to be published by the event notification
|
|
101
|
+
* subscription.</p>
|
|
102
|
+
* <p>Values: configuration, management, monitoring, security, pending</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
EventCategories?: string[] | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* <p>Specifies the Amazon Redshift event severity to be published by the event notification
|
|
108
|
+
* subscription.</p>
|
|
109
|
+
* <p>Values: ERROR, INFO</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
Severity?: string | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>A Boolean value indicating if the subscription is enabled. <code>true</code>
|
|
115
|
+
* indicates the subscription is enabled </p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
Enabled?: boolean | undefined;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
export interface ModifyEventSubscriptionResult {
|
|
124
|
+
/**
|
|
125
|
+
* <p>Describes event subscriptions.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
EventSubscription?: EventSubscription | undefined;
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export interface ModifyIntegrationMessage {
|
|
134
|
+
/**
|
|
135
|
+
* <p>The unique identifier of the integration to modify.</p>
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
IntegrationArn: string | undefined;
|
|
139
|
+
/**
|
|
140
|
+
* <p>A new description for the integration.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
Description?: string | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* <p>A new name for the integration.</p>
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
IntegrationName?: string | undefined;
|
|
149
|
+
}
|
|
3
150
|
/**
|
|
4
151
|
* @public
|
|
5
152
|
*/
|
|
@@ -48,6 +195,31 @@ export interface ModifyLakehouseConfigurationMessage {
|
|
|
48
195
|
*/
|
|
49
196
|
DryRun?: boolean | undefined;
|
|
50
197
|
}
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
export interface ModifyQev2IdcApplicationMessage {
|
|
202
|
+
/**
|
|
203
|
+
* <p>The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor (QEV2) application that integrates with IAM Identity Center.</p>
|
|
204
|
+
* @public
|
|
205
|
+
*/
|
|
206
|
+
Qev2IdcApplicationArn: string | undefined;
|
|
207
|
+
/**
|
|
208
|
+
* <p>The display name for the Amazon Redshift Query Editor (QEV2) IAM Identity Center application. It appears in the console.</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
IdcDisplayName?: string | undefined;
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
export interface ModifyQev2IdcApplicationResult {
|
|
217
|
+
/**
|
|
218
|
+
* <p>Contains configuration and status information for an Amazon Redshift Query Editor (QEV2) application that is registered with IAM Identity Center.</p>
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
Qev2IdcApplication?: Qev2IdcApplication | undefined;
|
|
222
|
+
}
|
|
51
223
|
/**
|
|
52
224
|
* @public
|
|
53
225
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeQev2IdcApplicationsCommandInput, DescribeQev2IdcApplicationsCommandOutput } from "../commands/DescribeQev2IdcApplicationsCommand";
|
|
3
|
+
import type { RedshiftPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateDescribeQev2IdcApplications: (config: RedshiftPaginationConfiguration, input: DescribeQev2IdcApplicationsCommandInput, ...rest: any[]) => 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";
|
|
@@ -97,6 +97,8 @@ export declare var LimitExceededFault$: StaticErrorSchema;
|
|
|
97
97
|
export declare var NumberOfNodesPerClusterLimitExceededFault$: StaticErrorSchema;
|
|
98
98
|
export declare var NumberOfNodesQuotaExceededFault$: StaticErrorSchema;
|
|
99
99
|
export declare var PartnerNotFoundFault$: StaticErrorSchema;
|
|
100
|
+
export declare var Qev2IdcApplicationAlreadyExistsFault$: StaticErrorSchema;
|
|
101
|
+
export declare var Qev2IdcApplicationNotExistsFault$: StaticErrorSchema;
|
|
100
102
|
export declare var RedshiftIdcApplicationAlreadyExistsFault$: StaticErrorSchema;
|
|
101
103
|
export declare var RedshiftIdcApplicationNotExistsFault$: StaticErrorSchema;
|
|
102
104
|
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;
|
|
@@ -94,6 +94,10 @@ import {
|
|
|
94
94
|
CreateIntegrationCommandInput,
|
|
95
95
|
CreateIntegrationCommandOutput,
|
|
96
96
|
} from "./commands/CreateIntegrationCommand";
|
|
97
|
+
import {
|
|
98
|
+
CreateQev2IdcApplicationCommandInput,
|
|
99
|
+
CreateQev2IdcApplicationCommandOutput,
|
|
100
|
+
} from "./commands/CreateQev2IdcApplicationCommand";
|
|
97
101
|
import {
|
|
98
102
|
CreateRedshiftIdcApplicationCommandInput,
|
|
99
103
|
CreateRedshiftIdcApplicationCommandOutput,
|
|
@@ -171,6 +175,10 @@ import {
|
|
|
171
175
|
DeletePartnerCommandInput,
|
|
172
176
|
DeletePartnerCommandOutput,
|
|
173
177
|
} from "./commands/DeletePartnerCommand";
|
|
178
|
+
import {
|
|
179
|
+
DeleteQev2IdcApplicationCommandInput,
|
|
180
|
+
DeleteQev2IdcApplicationCommandOutput,
|
|
181
|
+
} from "./commands/DeleteQev2IdcApplicationCommand";
|
|
174
182
|
import {
|
|
175
183
|
DeleteRedshiftIdcApplicationCommandInput,
|
|
176
184
|
DeleteRedshiftIdcApplicationCommandOutput,
|
|
@@ -316,6 +324,10 @@ import {
|
|
|
316
324
|
DescribePartnersCommandInput,
|
|
317
325
|
DescribePartnersCommandOutput,
|
|
318
326
|
} from "./commands/DescribePartnersCommand";
|
|
327
|
+
import {
|
|
328
|
+
DescribeQev2IdcApplicationsCommandInput,
|
|
329
|
+
DescribeQev2IdcApplicationsCommandOutput,
|
|
330
|
+
} from "./commands/DescribeQev2IdcApplicationsCommand";
|
|
319
331
|
import {
|
|
320
332
|
DescribeRedshiftIdcApplicationsCommandInput,
|
|
321
333
|
DescribeRedshiftIdcApplicationsCommandOutput,
|
|
@@ -476,6 +488,10 @@ import {
|
|
|
476
488
|
ModifyLakehouseConfigurationCommandInput,
|
|
477
489
|
ModifyLakehouseConfigurationCommandOutput,
|
|
478
490
|
} from "./commands/ModifyLakehouseConfigurationCommand";
|
|
491
|
+
import {
|
|
492
|
+
ModifyQev2IdcApplicationCommandInput,
|
|
493
|
+
ModifyQev2IdcApplicationCommandOutput,
|
|
494
|
+
} from "./commands/ModifyQev2IdcApplicationCommand";
|
|
479
495
|
import {
|
|
480
496
|
ModifyRedshiftIdcApplicationCommandInput,
|
|
481
497
|
ModifyRedshiftIdcApplicationCommandOutput,
|
|
@@ -862,6 +878,19 @@ export interface Redshift {
|
|
|
862
878
|
options: __HttpHandlerOptions,
|
|
863
879
|
cb: (err: any, data?: CreateIntegrationCommandOutput) => void,
|
|
864
880
|
): void;
|
|
881
|
+
createQev2IdcApplication(
|
|
882
|
+
args: CreateQev2IdcApplicationCommandInput,
|
|
883
|
+
options?: __HttpHandlerOptions,
|
|
884
|
+
): Promise<CreateQev2IdcApplicationCommandOutput>;
|
|
885
|
+
createQev2IdcApplication(
|
|
886
|
+
args: CreateQev2IdcApplicationCommandInput,
|
|
887
|
+
cb: (err: any, data?: CreateQev2IdcApplicationCommandOutput) => void,
|
|
888
|
+
): void;
|
|
889
|
+
createQev2IdcApplication(
|
|
890
|
+
args: CreateQev2IdcApplicationCommandInput,
|
|
891
|
+
options: __HttpHandlerOptions,
|
|
892
|
+
cb: (err: any, data?: CreateQev2IdcApplicationCommandOutput) => void,
|
|
893
|
+
): void;
|
|
865
894
|
createRedshiftIdcApplication(
|
|
866
895
|
args: CreateRedshiftIdcApplicationCommandInput,
|
|
867
896
|
options?: __HttpHandlerOptions,
|
|
@@ -1123,6 +1152,19 @@ export interface Redshift {
|
|
|
1123
1152
|
options: __HttpHandlerOptions,
|
|
1124
1153
|
cb: (err: any, data?: DeletePartnerCommandOutput) => void,
|
|
1125
1154
|
): void;
|
|
1155
|
+
deleteQev2IdcApplication(
|
|
1156
|
+
args: DeleteQev2IdcApplicationCommandInput,
|
|
1157
|
+
options?: __HttpHandlerOptions,
|
|
1158
|
+
): Promise<DeleteQev2IdcApplicationCommandOutput>;
|
|
1159
|
+
deleteQev2IdcApplication(
|
|
1160
|
+
args: DeleteQev2IdcApplicationCommandInput,
|
|
1161
|
+
cb: (err: any, data?: DeleteQev2IdcApplicationCommandOutput) => void,
|
|
1162
|
+
): void;
|
|
1163
|
+
deleteQev2IdcApplication(
|
|
1164
|
+
args: DeleteQev2IdcApplicationCommandInput,
|
|
1165
|
+
options: __HttpHandlerOptions,
|
|
1166
|
+
cb: (err: any, data?: DeleteQev2IdcApplicationCommandOutput) => void,
|
|
1167
|
+
): void;
|
|
1126
1168
|
deleteRedshiftIdcApplication(
|
|
1127
1169
|
args: DeleteRedshiftIdcApplicationCommandInput,
|
|
1128
1170
|
options?: __HttpHandlerOptions,
|
|
@@ -1628,6 +1670,20 @@ export interface Redshift {
|
|
|
1628
1670
|
options: __HttpHandlerOptions,
|
|
1629
1671
|
cb: (err: any, data?: DescribePartnersCommandOutput) => void,
|
|
1630
1672
|
): void;
|
|
1673
|
+
describeQev2IdcApplications(): Promise<DescribeQev2IdcApplicationsCommandOutput>;
|
|
1674
|
+
describeQev2IdcApplications(
|
|
1675
|
+
args: DescribeQev2IdcApplicationsCommandInput,
|
|
1676
|
+
options?: __HttpHandlerOptions,
|
|
1677
|
+
): Promise<DescribeQev2IdcApplicationsCommandOutput>;
|
|
1678
|
+
describeQev2IdcApplications(
|
|
1679
|
+
args: DescribeQev2IdcApplicationsCommandInput,
|
|
1680
|
+
cb: (err: any, data?: DescribeQev2IdcApplicationsCommandOutput) => void,
|
|
1681
|
+
): void;
|
|
1682
|
+
describeQev2IdcApplications(
|
|
1683
|
+
args: DescribeQev2IdcApplicationsCommandInput,
|
|
1684
|
+
options: __HttpHandlerOptions,
|
|
1685
|
+
cb: (err: any, data?: DescribeQev2IdcApplicationsCommandOutput) => void,
|
|
1686
|
+
): void;
|
|
1631
1687
|
describeRedshiftIdcApplications(): Promise<DescribeRedshiftIdcApplicationsCommandOutput>;
|
|
1632
1688
|
describeRedshiftIdcApplications(
|
|
1633
1689
|
args: DescribeRedshiftIdcApplicationsCommandInput,
|
|
@@ -2161,6 +2217,19 @@ export interface Redshift {
|
|
|
2161
2217
|
options: __HttpHandlerOptions,
|
|
2162
2218
|
cb: (err: any, data?: ModifyLakehouseConfigurationCommandOutput) => void,
|
|
2163
2219
|
): void;
|
|
2220
|
+
modifyQev2IdcApplication(
|
|
2221
|
+
args: ModifyQev2IdcApplicationCommandInput,
|
|
2222
|
+
options?: __HttpHandlerOptions,
|
|
2223
|
+
): Promise<ModifyQev2IdcApplicationCommandOutput>;
|
|
2224
|
+
modifyQev2IdcApplication(
|
|
2225
|
+
args: ModifyQev2IdcApplicationCommandInput,
|
|
2226
|
+
cb: (err: any, data?: ModifyQev2IdcApplicationCommandOutput) => void,
|
|
2227
|
+
): void;
|
|
2228
|
+
modifyQev2IdcApplication(
|
|
2229
|
+
args: ModifyQev2IdcApplicationCommandInput,
|
|
2230
|
+
options: __HttpHandlerOptions,
|
|
2231
|
+
cb: (err: any, data?: ModifyQev2IdcApplicationCommandOutput) => void,
|
|
2232
|
+
): void;
|
|
2164
2233
|
modifyRedshiftIdcApplication(
|
|
2165
2234
|
args: ModifyRedshiftIdcApplicationCommandInput,
|
|
2166
2235
|
options?: __HttpHandlerOptions,
|
|
@@ -2603,6 +2672,13 @@ export interface Redshift {
|
|
|
2603
2672
|
Exclude<keyof PaginationConfiguration, "client">
|
|
2604
2673
|
>,
|
|
2605
2674
|
): Paginator<DescribeOrderableClusterOptionsCommandOutput>;
|
|
2675
|
+
paginateDescribeQev2IdcApplications(
|
|
2676
|
+
args?: DescribeQev2IdcApplicationsCommandInput,
|
|
2677
|
+
paginationConfig?: Pick<
|
|
2678
|
+
PaginationConfiguration,
|
|
2679
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2680
|
+
>,
|
|
2681
|
+
): Paginator<DescribeQev2IdcApplicationsCommandOutput>;
|
|
2606
2682
|
paginateDescribeRedshiftIdcApplications(
|
|
2607
2683
|
args?: DescribeRedshiftIdcApplicationsCommandInput,
|
|
2608
2684
|
paginationConfig?: Pick<
|
|
@@ -122,6 +122,10 @@ import {
|
|
|
122
122
|
CreateIntegrationCommandInput,
|
|
123
123
|
CreateIntegrationCommandOutput,
|
|
124
124
|
} from "./commands/CreateIntegrationCommand";
|
|
125
|
+
import {
|
|
126
|
+
CreateQev2IdcApplicationCommandInput,
|
|
127
|
+
CreateQev2IdcApplicationCommandOutput,
|
|
128
|
+
} from "./commands/CreateQev2IdcApplicationCommand";
|
|
125
129
|
import {
|
|
126
130
|
CreateRedshiftIdcApplicationCommandInput,
|
|
127
131
|
CreateRedshiftIdcApplicationCommandOutput,
|
|
@@ -199,6 +203,10 @@ import {
|
|
|
199
203
|
DeletePartnerCommandInput,
|
|
200
204
|
DeletePartnerCommandOutput,
|
|
201
205
|
} from "./commands/DeletePartnerCommand";
|
|
206
|
+
import {
|
|
207
|
+
DeleteQev2IdcApplicationCommandInput,
|
|
208
|
+
DeleteQev2IdcApplicationCommandOutput,
|
|
209
|
+
} from "./commands/DeleteQev2IdcApplicationCommand";
|
|
202
210
|
import {
|
|
203
211
|
DeleteRedshiftIdcApplicationCommandInput,
|
|
204
212
|
DeleteRedshiftIdcApplicationCommandOutput,
|
|
@@ -344,6 +352,10 @@ import {
|
|
|
344
352
|
DescribePartnersCommandInput,
|
|
345
353
|
DescribePartnersCommandOutput,
|
|
346
354
|
} from "./commands/DescribePartnersCommand";
|
|
355
|
+
import {
|
|
356
|
+
DescribeQev2IdcApplicationsCommandInput,
|
|
357
|
+
DescribeQev2IdcApplicationsCommandOutput,
|
|
358
|
+
} from "./commands/DescribeQev2IdcApplicationsCommand";
|
|
347
359
|
import {
|
|
348
360
|
DescribeRedshiftIdcApplicationsCommandInput,
|
|
349
361
|
DescribeRedshiftIdcApplicationsCommandOutput,
|
|
@@ -504,6 +516,10 @@ import {
|
|
|
504
516
|
ModifyLakehouseConfigurationCommandInput,
|
|
505
517
|
ModifyLakehouseConfigurationCommandOutput,
|
|
506
518
|
} from "./commands/ModifyLakehouseConfigurationCommand";
|
|
519
|
+
import {
|
|
520
|
+
ModifyQev2IdcApplicationCommandInput,
|
|
521
|
+
ModifyQev2IdcApplicationCommandOutput,
|
|
522
|
+
} from "./commands/ModifyQev2IdcApplicationCommand";
|
|
507
523
|
import {
|
|
508
524
|
ModifyRedshiftIdcApplicationCommandInput,
|
|
509
525
|
ModifyRedshiftIdcApplicationCommandOutput,
|
|
@@ -619,6 +635,7 @@ export type ServiceInputTypes =
|
|
|
619
635
|
| CreateHsmClientCertificateCommandInput
|
|
620
636
|
| CreateHsmConfigurationCommandInput
|
|
621
637
|
| CreateIntegrationCommandInput
|
|
638
|
+
| CreateQev2IdcApplicationCommandInput
|
|
622
639
|
| CreateRedshiftIdcApplicationCommandInput
|
|
623
640
|
| CreateScheduledActionCommandInput
|
|
624
641
|
| CreateSnapshotCopyGrantCommandInput
|
|
@@ -639,6 +656,7 @@ export type ServiceInputTypes =
|
|
|
639
656
|
| DeleteHsmConfigurationCommandInput
|
|
640
657
|
| DeleteIntegrationCommandInput
|
|
641
658
|
| DeletePartnerCommandInput
|
|
659
|
+
| DeleteQev2IdcApplicationCommandInput
|
|
642
660
|
| DeleteRedshiftIdcApplicationCommandInput
|
|
643
661
|
| DeleteResourcePolicyCommandInput
|
|
644
662
|
| DeleteScheduledActionCommandInput
|
|
@@ -676,6 +694,7 @@ export type ServiceInputTypes =
|
|
|
676
694
|
| DescribeNodeConfigurationOptionsCommandInput
|
|
677
695
|
| DescribeOrderableClusterOptionsCommandInput
|
|
678
696
|
| DescribePartnersCommandInput
|
|
697
|
+
| DescribeQev2IdcApplicationsCommandInput
|
|
679
698
|
| DescribeRedshiftIdcApplicationsCommandInput
|
|
680
699
|
| DescribeReservedNodeExchangeStatusCommandInput
|
|
681
700
|
| DescribeReservedNodeOfferingsCommandInput
|
|
@@ -716,6 +735,7 @@ export type ServiceInputTypes =
|
|
|
716
735
|
| ModifyEventSubscriptionCommandInput
|
|
717
736
|
| ModifyIntegrationCommandInput
|
|
718
737
|
| ModifyLakehouseConfigurationCommandInput
|
|
738
|
+
| ModifyQev2IdcApplicationCommandInput
|
|
719
739
|
| ModifyRedshiftIdcApplicationCommandInput
|
|
720
740
|
| ModifyScheduledActionCommandInput
|
|
721
741
|
| ModifySnapshotCopyRetentionPeriodCommandInput
|
|
@@ -761,6 +781,7 @@ export type ServiceOutputTypes =
|
|
|
761
781
|
| CreateHsmClientCertificateCommandOutput
|
|
762
782
|
| CreateHsmConfigurationCommandOutput
|
|
763
783
|
| CreateIntegrationCommandOutput
|
|
784
|
+
| CreateQev2IdcApplicationCommandOutput
|
|
764
785
|
| CreateRedshiftIdcApplicationCommandOutput
|
|
765
786
|
| CreateScheduledActionCommandOutput
|
|
766
787
|
| CreateSnapshotCopyGrantCommandOutput
|
|
@@ -781,6 +802,7 @@ export type ServiceOutputTypes =
|
|
|
781
802
|
| DeleteHsmConfigurationCommandOutput
|
|
782
803
|
| DeleteIntegrationCommandOutput
|
|
783
804
|
| DeletePartnerCommandOutput
|
|
805
|
+
| DeleteQev2IdcApplicationCommandOutput
|
|
784
806
|
| DeleteRedshiftIdcApplicationCommandOutput
|
|
785
807
|
| DeleteResourcePolicyCommandOutput
|
|
786
808
|
| DeleteScheduledActionCommandOutput
|
|
@@ -818,6 +840,7 @@ export type ServiceOutputTypes =
|
|
|
818
840
|
| DescribeNodeConfigurationOptionsCommandOutput
|
|
819
841
|
| DescribeOrderableClusterOptionsCommandOutput
|
|
820
842
|
| DescribePartnersCommandOutput
|
|
843
|
+
| DescribeQev2IdcApplicationsCommandOutput
|
|
821
844
|
| DescribeRedshiftIdcApplicationsCommandOutput
|
|
822
845
|
| DescribeReservedNodeExchangeStatusCommandOutput
|
|
823
846
|
| DescribeReservedNodeOfferingsCommandOutput
|
|
@@ -858,6 +881,7 @@ export type ServiceOutputTypes =
|
|
|
858
881
|
| ModifyEventSubscriptionCommandOutput
|
|
859
882
|
| ModifyIntegrationCommandOutput
|
|
860
883
|
| ModifyLakehouseConfigurationCommandOutput
|
|
884
|
+
| ModifyQev2IdcApplicationCommandOutput
|
|
861
885
|
| ModifyRedshiftIdcApplicationCommandOutput
|
|
862
886
|
| ModifyScheduledActionCommandOutput
|
|
863
887
|
| ModifySnapshotCopyRetentionPeriodCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateQev2IdcApplicationMessage,
|
|
4
|
+
CreateQev2IdcApplicationResult,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface CreateQev2IdcApplicationCommandInput extends CreateQev2IdcApplicationMessage {}
|
|
8
|
+
export interface CreateQev2IdcApplicationCommandOutput
|
|
9
|
+
extends CreateQev2IdcApplicationResult, __MetadataBearer {}
|
|
10
|
+
declare const CreateQev2IdcApplicationCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: CreateQev2IdcApplicationCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
CreateQev2IdcApplicationCommandInput,
|
|
15
|
+
CreateQev2IdcApplicationCommandOutput,
|
|
16
|
+
import("..").RedshiftClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: CreateQev2IdcApplicationCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CreateQev2IdcApplicationCommandInput,
|
|
24
|
+
CreateQev2IdcApplicationCommandOutput,
|
|
25
|
+
import("..").RedshiftClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class CreateQev2IdcApplicationCommand extends CreateQev2IdcApplicationCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: CreateQev2IdcApplicationMessage;
|
|
35
|
+
output: CreateQev2IdcApplicationResult;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: CreateQev2IdcApplicationCommandInput;
|
|
39
|
+
output: CreateQev2IdcApplicationCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { DeleteQev2IdcApplicationMessage } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface DeleteQev2IdcApplicationCommandInput extends DeleteQev2IdcApplicationMessage {}
|
|
5
|
+
export interface DeleteQev2IdcApplicationCommandOutput extends __MetadataBearer {}
|
|
6
|
+
declare const DeleteQev2IdcApplicationCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: DeleteQev2IdcApplicationCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
DeleteQev2IdcApplicationCommandInput,
|
|
11
|
+
DeleteQev2IdcApplicationCommandOutput,
|
|
12
|
+
import("..").RedshiftClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteQev2IdcApplicationCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteQev2IdcApplicationCommandInput,
|
|
20
|
+
DeleteQev2IdcApplicationCommandOutput,
|
|
21
|
+
import("..").RedshiftClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class DeleteQev2IdcApplicationCommand extends DeleteQev2IdcApplicationCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: DeleteQev2IdcApplicationMessage;
|
|
31
|
+
output: {};
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: DeleteQev2IdcApplicationCommandInput;
|
|
35
|
+
output: DeleteQev2IdcApplicationCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeQev2IdcApplicationsMessage,
|
|
4
|
+
DescribeQev2IdcApplicationsResult,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface DescribeQev2IdcApplicationsCommandInput extends DescribeQev2IdcApplicationsMessage {}
|
|
8
|
+
export interface DescribeQev2IdcApplicationsCommandOutput
|
|
9
|
+
extends DescribeQev2IdcApplicationsResult, __MetadataBearer {}
|
|
10
|
+
declare const DescribeQev2IdcApplicationsCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: DescribeQev2IdcApplicationsCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
DescribeQev2IdcApplicationsCommandInput,
|
|
15
|
+
DescribeQev2IdcApplicationsCommandOutput,
|
|
16
|
+
import("..").RedshiftClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
...[input]: [] | [DescribeQev2IdcApplicationsCommandInput]
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DescribeQev2IdcApplicationsCommandInput,
|
|
24
|
+
DescribeQev2IdcApplicationsCommandOutput,
|
|
25
|
+
import("..").RedshiftClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class DescribeQev2IdcApplicationsCommand extends DescribeQev2IdcApplicationsCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: DescribeQev2IdcApplicationsMessage;
|
|
35
|
+
output: DescribeQev2IdcApplicationsResult;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: DescribeQev2IdcApplicationsCommandInput;
|
|
39
|
+
output: DescribeQev2IdcApplicationsCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import {
|
|
3
3
|
ModifyCustomDomainAssociationMessage,
|
|
4
4
|
ModifyCustomDomainAssociationResult,
|
|
5
|
-
} from "../models/
|
|
5
|
+
} from "../models/models_1";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
7
|
export interface ModifyCustomDomainAssociationCommandInput extends ModifyCustomDomainAssociationMessage {}
|
|
8
8
|
export interface ModifyCustomDomainAssociationCommandOutput
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { EndpointAccess
|
|
2
|
+
import { EndpointAccess } from "../models/models_0";
|
|
3
|
+
import { ModifyEndpointAccessMessage } from "../models/models_1";
|
|
3
4
|
export { __MetadataBearer };
|
|
4
5
|
export interface ModifyEndpointAccessCommandInput extends ModifyEndpointAccessMessage {}
|
|
5
6
|
export interface ModifyEndpointAccessCommandOutput extends EndpointAccess, __MetadataBearer {}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/
|
|
2
|
+
import { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_1";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ModifyEventSubscriptionCommandInput extends ModifyEventSubscriptionMessage {}
|
|
5
5
|
export interface ModifyEventSubscriptionCommandOutput
|