@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/MigrationHubRefactorSpaces.d.ts +412 -125
- package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +249 -97
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetRouteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListEnvironmentVpcsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateRouteCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +24 -24
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/MigrationHubRefactorSpacesServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +820 -1124
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEnvironmentVpcsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRoutesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DeleteEnvironmentRequest,
|
|
15
|
+
DeleteEnvironmentResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteEnvironmentCommandInput
|
|
18
|
+
extends DeleteEnvironmentRequest {}
|
|
19
|
+
export interface DeleteEnvironmentCommandOutput
|
|
20
|
+
extends DeleteEnvironmentResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteEnvironmentCommand extends $Command<
|
|
23
|
+
DeleteEnvironmentCommandInput,
|
|
24
|
+
DeleteEnvironmentCommandOutput,
|
|
25
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteEnvironmentCommandInput;
|
|
28
|
+
constructor(input: DeleteEnvironmentCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DeleteResourcePolicyRequest,
|
|
15
|
+
DeleteResourcePolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteResourcePolicyCommandInput
|
|
18
|
+
extends DeleteResourcePolicyRequest {}
|
|
19
|
+
export interface DeleteResourcePolicyCommandOutput
|
|
20
|
+
extends DeleteResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteResourcePolicyCommand extends $Command<
|
|
23
|
+
DeleteResourcePolicyCommandInput,
|
|
24
|
+
DeleteResourcePolicyCommandOutput,
|
|
25
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteResourcePolicyCommandInput;
|
|
28
|
+
constructor(input: DeleteResourcePolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteResourcePolicyCommandInput,
|
|
35
|
+
DeleteResourcePolicyCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteRouteRequest, DeleteRouteResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteRouteCommandInput extends DeleteRouteRequest {}
|
|
15
|
+
export interface DeleteRouteCommandOutput
|
|
16
|
+
extends DeleteRouteResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteRouteCommand extends $Command<
|
|
19
|
+
DeleteRouteCommandInput,
|
|
20
|
+
DeleteRouteCommandOutput,
|
|
21
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteRouteCommandInput;
|
|
24
|
+
constructor(input: DeleteRouteCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteRouteCommandInput, DeleteRouteCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DeleteServiceRequest,
|
|
15
|
+
DeleteServiceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteServiceCommandInput extends DeleteServiceRequest {}
|
|
18
|
+
export interface DeleteServiceCommandOutput
|
|
19
|
+
extends DeleteServiceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DeleteServiceCommand extends $Command<
|
|
22
|
+
DeleteServiceCommandInput,
|
|
23
|
+
DeleteServiceCommandOutput,
|
|
24
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeleteServiceCommandInput;
|
|
27
|
+
constructor(input: DeleteServiceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteServiceCommandInput, DeleteServiceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetApplicationRequest,
|
|
15
|
+
GetApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
18
|
+
export interface GetApplicationCommandOutput
|
|
19
|
+
extends GetApplicationResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetApplicationCommand extends $Command<
|
|
22
|
+
GetApplicationCommandInput,
|
|
23
|
+
GetApplicationCommandOutput,
|
|
24
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetApplicationCommandInput;
|
|
27
|
+
constructor(input: GetApplicationCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetEnvironmentRequest,
|
|
15
|
+
GetEnvironmentResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {}
|
|
18
|
+
export interface GetEnvironmentCommandOutput
|
|
19
|
+
extends GetEnvironmentResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetEnvironmentCommand extends $Command<
|
|
22
|
+
GetEnvironmentCommandInput,
|
|
23
|
+
GetEnvironmentCommandOutput,
|
|
24
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetEnvironmentCommandInput;
|
|
27
|
+
constructor(input: GetEnvironmentCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetEnvironmentCommandInput, GetEnvironmentCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetResourcePolicyRequest,
|
|
15
|
+
GetResourcePolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetResourcePolicyCommandInput
|
|
18
|
+
extends GetResourcePolicyRequest {}
|
|
19
|
+
export interface GetResourcePolicyCommandOutput
|
|
20
|
+
extends GetResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetResourcePolicyCommand extends $Command<
|
|
23
|
+
GetResourcePolicyCommandInput,
|
|
24
|
+
GetResourcePolicyCommandOutput,
|
|
25
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetResourcePolicyCommandInput;
|
|
28
|
+
constructor(input: GetResourcePolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetRouteRequest, GetRouteResponse } from "../models/models_0";
|
|
14
|
+
export interface GetRouteCommandInput extends GetRouteRequest {}
|
|
15
|
+
export interface GetRouteCommandOutput
|
|
16
|
+
extends GetRouteResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetRouteCommand extends $Command<
|
|
19
|
+
GetRouteCommandInput,
|
|
20
|
+
GetRouteCommandOutput,
|
|
21
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetRouteCommandInput;
|
|
24
|
+
constructor(input: GetRouteCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetRouteCommandInput, GetRouteCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetServiceRequest, GetServiceResponse } from "../models/models_0";
|
|
14
|
+
export interface GetServiceCommandInput extends GetServiceRequest {}
|
|
15
|
+
export interface GetServiceCommandOutput
|
|
16
|
+
extends GetServiceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetServiceCommand extends $Command<
|
|
19
|
+
GetServiceCommandInput,
|
|
20
|
+
GetServiceCommandOutput,
|
|
21
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetServiceCommandInput;
|
|
24
|
+
constructor(input: GetServiceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetServiceCommandInput, GetServiceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
ListApplicationsRequest,
|
|
15
|
+
ListApplicationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
18
|
+
export interface ListApplicationsCommandOutput
|
|
19
|
+
extends ListApplicationsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListApplicationsCommand extends $Command<
|
|
22
|
+
ListApplicationsCommandInput,
|
|
23
|
+
ListApplicationsCommandOutput,
|
|
24
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListApplicationsCommandInput;
|
|
27
|
+
constructor(input: ListApplicationsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
ListEnvironmentVpcsRequest,
|
|
15
|
+
ListEnvironmentVpcsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListEnvironmentVpcsCommandInput
|
|
18
|
+
extends ListEnvironmentVpcsRequest {}
|
|
19
|
+
export interface ListEnvironmentVpcsCommandOutput
|
|
20
|
+
extends ListEnvironmentVpcsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListEnvironmentVpcsCommand extends $Command<
|
|
23
|
+
ListEnvironmentVpcsCommandInput,
|
|
24
|
+
ListEnvironmentVpcsCommandOutput,
|
|
25
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListEnvironmentVpcsCommandInput;
|
|
28
|
+
constructor(input: ListEnvironmentVpcsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListEnvironmentVpcsCommandInput, ListEnvironmentVpcsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|