@aws-sdk/client-interconnect 3.1030.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 (137) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +311 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +454 -0
  7. package/dist-cjs/models/InterconnectServiceException.js +12 -0
  8. package/dist-cjs/models/errors.js +95 -0
  9. package/dist-cjs/runtimeConfig.browser.js +38 -0
  10. package/dist-cjs/runtimeConfig.js +54 -0
  11. package/dist-cjs/runtimeConfig.native.js +15 -0
  12. package/dist-cjs/runtimeConfig.shared.js +43 -0
  13. package/dist-cjs/schemas/schemas_0.js +379 -0
  14. package/dist-es/Interconnect.js +47 -0
  15. package/dist-es/InterconnectClient.js +50 -0
  16. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  17. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  18. package/dist-es/commands/AcceptConnectionProposalCommand.js +16 -0
  19. package/dist-es/commands/CreateConnectionCommand.js +16 -0
  20. package/dist-es/commands/DeleteConnectionCommand.js +16 -0
  21. package/dist-es/commands/DescribeConnectionProposalCommand.js +16 -0
  22. package/dist-es/commands/GetConnectionCommand.js +16 -0
  23. package/dist-es/commands/GetEnvironmentCommand.js +16 -0
  24. package/dist-es/commands/ListAttachPointsCommand.js +16 -0
  25. package/dist-es/commands/ListConnectionsCommand.js +16 -0
  26. package/dist-es/commands/ListEnvironmentsCommand.js +16 -0
  27. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  28. package/dist-es/commands/TagResourceCommand.js +16 -0
  29. package/dist-es/commands/UntagResourceCommand.js +16 -0
  30. package/dist-es/commands/UpdateConnectionCommand.js +16 -0
  31. package/dist-es/commands/index.js +13 -0
  32. package/dist-es/endpoint/EndpointParameters.js +11 -0
  33. package/dist-es/endpoint/endpointResolver.js +14 -0
  34. package/dist-es/endpoint/ruleset.js +4 -0
  35. package/dist-es/extensionConfiguration.js +1 -0
  36. package/dist-es/index.js +10 -0
  37. package/dist-es/models/InterconnectServiceException.js +8 -0
  38. package/dist-es/models/enums.js +22 -0
  39. package/dist-es/models/errors.js +85 -0
  40. package/dist-es/models/models_0.js +1 -0
  41. package/dist-es/pagination/Interfaces.js +1 -0
  42. package/dist-es/pagination/ListAttachPointsPaginator.js +4 -0
  43. package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
  44. package/dist-es/pagination/ListEnvironmentsPaginator.js +4 -0
  45. package/dist-es/pagination/index.js +4 -0
  46. package/dist-es/runtimeConfig.browser.js +33 -0
  47. package/dist-es/runtimeConfig.js +49 -0
  48. package/dist-es/runtimeConfig.native.js +11 -0
  49. package/dist-es/runtimeConfig.shared.js +39 -0
  50. package/dist-es/runtimeExtensions.js +9 -0
  51. package/dist-es/schemas/schemas_0.js +375 -0
  52. package/dist-es/waiters/index.js +2 -0
  53. package/dist-es/waiters/waitForConnectionAvailable.js +49 -0
  54. package/dist-es/waiters/waitForConnectionDeleted.js +31 -0
  55. package/dist-types/Interconnect.d.ts +137 -0
  56. package/dist-types/InterconnectClient.d.ts +200 -0
  57. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  58. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  59. package/dist-types/commands/AcceptConnectionProposalCommand.d.ts +164 -0
  60. package/dist-types/commands/CreateConnectionCommand.d.ts +172 -0
  61. package/dist-types/commands/DeleteConnectionCommand.d.ts +153 -0
  62. package/dist-types/commands/DescribeConnectionProposalCommand.d.ts +121 -0
  63. package/dist-types/commands/GetConnectionCommand.d.ts +152 -0
  64. package/dist-types/commands/GetEnvironmentCommand.d.ts +146 -0
  65. package/dist-types/commands/ListAttachPointsCommand.d.ts +125 -0
  66. package/dist-types/commands/ListConnectionsCommand.d.ts +242 -0
  67. package/dist-types/commands/ListEnvironmentsCommand.d.ts +173 -0
  68. package/dist-types/commands/ListTagsForResourceCommand.d.ts +115 -0
  69. package/dist-types/commands/TagResourceCommand.d.ts +113 -0
  70. package/dist-types/commands/UntagResourceCommand.d.ts +113 -0
  71. package/dist-types/commands/UpdateConnectionCommand.d.ts +190 -0
  72. package/dist-types/commands/index.d.ts +13 -0
  73. package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
  74. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  75. package/dist-types/endpoint/ruleset.d.ts +2 -0
  76. package/dist-types/extensionConfiguration.d.ts +9 -0
  77. package/dist-types/index.d.ts +18 -0
  78. package/dist-types/models/InterconnectServiceException.d.ts +14 -0
  79. package/dist-types/models/enums.d.ts +54 -0
  80. package/dist-types/models/errors.d.ts +86 -0
  81. package/dist-types/models/models_0.d.ts +764 -0
  82. package/dist-types/pagination/Interfaces.d.ts +8 -0
  83. package/dist-types/pagination/ListAttachPointsPaginator.d.ts +7 -0
  84. package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
  85. package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +7 -0
  86. package/dist-types/pagination/index.d.ts +4 -0
  87. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  88. package/dist-types/runtimeConfig.d.ts +55 -0
  89. package/dist-types/runtimeConfig.native.d.ts +54 -0
  90. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  91. package/dist-types/runtimeExtensions.d.ts +17 -0
  92. package/dist-types/schemas/schemas_0.d.ts +63 -0
  93. package/dist-types/ts3.4/Interconnect.d.ts +275 -0
  94. package/dist-types/ts3.4/InterconnectClient.d.ts +197 -0
  95. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  96. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  97. package/dist-types/ts3.4/commands/AcceptConnectionProposalCommand.d.ts +51 -0
  98. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +50 -0
  99. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +50 -0
  100. package/dist-types/ts3.4/commands/DescribeConnectionProposalCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +50 -0
  102. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +50 -0
  103. package/dist-types/ts3.4/commands/ListAttachPointsCommand.d.ts +50 -0
  104. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +50 -0
  105. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +50 -0
  106. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  107. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  108. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  109. package/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +50 -0
  110. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  111. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  112. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  113. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  114. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  115. package/dist-types/ts3.4/index.d.ts +13 -0
  116. package/dist-types/ts3.4/models/InterconnectServiceException.d.ts +9 -0
  117. package/dist-types/ts3.4/models/enums.d.ts +30 -0
  118. package/dist-types/ts3.4/models/errors.d.ts +54 -0
  119. package/dist-types/ts3.4/models/models_0.d.ts +231 -0
  120. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  121. package/dist-types/ts3.4/pagination/ListAttachPointsPaginator.d.ts +11 -0
  122. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
  123. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -0
  124. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  125. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
  126. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  127. package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
  128. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  129. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  130. package/dist-types/ts3.4/schemas/schemas_0.d.ts +63 -0
  131. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  132. package/dist-types/ts3.4/waiters/waitForConnectionAvailable.d.ts +11 -0
  133. package/dist-types/ts3.4/waiters/waitForConnectionDeleted.d.ts +11 -0
  134. package/dist-types/waiters/index.d.ts +2 -0
  135. package/dist-types/waiters/waitForConnectionAvailable.d.ts +14 -0
  136. package/dist-types/waiters/waitForConnectionDeleted.d.ts +14 -0
  137. package/package.json +101 -0
