@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,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 { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0";
5
- export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest {
6
- }
7
- export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: DeleteEnvironmentCommandInput;
12
- constructor(input: DeleteEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0";
5
- export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {
6
- }
7
- export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: DeleteResourcePolicyCommandInput;
12
- constructor(input: DeleteResourcePolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { DeleteRouteRequest, DeleteRouteResponse } from "../models/models_0";
5
- export interface DeleteRouteCommandInput extends DeleteRouteRequest {
6
- }
7
- export interface DeleteRouteCommandOutput extends DeleteRouteResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteRouteCommand extends $Command<DeleteRouteCommandInput, DeleteRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: DeleteRouteCommandInput;
12
- constructor(input: DeleteRouteCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRouteCommandInput, DeleteRouteCommandOutput>;
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 { 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0";
5
- export interface DeleteServiceCommandInput extends DeleteServiceRequest {
6
- }
7
- export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: DeleteServiceCommandInput;
12
- constructor(input: DeleteServiceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteServiceCommandInput, DeleteServiceCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
5
- export interface GetApplicationCommandInput extends GetApplicationRequest {
6
- }
7
- export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: GetApplicationCommandInput;
12
- constructor(input: GetApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0";
5
- export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
6
- }
7
- export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetEnvironmentCommand extends $Command<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: GetEnvironmentCommandInput;
12
- constructor(input: GetEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEnvironmentCommandInput, GetEnvironmentCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0";
5
- export interface GetResourcePolicyCommandInput extends GetResourcePolicyRequest {
6
- }
7
- export interface GetResourcePolicyCommandOutput extends GetResourcePolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: GetResourcePolicyCommandInput;
12
- constructor(input: GetResourcePolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { GetRouteRequest, GetRouteResponse } from "../models/models_0";
5
- export interface GetRouteCommandInput extends GetRouteRequest {
6
- }
7
- export interface GetRouteCommandOutput extends GetRouteResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetRouteCommand extends $Command<GetRouteCommandInput, GetRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: GetRouteCommandInput;
12
- constructor(input: GetRouteCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRouteCommandInput, GetRouteCommandOutput>;
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 { 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { GetServiceRequest, GetServiceResponse } from "../models/models_0";
5
- export interface GetServiceCommandInput extends GetServiceRequest {
6
- }
7
- export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetServiceCommand extends $Command<GetServiceCommandInput, GetServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: GetServiceCommandInput;
12
- constructor(input: GetServiceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceCommandInput, GetServiceCommandOutput>;
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 { 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
5
- export interface ListApplicationsCommandInput extends ListApplicationsRequest {
6
- }
7
- export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: ListApplicationsCommandInput;
12
- constructor(input: ListApplicationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
- import { ListEnvironmentVpcsRequest, ListEnvironmentVpcsResponse } from "../models/models_0";
5
- export interface ListEnvironmentVpcsCommandInput extends ListEnvironmentVpcsRequest {
6
- }
7
- export interface ListEnvironmentVpcsCommandOutput extends ListEnvironmentVpcsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListEnvironmentVpcsCommand extends $Command<ListEnvironmentVpcsCommandInput, ListEnvironmentVpcsCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
- readonly input: ListEnvironmentVpcsCommandInput;
12
- constructor(input: ListEnvironmentVpcsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEnvironmentVpcsCommandInput, ListEnvironmentVpcsCommandOutput>;
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
+ 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
+ }