@aws-sdk/client-migration-hub-refactor-spaces 3.928.0 → 3.930.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/dist-cjs/index.js +1148 -1376
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MigrationHubRefactorSpacesClient.js +2 -0
- package/dist-es/commands/CreateApplicationCommand.js +3 -10
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -10
- package/dist-es/commands/CreateRouteCommand.js +3 -10
- package/dist-es/commands/CreateServiceCommand.js +3 -10
- package/dist-es/commands/DeleteApplicationCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -9
- package/dist-es/commands/DeleteRouteCommand.js +3 -9
- package/dist-es/commands/DeleteServiceCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -10
- package/dist-es/commands/GetEnvironmentCommand.js +3 -10
- package/dist-es/commands/GetResourcePolicyCommand.js +3 -9
- package/dist-es/commands/GetRouteCommand.js +3 -10
- package/dist-es/commands/GetServiceCommand.js +3 -10
- package/dist-es/commands/ListApplicationsCommand.js +3 -10
- package/dist-es/commands/ListEnvironmentVpcsCommand.js +3 -9
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -10
- package/dist-es/commands/ListRoutesCommand.js +3 -10
- package/dist-es/commands/ListServicesCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/PutResourcePolicyCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateRouteCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -101
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1085 -0
- package/dist-types/MigrationHubRefactorSpacesClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -92
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +110 -0
- package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -67
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +116 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1069
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -218
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -293
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
11
11
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
|
|
@@ -165,6 +165,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
165
165
|
* Optional extensions
|
|
166
166
|
*/
|
|
167
167
|
extensions?: RuntimeExtension[];
|
|
168
|
+
/**
|
|
169
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
170
|
+
* may be overridden. A default will always be set by the client.
|
|
171
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
172
|
+
* the client.
|
|
173
|
+
* @alpha
|
|
174
|
+
*
|
|
175
|
+
*/
|
|
176
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
168
177
|
/**
|
|
169
178
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
170
179
|
*/
|
|
@@ -2478,95 +2478,3 @@ export interface UpdateRouteResponse {
|
|
|
2478
2478
|
*/
|
|
2479
2479
|
LastUpdatedTime?: Date | undefined;
|
|
2480
2480
|
}
|
|
2481
|
-
/**
|
|
2482
|
-
* @internal
|
|
2483
|
-
*/
|
|
2484
|
-
export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
2485
|
-
/**
|
|
2486
|
-
* @internal
|
|
2487
|
-
*/
|
|
2488
|
-
export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
2489
|
-
/**
|
|
2490
|
-
* @internal
|
|
2491
|
-
*/
|
|
2492
|
-
export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
2493
|
-
/**
|
|
2494
|
-
* @internal
|
|
2495
|
-
*/
|
|
2496
|
-
export declare const CreateEnvironmentRequestFilterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
|
|
2497
|
-
/**
|
|
2498
|
-
* @internal
|
|
2499
|
-
*/
|
|
2500
|
-
export declare const CreateEnvironmentResponseFilterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
2501
|
-
/**
|
|
2502
|
-
* @internal
|
|
2503
|
-
*/
|
|
2504
|
-
export declare const CreateRouteRequestFilterSensitiveLog: (obj: CreateRouteRequest) => any;
|
|
2505
|
-
/**
|
|
2506
|
-
* @internal
|
|
2507
|
-
*/
|
|
2508
|
-
export declare const CreateRouteResponseFilterSensitiveLog: (obj: CreateRouteResponse) => any;
|
|
2509
|
-
/**
|
|
2510
|
-
* @internal
|
|
2511
|
-
*/
|
|
2512
|
-
export declare const CreateServiceRequestFilterSensitiveLog: (obj: CreateServiceRequest) => any;
|
|
2513
|
-
/**
|
|
2514
|
-
* @internal
|
|
2515
|
-
*/
|
|
2516
|
-
export declare const CreateServiceResponseFilterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
2517
|
-
/**
|
|
2518
|
-
* @internal
|
|
2519
|
-
*/
|
|
2520
|
-
export declare const EnvironmentSummaryFilterSensitiveLog: (obj: EnvironmentSummary) => any;
|
|
2521
|
-
/**
|
|
2522
|
-
* @internal
|
|
2523
|
-
*/
|
|
2524
|
-
export declare const GetApplicationResponseFilterSensitiveLog: (obj: GetApplicationResponse) => any;
|
|
2525
|
-
/**
|
|
2526
|
-
* @internal
|
|
2527
|
-
*/
|
|
2528
|
-
export declare const GetEnvironmentResponseFilterSensitiveLog: (obj: GetEnvironmentResponse) => any;
|
|
2529
|
-
/**
|
|
2530
|
-
* @internal
|
|
2531
|
-
*/
|
|
2532
|
-
export declare const GetRouteResponseFilterSensitiveLog: (obj: GetRouteResponse) => any;
|
|
2533
|
-
/**
|
|
2534
|
-
* @internal
|
|
2535
|
-
*/
|
|
2536
|
-
export declare const GetServiceResponseFilterSensitiveLog: (obj: GetServiceResponse) => any;
|
|
2537
|
-
/**
|
|
2538
|
-
* @internal
|
|
2539
|
-
*/
|
|
2540
|
-
export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
2541
|
-
/**
|
|
2542
|
-
* @internal
|
|
2543
|
-
*/
|
|
2544
|
-
export declare const ListEnvironmentsResponseFilterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
|
|
2545
|
-
/**
|
|
2546
|
-
* @internal
|
|
2547
|
-
*/
|
|
2548
|
-
export declare const RouteSummaryFilterSensitiveLog: (obj: RouteSummary) => any;
|
|
2549
|
-
/**
|
|
2550
|
-
* @internal
|
|
2551
|
-
*/
|
|
2552
|
-
export declare const ListRoutesResponseFilterSensitiveLog: (obj: ListRoutesResponse) => any;
|
|
2553
|
-
/**
|
|
2554
|
-
* @internal
|
|
2555
|
-
*/
|
|
2556
|
-
export declare const ServiceSummaryFilterSensitiveLog: (obj: ServiceSummary) => any;
|
|
2557
|
-
/**
|
|
2558
|
-
* @internal
|
|
2559
|
-
*/
|
|
2560
|
-
export declare const ListServicesResponseFilterSensitiveLog: (obj: ListServicesResponse) => any;
|
|
2561
|
-
/**
|
|
2562
|
-
* @internal
|
|
2563
|
-
*/
|
|
2564
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2565
|
-
/**
|
|
2566
|
-
* @internal
|
|
2567
|
-
*/
|
|
2568
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2569
|
-
/**
|
|
2570
|
-
* @internal
|
|
2571
|
-
*/
|
|
2572
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: MigrationHubRefactorSpacesClient
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: MigrationHubRefactorSpacesClient
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: MigrationHubRefactorSpacesClient
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: MigrationHubRefactorSpacesClient
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MigrationHubRefactorSpacesHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
3
|
+
export declare var ApiGatewayProxyConfig: StaticStructureSchema;
|
|
4
|
+
export declare var ApiGatewayProxyInput: StaticStructureSchema;
|
|
5
|
+
export declare var ApiGatewayProxySummary: StaticStructureSchema;
|
|
6
|
+
export declare var ApplicationSummary: StaticStructureSchema;
|
|
7
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
8
|
+
export declare var CreateApplicationRequest: StaticStructureSchema;
|
|
9
|
+
export declare var CreateApplicationResponse: StaticStructureSchema;
|
|
10
|
+
export declare var CreateEnvironmentRequest: StaticStructureSchema;
|
|
11
|
+
export declare var CreateEnvironmentResponse: StaticStructureSchema;
|
|
12
|
+
export declare var CreateRouteRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CreateRouteResponse: StaticStructureSchema;
|
|
14
|
+
export declare var CreateServiceRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateServiceResponse: StaticStructureSchema;
|
|
16
|
+
export declare var DefaultRouteInput: StaticStructureSchema;
|
|
17
|
+
export declare var DeleteApplicationRequest: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteApplicationResponse: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteEnvironmentRequest: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteEnvironmentResponse: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteResourcePolicyRequest: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteResourcePolicyResponse: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteRouteRequest: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteRouteResponse: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteServiceRequest: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteServiceResponse: StaticStructureSchema;
|
|
27
|
+
export declare var EnvironmentSummary: StaticStructureSchema;
|
|
28
|
+
export declare var EnvironmentVpc: StaticStructureSchema;
|
|
29
|
+
export declare var ErrorResponse: StaticStructureSchema;
|
|
30
|
+
export declare var GetApplicationRequest: StaticStructureSchema;
|
|
31
|
+
export declare var GetApplicationResponse: StaticStructureSchema;
|
|
32
|
+
export declare var GetEnvironmentRequest: StaticStructureSchema;
|
|
33
|
+
export declare var GetEnvironmentResponse: StaticStructureSchema;
|
|
34
|
+
export declare var GetResourcePolicyRequest: StaticStructureSchema;
|
|
35
|
+
export declare var GetResourcePolicyResponse: StaticStructureSchema;
|
|
36
|
+
export declare var GetRouteRequest: StaticStructureSchema;
|
|
37
|
+
export declare var GetRouteResponse: StaticStructureSchema;
|
|
38
|
+
export declare var GetServiceRequest: StaticStructureSchema;
|
|
39
|
+
export declare var GetServiceResponse: StaticStructureSchema;
|
|
40
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
41
|
+
export declare var InvalidResourcePolicyException: StaticErrorSchema;
|
|
42
|
+
export declare var LambdaEndpointConfig: StaticStructureSchema;
|
|
43
|
+
export declare var LambdaEndpointInput: StaticStructureSchema;
|
|
44
|
+
export declare var LambdaEndpointSummary: StaticStructureSchema;
|
|
45
|
+
export declare var ListApplicationsRequest: StaticStructureSchema;
|
|
46
|
+
export declare var ListApplicationsResponse: StaticStructureSchema;
|
|
47
|
+
export declare var ListEnvironmentsRequest: StaticStructureSchema;
|
|
48
|
+
export declare var ListEnvironmentsResponse: StaticStructureSchema;
|
|
49
|
+
export declare var ListEnvironmentVpcsRequest: StaticStructureSchema;
|
|
50
|
+
export declare var ListEnvironmentVpcsResponse: StaticStructureSchema;
|
|
51
|
+
export declare var ListRoutesRequest: StaticStructureSchema;
|
|
52
|
+
export declare var ListRoutesResponse: StaticStructureSchema;
|
|
53
|
+
export declare var ListServicesRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListServicesResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
56
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
57
|
+
export declare var PutResourcePolicyRequest: StaticStructureSchema;
|
|
58
|
+
export declare var PutResourcePolicyResponse: StaticStructureSchema;
|
|
59
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
60
|
+
export declare var RouteSummary: StaticStructureSchema;
|
|
61
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
62
|
+
export declare var ServiceSummary: StaticStructureSchema;
|
|
63
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
64
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
65
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
66
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
67
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
68
|
+
export declare var UpdateRouteRequest: StaticStructureSchema;
|
|
69
|
+
export declare var UpdateRouteResponse: StaticStructureSchema;
|
|
70
|
+
export declare var UriPathRouteInput: StaticStructureSchema;
|
|
71
|
+
export declare var UrlEndpointConfig: StaticStructureSchema;
|
|
72
|
+
export declare var UrlEndpointInput: StaticStructureSchema;
|
|
73
|
+
export declare var UrlEndpointSummary: StaticStructureSchema;
|
|
74
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
75
|
+
export declare var MigrationHubRefactorSpacesServiceException: StaticErrorSchema;
|
|
76
|
+
export declare var ApplicationSummaries: StaticListSchema;
|
|
77
|
+
export declare var CidrBlocks: number;
|
|
78
|
+
export declare var EnvironmentSummaries: StaticListSchema;
|
|
79
|
+
export declare var EnvironmentVpcs: StaticListSchema;
|
|
80
|
+
export declare var HttpMethods: number;
|
|
81
|
+
export declare var RouteSummaries: StaticListSchema;
|
|
82
|
+
export declare var ServiceSummaries: StaticListSchema;
|
|
83
|
+
export declare var TagKeys: StaticListSchema;
|
|
84
|
+
export declare var AdditionalDetails: number;
|
|
85
|
+
export declare var PathResourceToId: number;
|
|
86
|
+
export declare var TagMap: StaticMapSchema;
|
|
87
|
+
export declare var CreateApplication: StaticOperationSchema;
|
|
88
|
+
export declare var CreateEnvironment: StaticOperationSchema;
|
|
89
|
+
export declare var CreateRoute: StaticOperationSchema;
|
|
90
|
+
export declare var CreateService: StaticOperationSchema;
|
|
91
|
+
export declare var DeleteApplication: StaticOperationSchema;
|
|
92
|
+
export declare var DeleteEnvironment: StaticOperationSchema;
|
|
93
|
+
export declare var DeleteResourcePolicy: StaticOperationSchema;
|
|
94
|
+
export declare var DeleteRoute: StaticOperationSchema;
|
|
95
|
+
export declare var DeleteService: StaticOperationSchema;
|
|
96
|
+
export declare var GetApplication: StaticOperationSchema;
|
|
97
|
+
export declare var GetEnvironment: StaticOperationSchema;
|
|
98
|
+
export declare var GetResourcePolicy: StaticOperationSchema;
|
|
99
|
+
export declare var GetRoute: StaticOperationSchema;
|
|
100
|
+
export declare var GetService: StaticOperationSchema;
|
|
101
|
+
export declare var ListApplications: StaticOperationSchema;
|
|
102
|
+
export declare var ListEnvironments: StaticOperationSchema;
|
|
103
|
+
export declare var ListEnvironmentVpcs: StaticOperationSchema;
|
|
104
|
+
export declare var ListRoutes: StaticOperationSchema;
|
|
105
|
+
export declare var ListServices: StaticOperationSchema;
|
|
106
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
107
|
+
export declare var PutResourcePolicy: StaticOperationSchema;
|
|
108
|
+
export declare var TagResource: StaticOperationSchema;
|
|
109
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
110
|
+
export declare var UpdateRoute: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -222,6 +225,7 @@ export interface ClientDefaults
|
|
|
222
225
|
retryMode?: string | __Provider<string>;
|
|
223
226
|
logger?: __Logger;
|
|
224
227
|
extensions?: RuntimeExtension[];
|
|
228
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
225
229
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
226
230
|
}
|
|
227
231
|
export type MigrationHubRefactorSpacesClientConfigType = Partial<
|
|
@@ -649,70 +649,3 @@ export interface UpdateRouteResponse {
|
|
|
649
649
|
State?: RouteState | undefined;
|
|
650
650
|
LastUpdatedTime?: Date | undefined;
|
|
651
651
|
}
|
|
652
|
-
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
653
|
-
obj: ApplicationSummary
|
|
654
|
-
) => any;
|
|
655
|
-
export declare const CreateApplicationRequestFilterSensitiveLog: (
|
|
656
|
-
obj: CreateApplicationRequest
|
|
657
|
-
) => any;
|
|
658
|
-
export declare const CreateApplicationResponseFilterSensitiveLog: (
|
|
659
|
-
obj: CreateApplicationResponse
|
|
660
|
-
) => any;
|
|
661
|
-
export declare const CreateEnvironmentRequestFilterSensitiveLog: (
|
|
662
|
-
obj: CreateEnvironmentRequest
|
|
663
|
-
) => any;
|
|
664
|
-
export declare const CreateEnvironmentResponseFilterSensitiveLog: (
|
|
665
|
-
obj: CreateEnvironmentResponse
|
|
666
|
-
) => any;
|
|
667
|
-
export declare const CreateRouteRequestFilterSensitiveLog: (
|
|
668
|
-
obj: CreateRouteRequest
|
|
669
|
-
) => any;
|
|
670
|
-
export declare const CreateRouteResponseFilterSensitiveLog: (
|
|
671
|
-
obj: CreateRouteResponse
|
|
672
|
-
) => any;
|
|
673
|
-
export declare const CreateServiceRequestFilterSensitiveLog: (
|
|
674
|
-
obj: CreateServiceRequest
|
|
675
|
-
) => any;
|
|
676
|
-
export declare const CreateServiceResponseFilterSensitiveLog: (
|
|
677
|
-
obj: CreateServiceResponse
|
|
678
|
-
) => any;
|
|
679
|
-
export declare const EnvironmentSummaryFilterSensitiveLog: (
|
|
680
|
-
obj: EnvironmentSummary
|
|
681
|
-
) => any;
|
|
682
|
-
export declare const GetApplicationResponseFilterSensitiveLog: (
|
|
683
|
-
obj: GetApplicationResponse
|
|
684
|
-
) => any;
|
|
685
|
-
export declare const GetEnvironmentResponseFilterSensitiveLog: (
|
|
686
|
-
obj: GetEnvironmentResponse
|
|
687
|
-
) => any;
|
|
688
|
-
export declare const GetRouteResponseFilterSensitiveLog: (
|
|
689
|
-
obj: GetRouteResponse
|
|
690
|
-
) => any;
|
|
691
|
-
export declare const GetServiceResponseFilterSensitiveLog: (
|
|
692
|
-
obj: GetServiceResponse
|
|
693
|
-
) => any;
|
|
694
|
-
export declare const ListApplicationsResponseFilterSensitiveLog: (
|
|
695
|
-
obj: ListApplicationsResponse
|
|
696
|
-
) => any;
|
|
697
|
-
export declare const ListEnvironmentsResponseFilterSensitiveLog: (
|
|
698
|
-
obj: ListEnvironmentsResponse
|
|
699
|
-
) => any;
|
|
700
|
-
export declare const RouteSummaryFilterSensitiveLog: (obj: RouteSummary) => any;
|
|
701
|
-
export declare const ListRoutesResponseFilterSensitiveLog: (
|
|
702
|
-
obj: ListRoutesResponse
|
|
703
|
-
) => any;
|
|
704
|
-
export declare const ServiceSummaryFilterSensitiveLog: (
|
|
705
|
-
obj: ServiceSummary
|
|
706
|
-
) => any;
|
|
707
|
-
export declare const ListServicesResponseFilterSensitiveLog: (
|
|
708
|
-
obj: ListServicesResponse
|
|
709
|
-
) => any;
|
|
710
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
711
|
-
obj: ListTagsForResourceResponse
|
|
712
|
-
) => any;
|
|
713
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
714
|
-
obj: TagResourceRequest
|
|
715
|
-
) => any;
|
|
716
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
717
|
-
obj: UntagResourceRequest
|
|
718
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MigrationHubRefactorSpacesHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
9
|
+
export declare var ApiGatewayProxyConfig: StaticStructureSchema;
|
|
10
|
+
export declare var ApiGatewayProxyInput: StaticStructureSchema;
|
|
11
|
+
export declare var ApiGatewayProxySummary: StaticStructureSchema;
|
|
12
|
+
export declare var ApplicationSummary: StaticStructureSchema;
|
|
13
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
14
|
+
export declare var CreateApplicationRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateApplicationResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateEnvironmentRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateEnvironmentResponse: StaticStructureSchema;
|
|
18
|
+
export declare var CreateRouteRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateRouteResponse: StaticStructureSchema;
|
|
20
|
+
export declare var CreateServiceRequest: StaticStructureSchema;
|
|
21
|
+
export declare var CreateServiceResponse: StaticStructureSchema;
|
|
22
|
+
export declare var DefaultRouteInput: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteApplicationRequest: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteApplicationResponse: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteEnvironmentRequest: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteEnvironmentResponse: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteResourcePolicyRequest: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteResourcePolicyResponse: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteRouteRequest: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteRouteResponse: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteServiceRequest: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteServiceResponse: StaticStructureSchema;
|
|
33
|
+
export declare var EnvironmentSummary: StaticStructureSchema;
|
|
34
|
+
export declare var EnvironmentVpc: StaticStructureSchema;
|
|
35
|
+
export declare var ErrorResponse: StaticStructureSchema;
|
|
36
|
+
export declare var GetApplicationRequest: StaticStructureSchema;
|
|
37
|
+
export declare var GetApplicationResponse: StaticStructureSchema;
|
|
38
|
+
export declare var GetEnvironmentRequest: StaticStructureSchema;
|
|
39
|
+
export declare var GetEnvironmentResponse: StaticStructureSchema;
|
|
40
|
+
export declare var GetResourcePolicyRequest: StaticStructureSchema;
|
|
41
|
+
export declare var GetResourcePolicyResponse: StaticStructureSchema;
|
|
42
|
+
export declare var GetRouteRequest: StaticStructureSchema;
|
|
43
|
+
export declare var GetRouteResponse: StaticStructureSchema;
|
|
44
|
+
export declare var GetServiceRequest: StaticStructureSchema;
|
|
45
|
+
export declare var GetServiceResponse: StaticStructureSchema;
|
|
46
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
47
|
+
export declare var InvalidResourcePolicyException: StaticErrorSchema;
|
|
48
|
+
export declare var LambdaEndpointConfig: StaticStructureSchema;
|
|
49
|
+
export declare var LambdaEndpointInput: StaticStructureSchema;
|
|
50
|
+
export declare var LambdaEndpointSummary: StaticStructureSchema;
|
|
51
|
+
export declare var ListApplicationsRequest: StaticStructureSchema;
|
|
52
|
+
export declare var ListApplicationsResponse: StaticStructureSchema;
|
|
53
|
+
export declare var ListEnvironmentsRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListEnvironmentsResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListEnvironmentVpcsRequest: StaticStructureSchema;
|
|
56
|
+
export declare var ListEnvironmentVpcsResponse: StaticStructureSchema;
|
|
57
|
+
export declare var ListRoutesRequest: StaticStructureSchema;
|
|
58
|
+
export declare var ListRoutesResponse: StaticStructureSchema;
|
|
59
|
+
export declare var ListServicesRequest: StaticStructureSchema;
|
|
60
|
+
export declare var ListServicesResponse: StaticStructureSchema;
|
|
61
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
62
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
63
|
+
export declare var PutResourcePolicyRequest: StaticStructureSchema;
|
|
64
|
+
export declare var PutResourcePolicyResponse: StaticStructureSchema;
|
|
65
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
66
|
+
export declare var RouteSummary: StaticStructureSchema;
|
|
67
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
68
|
+
export declare var ServiceSummary: StaticStructureSchema;
|
|
69
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
70
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
71
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
72
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
73
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
74
|
+
export declare var UpdateRouteRequest: StaticStructureSchema;
|
|
75
|
+
export declare var UpdateRouteResponse: StaticStructureSchema;
|
|
76
|
+
export declare var UriPathRouteInput: StaticStructureSchema;
|
|
77
|
+
export declare var UrlEndpointConfig: StaticStructureSchema;
|
|
78
|
+
export declare var UrlEndpointInput: StaticStructureSchema;
|
|
79
|
+
export declare var UrlEndpointSummary: StaticStructureSchema;
|
|
80
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
81
|
+
export declare var MigrationHubRefactorSpacesServiceException: StaticErrorSchema;
|
|
82
|
+
export declare var ApplicationSummaries: StaticListSchema;
|
|
83
|
+
export declare var CidrBlocks: number;
|
|
84
|
+
export declare var EnvironmentSummaries: StaticListSchema;
|
|
85
|
+
export declare var EnvironmentVpcs: StaticListSchema;
|
|
86
|
+
export declare var HttpMethods: number;
|
|
87
|
+
export declare var RouteSummaries: StaticListSchema;
|
|
88
|
+
export declare var ServiceSummaries: StaticListSchema;
|
|
89
|
+
export declare var TagKeys: StaticListSchema;
|
|
90
|
+
export declare var AdditionalDetails: number;
|
|
91
|
+
export declare var PathResourceToId: number;
|
|
92
|
+
export declare var TagMap: StaticMapSchema;
|
|
93
|
+
export declare var CreateApplication: StaticOperationSchema;
|
|
94
|
+
export declare var CreateEnvironment: StaticOperationSchema;
|
|
95
|
+
export declare var CreateRoute: StaticOperationSchema;
|
|
96
|
+
export declare var CreateService: StaticOperationSchema;
|
|
97
|
+
export declare var DeleteApplication: StaticOperationSchema;
|
|
98
|
+
export declare var DeleteEnvironment: StaticOperationSchema;
|
|
99
|
+
export declare var DeleteResourcePolicy: StaticOperationSchema;
|
|
100
|
+
export declare var DeleteRoute: StaticOperationSchema;
|
|
101
|
+
export declare var DeleteService: StaticOperationSchema;
|
|
102
|
+
export declare var GetApplication: StaticOperationSchema;
|
|
103
|
+
export declare var GetEnvironment: StaticOperationSchema;
|
|
104
|
+
export declare var GetResourcePolicy: StaticOperationSchema;
|
|
105
|
+
export declare var GetRoute: StaticOperationSchema;
|
|
106
|
+
export declare var GetService: StaticOperationSchema;
|
|
107
|
+
export declare var ListApplications: StaticOperationSchema;
|
|
108
|
+
export declare var ListEnvironments: StaticOperationSchema;
|
|
109
|
+
export declare var ListEnvironmentVpcs: StaticOperationSchema;
|
|
110
|
+
export declare var ListRoutes: StaticOperationSchema;
|
|
111
|
+
export declare var ListServices: StaticOperationSchema;
|
|
112
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
113
|
+
export declare var PutResourcePolicy: StaticOperationSchema;
|
|
114
|
+
export declare var TagResource: StaticOperationSchema;
|
|
115
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
116
|
+
export declare var UpdateRoute: StaticOperationSchema;
|
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.930.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-migration-hub-refactor-spaces",
|
|
@@ -20,43 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.930.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.930.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.930.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.930.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|