@@ -0,0 +1,197 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ DefaultsMode as __DefaultsMode,
24
+ SmithyConfiguration as __SmithyConfiguration,
25
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
+ Client as __Client,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ StreamCollector as __StreamCollector,
40
+ UrlParser as __UrlParser,
41
+ UserAgent as __UserAgent,
42
+ } from "@smithy/types";
43
+ import {
44
+ HttpAuthSchemeInputConfig,
45
+ HttpAuthSchemeResolvedConfig,
46
+ } from "./auth/httpAuthSchemeProvider";
47
+ import {
48
+ AcceptConnectionProposalCommandInput,
49
+ AcceptConnectionProposalCommandOutput,
50
+ } from "./commands/AcceptConnectionProposalCommand";
51
+ import {
52
+ CreateConnectionCommandInput,
53
+ CreateConnectionCommandOutput,
54
+ } from "./commands/CreateConnectionCommand";
55
+ import {
56
+ DeleteConnectionCommandInput,
57
+ DeleteConnectionCommandOutput,
58
+ } from "./commands/DeleteConnectionCommand";
59
+ import {
60
+ DescribeConnectionProposalCommandInput,
61
+ DescribeConnectionProposalCommandOutput,
62
+ } from "./commands/DescribeConnectionProposalCommand";
63
+ import {
64
+ GetConnectionCommandInput,
65
+ GetConnectionCommandOutput,
66
+ } from "./commands/GetConnectionCommand";
67
+ import {
68
+ GetEnvironmentCommandInput,
69
+ GetEnvironmentCommandOutput,
70
+ } from "./commands/GetEnvironmentCommand";
71
+ import {
72
+ ListAttachPointsCommandInput,
73
+ ListAttachPointsCommandOutput,
74
+ } from "./commands/ListAttachPointsCommand";
75
+ import {
76
+ ListConnectionsCommandInput,
77
+ ListConnectionsCommandOutput,
78
+ } from "./commands/ListConnectionsCommand";
79
+ import {
80
+ ListEnvironmentsCommandInput,
81
+ ListEnvironmentsCommandOutput,
82
+ } from "./commands/ListEnvironmentsCommand";
83
+ import {
84
+ ListTagsForResourceCommandInput,
85
+ ListTagsForResourceCommandOutput,
86
+ } from "./commands/ListTagsForResourceCommand";
87
+ import {
88
+ TagResourceCommandInput,
89
+ TagResourceCommandOutput,
90
+ } from "./commands/TagResourceCommand";
91
+ import {
92
+ UntagResourceCommandInput,
93
+ UntagResourceCommandOutput,
94
+ } from "./commands/UntagResourceCommand";
95
+ import {
96
+ UpdateConnectionCommandInput,
97
+ UpdateConnectionCommandOutput,
98
+ } from "./commands/UpdateConnectionCommand";
99
+ import {
100
+ ClientInputEndpointParameters,
101
+ ClientResolvedEndpointParameters,
102
+ EndpointParameters,
103
+ } from "./endpoint/EndpointParameters";
104
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
105
+ export { __Client };
106
+ export type ServiceInputTypes =
107
+ | AcceptConnectionProposalCommandInput
108
+ | CreateConnectionCommandInput
109
+ | DeleteConnectionCommandInput
110
+ | DescribeConnectionProposalCommandInput
111
+ | GetConnectionCommandInput
112
+ | GetEnvironmentCommandInput
113
+ | ListAttachPointsCommandInput
114
+ | ListConnectionsCommandInput
115
+ | ListEnvironmentsCommandInput
116
+ | ListTagsForResourceCommandInput
117
+ | TagResourceCommandInput
118
+ | UntagResourceCommandInput
119
+ | UpdateConnectionCommandInput;
120
+ export type ServiceOutputTypes =
121
+ | AcceptConnectionProposalCommandOutput
122
+ | CreateConnectionCommandOutput
123
+ | DeleteConnectionCommandOutput
124
+ | DescribeConnectionProposalCommandOutput
125
+ | GetConnectionCommandOutput
126
+ | GetEnvironmentCommandOutput
127
+ | ListAttachPointsCommandOutput
128
+ | ListConnectionsCommandOutput
129
+ | ListEnvironmentsCommandOutput
130
+ | ListTagsForResourceCommandOutput
131
+ | TagResourceCommandOutput
132
+ | UntagResourceCommandOutput
133
+ | UpdateConnectionCommandOutput;
134
+ export interface ClientDefaults
135
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
136
+ requestHandler?: __HttpHandlerUserInput;
137
+ sha256?: __ChecksumConstructor | __HashConstructor;
138
+ urlParser?: __UrlParser;
139
+ bodyLengthChecker?: __BodyLengthCalculator;
140
+ streamCollector?: __StreamCollector;
141
+ base64Decoder?: __Decoder;
142
+ base64Encoder?: __Encoder;
143
+ utf8Decoder?: __Decoder;
144
+ utf8Encoder?: __Encoder;
145
+ runtime?: string;
146
+ disableHostPrefix?: boolean;
147
+ serviceId?: string;
148
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
149
+ useFipsEndpoint?: boolean | __Provider<boolean>;
150
+ region?: string | __Provider<string>;
151
+ profile?: string;
152
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
153
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
154
+ maxAttempts?: number | __Provider<number>;
155
+ retryMode?: string | __Provider<string>;
156
+ logger?: __Logger;
157
+ extensions?: RuntimeExtension[];
158
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
159
+ }
160
+ export type InterconnectClientConfigType = Partial<
161
+ __SmithyConfiguration<__HttpHandlerOptions>
162
+ > &
163
+ ClientDefaults &
164
+ UserAgentInputConfig &
165
+ RetryInputConfig &
166
+ RegionInputConfig &
167
+ HostHeaderInputConfig &
168
+ EndpointInputConfig<EndpointParameters> &
169
+ HttpAuthSchemeInputConfig &
170
+ ClientInputEndpointParameters;
171
+ export interface InterconnectClientConfig
172
+ extends InterconnectClientConfigType {}
173
+ export type InterconnectClientResolvedConfigType =
174
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
175
+ Required<ClientDefaults> &
176
+ RuntimeExtensionsConfig &
177
+ UserAgentResolvedConfig &
178
+ RetryResolvedConfig &
179
+ RegionResolvedConfig &
180
+ HostHeaderResolvedConfig &
181
+ EndpointResolvedConfig<EndpointParameters> &
182
+ HttpAuthSchemeResolvedConfig &
183
+ ClientResolvedEndpointParameters;
184
+ export interface InterconnectClientResolvedConfig
185
+ extends InterconnectClientResolvedConfigType {}
186
+ export declare class InterconnectClient extends __Client<
187
+ __HttpHandlerOptions,
188
+ ServiceInputTypes,
189
+ ServiceOutputTypes,
190
+ InterconnectClientResolvedConfig
191
+ > {
192
+ readonly config: InterconnectClientResolvedConfig;
193
+ constructor(
194
+ ...[configuration]: __CheckOptionalClientConfig<InterconnectClientConfig>
195
+ );
196
+ destroy(): void;
197
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { InterconnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: InterconnectHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): InterconnectHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: InterconnectHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,47 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core/httpAuthSchemes";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ Provider,
13
+ } from "@smithy/types";
14
+ import { InterconnectClientResolvedConfig } from "../InterconnectClient";
15
+ export interface InterconnectHttpAuthSchemeParameters
16
+ extends HttpAuthSchemeParameters {
17
+ region?: string;
18
+ }
19
+ export interface InterconnectHttpAuthSchemeParametersProvider
20
+ extends HttpAuthSchemeParametersProvider<
21
+ InterconnectClientResolvedConfig,
22
+ HandlerExecutionContext,
23
+ InterconnectHttpAuthSchemeParameters,
24
+ object
25
+ > {}
26
+ export declare const defaultInterconnectHttpAuthSchemeParametersProvider: (
27
+ config: InterconnectClientResolvedConfig,
28
+ context: HandlerExecutionContext,
29
+ input: object
30
+ ) => Promise<InterconnectHttpAuthSchemeParameters>;
31
+ export interface InterconnectHttpAuthSchemeProvider
32
+ extends HttpAuthSchemeProvider<InterconnectHttpAuthSchemeParameters> {}
33
+ export declare const defaultInterconnectHttpAuthSchemeProvider: InterconnectHttpAuthSchemeProvider;
34
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
+ authSchemePreference?: string[] | Provider<string[]>;
36
+ httpAuthSchemes?: HttpAuthScheme[];
37
+ httpAuthSchemeProvider?: InterconnectHttpAuthSchemeProvider;
38
+ }
39
+ export interface HttpAuthSchemeResolvedConfig
40
+ extends AwsSdkSigV4AuthResolvedConfig {
41
+ readonly authSchemePreference: Provider<string[]>;
42
+ readonly httpAuthSchemes: HttpAuthScheme[];
43
+ readonly httpAuthSchemeProvider: InterconnectHttpAuthSchemeProvider;
44
+ }
45
+ export declare const resolveHttpAuthSchemeConfig: <T>(
46
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
47
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InterconnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../InterconnectClient";
8
+ import {
9
+ AcceptConnectionProposalRequest,
10
+ AcceptConnectionProposalResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface AcceptConnectionProposalCommandInput
15
+ extends AcceptConnectionProposalRequest {}
16
+ export interface AcceptConnectionProposalCommandOutput
17
+ extends AcceptConnectionProposalResponse,
18
+ __MetadataBearer {}
19
+ declare const AcceptConnectionProposalCommand_base: {
20
+ new (
21
+ input: AcceptConnectionProposalCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ AcceptConnectionProposalCommandInput,
24
+ AcceptConnectionProposalCommandOutput,
25
+ InterconnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: AcceptConnectionProposalCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ AcceptConnectionProposalCommandInput,
33
+ AcceptConnectionProposalCommandOutput,
34
+ InterconnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class AcceptConnectionProposalCommand extends AcceptConnectionProposalCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: AcceptConnectionProposalRequest;
44
+ output: AcceptConnectionProposalResponse;
45
+ };
46
+ sdk: {
47
+ input: AcceptConnectionProposalCommandInput;
48
+ output: AcceptConnectionProposalCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InterconnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../InterconnectClient";
8
+ import {
9
+ CreateConnectionRequest,
10
+ CreateConnectionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateConnectionCommandInput extends CreateConnectionRequest {}
15
+ export interface CreateConnectionCommandOutput
16
+ extends CreateConnectionResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateConnectionCommand_base: {
19
+ new (
20
+ input: CreateConnectionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateConnectionCommandInput,
23
+ CreateConnectionCommandOutput,
24
+ InterconnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateConnectionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateConnectionCommandInput,
32
+ CreateConnectionCommandOutput,
33
+ InterconnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateConnectionCommand extends CreateConnectionCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateConnectionRequest;
43
+ output: CreateConnectionResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateConnectionCommandInput;
47
+ output: CreateConnectionCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InterconnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../InterconnectClient";
8
+ import {
9
+ DeleteConnectionRequest,
10
+ DeleteConnectionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteConnectionCommandInput extends DeleteConnectionRequest {}
15
+ export interface DeleteConnectionCommandOutput
16
+ extends DeleteConnectionResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteConnectionCommand_base: {
19
+ new (
20
+ input: DeleteConnectionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteConnectionCommandInput,
23
+ DeleteConnectionCommandOutput,
24
+ InterconnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DeleteConnectionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteConnectionCommandInput,
32
+ DeleteConnectionCommandOutput,
33
+ InterconnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteConnectionCommand extends DeleteConnectionCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteConnectionRequest;
43
+ output: DeleteConnectionResponse;
44
+ };
45
+ sdk: {
46
+ input: DeleteConnectionCommandInput;
47
+ output: DeleteConnectionCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InterconnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../InterconnectClient";
8
+ import {
9
+ DescribeConnectionProposalRequest,
10
+ DescribeConnectionProposalResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeConnectionProposalCommandInput
15
+ extends DescribeConnectionProposalRequest {}
16
+ export interface DescribeConnectionProposalCommandOutput
17
+ extends DescribeConnectionProposalResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeConnectionProposalCommand_base: {
20
+ new (
21
+ input: DescribeConnectionProposalCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeConnectionProposalCommandInput,
24
+ DescribeConnectionProposalCommandOutput,
25
+ InterconnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeConnectionProposalCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeConnectionProposalCommandInput,
33
+ DescribeConnectionProposalCommandOutput,
34
+ InterconnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeConnectionProposalCommand extends DescribeConnectionProposalCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeConnectionProposalRequest;
44
+ output: DescribeConnectionProposalResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeConnectionProposalCommandInput;
48
+ output: DescribeConnectionProposalCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InterconnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../InterconnectClient";
8
+ import {
9
+ GetConnectionRequest,
10
+ GetConnectionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetConnectionCommandInput extends GetConnectionRequest {}
15
+ export interface GetConnectionCommandOutput
16
+ extends GetConnectionResponse,
17
+ __MetadataBearer {}
18
+ declare const GetConnectionCommand_base: {
19
+ new (
20
+ input: GetConnectionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetConnectionCommandInput,
23
+ GetConnectionCommandOutput,
24
+ InterconnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetConnectionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetConnectionCommandInput,
32
+ GetConnectionCommandOutput,
33
+ InterconnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetConnectionCommand extends GetConnectionCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetConnectionRequest;
43
+ output: GetConnectionResponse;
44
+ };
45
+ sdk: {
46
+ input: GetConnectionCommandInput;
47
+ output: GetConnectionCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InterconnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../InterconnectClient";
8
+ import {
9
+ GetEnvironmentRequest,
10
+ GetEnvironmentResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {}
15
+ export interface GetEnvironmentCommandOutput
16
+ extends GetEnvironmentResponse,
17
+ __MetadataBearer {}
18
+ declare const GetEnvironmentCommand_base: {
19
+ new (
20
+ input: GetEnvironmentCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetEnvironmentCommandInput,
23
+ GetEnvironmentCommandOutput,
24
+ InterconnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetEnvironmentCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetEnvironmentCommandInput,
32
+ GetEnvironmentCommandOutput,
33
+ InterconnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetEnvironmentCommand extends GetEnvironmentCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetEnvironmentRequest;
43
+ output: GetEnvironmentResponse;
44
+ };
45
+ sdk: {
46
+ input: GetEnvironmentCommandInput;
47
+ output: GetEnvironmentCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InterconnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../InterconnectClient";
8
+ import {
9
+ ListAttachPointsRequest,
10
+ ListAttachPointsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAttachPointsCommandInput extends ListAttachPointsRequest {}
15
+ export interface ListAttachPointsCommandOutput
16
+ extends ListAttachPointsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListAttachPointsCommand_base: {
19
+ new (
20
+ input: ListAttachPointsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListAttachPointsCommandInput,
23
+ ListAttachPointsCommandOutput,
24
+ InterconnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListAttachPointsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListAttachPointsCommandInput,
32
+ ListAttachPointsCommandOutput,
33
+ InterconnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListAttachPointsCommand extends ListAttachPointsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListAttachPointsRequest;
43
+ output: ListAttachPointsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListAttachPointsCommandInput;
47
+ output: ListAttachPointsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InterconnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../InterconnectClient";
8
+ import {
9
+ ListConnectionsRequest,
10
+ ListConnectionsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListConnectionsCommandInput extends ListConnectionsRequest {}
15
+ export interface ListConnectionsCommandOutput
16
+ extends ListConnectionsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListConnectionsCommand_base: {
19
+ new (
20
+ input: ListConnectionsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListConnectionsCommandInput,
23
+ ListConnectionsCommandOutput,
24
+ InterconnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListConnectionsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListConnectionsCommandInput,
32
+ ListConnectionsCommandOutput,
33
+ InterconnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListConnectionsCommand extends ListConnectionsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListConnectionsRequest;
43
+ output: ListConnectionsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListConnectionsCommandInput;
47
+ output: ListConnectionsCommandOutput;
48
+ };
49
+ };
50
+ }