@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,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
|
+
ListEnvironmentsRequest,
|
|
15
|
+
ListEnvironmentsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {}
|
|
18
|
+
export interface ListEnvironmentsCommandOutput
|
|
19
|
+
extends ListEnvironmentsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListEnvironmentsCommand extends $Command<
|
|
22
|
+
ListEnvironmentsCommandInput,
|
|
23
|
+
ListEnvironmentsCommandOutput,
|
|
24
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListEnvironmentsCommandInput;
|
|
27
|
+
constructor(input: ListEnvironmentsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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 { ListRoutesRequest, ListRoutesResponse } from "../models/models_0";
|
|
14
|
+
export interface ListRoutesCommandInput extends ListRoutesRequest {}
|
|
15
|
+
export interface ListRoutesCommandOutput
|
|
16
|
+
extends ListRoutesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListRoutesCommand extends $Command<
|
|
19
|
+
ListRoutesCommandInput,
|
|
20
|
+
ListRoutesCommandOutput,
|
|
21
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListRoutesCommandInput;
|
|
24
|
+
constructor(input: ListRoutesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListRoutesCommandInput, ListRoutesCommandOutput>;
|
|
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 { ListServicesRequest, ListServicesResponse } from "../models/models_0";
|
|
14
|
+
export interface ListServicesCommandInput extends ListServicesRequest {}
|
|
15
|
+
export interface ListServicesCommandOutput
|
|
16
|
+
extends ListServicesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListServicesCommand extends $Command<
|
|
19
|
+
ListServicesCommandInput,
|
|
20
|
+
ListServicesCommandOutput,
|
|
21
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListServicesCommandInput;
|
|
24
|
+
constructor(input: ListServicesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListServicesCommandInput, ListServicesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -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
|
+
PutResourcePolicyRequest,
|
|
15
|
+
PutResourcePolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutResourcePolicyCommandInput
|
|
18
|
+
extends PutResourcePolicyRequest {}
|
|
19
|
+
export interface PutResourcePolicyCommandOutput
|
|
20
|
+
extends PutResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class PutResourcePolicyCommand extends $Command<
|
|
23
|
+
PutResourcePolicyCommandInput,
|
|
24
|
+
PutResourcePolicyCommandOutput,
|
|
25
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutResourcePolicyCommandInput;
|
|
28
|
+
constructor(input: PutResourcePolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput>;
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
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
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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 { UpdateRouteRequest, UpdateRouteResponse } from "../models/models_0";
|
|
14
|
+
export interface UpdateRouteCommandInput extends UpdateRouteRequest {}
|
|
15
|
+
export interface UpdateRouteCommandOutput
|
|
16
|
+
extends UpdateRouteResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class UpdateRouteCommand extends $Command<
|
|
19
|
+
UpdateRouteCommandInput,
|
|
20
|
+
UpdateRouteCommandOutput,
|
|
21
|
+
MigrationHubRefactorSpacesClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UpdateRouteCommandInput;
|
|
24
|
+
constructor(input: UpdateRouteCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MigrationHubRefactorSpacesClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UpdateRouteCommandInput, UpdateRouteCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
export * from "./CreateApplicationCommand";
|
|
2
|
-
export * from "./CreateEnvironmentCommand";
|
|
3
|
-
export * from "./CreateRouteCommand";
|
|
4
|
-
export * from "./CreateServiceCommand";
|
|
5
|
-
export * from "./DeleteApplicationCommand";
|
|
6
|
-
export * from "./DeleteEnvironmentCommand";
|
|
7
|
-
export * from "./DeleteResourcePolicyCommand";
|
|
8
|
-
export * from "./DeleteRouteCommand";
|
|
9
|
-
export * from "./DeleteServiceCommand";
|
|
10
|
-
export * from "./GetApplicationCommand";
|
|
11
|
-
export * from "./GetEnvironmentCommand";
|
|
12
|
-
export * from "./GetResourcePolicyCommand";
|
|
13
|
-
export * from "./GetRouteCommand";
|
|
14
|
-
export * from "./GetServiceCommand";
|
|
15
|
-
export * from "./ListApplicationsCommand";
|
|
16
|
-
export * from "./ListEnvironmentVpcsCommand";
|
|
17
|
-
export * from "./ListEnvironmentsCommand";
|
|
18
|
-
export * from "./ListRoutesCommand";
|
|
19
|
-
export * from "./ListServicesCommand";
|
|
20
|
-
export * from "./ListTagsForResourceCommand";
|
|
21
|
-
export * from "./PutResourcePolicyCommand";
|
|
22
|
-
export * from "./TagResourceCommand";
|
|
23
|
-
export * from "./UntagResourceCommand";
|
|
24
|
-
export * from "./UpdateRouteCommand";
|
|
1
|
+
export * from "./CreateApplicationCommand";
|
|
2
|
+
export * from "./CreateEnvironmentCommand";
|
|
3
|
+
export * from "./CreateRouteCommand";
|
|
4
|
+
export * from "./CreateServiceCommand";
|
|
5
|
+
export * from "./DeleteApplicationCommand";
|
|
6
|
+
export * from "./DeleteEnvironmentCommand";
|
|
7
|
+
export * from "./DeleteResourcePolicyCommand";
|
|
8
|
+
export * from "./DeleteRouteCommand";
|
|
9
|
+
export * from "./DeleteServiceCommand";
|
|
10
|
+
export * from "./GetApplicationCommand";
|
|
11
|
+
export * from "./GetEnvironmentCommand";
|
|
12
|
+
export * from "./GetResourcePolicyCommand";
|
|
13
|
+
export * from "./GetRouteCommand";
|
|
14
|
+
export * from "./GetServiceCommand";
|
|
15
|
+
export * from "./ListApplicationsCommand";
|
|
16
|
+
export * from "./ListEnvironmentVpcsCommand";
|
|
17
|
+
export * from "./ListEnvironmentsCommand";
|
|
18
|
+
export * from "./ListRoutesCommand";
|
|
19
|
+
export * from "./ListServicesCommand";
|
|
20
|
+
export * from "./ListTagsForResourceCommand";
|
|
21
|
+
export * from "./PutResourcePolicyCommand";
|
|
22
|
+
export * from "./TagResourceCommand";
|
|
23
|
+
export * from "./UntagResourceCommand";
|
|
24
|
+
export * from "./UpdateRouteCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./MigrationHubRefactorSpaces";
|
|
2
|
-
export * from "./MigrationHubRefactorSpacesClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { MigrationHubRefactorSpacesServiceException } from "./models/MigrationHubRefactorSpacesServiceException";
|
|
1
|
+
export * from "./MigrationHubRefactorSpaces";
|
|
2
|
+
export * from "./MigrationHubRefactorSpacesClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { MigrationHubRefactorSpacesServiceException } from "./models/MigrationHubRefactorSpacesServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class MigrationHubRefactorSpacesServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|