@aws-sdk/client-migration-hub-refactor-spaces 3.295.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/MigrationHubRefactorSpaces.d.ts +25 -0
- package/dist-types/MigrationHubRefactorSpacesClient.d.ts +24 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/CreateRouteCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRouteCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetRouteCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentVpcsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListRoutesCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRouteCommand.d.ts +16 -0
- package/dist-types/models/MigrationHubRefactorSpacesServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +208 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentVpcsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRoutesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -25,6 +25,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
25
25
|
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
|
|
26
26
|
import { MigrationHubRefactorSpacesClient } from "./MigrationHubRefactorSpacesClient";
|
|
27
27
|
/**
|
|
28
|
+
* @public
|
|
28
29
|
* <fullname>Amazon Web Services Migration Hub Refactor Spaces</fullname>
|
|
29
30
|
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
30
31
|
* actions and data types for Amazon Web Services Migration Hub Refactor Spaces (Refactor Spaces). The topic for each action shows the API
|
|
@@ -36,6 +37,7 @@ import { MigrationHubRefactorSpacesClient } from "./MigrationHubRefactorSpacesCl
|
|
|
36
37
|
*/
|
|
37
38
|
export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpacesClient {
|
|
38
39
|
/**
|
|
40
|
+
* @public
|
|
39
41
|
* <p>Creates an Amazon Web Services Migration Hub Refactor Spaces application. The account that owns the environment also owns the
|
|
40
42
|
* applications created inside the environment, regardless of the account that creates the
|
|
41
43
|
* application. Refactor Spaces provisions an Amazon API Gateway, API Gateway VPC link, and
|
|
@@ -45,6 +47,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
45
47
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
46
48
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
47
49
|
/**
|
|
50
|
+
* @public
|
|
48
51
|
* <p>Creates an Amazon Web Services Migration Hub Refactor Spaces environment. The caller owns the environment resource, and all
|
|
49
52
|
* Refactor Spaces applications, services, and routes created within the environment. They are referred
|
|
50
53
|
* to as the <i>environment owner</i>. The environment owner has cross-account
|
|
@@ -58,6 +61,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
58
61
|
createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
|
|
59
62
|
createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
|
|
60
63
|
/**
|
|
64
|
+
* @public
|
|
61
65
|
* <p>Creates an Amazon Web Services Migration Hub Refactor Spaces route. The account owner of the service resource is always the
|
|
62
66
|
* environment owner, regardless of which account creates the route. Routes target a service in
|
|
63
67
|
* the application. If an application does not have any routes, then the first route must be
|
|
@@ -115,6 +119,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
115
119
|
createRoute(args: CreateRouteCommandInput, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
|
|
116
120
|
createRoute(args: CreateRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
|
|
117
121
|
/**
|
|
122
|
+
* @public
|
|
118
123
|
* <p>Creates an Amazon Web Services Migration Hub Refactor Spaces service. The account owner of the service is always the
|
|
119
124
|
* environment owner, regardless of which account in the environment creates the service.
|
|
120
125
|
* Services have either a URL endpoint in a virtual private cloud (VPC), or a Lambda
|
|
@@ -130,6 +135,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
130
135
|
createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
131
136
|
createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
132
137
|
/**
|
|
138
|
+
* @public
|
|
133
139
|
* <p>Deletes an Amazon Web Services Migration Hub Refactor Spaces application. Before you can delete an application, you must first
|
|
134
140
|
* delete any services or routes within the application.</p>
|
|
135
141
|
*/
|
|
@@ -137,6 +143,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
137
143
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
138
144
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
139
145
|
/**
|
|
146
|
+
* @public
|
|
140
147
|
* <p>Deletes an Amazon Web Services Migration Hub Refactor Spaces environment. Before you can delete an environment, you must first
|
|
141
148
|
* delete any applications and services within the environment.</p>
|
|
142
149
|
*/
|
|
@@ -144,60 +151,70 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
144
151
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
145
152
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
146
153
|
/**
|
|
154
|
+
* @public
|
|
147
155
|
* <p>Deletes the resource policy set for the environment. </p>
|
|
148
156
|
*/
|
|
149
157
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
|
|
150
158
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
151
159
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
152
160
|
/**
|
|
161
|
+
* @public
|
|
153
162
|
* <p>Deletes an Amazon Web Services Migration Hub Refactor Spaces route.</p>
|
|
154
163
|
*/
|
|
155
164
|
deleteRoute(args: DeleteRouteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteCommandOutput>;
|
|
156
165
|
deleteRoute(args: DeleteRouteCommandInput, cb: (err: any, data?: DeleteRouteCommandOutput) => void): void;
|
|
157
166
|
deleteRoute(args: DeleteRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteCommandOutput) => void): void;
|
|
158
167
|
/**
|
|
168
|
+
* @public
|
|
159
169
|
* <p>Deletes an Amazon Web Services Migration Hub Refactor Spaces service. </p>
|
|
160
170
|
*/
|
|
161
171
|
deleteService(args: DeleteServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceCommandOutput>;
|
|
162
172
|
deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
163
173
|
deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
164
174
|
/**
|
|
175
|
+
* @public
|
|
165
176
|
* <p>Gets an Amazon Web Services Migration Hub Refactor Spaces application.</p>
|
|
166
177
|
*/
|
|
167
178
|
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
168
179
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
169
180
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
170
181
|
/**
|
|
182
|
+
* @public
|
|
171
183
|
* <p>Gets an Amazon Web Services Migration Hub Refactor Spaces environment.</p>
|
|
172
184
|
*/
|
|
173
185
|
getEnvironment(args: GetEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCommandOutput>;
|
|
174
186
|
getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
|
|
175
187
|
getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
|
|
176
188
|
/**
|
|
189
|
+
* @public
|
|
177
190
|
* <p>Gets the resource-based permission policy that is set for the given environment. </p>
|
|
178
191
|
*/
|
|
179
192
|
getResourcePolicy(args: GetResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePolicyCommandOutput>;
|
|
180
193
|
getResourcePolicy(args: GetResourcePolicyCommandInput, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
|
|
181
194
|
getResourcePolicy(args: GetResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
|
|
182
195
|
/**
|
|
196
|
+
* @public
|
|
183
197
|
* <p>Gets an Amazon Web Services Migration Hub Refactor Spaces route.</p>
|
|
184
198
|
*/
|
|
185
199
|
getRoute(args: GetRouteCommandInput, options?: __HttpHandlerOptions): Promise<GetRouteCommandOutput>;
|
|
186
200
|
getRoute(args: GetRouteCommandInput, cb: (err: any, data?: GetRouteCommandOutput) => void): void;
|
|
187
201
|
getRoute(args: GetRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRouteCommandOutput) => void): void;
|
|
188
202
|
/**
|
|
203
|
+
* @public
|
|
189
204
|
* <p>Gets an Amazon Web Services Migration Hub Refactor Spaces service. </p>
|
|
190
205
|
*/
|
|
191
206
|
getService(args: GetServiceCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceCommandOutput>;
|
|
192
207
|
getService(args: GetServiceCommandInput, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
|
|
193
208
|
getService(args: GetServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
|
|
194
209
|
/**
|
|
210
|
+
* @public
|
|
195
211
|
* <p>Lists all the Amazon Web Services Migration Hub Refactor Spaces applications within an environment. </p>
|
|
196
212
|
*/
|
|
197
213
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
198
214
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
199
215
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
200
216
|
/**
|
|
217
|
+
* @public
|
|
201
218
|
* <p>Lists Amazon Web Services Migration Hub Refactor Spaces environments owned by a caller account or shared with the caller
|
|
202
219
|
* account. </p>
|
|
203
220
|
*/
|
|
@@ -205,6 +222,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
205
222
|
listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
206
223
|
listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
207
224
|
/**
|
|
225
|
+
* @public
|
|
208
226
|
* <p>Lists all Amazon Web Services Migration Hub Refactor Spaces service virtual private clouds (VPCs) that are part of the
|
|
209
227
|
* environment. </p>
|
|
210
228
|
*/
|
|
@@ -212,18 +230,21 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
212
230
|
listEnvironmentVpcs(args: ListEnvironmentVpcsCommandInput, cb: (err: any, data?: ListEnvironmentVpcsCommandOutput) => void): void;
|
|
213
231
|
listEnvironmentVpcs(args: ListEnvironmentVpcsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentVpcsCommandOutput) => void): void;
|
|
214
232
|
/**
|
|
233
|
+
* @public
|
|
215
234
|
* <p>Lists all the Amazon Web Services Migration Hub Refactor Spaces routes within an application. </p>
|
|
216
235
|
*/
|
|
217
236
|
listRoutes(args: ListRoutesCommandInput, options?: __HttpHandlerOptions): Promise<ListRoutesCommandOutput>;
|
|
218
237
|
listRoutes(args: ListRoutesCommandInput, cb: (err: any, data?: ListRoutesCommandOutput) => void): void;
|
|
219
238
|
listRoutes(args: ListRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoutesCommandOutput) => void): void;
|
|
220
239
|
/**
|
|
240
|
+
* @public
|
|
221
241
|
* <p>Lists all the Amazon Web Services Migration Hub Refactor Spaces services within an application. </p>
|
|
222
242
|
*/
|
|
223
243
|
listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
|
|
224
244
|
listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
225
245
|
listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
226
246
|
/**
|
|
247
|
+
* @public
|
|
227
248
|
* <p>Lists the tags of a resource. The caller account must be the same as the resource’s
|
|
228
249
|
* <code>OwnerAccountId</code>. Listing tags in other accounts is not supported. </p>
|
|
229
250
|
*/
|
|
@@ -231,6 +252,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
231
252
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
232
253
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
233
254
|
/**
|
|
255
|
+
* @public
|
|
234
256
|
* <p>Attaches a resource-based permission policy to the Amazon Web Services Migration Hub Refactor Spaces environment. The policy
|
|
235
257
|
* must contain the same actions and condition statements as the
|
|
236
258
|
* <code>arn:aws:ram::aws:permission/AWSRAMDefaultPermissionRefactorSpacesEnvironment</code>
|
|
@@ -241,6 +263,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
241
263
|
putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
242
264
|
putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
243
265
|
/**
|
|
266
|
+
* @public
|
|
244
267
|
* <p>Removes the tags of a given resource. Tags are metadata which can be used to manage a
|
|
245
268
|
* resource. To tag a resource, the caller account must be the same as the resource’s
|
|
246
269
|
* <code>OwnerAccountId</code>. Tagging resources in other accounts is not supported.</p>
|
|
@@ -253,6 +276,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
253
276
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
254
277
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
255
278
|
/**
|
|
279
|
+
* @public
|
|
256
280
|
* <p>Adds to or modifies the tags of the given resource. Tags are metadata which can be used to
|
|
257
281
|
* manage a resource. To untag a resource, the caller account must be the same as the resource’s
|
|
258
282
|
* <code>OwnerAccountId</code>. Untagging resources across accounts is not supported. </p>
|
|
@@ -261,6 +285,7 @@ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpac
|
|
|
261
285
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
262
286
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
263
287
|
/**
|
|
288
|
+
* @public
|
|
264
289
|
* <p> Updates an Amazon Web Services Migration Hub Refactor Spaces route. </p>
|
|
265
290
|
*/
|
|
266
291
|
updateRoute(args: UpdateRouteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRouteCommandOutput>;
|
|
@@ -32,15 +32,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
32
32
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
33
33
|
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
|
|
34
34
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
35
38
|
export 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;
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
36
42
|
export 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;
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
37
46
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
38
47
|
/**
|
|
39
48
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
40
49
|
*/
|
|
41
50
|
requestHandler?: __HttpHandler;
|
|
42
51
|
/**
|
|
43
|
-
* A constructor for a class implementing the {@link
|
|
52
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
44
53
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
45
54
|
* @internal
|
|
46
55
|
*/
|
|
@@ -130,23 +139,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
130
139
|
*/
|
|
131
140
|
logger?: __Logger;
|
|
132
141
|
/**
|
|
133
|
-
* The {@link
|
|
142
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
134
143
|
*/
|
|
135
144
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
136
145
|
}
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
137
149
|
type MigrationHubRefactorSpacesClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
138
150
|
/**
|
|
139
|
-
*
|
|
151
|
+
* @public
|
|
152
|
+
*
|
|
153
|
+
* The configuration interface of MigrationHubRefactorSpacesClient class constructor that set the region, credentials and other options.
|
|
140
154
|
*/
|
|
141
155
|
export interface MigrationHubRefactorSpacesClientConfig extends MigrationHubRefactorSpacesClientConfigType {
|
|
142
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
143
160
|
type MigrationHubRefactorSpacesClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
144
161
|
/**
|
|
145
|
-
*
|
|
162
|
+
* @public
|
|
163
|
+
*
|
|
164
|
+
* The resolved configuration interface of MigrationHubRefactorSpacesClient class. This is resolved and normalized from the {@link MigrationHubRefactorSpacesClientConfig | constructor configuration interface}.
|
|
146
165
|
*/
|
|
147
166
|
export interface MigrationHubRefactorSpacesClientResolvedConfig extends MigrationHubRefactorSpacesClientResolvedConfigType {
|
|
148
167
|
}
|
|
149
168
|
/**
|
|
169
|
+
* @public
|
|
150
170
|
* <fullname>Amazon Web Services Migration Hub Refactor Spaces</fullname>
|
|
151
171
|
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
152
172
|
* actions and data types for Amazon Web Services Migration Hub Refactor Spaces (Refactor Spaces). The topic for each action shows the API
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
5
5
|
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateApplicationCommandInput extends CreateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Amazon Web Services Migration Hub Refactor Spaces application. The account that owns the environment also owns the
|
|
18
23
|
* applications created inside the environment, regardless of the account that creates the
|
|
19
24
|
* application. Refactor Spaces provisions an Amazon API Gateway, API Gateway VPC link, and
|
|
@@ -28,6 +33,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
37
|
+
* @returns {@link CreateApplicationCommandOutput}
|
|
31
38
|
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
59
66
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
60
67
|
readonly input: CreateApplicationCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: CreateApplicationCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
5
5
|
import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateEnvironmentCommandOutput extends CreateEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Amazon Web Services Migration Hub Refactor Spaces environment. The caller owns the environment resource, and all
|
|
18
23
|
* Refactor Spaces applications, services, and routes created within the environment. They are referred
|
|
19
24
|
* to as the <i>environment owner</i>. The environment owner has cross-account
|
|
@@ -32,6 +37,8 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param CreateEnvironmentCommandInput - {@link CreateEnvironmentCommandInput}
|
|
41
|
+
* @returns {@link CreateEnvironmentCommandOutput}
|
|
35
42
|
* @see {@link CreateEnvironmentCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link CreateEnvironmentCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons
|
|
|
63
70
|
export declare class CreateEnvironmentCommand extends $Command<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
64
71
|
readonly input: CreateEnvironmentCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: CreateEnvironmentCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
5
5
|
import { CreateRouteRequest, CreateRouteResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateRouteCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateRouteCommandInput extends CreateRouteRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateRouteCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateRouteCommandOutput extends CreateRouteResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Amazon Web Services Migration Hub Refactor Spaces route. The account owner of the service resource is always the
|
|
18
23
|
* environment owner, regardless of which account creates the route. Routes target a service in
|
|
19
24
|
* the application. If an application does not have any routes, then the first route must be
|
|
@@ -76,6 +81,8 @@ export interface CreateRouteCommandOutput extends CreateRouteResponse, __Metadat
|
|
|
76
81
|
* const response = await client.send(command);
|
|
77
82
|
* ```
|
|
78
83
|
*
|
|
84
|
+
* @param CreateRouteCommandInput - {@link CreateRouteCommandInput}
|
|
85
|
+
* @returns {@link CreateRouteCommandOutput}
|
|
79
86
|
* @see {@link CreateRouteCommandInput} for command's `input` shape.
|
|
80
87
|
* @see {@link CreateRouteCommandOutput} for command's `response` shape.
|
|
81
88
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
@@ -107,11 +114,20 @@ export interface CreateRouteCommandOutput extends CreateRouteResponse, __Metadat
|
|
|
107
114
|
export declare class CreateRouteCommand extends $Command<CreateRouteCommandInput, CreateRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
108
115
|
readonly input: CreateRouteCommandInput;
|
|
109
116
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
110
120
|
constructor(input: CreateRouteCommandInput);
|
|
111
121
|
/**
|
|
112
122
|
* @internal
|
|
113
123
|
*/
|
|
114
124
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRouteCommandInput, CreateRouteCommandOutput>;
|
|
125
|
+
/**
|
|
126
|
+
* @internal
|
|
127
|
+
*/
|
|
115
128
|
private serialize;
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
116
132
|
private deserialize;
|
|
117
133
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
5
5
|
import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateServiceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateServiceCommandInput extends CreateServiceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateServiceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateServiceCommandOutput extends CreateServiceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Amazon Web Services Migration Hub Refactor Spaces service. The account owner of the service is always the
|
|
18
23
|
* environment owner, regardless of which account in the environment creates the service.
|
|
19
24
|
* Services have either a URL endpoint in a virtual private cloud (VPC), or a Lambda
|
|
@@ -34,6 +39,8 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param CreateServiceCommandInput - {@link CreateServiceCommandInput}
|
|
43
|
+
* @returns {@link CreateServiceCommandOutput}
|
|
37
44
|
* @see {@link CreateServiceCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link CreateServiceCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
65
72
|
export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
66
73
|
readonly input: CreateServiceCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: CreateServiceCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateServiceCommandInput, CreateServiceCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
5
5
|
import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Amazon Web Services Migration Hub Refactor Spaces application. Before you can delete an application, you must first
|
|
18
23
|
* delete any services or routes within the application.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
35
|
+
* @returns {@link DeleteApplicationCommandOutput}
|
|
29
36
|
* @see {@link DeleteApplicationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
54
61
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteApplicationCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteApplicationCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
5
5
|
import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Amazon Web Services Migration Hub Refactor Spaces environment. Before you can delete an environment, you must first
|
|
18
23
|
* delete any applications and services within the environment.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteEnvironmentCommandInput - {@link DeleteEnvironmentCommandInput}
|
|
35
|
+
* @returns {@link DeleteEnvironmentCommandOutput}
|
|
29
36
|
* @see {@link DeleteEnvironmentCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteEnvironmentCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons
|
|
|
54
61
|
export declare class DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteEnvironmentCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteEnvironmentCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
|
|
5
5
|
import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteResourcePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteResourcePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the resource policy set for the environment. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteResourcePolicyCommandInput - {@link DeleteResourcePolicyCommandInput}
|
|
34
|
+
* @returns {@link DeleteResourcePolicyCommandOutput}
|
|
28
35
|
* @see {@link DeleteResourcePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteResourcePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
50
57
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
51
58
|
readonly input: DeleteResourcePolicyCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DeleteResourcePolicyCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|