@aws-sdk/client-migration-hub-refactor-spaces 3.169.0 → 3.171.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 (46) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MigrationHubRefactorSpaces.d.ts +412 -125
  3. package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +249 -97
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/GetRouteCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListEnvironmentVpcsCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/UpdateRouteCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/index.d.ts +24 -24
  29. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  30. package/dist-types/ts3.4/index.d.ts +6 -6
  31. package/dist-types/ts3.4/models/MigrationHubRefactorSpacesServiceException.d.ts +7 -6
  32. package/dist-types/ts3.4/models/index.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +820 -1124
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  35. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListEnvironmentVpcsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListRoutesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  46. package/package.json +34 -34
@@ -1,97 +1,249 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
10
- import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
11
- import { CreateRouteCommandInput, CreateRouteCommandOutput } from "./commands/CreateRouteCommand";
12
- import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
13
- import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
14
- import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
15
- import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
16
- import { DeleteRouteCommandInput, DeleteRouteCommandOutput } from "./commands/DeleteRouteCommand";
17
- import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
18
- import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
19
- import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
20
- import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
21
- import { GetRouteCommandInput, GetRouteCommandOutput } from "./commands/GetRouteCommand";
22
- import { GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
23
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
24
- import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
25
- import { ListEnvironmentVpcsCommandInput, ListEnvironmentVpcsCommandOutput } from "./commands/ListEnvironmentVpcsCommand";
26
- import { ListRoutesCommandInput, ListRoutesCommandOutput } from "./commands/ListRoutesCommand";
27
- import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
28
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
29
- import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
30
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
31
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
32
- import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
33
- export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateEnvironmentCommandInput | CreateRouteCommandInput | CreateServiceCommandInput | DeleteApplicationCommandInput | DeleteEnvironmentCommandInput | DeleteResourcePolicyCommandInput | DeleteRouteCommandInput | DeleteServiceCommandInput | GetApplicationCommandInput | GetEnvironmentCommandInput | GetResourcePolicyCommandInput | GetRouteCommandInput | GetServiceCommandInput | ListApplicationsCommandInput | ListEnvironmentVpcsCommandInput | ListEnvironmentsCommandInput | ListRoutesCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | PutResourcePolicyCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateRouteCommandInput;
34
- export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateEnvironmentCommandOutput | CreateRouteCommandOutput | CreateServiceCommandOutput | DeleteApplicationCommandOutput | DeleteEnvironmentCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRouteCommandOutput | DeleteServiceCommandOutput | GetApplicationCommandOutput | GetEnvironmentCommandOutput | GetResourcePolicyCommandOutput | GetRouteCommandOutput | GetServiceCommandOutput | ListApplicationsCommandOutput | ListEnvironmentVpcsCommandOutput | ListEnvironmentsCommandOutput | ListRoutesCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | PutResourcePolicyCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateRouteCommandOutput;
35
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
36
-
37
- requestHandler?: __HttpHandler;
38
-
39
- sha256?: __HashConstructor;
40
-
41
- urlParser?: __UrlParser;
42
-
43
- bodyLengthChecker?: __BodyLengthCalculator;
44
-
45
- streamCollector?: __StreamCollector;
46
-
47
- base64Decoder?: __Decoder;
48
-
49
- base64Encoder?: __Encoder;
50
-
51
- utf8Decoder?: __Decoder;
52
-
53
- utf8Encoder?: __Encoder;
54
-
55
- runtime?: string;
56
-
57
- disableHostPrefix?: boolean;
58
-
59
- maxAttempts?: number | __Provider<number>;
60
-
61
- retryMode?: string | __Provider<string>;
62
-
63
- logger?: __Logger;
64
-
65
- useDualstackEndpoint?: boolean | __Provider<boolean>;
66
-
67
- useFipsEndpoint?: boolean | __Provider<boolean>;
68
-
69
- serviceId?: string;
70
-
71
- region?: string | __Provider<string>;
72
-
73
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
74
-
75
- regionInfoProvider?: RegionInfoProvider;
76
-
77
- defaultUserAgentProvider?: Provider<__UserAgent>;
78
-
79
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
80
- }
81
- declare type MigrationHubRefactorSpacesClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
82
-
83
- export interface MigrationHubRefactorSpacesClientConfig extends MigrationHubRefactorSpacesClientConfigType {
84
- }
85
- declare type MigrationHubRefactorSpacesClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
86
-
87
- export interface MigrationHubRefactorSpacesClientResolvedConfig extends MigrationHubRefactorSpacesClientResolvedConfigType {
88
- }
89
-
90
- export declare class MigrationHubRefactorSpacesClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MigrationHubRefactorSpacesClientResolvedConfig> {
91
-
92
- readonly config: MigrationHubRefactorSpacesClientResolvedConfig;
93
- constructor(configuration: MigrationHubRefactorSpacesClientConfig);
94
-
95
- destroy(): void;
96
- }
97
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
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
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateApplicationCommandInput,
47
+ CreateApplicationCommandOutput,
48
+ } from "./commands/CreateApplicationCommand";
49
+ import {
50
+ CreateEnvironmentCommandInput,
51
+ CreateEnvironmentCommandOutput,
52
+ } from "./commands/CreateEnvironmentCommand";
53
+ import {
54
+ CreateRouteCommandInput,
55
+ CreateRouteCommandOutput,
56
+ } from "./commands/CreateRouteCommand";
57
+ import {
58
+ CreateServiceCommandInput,
59
+ CreateServiceCommandOutput,
60
+ } from "./commands/CreateServiceCommand";
61
+ import {
62
+ DeleteApplicationCommandInput,
63
+ DeleteApplicationCommandOutput,
64
+ } from "./commands/DeleteApplicationCommand";
65
+ import {
66
+ DeleteEnvironmentCommandInput,
67
+ DeleteEnvironmentCommandOutput,
68
+ } from "./commands/DeleteEnvironmentCommand";
69
+ import {
70
+ DeleteResourcePolicyCommandInput,
71
+ DeleteResourcePolicyCommandOutput,
72
+ } from "./commands/DeleteResourcePolicyCommand";
73
+ import {
74
+ DeleteRouteCommandInput,
75
+ DeleteRouteCommandOutput,
76
+ } from "./commands/DeleteRouteCommand";
77
+ import {
78
+ DeleteServiceCommandInput,
79
+ DeleteServiceCommandOutput,
80
+ } from "./commands/DeleteServiceCommand";
81
+ import {
82
+ GetApplicationCommandInput,
83
+ GetApplicationCommandOutput,
84
+ } from "./commands/GetApplicationCommand";
85
+ import {
86
+ GetEnvironmentCommandInput,
87
+ GetEnvironmentCommandOutput,
88
+ } from "./commands/GetEnvironmentCommand";
89
+ import {
90
+ GetResourcePolicyCommandInput,
91
+ GetResourcePolicyCommandOutput,
92
+ } from "./commands/GetResourcePolicyCommand";
93
+ import {
94
+ GetRouteCommandInput,
95
+ GetRouteCommandOutput,
96
+ } from "./commands/GetRouteCommand";
97
+ import {
98
+ GetServiceCommandInput,
99
+ GetServiceCommandOutput,
100
+ } from "./commands/GetServiceCommand";
101
+ import {
102
+ ListApplicationsCommandInput,
103
+ ListApplicationsCommandOutput,
104
+ } from "./commands/ListApplicationsCommand";
105
+ import {
106
+ ListEnvironmentsCommandInput,
107
+ ListEnvironmentsCommandOutput,
108
+ } from "./commands/ListEnvironmentsCommand";
109
+ import {
110
+ ListEnvironmentVpcsCommandInput,
111
+ ListEnvironmentVpcsCommandOutput,
112
+ } from "./commands/ListEnvironmentVpcsCommand";
113
+ import {
114
+ ListRoutesCommandInput,
115
+ ListRoutesCommandOutput,
116
+ } from "./commands/ListRoutesCommand";
117
+ import {
118
+ ListServicesCommandInput,
119
+ ListServicesCommandOutput,
120
+ } from "./commands/ListServicesCommand";
121
+ import {
122
+ ListTagsForResourceCommandInput,
123
+ ListTagsForResourceCommandOutput,
124
+ } from "./commands/ListTagsForResourceCommand";
125
+ import {
126
+ PutResourcePolicyCommandInput,
127
+ PutResourcePolicyCommandOutput,
128
+ } from "./commands/PutResourcePolicyCommand";
129
+ import {
130
+ TagResourceCommandInput,
131
+ TagResourceCommandOutput,
132
+ } from "./commands/TagResourceCommand";
133
+ import {
134
+ UntagResourceCommandInput,
135
+ UntagResourceCommandOutput,
136
+ } from "./commands/UntagResourceCommand";
137
+ import {
138
+ UpdateRouteCommandInput,
139
+ UpdateRouteCommandOutput,
140
+ } from "./commands/UpdateRouteCommand";
141
+ export declare type ServiceInputTypes =
142
+ | CreateApplicationCommandInput
143
+ | CreateEnvironmentCommandInput
144
+ | CreateRouteCommandInput
145
+ | CreateServiceCommandInput
146
+ | DeleteApplicationCommandInput
147
+ | DeleteEnvironmentCommandInput
148
+ | DeleteResourcePolicyCommandInput
149
+ | DeleteRouteCommandInput
150
+ | DeleteServiceCommandInput
151
+ | GetApplicationCommandInput
152
+ | GetEnvironmentCommandInput
153
+ | GetResourcePolicyCommandInput
154
+ | GetRouteCommandInput
155
+ | GetServiceCommandInput
156
+ | ListApplicationsCommandInput
157
+ | ListEnvironmentVpcsCommandInput
158
+ | ListEnvironmentsCommandInput
159
+ | ListRoutesCommandInput
160
+ | ListServicesCommandInput
161
+ | ListTagsForResourceCommandInput
162
+ | PutResourcePolicyCommandInput
163
+ | TagResourceCommandInput
164
+ | UntagResourceCommandInput
165
+ | UpdateRouteCommandInput;
166
+ export declare type ServiceOutputTypes =
167
+ | CreateApplicationCommandOutput
168
+ | CreateEnvironmentCommandOutput
169
+ | CreateRouteCommandOutput
170
+ | CreateServiceCommandOutput
171
+ | DeleteApplicationCommandOutput
172
+ | DeleteEnvironmentCommandOutput
173
+ | DeleteResourcePolicyCommandOutput
174
+ | DeleteRouteCommandOutput
175
+ | DeleteServiceCommandOutput
176
+ | GetApplicationCommandOutput
177
+ | GetEnvironmentCommandOutput
178
+ | GetResourcePolicyCommandOutput
179
+ | GetRouteCommandOutput
180
+ | GetServiceCommandOutput
181
+ | ListApplicationsCommandOutput
182
+ | ListEnvironmentVpcsCommandOutput
183
+ | ListEnvironmentsCommandOutput
184
+ | ListRoutesCommandOutput
185
+ | ListServicesCommandOutput
186
+ | ListTagsForResourceCommandOutput
187
+ | PutResourcePolicyCommandOutput
188
+ | TagResourceCommandOutput
189
+ | UntagResourceCommandOutput
190
+ | UpdateRouteCommandOutput;
191
+ export interface ClientDefaults
192
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
193
+ requestHandler?: __HttpHandler;
194
+ sha256?: __HashConstructor;
195
+ urlParser?: __UrlParser;
196
+ bodyLengthChecker?: __BodyLengthCalculator;
197
+ streamCollector?: __StreamCollector;
198
+ base64Decoder?: __Decoder;
199
+ base64Encoder?: __Encoder;
200
+ utf8Decoder?: __Decoder;
201
+ utf8Encoder?: __Encoder;
202
+ runtime?: string;
203
+ disableHostPrefix?: boolean;
204
+ maxAttempts?: number | __Provider<number>;
205
+ retryMode?: string | __Provider<string>;
206
+ logger?: __Logger;
207
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
208
+ useFipsEndpoint?: boolean | __Provider<boolean>;
209
+ serviceId?: string;
210
+ region?: string | __Provider<string>;
211
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
212
+ regionInfoProvider?: RegionInfoProvider;
213
+ defaultUserAgentProvider?: Provider<__UserAgent>;
214
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
215
+ }
216
+ declare type MigrationHubRefactorSpacesClientConfigType = Partial<
217
+ __SmithyConfiguration<__HttpHandlerOptions>
218
+ > &
219
+ ClientDefaults &
220
+ RegionInputConfig &
221
+ EndpointsInputConfig &
222
+ RetryInputConfig &
223
+ HostHeaderInputConfig &
224
+ AwsAuthInputConfig &
225
+ UserAgentInputConfig;
226
+ export interface MigrationHubRefactorSpacesClientConfig
227
+ extends MigrationHubRefactorSpacesClientConfigType {}
228
+ declare type MigrationHubRefactorSpacesClientResolvedConfigType =
229
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
230
+ Required<ClientDefaults> &
231
+ RegionResolvedConfig &
232
+ EndpointsResolvedConfig &
233
+ RetryResolvedConfig &
234
+ HostHeaderResolvedConfig &
235
+ AwsAuthResolvedConfig &
236
+ UserAgentResolvedConfig;
237
+ export interface MigrationHubRefactorSpacesClientResolvedConfig
238
+ extends MigrationHubRefactorSpacesClientResolvedConfigType {}
239
+ export declare class MigrationHubRefactorSpacesClient extends __Client<
240
+ __HttpHandlerOptions,
241
+ ServiceInputTypes,
242
+ ServiceOutputTypes,
243
+ MigrationHubRefactorSpacesClientResolvedConfig
244
+ > {
245
+ readonly config: MigrationHubRefactorSpacesClientResolvedConfig;
246
+ constructor(configuration: MigrationHubRefactorSpacesClientConfig);
247
+ destroy(): void;
248
+ }
249
+ export {};
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
5
- export interface CreateApplicationCommandInput extends CreateApplicationRequest {
6
- }
7
- export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: CreateApplicationCommandInput;
12
- constructor(input: CreateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MigrationHubRefactorSpacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MigrationHubRefactorSpacesClient";
13
+ import {
14
+ CreateApplicationRequest,
15
+ CreateApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateApplicationCommandInput
18
+ extends CreateApplicationRequest {}
19
+ export interface CreateApplicationCommandOutput
20
+ extends CreateApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateApplicationCommand extends $Command<
23
+ CreateApplicationCommandInput,
24
+ CreateApplicationCommandOutput,
25
+ MigrationHubRefactorSpacesClientResolvedConfig
26
+ > {
27
+ readonly input: CreateApplicationCommandInput;
28
+ constructor(input: CreateApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: MigrationHubRefactorSpacesClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0";
5
- export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest {
6
- }
7
- export interface CreateEnvironmentCommandOutput extends CreateEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateEnvironmentCommand extends $Command<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: CreateEnvironmentCommandInput;
12
- constructor(input: CreateEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MigrationHubRefactorSpacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MigrationHubRefactorSpacesClient";
13
+ import {
14
+ CreateEnvironmentRequest,
15
+ CreateEnvironmentResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateEnvironmentCommandInput
18
+ extends CreateEnvironmentRequest {}
19
+ export interface CreateEnvironmentCommandOutput
20
+ extends CreateEnvironmentResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateEnvironmentCommand extends $Command<
23
+ CreateEnvironmentCommandInput,
24
+ CreateEnvironmentCommandOutput,
25
+ MigrationHubRefactorSpacesClientResolvedConfig
26
+ > {
27
+ readonly input: CreateEnvironmentCommandInput;
28
+ constructor(input: CreateEnvironmentCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: MigrationHubRefactorSpacesClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { CreateRouteRequest, CreateRouteResponse } from "../models/models_0";
5
- export interface CreateRouteCommandInput extends CreateRouteRequest {
6
- }
7
- export interface CreateRouteCommandOutput extends CreateRouteResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateRouteCommand extends $Command<CreateRouteCommandInput, CreateRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: CreateRouteCommandInput;
12
- constructor(input: CreateRouteCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRouteCommandInput, CreateRouteCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MigrationHubRefactorSpacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MigrationHubRefactorSpacesClient";
13
+ import { CreateRouteRequest, CreateRouteResponse } from "../models/models_0";
14
+ export interface CreateRouteCommandInput extends CreateRouteRequest {}
15
+ export interface CreateRouteCommandOutput
16
+ extends CreateRouteResponse,
17
+ __MetadataBearer {}
18
+ export declare class CreateRouteCommand extends $Command<
19
+ CreateRouteCommandInput,
20
+ CreateRouteCommandOutput,
21
+ MigrationHubRefactorSpacesClientResolvedConfig
22
+ > {
23
+ readonly input: CreateRouteCommandInput;
24
+ constructor(input: CreateRouteCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: MigrationHubRefactorSpacesClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CreateRouteCommandInput, CreateRouteCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0";
5
- export interface CreateServiceCommandInput extends CreateServiceRequest {
6
- }
7
- export interface CreateServiceCommandOutput extends CreateServiceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: CreateServiceCommandInput;
12
- constructor(input: CreateServiceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateServiceCommandInput, CreateServiceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MigrationHubRefactorSpacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MigrationHubRefactorSpacesClient";
13
+ import {
14
+ CreateServiceRequest,
15
+ CreateServiceResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateServiceCommandInput extends CreateServiceRequest {}
18
+ export interface CreateServiceCommandOutput
19
+ extends CreateServiceResponse,
20
+ __MetadataBearer {}
21
+ export declare class CreateServiceCommand extends $Command<
22
+ CreateServiceCommandInput,
23
+ CreateServiceCommandOutput,
24
+ MigrationHubRefactorSpacesClientResolvedConfig
25
+ > {
26
+ readonly input: CreateServiceCommandInput;
27
+ constructor(input: CreateServiceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MigrationHubRefactorSpacesClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<CreateServiceCommandInput, CreateServiceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
5
- export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
6
- }
7
- export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: DeleteApplicationCommandInput;
12
- constructor(input: DeleteApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MigrationHubRefactorSpacesClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MigrationHubRefactorSpacesClient";
13
+ import {
14
+ DeleteApplicationRequest,
15
+ DeleteApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationCommandInput
18
+ extends DeleteApplicationRequest {}
19
+ export interface DeleteApplicationCommandOutput
20
+ extends DeleteApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteApplicationCommand extends $Command<
23
+ DeleteApplicationCommandInput,
24
+ DeleteApplicationCommandOutput,
25
+ MigrationHubRefactorSpacesClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteApplicationCommandInput;
28
+ constructor(input: DeleteApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: MigrationHubRefactorSpacesClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }