@aws-sdk/client-migration-hub-refactor-spaces 3.52.0 → 3.54.1
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 +30 -0
- package/README.md +3 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/MigrationHubRefactorSpacesServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +126 -2
- package/dist-cjs/protocols/Aws_restJson1.js +284 -1072
- package/dist-es/index.js +1 -0
- package/dist-es/models/MigrationHubRefactorSpacesServiceException.js +12 -0
- package/dist-es/models/models_0.js +117 -1
- package/dist-es/protocols/Aws_restJson1.js +581 -1173
- package/dist-types/MigrationHubRefactorSpaces.d.ts +29 -19
- package/dist-types/MigrationHubRefactorSpacesClient.d.ts +5 -2
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -2
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +5 -4
- package/dist-types/commands/CreateRouteCommand.d.ts +14 -10
- package/dist-types/commands/CreateServiceCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentVpcsCommand.d.ts +2 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +2 -1
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MigrationHubRefactorSpacesServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +78 -37
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/MigrationHubRefactorSpacesServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -25
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { MigrationHubRefactorSpacesServiceException as __BaseException } from "./MigrationHubRefactorSpacesServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message: string | undefined;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
export declare enum ApiGatewayEndpointType {
|
|
9
12
|
PRIVATE = "PRIVATE",
|
|
@@ -166,14 +169,16 @@ export declare namespace ApplicationSummary {
|
|
|
166
169
|
const filterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
167
170
|
}
|
|
168
171
|
|
|
169
|
-
export
|
|
170
|
-
name: "ConflictException";
|
|
171
|
-
$fault: "client";
|
|
172
|
+
export declare class ConflictException extends __BaseException {
|
|
173
|
+
readonly name: "ConflictException";
|
|
174
|
+
readonly $fault: "client";
|
|
172
175
|
Message: string | undefined;
|
|
173
176
|
|
|
174
177
|
ResourceId: string | undefined;
|
|
175
178
|
|
|
176
179
|
ResourceType: string | undefined;
|
|
180
|
+
|
|
181
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
177
182
|
}
|
|
178
183
|
export interface CreateApplicationRequest {
|
|
179
184
|
|
|
@@ -232,25 +237,29 @@ export declare namespace CreateApplicationResponse {
|
|
|
232
237
|
const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
233
238
|
}
|
|
234
239
|
|
|
235
|
-
export
|
|
236
|
-
name: "InternalServerException";
|
|
237
|
-
$fault: "server";
|
|
240
|
+
export declare class InternalServerException extends __BaseException {
|
|
241
|
+
readonly name: "InternalServerException";
|
|
242
|
+
readonly $fault: "server";
|
|
238
243
|
Message: string | undefined;
|
|
244
|
+
|
|
245
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
239
246
|
}
|
|
240
247
|
|
|
241
|
-
export
|
|
242
|
-
name: "ResourceNotFoundException";
|
|
243
|
-
$fault: "client";
|
|
248
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
249
|
+
readonly name: "ResourceNotFoundException";
|
|
250
|
+
readonly $fault: "client";
|
|
244
251
|
Message: string | undefined;
|
|
245
252
|
|
|
246
253
|
ResourceId: string | undefined;
|
|
247
254
|
|
|
248
255
|
ResourceType: string | undefined;
|
|
256
|
+
|
|
257
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
249
258
|
}
|
|
250
259
|
|
|
251
|
-
export
|
|
252
|
-
name: "ServiceQuotaExceededException";
|
|
253
|
-
$fault: "client";
|
|
260
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
261
|
+
readonly name: "ServiceQuotaExceededException";
|
|
262
|
+
readonly $fault: "client";
|
|
254
263
|
Message: string | undefined;
|
|
255
264
|
|
|
256
265
|
ResourceId: string | undefined;
|
|
@@ -260,11 +269,13 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
260
269
|
QuotaCode?: string;
|
|
261
270
|
|
|
262
271
|
ServiceCode: string | undefined;
|
|
272
|
+
|
|
273
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
263
274
|
}
|
|
264
275
|
|
|
265
|
-
export
|
|
266
|
-
name: "ThrottlingException";
|
|
267
|
-
$fault: "client";
|
|
276
|
+
export declare class ThrottlingException extends __BaseException {
|
|
277
|
+
readonly name: "ThrottlingException";
|
|
278
|
+
readonly $fault: "client";
|
|
268
279
|
Message: string | undefined;
|
|
269
280
|
|
|
270
281
|
QuotaCode?: string;
|
|
@@ -272,12 +283,16 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
|
|
|
272
283
|
ServiceCode?: string;
|
|
273
284
|
|
|
274
285
|
RetryAfterSeconds?: number;
|
|
286
|
+
|
|
287
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
275
288
|
}
|
|
276
289
|
|
|
277
|
-
export
|
|
278
|
-
name: "ValidationException";
|
|
279
|
-
$fault: "client";
|
|
290
|
+
export declare class ValidationException extends __BaseException {
|
|
291
|
+
readonly name: "ValidationException";
|
|
292
|
+
readonly $fault: "client";
|
|
280
293
|
Message: string | undefined;
|
|
294
|
+
|
|
295
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
281
296
|
}
|
|
282
297
|
export declare enum NetworkFabricType {
|
|
283
298
|
TRANSIT_GATEWAY = "TRANSIT_GATEWAY"
|
|
@@ -940,10 +955,12 @@ export declare namespace GetServiceResponse {
|
|
|
940
955
|
const filterSensitiveLog: (obj: GetServiceResponse) => any;
|
|
941
956
|
}
|
|
942
957
|
|
|
943
|
-
export
|
|
944
|
-
name: "InvalidResourcePolicyException";
|
|
945
|
-
$fault: "client";
|
|
958
|
+
export declare class InvalidResourcePolicyException extends __BaseException {
|
|
959
|
+
readonly name: "InvalidResourcePolicyException";
|
|
960
|
+
readonly $fault: "client";
|
|
946
961
|
Message: string | undefined;
|
|
962
|
+
|
|
963
|
+
constructor(opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>);
|
|
947
964
|
}
|
|
948
965
|
|
|
949
966
|
export interface LambdaEndpointSummary {
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MigrationHubRefactorSpacesClient
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MigrationHubRefactorSpacesClient
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MigrationHubRefactorSpacesClient
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migration-hub-refactor-spaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migration Hub Refactor Spaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|