@aws-sdk/client-migration-hub-refactor-spaces 3.288.0 → 3.290.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-types/commands/CreateApplicationCommand.d.ts +23 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +23 -0
- package/dist-types/commands/CreateRouteCommand.d.ts +23 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +23 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +20 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +20 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +17 -0
- package/dist-types/commands/DeleteRouteCommand.d.ts +20 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +20 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +17 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +17 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +17 -0
- package/dist-types/commands/GetRouteCommand.d.ts +17 -0
- package/dist-types/commands/GetServiceCommand.d.ts +17 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +23 -0
- package/dist-types/commands/ListEnvironmentVpcsCommand.d.ts +17 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +17 -0
- package/dist-types/commands/ListRoutesCommand.d.ts +23 -0
- package/dist-types/commands/ListServicesCommand.d.ts +23 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +20 -0
- package/dist-types/commands/TagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UpdateRouteCommand.d.ts +17 -0
- package/package.json +29 -29
|
@@ -32,6 +32,29 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
32
32
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The request references a resource that does not exist. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p>The request would cause a service quota to be exceeded. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
35
58
|
*/
|
|
36
59
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
37
60
|
readonly input: CreateApplicationCommandInput;
|
|
@@ -36,6 +36,29 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons
|
|
|
36
36
|
* @see {@link CreateEnvironmentCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
40
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ConflictException} (client fault)
|
|
43
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServerException} (server fault)
|
|
46
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>The request references a resource that does not exist. </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
52
|
+
* <p>The request would cause a service quota to be exceeded. </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
59
|
+
* </p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
39
62
|
*/
|
|
40
63
|
export declare class CreateEnvironmentCommand extends $Command<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
41
64
|
readonly input: CreateEnvironmentCommandInput;
|
|
@@ -80,6 +80,29 @@ export interface CreateRouteCommandOutput extends CreateRouteResponse, __Metadat
|
|
|
80
80
|
* @see {@link CreateRouteCommandOutput} for command's `response` shape.
|
|
81
81
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
82
82
|
*
|
|
83
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
84
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ConflictException} (client fault)
|
|
87
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link InternalServerException} (server fault)
|
|
90
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
93
|
+
* <p>The request references a resource that does not exist. </p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
96
|
+
* <p>The request would cause a service quota to be exceeded. </p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
99
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link ValidationException} (client fault)
|
|
102
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
103
|
+
* </p>
|
|
104
|
+
*
|
|
105
|
+
*
|
|
83
106
|
*/
|
|
84
107
|
export declare class CreateRouteCommand extends $Command<CreateRouteCommandInput, CreateRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
85
108
|
readonly input: CreateRouteCommandInput;
|
|
@@ -38,6 +38,29 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
38
38
|
* @see {@link CreateServiceCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
42
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ConflictException} (client fault)
|
|
45
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerException} (server fault)
|
|
48
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The request references a resource that does not exist. </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
54
|
+
* <p>The request would cause a service quota to be exceeded. </p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
57
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ValidationException} (client fault)
|
|
60
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
61
|
+
* </p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
41
64
|
*/
|
|
42
65
|
export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
43
66
|
readonly input: CreateServiceCommandInput;
|
|
@@ -30,6 +30,26 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
30
30
|
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that does not exist. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
33
53
|
*/
|
|
34
54
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
35
55
|
readonly input: DeleteApplicationCommandInput;
|
|
@@ -30,6 +30,26 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons
|
|
|
30
30
|
* @see {@link DeleteEnvironmentCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that does not exist. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
33
53
|
*/
|
|
34
54
|
export declare class DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
35
55
|
readonly input: DeleteEnvironmentCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
29
29
|
* @see {@link DeleteResourcePolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The request references a resource that does not exist. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
51
|
readonly input: DeleteResourcePolicyCommandInput;
|
|
@@ -29,6 +29,26 @@ export interface DeleteRouteCommandOutput extends DeleteRouteResponse, __Metadat
|
|
|
29
29
|
* @see {@link DeleteRouteCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The request references a resource that does not exist. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
32
52
|
*/
|
|
33
53
|
export declare class DeleteRouteCommand extends $Command<DeleteRouteCommandInput, DeleteRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
54
|
readonly input: DeleteRouteCommandInput;
|
|
@@ -29,6 +29,26 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
29
29
|
* @see {@link DeleteServiceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The request references a resource that does not exist. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
32
52
|
*/
|
|
33
53
|
export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
54
|
readonly input: DeleteServiceCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
29
29
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The request references a resource that does not exist. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
51
|
readonly input: GetApplicationCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M
|
|
|
29
29
|
* @see {@link GetEnvironmentCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The request references a resource that does not exist. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class GetEnvironmentCommand extends $Command<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
51
|
readonly input: GetEnvironmentCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
29
29
|
* @see {@link GetResourcePolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The request references a resource that does not exist. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
51
|
readonly input: GetResourcePolicyCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface GetRouteCommandOutput extends GetRouteResponse, __MetadataBeare
|
|
|
29
29
|
* @see {@link GetRouteCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The request references a resource that does not exist. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class GetRouteCommand extends $Command<GetRouteCommandInput, GetRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
51
|
readonly input: GetRouteCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB
|
|
|
29
29
|
* @see {@link GetServiceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The request references a resource that does not exist. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class GetServiceCommand extends $Command<GetServiceCommandInput, GetServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
51
|
readonly input: GetServiceCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
29
29
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The request references a resource that does not exist. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* <p>The request would cause a service quota to be exceeded. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
57
|
readonly input: ListApplicationsCommandInput;
|
|
@@ -30,6 +30,23 @@ export interface ListEnvironmentVpcsCommandOutput extends ListEnvironmentVpcsRes
|
|
|
30
30
|
* @see {@link ListEnvironmentVpcsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The request references a resource that does not exist. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
33
50
|
*/
|
|
34
51
|
export declare class ListEnvironmentVpcsCommand extends $Command<ListEnvironmentVpcsCommandInput, ListEnvironmentVpcsCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
35
52
|
readonly input: ListEnvironmentVpcsCommandInput;
|
|
@@ -30,6 +30,23 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse,
|
|
|
30
30
|
* @see {@link ListEnvironmentsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The request references a resource that does not exist. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
33
50
|
*/
|
|
34
51
|
export declare class ListEnvironmentsCommand extends $Command<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
35
52
|
readonly input: ListEnvironmentsCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface ListRoutesCommandOutput extends ListRoutesResponse, __MetadataB
|
|
|
29
29
|
* @see {@link ListRoutesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The request references a resource that does not exist. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* <p>The request would cause a service quota to be exceeded. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class ListRoutesCommand extends $Command<ListRoutesCommandInput, ListRoutesCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
57
|
readonly input: ListRoutesCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
29
29
|
* @see {@link ListServicesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The request references a resource that does not exist. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* <p>The request would cause a service quota to be exceeded. </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class ListServicesCommand extends $Command<ListServicesCommandInput, ListServicesCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
57
|
readonly input: ListServicesCommandInput;
|
|
@@ -30,6 +30,17 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
30
30
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p>The request references a resource that does not exist. </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
41
|
+
* </p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
33
44
|
*/
|
|
34
45
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
35
46
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -33,6 +33,26 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
33
33
|
* @see {@link PutResourcePolicyCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidResourcePolicyException} (client fault)
|
|
43
|
+
* <p>The resource policy is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The request references a resource that does not exist. </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
36
56
|
*/
|
|
37
57
|
export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
38
58
|
readonly input: PutResourcePolicyCommandInput;
|
|
@@ -35,6 +35,17 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
35
35
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The request references a resource that does not exist. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
38
49
|
*/
|
|
39
50
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
40
51
|
readonly input: TagResourceCommandInput;
|
|
@@ -31,6 +31,17 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
31
31
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>The request references a resource that does not exist. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
34
45
|
*/
|
|
35
46
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
36
47
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface UpdateRouteCommandOutput extends UpdateRouteResponse, __Metadat
|
|
|
29
29
|
* @see {@link UpdateRouteCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MigrationHubRefactorSpacesClientResolvedConfig | config} for MigrationHubRefactorSpacesClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>The user does not have sufficient access to perform this action. </p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred while processing the request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The request references a resource that does not exist. </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>Request was denied because the request was throttled. </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Service.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class UpdateRouteCommand extends $Command<UpdateRouteCommandInput, UpdateRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
|
|
34
51
|
readonly input: UpdateRouteCommandInput;
|
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.290.0",
|
|
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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|