@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,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { MigrationHubRefactorSpaces } from "../MigrationHubRefactorSpaces";
|
|
3
|
-
import { MigrationHubRefactorSpacesClient } from "../MigrationHubRefactorSpacesClient";
|
|
4
|
-
export interface MigrationHubRefactorSpacesPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { MigrationHubRefactorSpaces } from "../MigrationHubRefactorSpaces";
|
|
3
|
+
import { MigrationHubRefactorSpacesClient } from "../MigrationHubRefactorSpacesClient";
|
|
4
|
+
export interface MigrationHubRefactorSpacesPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: MigrationHubRefactorSpaces | MigrationHubRefactorSpacesClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListApplicationsCommandInput,
|
|
4
|
+
ListApplicationsCommandOutput,
|
|
5
|
+
} from "../commands/ListApplicationsCommand";
|
|
6
|
+
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListApplications(
|
|
8
|
+
config: MigrationHubRefactorSpacesPaginationConfiguration,
|
|
9
|
+
input: ListApplicationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEnvironmentVpcsCommandInput,
|
|
4
|
+
ListEnvironmentVpcsCommandOutput,
|
|
5
|
+
} from "../commands/ListEnvironmentVpcsCommand";
|
|
6
|
+
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListEnvironmentVpcs(
|
|
8
|
+
config: MigrationHubRefactorSpacesPaginationConfiguration,
|
|
9
|
+
input: ListEnvironmentVpcsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListEnvironmentVpcsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEnvironmentsCommandInput,
|
|
4
|
+
ListEnvironmentsCommandOutput,
|
|
5
|
+
} from "../commands/ListEnvironmentsCommand";
|
|
6
|
+
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListEnvironments(
|
|
8
|
+
config: MigrationHubRefactorSpacesPaginationConfiguration,
|
|
9
|
+
input: ListEnvironmentsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListEnvironmentsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRoutesCommandInput,
|
|
4
|
+
ListRoutesCommandOutput,
|
|
5
|
+
} from "../commands/ListRoutesCommand";
|
|
6
|
+
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRoutes(
|
|
8
|
+
config: MigrationHubRefactorSpacesPaginationConfiguration,
|
|
9
|
+
input: ListRoutesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRoutesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListServicesCommandInput,
|
|
4
|
+
ListServicesCommandOutput,
|
|
5
|
+
} from "../commands/ListServicesCommand";
|
|
6
|
+
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListServices(
|
|
8
|
+
config: MigrationHubRefactorSpacesPaginationConfiguration,
|
|
9
|
+
input: ListServicesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListServicesCommandOutput>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListApplicationsPaginator";
|
|
3
|
-
export * from "./ListEnvironmentVpcsPaginator";
|
|
4
|
-
export * from "./ListEnvironmentsPaginator";
|
|
5
|
-
export * from "./ListRoutesPaginator";
|
|
6
|
-
export * from "./ListServicesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListApplicationsPaginator";
|
|
3
|
+
export * from "./ListEnvironmentVpcsPaginator";
|
|
4
|
+
export * from "./ListEnvironmentsPaginator";
|
|
5
|
+
export * from "./ListRoutesPaginator";
|
|
6
|
+
export * from "./ListServicesPaginator";
|
|
@@ -1,74 +1,293 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateApplicationCommandInput,
|
|
8
|
+
CreateApplicationCommandOutput,
|
|
9
|
+
} from "../commands/CreateApplicationCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateEnvironmentCommandInput,
|
|
12
|
+
CreateEnvironmentCommandOutput,
|
|
13
|
+
} from "../commands/CreateEnvironmentCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateRouteCommandInput,
|
|
16
|
+
CreateRouteCommandOutput,
|
|
17
|
+
} from "../commands/CreateRouteCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateServiceCommandInput,
|
|
20
|
+
CreateServiceCommandOutput,
|
|
21
|
+
} from "../commands/CreateServiceCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteApplicationCommandInput,
|
|
24
|
+
DeleteApplicationCommandOutput,
|
|
25
|
+
} from "../commands/DeleteApplicationCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteEnvironmentCommandInput,
|
|
28
|
+
DeleteEnvironmentCommandOutput,
|
|
29
|
+
} from "../commands/DeleteEnvironmentCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteResourcePolicyCommandInput,
|
|
32
|
+
DeleteResourcePolicyCommandOutput,
|
|
33
|
+
} from "../commands/DeleteResourcePolicyCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteRouteCommandInput,
|
|
36
|
+
DeleteRouteCommandOutput,
|
|
37
|
+
} from "../commands/DeleteRouteCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteServiceCommandInput,
|
|
40
|
+
DeleteServiceCommandOutput,
|
|
41
|
+
} from "../commands/DeleteServiceCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetApplicationCommandInput,
|
|
44
|
+
GetApplicationCommandOutput,
|
|
45
|
+
} from "../commands/GetApplicationCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetEnvironmentCommandInput,
|
|
48
|
+
GetEnvironmentCommandOutput,
|
|
49
|
+
} from "../commands/GetEnvironmentCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetResourcePolicyCommandInput,
|
|
52
|
+
GetResourcePolicyCommandOutput,
|
|
53
|
+
} from "../commands/GetResourcePolicyCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetRouteCommandInput,
|
|
56
|
+
GetRouteCommandOutput,
|
|
57
|
+
} from "../commands/GetRouteCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetServiceCommandInput,
|
|
60
|
+
GetServiceCommandOutput,
|
|
61
|
+
} from "../commands/GetServiceCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListApplicationsCommandInput,
|
|
64
|
+
ListApplicationsCommandOutput,
|
|
65
|
+
} from "../commands/ListApplicationsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListEnvironmentsCommandInput,
|
|
68
|
+
ListEnvironmentsCommandOutput,
|
|
69
|
+
} from "../commands/ListEnvironmentsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListEnvironmentVpcsCommandInput,
|
|
72
|
+
ListEnvironmentVpcsCommandOutput,
|
|
73
|
+
} from "../commands/ListEnvironmentVpcsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListRoutesCommandInput,
|
|
76
|
+
ListRoutesCommandOutput,
|
|
77
|
+
} from "../commands/ListRoutesCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListServicesCommandInput,
|
|
80
|
+
ListServicesCommandOutput,
|
|
81
|
+
} from "../commands/ListServicesCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListTagsForResourceCommandInput,
|
|
84
|
+
ListTagsForResourceCommandOutput,
|
|
85
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
86
|
+
import {
|
|
87
|
+
PutResourcePolicyCommandInput,
|
|
88
|
+
PutResourcePolicyCommandOutput,
|
|
89
|
+
} from "../commands/PutResourcePolicyCommand";
|
|
90
|
+
import {
|
|
91
|
+
TagResourceCommandInput,
|
|
92
|
+
TagResourceCommandOutput,
|
|
93
|
+
} from "../commands/TagResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
UntagResourceCommandInput,
|
|
96
|
+
UntagResourceCommandOutput,
|
|
97
|
+
} from "../commands/UntagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateRouteCommandInput,
|
|
100
|
+
UpdateRouteCommandOutput,
|
|
101
|
+
} from "../commands/UpdateRouteCommand";
|
|
102
|
+
export declare const serializeAws_restJson1CreateApplicationCommand: (
|
|
103
|
+
input: CreateApplicationCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1CreateEnvironmentCommand: (
|
|
107
|
+
input: CreateEnvironmentCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1CreateRouteCommand: (
|
|
111
|
+
input: CreateRouteCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1CreateServiceCommand: (
|
|
115
|
+
input: CreateServiceCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1DeleteApplicationCommand: (
|
|
119
|
+
input: DeleteApplicationCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1DeleteEnvironmentCommand: (
|
|
123
|
+
input: DeleteEnvironmentCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_restJson1DeleteResourcePolicyCommand: (
|
|
127
|
+
input: DeleteResourcePolicyCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1DeleteRouteCommand: (
|
|
131
|
+
input: DeleteRouteCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1DeleteServiceCommand: (
|
|
135
|
+
input: DeleteServiceCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1GetApplicationCommand: (
|
|
139
|
+
input: GetApplicationCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_restJson1GetEnvironmentCommand: (
|
|
143
|
+
input: GetEnvironmentCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1GetResourcePolicyCommand: (
|
|
147
|
+
input: GetResourcePolicyCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1GetRouteCommand: (
|
|
151
|
+
input: GetRouteCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1GetServiceCommand: (
|
|
155
|
+
input: GetServiceCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1ListApplicationsCommand: (
|
|
159
|
+
input: ListApplicationsCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_restJson1ListEnvironmentsCommand: (
|
|
163
|
+
input: ListEnvironmentsCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1ListEnvironmentVpcsCommand: (
|
|
167
|
+
input: ListEnvironmentVpcsCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1ListRoutesCommand: (
|
|
171
|
+
input: ListRoutesCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_restJson1ListServicesCommand: (
|
|
175
|
+
input: ListServicesCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
179
|
+
input: ListTagsForResourceCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_restJson1PutResourcePolicyCommand: (
|
|
183
|
+
input: PutResourcePolicyCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
187
|
+
input: TagResourceCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
191
|
+
input: UntagResourceCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_restJson1UpdateRouteCommand: (
|
|
195
|
+
input: UpdateRouteCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const deserializeAws_restJson1CreateApplicationCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<CreateApplicationCommandOutput>;
|
|
202
|
+
export declare const deserializeAws_restJson1CreateEnvironmentCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<CreateEnvironmentCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_restJson1CreateRouteCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<CreateRouteCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_restJson1CreateServiceCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<CreateServiceCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_restJson1DeleteApplicationCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<DeleteApplicationCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_restJson1DeleteEnvironmentCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<DeleteEnvironmentCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_restJson1DeleteResourcePolicyCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<DeleteResourcePolicyCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_restJson1DeleteRouteCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<DeleteRouteCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_restJson1DeleteServiceCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<DeleteServiceCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_restJson1GetApplicationCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<GetApplicationCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_restJson1GetEnvironmentCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<GetEnvironmentCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_restJson1GetResourcePolicyCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<GetResourcePolicyCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_restJson1GetRouteCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<GetRouteCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_restJson1GetServiceCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<GetServiceCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_restJson1ListApplicationsCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<ListApplicationsCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_restJson1ListEnvironmentsCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<ListEnvironmentsCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_restJson1ListEnvironmentVpcsCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<ListEnvironmentVpcsCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_restJson1ListRoutesCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<ListRoutesCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_restJson1ListServicesCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<ListServicesCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_restJson1PutResourcePolicyCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<PutResourcePolicyCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<TagResourceCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_restJson1UpdateRouteCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<UpdateRouteCommandOutput>;
|
|
@@ -1,38 +1,67 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: MigrationHubRefactorSpacesClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|