@aws-sdk/client-interconnect 3.1087.0 → 3.1089.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.
Files changed (33) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Interconnect.d.ts +46 -51
  3. package/dist-types/ts3.4/InterconnectClient.d.ts +7 -20
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/AcceptConnectionProposalCommand.d.ts +4 -6
  8. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +4 -9
  9. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +4 -9
  10. package/dist-types/ts3.4/commands/DescribeConnectionProposalCommand.d.ts +4 -6
  11. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +4 -9
  13. package/dist-types/ts3.4/commands/ListAttachPointsCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +3 -8
  15. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +3 -8
  16. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  19. package/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +4 -9
  20. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  21. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  22. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  23. package/dist-types/ts3.4/models/enums.d.ts +3 -6
  24. package/dist-types/ts3.4/models/errors.d.ts +7 -24
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  30. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  31. package/dist-types/ts3.4/waiters/waitForConnectionAvailable.d.ts +3 -5
  32. package/dist-types/ts3.4/waiters/waitForConnectionDeleted.d.ts +3 -5
  33. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -67,7 +67,7 @@ const commonParams = {
67
67
  Region: { type: "builtInParams", name: "region" },
68
68
  };
69
69
 
70
- var version = "3.1086.0";
70
+ var version = "3.1088.0";
71
71
  var packageInfo = {
72
72
  version: version};
73
73
 
@@ -45,10 +45,7 @@ import {
45
45
  ListTagsForResourceCommandInput,
46
46
  ListTagsForResourceCommandOutput,
47
47
  } from "./commands/ListTagsForResourceCommand";
48
- import {
49
- TagResourceCommandInput,
50
- TagResourceCommandOutput,
51
- } from "./commands/TagResourceCommand";
48
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
52
49
  import {
53
50
  UntagResourceCommandInput,
54
51
  UntagResourceCommandOutput,
@@ -61,195 +58,195 @@ import { InterconnectClient } from "./InterconnectClient";
61
58
  export interface Interconnect {
62
59
  acceptConnectionProposal(
63
60
  args: AcceptConnectionProposalCommandInput,
64
- options?: __HttpHandlerOptions
61
+ options?: __HttpHandlerOptions,
65
62
  ): Promise<AcceptConnectionProposalCommandOutput>;
66
63
  acceptConnectionProposal(
67
64
  args: AcceptConnectionProposalCommandInput,
68
- cb: (err: any, data?: AcceptConnectionProposalCommandOutput) => void
65
+ cb: (err: any, data?: AcceptConnectionProposalCommandOutput) => void,
69
66
  ): void;
70
67
  acceptConnectionProposal(
71
68
  args: AcceptConnectionProposalCommandInput,
72
69
  options: __HttpHandlerOptions,
73
- cb: (err: any, data?: AcceptConnectionProposalCommandOutput) => void
70
+ cb: (err: any, data?: AcceptConnectionProposalCommandOutput) => void,
74
71
  ): void;
75
72
  createConnection(
76
73
  args: CreateConnectionCommandInput,
77
- options?: __HttpHandlerOptions
74
+ options?: __HttpHandlerOptions,
78
75
  ): Promise<CreateConnectionCommandOutput>;
79
76
  createConnection(
80
77
  args: CreateConnectionCommandInput,
81
- cb: (err: any, data?: CreateConnectionCommandOutput) => void
78
+ cb: (err: any, data?: CreateConnectionCommandOutput) => void,
82
79
  ): void;
83
80
  createConnection(
84
81
  args: CreateConnectionCommandInput,
85
82
  options: __HttpHandlerOptions,
86
- cb: (err: any, data?: CreateConnectionCommandOutput) => void
83
+ cb: (err: any, data?: CreateConnectionCommandOutput) => void,
87
84
  ): void;
88
85
  deleteConnection(
89
86
  args: DeleteConnectionCommandInput,
90
- options?: __HttpHandlerOptions
87
+ options?: __HttpHandlerOptions,
91
88
  ): Promise<DeleteConnectionCommandOutput>;
92
89
  deleteConnection(
93
90
  args: DeleteConnectionCommandInput,
94
- cb: (err: any, data?: DeleteConnectionCommandOutput) => void
91
+ cb: (err: any, data?: DeleteConnectionCommandOutput) => void,
95
92
  ): void;
96
93
  deleteConnection(
97
94
  args: DeleteConnectionCommandInput,
98
95
  options: __HttpHandlerOptions,
99
- cb: (err: any, data?: DeleteConnectionCommandOutput) => void
96
+ cb: (err: any, data?: DeleteConnectionCommandOutput) => void,
100
97
  ): void;
101
98
  describeConnectionProposal(
102
99
  args: DescribeConnectionProposalCommandInput,
103
- options?: __HttpHandlerOptions
100
+ options?: __HttpHandlerOptions,
104
101
  ): Promise<DescribeConnectionProposalCommandOutput>;
105
102
  describeConnectionProposal(
106
103
  args: DescribeConnectionProposalCommandInput,
107
- cb: (err: any, data?: DescribeConnectionProposalCommandOutput) => void
104
+ cb: (err: any, data?: DescribeConnectionProposalCommandOutput) => void,
108
105
  ): void;
109
106
  describeConnectionProposal(
110
107
  args: DescribeConnectionProposalCommandInput,
111
108
  options: __HttpHandlerOptions,
112
- cb: (err: any, data?: DescribeConnectionProposalCommandOutput) => void
109
+ cb: (err: any, data?: DescribeConnectionProposalCommandOutput) => void,
113
110
  ): void;
114
111
  getConnection(
115
112
  args: GetConnectionCommandInput,
116
- options?: __HttpHandlerOptions
113
+ options?: __HttpHandlerOptions,
117
114
  ): Promise<GetConnectionCommandOutput>;
118
115
  getConnection(
119
116
  args: GetConnectionCommandInput,
120
- cb: (err: any, data?: GetConnectionCommandOutput) => void
117
+ cb: (err: any, data?: GetConnectionCommandOutput) => void,
121
118
  ): void;
122
119
  getConnection(
123
120
  args: GetConnectionCommandInput,
124
121
  options: __HttpHandlerOptions,
125
- cb: (err: any, data?: GetConnectionCommandOutput) => void
122
+ cb: (err: any, data?: GetConnectionCommandOutput) => void,
126
123
  ): void;
127
124
  getEnvironment(
128
125
  args: GetEnvironmentCommandInput,
129
- options?: __HttpHandlerOptions
126
+ options?: __HttpHandlerOptions,
130
127
  ): Promise<GetEnvironmentCommandOutput>;
131
128
  getEnvironment(
132
129
  args: GetEnvironmentCommandInput,
133
- cb: (err: any, data?: GetEnvironmentCommandOutput) => void
130
+ cb: (err: any, data?: GetEnvironmentCommandOutput) => void,
134
131
  ): void;
135
132
  getEnvironment(
136
133
  args: GetEnvironmentCommandInput,
137
134
  options: __HttpHandlerOptions,
138
- cb: (err: any, data?: GetEnvironmentCommandOutput) => void
135
+ cb: (err: any, data?: GetEnvironmentCommandOutput) => void,
139
136
  ): void;
140
137
  listAttachPoints(
141
138
  args: ListAttachPointsCommandInput,
142
- options?: __HttpHandlerOptions
139
+ options?: __HttpHandlerOptions,
143
140
  ): Promise<ListAttachPointsCommandOutput>;
144
141
  listAttachPoints(
145
142
  args: ListAttachPointsCommandInput,
146
- cb: (err: any, data?: ListAttachPointsCommandOutput) => void
143
+ cb: (err: any, data?: ListAttachPointsCommandOutput) => void,
147
144
  ): void;
148
145
  listAttachPoints(
149
146
  args: ListAttachPointsCommandInput,
150
147
  options: __HttpHandlerOptions,
151
- cb: (err: any, data?: ListAttachPointsCommandOutput) => void
148
+ cb: (err: any, data?: ListAttachPointsCommandOutput) => void,
152
149
  ): void;
153
150
  listConnections(): Promise<ListConnectionsCommandOutput>;
154
151
  listConnections(
155
152
  args: ListConnectionsCommandInput,
156
- options?: __HttpHandlerOptions
153
+ options?: __HttpHandlerOptions,
157
154
  ): Promise<ListConnectionsCommandOutput>;
158
155
  listConnections(
159
156
  args: ListConnectionsCommandInput,
160
- cb: (err: any, data?: ListConnectionsCommandOutput) => void
157
+ cb: (err: any, data?: ListConnectionsCommandOutput) => void,
161
158
  ): void;
162
159
  listConnections(
163
160
  args: ListConnectionsCommandInput,
164
161
  options: __HttpHandlerOptions,
165
- cb: (err: any, data?: ListConnectionsCommandOutput) => void
162
+ cb: (err: any, data?: ListConnectionsCommandOutput) => void,
166
163
  ): void;
167
164
  listEnvironments(): Promise<ListEnvironmentsCommandOutput>;
168
165
  listEnvironments(
169
166
  args: ListEnvironmentsCommandInput,
170
- options?: __HttpHandlerOptions
167
+ options?: __HttpHandlerOptions,
171
168
  ): Promise<ListEnvironmentsCommandOutput>;
172
169
  listEnvironments(
173
170
  args: ListEnvironmentsCommandInput,
174
- cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
171
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void,
175
172
  ): void;
176
173
  listEnvironments(
177
174
  args: ListEnvironmentsCommandInput,
178
175
  options: __HttpHandlerOptions,
179
- cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
176
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void,
180
177
  ): void;
181
178
  listTagsForResource(
182
179
  args: ListTagsForResourceCommandInput,
183
- options?: __HttpHandlerOptions
180
+ options?: __HttpHandlerOptions,
184
181
  ): Promise<ListTagsForResourceCommandOutput>;
185
182
  listTagsForResource(
186
183
  args: ListTagsForResourceCommandInput,
187
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
184
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
188
185
  ): void;
189
186
  listTagsForResource(
190
187
  args: ListTagsForResourceCommandInput,
191
188
  options: __HttpHandlerOptions,
192
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
189
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
193
190
  ): void;
194
191
  tagResource(
195
192
  args: TagResourceCommandInput,
196
- options?: __HttpHandlerOptions
193
+ options?: __HttpHandlerOptions,
197
194
  ): Promise<TagResourceCommandOutput>;
198
195
  tagResource(
199
196
  args: TagResourceCommandInput,
200
- cb: (err: any, data?: TagResourceCommandOutput) => void
197
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
201
198
  ): void;
202
199
  tagResource(
203
200
  args: TagResourceCommandInput,
204
201
  options: __HttpHandlerOptions,
205
- cb: (err: any, data?: TagResourceCommandOutput) => void
202
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
206
203
  ): void;
207
204
  untagResource(
208
205
  args: UntagResourceCommandInput,
209
- options?: __HttpHandlerOptions
206
+ options?: __HttpHandlerOptions,
210
207
  ): Promise<UntagResourceCommandOutput>;
211
208
  untagResource(
212
209
  args: UntagResourceCommandInput,
213
- cb: (err: any, data?: UntagResourceCommandOutput) => void
210
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
214
211
  ): void;
215
212
  untagResource(
216
213
  args: UntagResourceCommandInput,
217
214
  options: __HttpHandlerOptions,
218
- cb: (err: any, data?: UntagResourceCommandOutput) => void
215
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
219
216
  ): void;
220
217
  updateConnection(
221
218
  args: UpdateConnectionCommandInput,
222
- options?: __HttpHandlerOptions
219
+ options?: __HttpHandlerOptions,
223
220
  ): Promise<UpdateConnectionCommandOutput>;
224
221
  updateConnection(
225
222
  args: UpdateConnectionCommandInput,
226
- cb: (err: any, data?: UpdateConnectionCommandOutput) => void
223
+ cb: (err: any, data?: UpdateConnectionCommandOutput) => void,
227
224
  ): void;
228
225
  updateConnection(
229
226
  args: UpdateConnectionCommandInput,
230
227
  options: __HttpHandlerOptions,
231
- cb: (err: any, data?: UpdateConnectionCommandOutput) => void
228
+ cb: (err: any, data?: UpdateConnectionCommandOutput) => void,
232
229
  ): void;
233
230
  paginateListAttachPoints(
234
231
  args: ListAttachPointsCommandInput,
235
232
  paginationConfig?: Pick<
236
233
  PaginationConfiguration,
237
234
  Exclude<keyof PaginationConfiguration, "client">
238
- >
235
+ >,
239
236
  ): Paginator<ListAttachPointsCommandOutput>;
240
237
  paginateListConnections(
241
238
  args?: ListConnectionsCommandInput,
242
239
  paginationConfig?: Pick<
243
240
  PaginationConfiguration,
244
241
  Exclude<keyof PaginationConfiguration, "client">
245
- >
242
+ >,
246
243
  ): Paginator<ListConnectionsCommandOutput>;
247
244
  paginateListEnvironments(
248
245
  args?: ListEnvironmentsCommandInput,
249
246
  paginationConfig?: Pick<
250
247
  PaginationConfiguration,
251
248
  Exclude<keyof PaginationConfiguration, "client">
252
- >
249
+ >,
253
250
  ): Paginator<ListEnvironmentsCommandOutput>;
254
251
  waitUntilConnectionAvailable(
255
252
  args: GetConnectionCommandInput,
@@ -258,7 +255,7 @@ export interface Interconnect {
258
255
  | Pick<
259
256
  WaiterConfiguration<Interconnect>,
260
257
  Exclude<keyof WaiterConfiguration<Interconnect>, "client">
261
- >
258
+ >,
262
259
  ): Promise<WaiterResult<GetConnectionCommandOutput>>;
263
260
  waitUntilConnectionDeleted(
264
261
  args: GetConnectionCommandInput,
@@ -267,9 +264,7 @@ export interface Interconnect {
267
264
  | Pick<
268
265
  WaiterConfiguration<Interconnect>,
269
266
  Exclude<keyof WaiterConfiguration<Interconnect>, "client">
270
- >
267
+ >,
271
268
  ): Promise<WaiterResult<GetConnectionCommandOutput>>;
272
269
  }
273
- export declare class Interconnect
274
- extends InterconnectClient
275
- implements Interconnect {}
270
+ export declare class Interconnect extends InterconnectClient implements Interconnect {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -76,10 +73,7 @@ import {
76
73
  ListTagsForResourceCommandInput,
77
74
  ListTagsForResourceCommandOutput,
78
75
  } from "./commands/ListTagsForResourceCommand";
79
- import {
80
- TagResourceCommandInput,
81
- TagResourceCommandOutput,
82
- } from "./commands/TagResourceCommand";
76
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
83
77
  import {
84
78
  UntagResourceCommandInput,
85
79
  UntagResourceCommandOutput,
@@ -123,8 +117,7 @@ export type ServiceOutputTypes =
123
117
  | TagResourceCommandOutput
124
118
  | UntagResourceCommandOutput
125
119
  | UpdateConnectionCommandOutput;
126
- export interface ClientDefaults
127
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
120
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
128
121
  requestHandler?: __HttpHandlerUserInput;
129
122
  sha256?: __ChecksumConstructor | __HashConstructor;
130
123
  urlParser?: __UrlParser;
@@ -149,9 +142,7 @@ export interface ClientDefaults
149
142
  extensions?: RuntimeExtension[];
150
143
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
151
144
  }
152
- export type InterconnectClientConfigType = Partial<
153
- __SmithyConfiguration<__HttpHandlerOptions>
154
- > &
145
+ export type InterconnectClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
155
146
  ClientDefaults &
156
147
  UserAgentInputConfig &
157
148
  RetryInputConfig &
@@ -160,8 +151,7 @@ export type InterconnectClientConfigType = Partial<
160
151
  EndpointInputConfig<EndpointParameters> &
161
152
  HttpAuthSchemeInputConfig &
162
153
  ClientInputEndpointParameters;
163
- export interface InterconnectClientConfig
164
- extends InterconnectClientConfigType {}
154
+ export interface InterconnectClientConfig extends InterconnectClientConfigType {}
165
155
  export type InterconnectClientResolvedConfigType =
166
156
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
167
157
  Required<ClientDefaults> &
@@ -173,8 +163,7 @@ export type InterconnectClientResolvedConfigType =
173
163
  EndpointResolvedConfig<EndpointParameters> &
174
164
  HttpAuthSchemeResolvedConfig &
175
165
  ClientResolvedEndpointParameters;
176
- export interface InterconnectClientResolvedConfig
177
- extends InterconnectClientResolvedConfigType {}
166
+ export interface InterconnectClientResolvedConfig extends InterconnectClientResolvedConfigType {}
178
167
  export declare class InterconnectClient extends __Client<
179
168
  __HttpHandlerOptions,
180
169
  ServiceInputTypes,
@@ -182,8 +171,6 @@ export declare class InterconnectClient extends __Client<
182
171
  InterconnectClientResolvedConfig
183
172
  > {
184
173
  readonly config: InterconnectClientResolvedConfig;
185
- constructor(
186
- ...[configuration]: __CheckOptionalClientConfig<InterconnectClientConfig>
187
- );
174
+ constructor(...[configuration]: __CheckOptionalClientConfig<InterconnectClientConfig>);
188
175
  destroy(): void;
189
176
  }
@@ -7,17 +7,10 @@ import { InterconnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: InterconnectHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: InterconnectHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): InterconnectHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { InterconnectClientResolvedConfig } from "../InterconnectClient";
15
- export interface InterconnectHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface InterconnectHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface InterconnectHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- InterconnectClientResolvedConfig,
22
- HandlerExecutionContext,
23
- InterconnectHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface InterconnectHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ InterconnectClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ InterconnectHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultInterconnectHttpAuthSchemeParametersProvider: (
27
25
  config: InterconnectClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<InterconnectHttpAuthSchemeParameters>;
31
- export interface InterconnectHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<InterconnectHttpAuthSchemeParameters> {}
29
+ export interface InterconnectHttpAuthSchemeProvider extends HttpAuthSchemeProvider<InterconnectHttpAuthSchemeParameters> {}
33
30
  export declare const defaultInterconnectHttpAuthSchemeProvider: InterconnectHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: InterconnectHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: InterconnectHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./InterconnectClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  InterconnectClientResolvedConfig,
@@ -38,9 +37,4 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -4,14 +4,12 @@ import {
4
4
  AcceptConnectionProposalResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface AcceptConnectionProposalCommandInput
8
- extends AcceptConnectionProposalRequest {}
7
+ export interface AcceptConnectionProposalCommandInput extends AcceptConnectionProposalRequest {}
9
8
  export interface AcceptConnectionProposalCommandOutput
10
- extends AcceptConnectionProposalResponse,
11
- __MetadataBearer {}
9
+ extends AcceptConnectionProposalResponse, __MetadataBearer {}
12
10
  declare const AcceptConnectionProposalCommand_base: {
13
11
  new (
14
- input: AcceptConnectionProposalCommandInput
12
+ input: AcceptConnectionProposalCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  AcceptConnectionProposalCommandInput,
17
15
  AcceptConnectionProposalCommandOutput,
@@ -20,7 +18,7 @@ declare const AcceptConnectionProposalCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: AcceptConnectionProposalCommandInput
21
+ input: AcceptConnectionProposalCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  AcceptConnectionProposalCommandInput,
26
24
  AcceptConnectionProposalCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateConnectionRequest,
4
- CreateConnectionResponse,
5
- } from "../models/models_0";
2
+ import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface CreateConnectionCommandInput extends CreateConnectionRequest {}
8
- export interface CreateConnectionCommandOutput
9
- extends CreateConnectionResponse,
10
- __MetadataBearer {}
5
+ export interface CreateConnectionCommandOutput extends CreateConnectionResponse, __MetadataBearer {}
11
6
  declare const CreateConnectionCommand_base: {
12
7
  new (
13
- input: CreateConnectionCommandInput
8
+ input: CreateConnectionCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  CreateConnectionCommandInput,
16
11
  CreateConnectionCommandOutput,
@@ -19,7 +14,7 @@ declare const CreateConnectionCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: CreateConnectionCommandInput
17
+ input: CreateConnectionCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  CreateConnectionCommandInput,
25
20
  CreateConnectionCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteConnectionRequest,
4
- DeleteConnectionResponse,
5
- } from "../models/models_0";
2
+ import { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface DeleteConnectionCommandInput extends DeleteConnectionRequest {}
8
- export interface DeleteConnectionCommandOutput
9
- extends DeleteConnectionResponse,
10
- __MetadataBearer {}
5
+ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, __MetadataBearer {}
11
6
  declare const DeleteConnectionCommand_base: {
12
7
  new (
13
- input: DeleteConnectionCommandInput
8
+ input: DeleteConnectionCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  DeleteConnectionCommandInput,
16
11
  DeleteConnectionCommandOutput,
@@ -19,7 +14,7 @@ declare const DeleteConnectionCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: DeleteConnectionCommandInput
17
+ input: DeleteConnectionCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  DeleteConnectionCommandInput,
25
20
  DeleteConnectionCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DescribeConnectionProposalResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DescribeConnectionProposalCommandInput
8
- extends DescribeConnectionProposalRequest {}
7
+ export interface DescribeConnectionProposalCommandInput extends DescribeConnectionProposalRequest {}
9
8
  export interface DescribeConnectionProposalCommandOutput
10
- extends DescribeConnectionProposalResponse,
11
- __MetadataBearer {}
9
+ extends DescribeConnectionProposalResponse, __MetadataBearer {}
12
10
  declare const DescribeConnectionProposalCommand_base: {
13
11
  new (
14
- input: DescribeConnectionProposalCommandInput
12
+ input: DescribeConnectionProposalCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DescribeConnectionProposalCommandInput,
17
15
  DescribeConnectionProposalCommandOutput,
@@ -20,7 +18,7 @@ declare const DescribeConnectionProposalCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: DescribeConnectionProposalCommandInput
21
+ input: DescribeConnectionProposalCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  DescribeConnectionProposalCommandInput,
26
24
  DescribeConnectionProposalCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetConnectionRequest,
4
- GetConnectionResponse,
5
- } from "../models/models_0";
2
+ import { GetConnectionRequest, GetConnectionResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetConnectionCommandInput extends GetConnectionRequest {}
8
- export interface GetConnectionCommandOutput
9
- extends GetConnectionResponse,
10
- __MetadataBearer {}
5
+ export interface GetConnectionCommandOutput extends GetConnectionResponse, __MetadataBearer {}
11
6
  declare const GetConnectionCommand_base: {
12
7
  new (
13
- input: GetConnectionCommandInput
8
+ input: GetConnectionCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetConnectionCommandInput,
16
11
  GetConnectionCommandOutput,
@@ -19,7 +14,7 @@ declare const GetConnectionCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetConnectionCommandInput
17
+ input: GetConnectionCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetConnectionCommandInput,
25
20
  GetConnectionCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetEnvironmentRequest,
4
- GetEnvironmentResponse,
5
- } from "../models/models_0";
2
+ import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {}
8
- export interface GetEnvironmentCommandOutput
9
- extends GetEnvironmentResponse,
10
- __MetadataBearer {}
5
+ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __MetadataBearer {}
11
6
  declare const GetEnvironmentCommand_base: {
12
7
  new (
13
- input: GetEnvironmentCommandInput
8
+ input: GetEnvironmentCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetEnvironmentCommandInput,
16
11
  GetEnvironmentCommandOutput,
@@ -19,7 +14,7 @@ declare const GetEnvironmentCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetEnvironmentCommandInput
17
+ input: GetEnvironmentCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetEnvironmentCommandInput,
25
20
  GetEnvironmentCommandOutput,