@aws-sdk/client-migration-hub-refactor-spaces 3.299.0 → 3.300.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 +14 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +9 -0
- package/dist-types/commands/CreateRouteCommand.d.ts +21 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +19 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +3 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeleteRouteCommand.d.ts +5 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +5 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +4 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +3 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +3 -0
- package/dist-types/commands/GetRouteCommand.d.ts +5 -0
- package/dist-types/commands/GetServiceCommand.d.ts +5 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +5 -0
- package/dist-types/commands/ListEnvironmentVpcsCommand.d.ts +5 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +4 -0
- package/dist-types/commands/ListRoutesCommand.d.ts +6 -0
- package/dist-types/commands/ListServicesCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateRouteCommand.d.ts +6 -0
- package/package.json +8 -8
|
@@ -29,6 +29,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
29
29
|
* import { MigrationHubRefactorSpacesClient, CreateApplicationCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
30
30
|
* // const { MigrationHubRefactorSpacesClient, CreateApplicationCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
31
31
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
35
|
+
* VpcId: "STRING_VALUE", // required
|
|
36
|
+
* ProxyType: "STRING_VALUE", // required
|
|
37
|
+
* ApiGatewayProxy: {
|
|
38
|
+
* EndpointType: "STRING_VALUE",
|
|
39
|
+
* StageName: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* Tags: {
|
|
42
|
+
* "<keys>": "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* ClientToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
32
46
|
* const command = new CreateApplicationCommand(input);
|
|
33
47
|
* const response = await client.send(command);
|
|
34
48
|
* ```
|
|
@@ -33,6 +33,15 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons
|
|
|
33
33
|
* import { MigrationHubRefactorSpacesClient, CreateEnvironmentCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
34
34
|
* // const { MigrationHubRefactorSpacesClient, CreateEnvironmentCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
35
35
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* Name: "STRING_VALUE", // required
|
|
38
|
+
* Description: "STRING_VALUE",
|
|
39
|
+
* NetworkFabricType: "STRING_VALUE", // required
|
|
40
|
+
* Tags: {
|
|
41
|
+
* "<keys>": "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ClientToken: "STRING_VALUE",
|
|
44
|
+
* };
|
|
36
45
|
* const command = new CreateEnvironmentCommand(input);
|
|
37
46
|
* const response = await client.send(command);
|
|
38
47
|
* ```
|
|
@@ -77,6 +77,27 @@ export interface CreateRouteCommandOutput extends CreateRouteResponse, __Metadat
|
|
|
77
77
|
* import { MigrationHubRefactorSpacesClient, CreateRouteCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
78
78
|
* // const { MigrationHubRefactorSpacesClient, CreateRouteCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
79
79
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
80
|
+
* const input = {
|
|
81
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
82
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
83
|
+
* ServiceIdentifier: "STRING_VALUE", // required
|
|
84
|
+
* RouteType: "STRING_VALUE", // required
|
|
85
|
+
* DefaultRoute: {
|
|
86
|
+
* ActivationState: "STRING_VALUE",
|
|
87
|
+
* },
|
|
88
|
+
* UriPathRoute: {
|
|
89
|
+
* SourcePath: "STRING_VALUE", // required
|
|
90
|
+
* ActivationState: "STRING_VALUE", // required
|
|
91
|
+
* Methods: [
|
|
92
|
+
* "STRING_VALUE",
|
|
93
|
+
* ],
|
|
94
|
+
* IncludeChildPaths: true || false,
|
|
95
|
+
* },
|
|
96
|
+
* Tags: {
|
|
97
|
+
* "<keys>": "STRING_VALUE",
|
|
98
|
+
* },
|
|
99
|
+
* ClientToken: "STRING_VALUE",
|
|
100
|
+
* };
|
|
80
101
|
* const command = new CreateRouteCommand(input);
|
|
81
102
|
* const response = await client.send(command);
|
|
82
103
|
* ```
|
|
@@ -35,6 +35,25 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
35
35
|
* import { MigrationHubRefactorSpacesClient, CreateServiceCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
36
36
|
* // const { MigrationHubRefactorSpacesClient, CreateServiceCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
37
37
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
38
|
+
* const input = {
|
|
39
|
+
* Name: "STRING_VALUE", // required
|
|
40
|
+
* Description: "STRING_VALUE",
|
|
41
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
42
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* VpcId: "STRING_VALUE",
|
|
44
|
+
* EndpointType: "STRING_VALUE", // required
|
|
45
|
+
* UrlEndpoint: {
|
|
46
|
+
* Url: "STRING_VALUE", // required
|
|
47
|
+
* HealthUrl: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* LambdaEndpoint: {
|
|
50
|
+
* Arn: "STRING_VALUE", // required
|
|
51
|
+
* },
|
|
52
|
+
* Tags: {
|
|
53
|
+
* "<keys>": "STRING_VALUE",
|
|
54
|
+
* },
|
|
55
|
+
* ClientToken: "STRING_VALUE",
|
|
56
|
+
* };
|
|
38
57
|
* const command = new CreateServiceCommand(input);
|
|
39
58
|
* const response = await client.send(command);
|
|
40
59
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
27
27
|
* import { MigrationHubRefactorSpacesClient, DeleteApplicationCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
28
28
|
* // const { MigrationHubRefactorSpacesClient, DeleteApplicationCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
29
29
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DeleteApplicationCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons
|
|
|
27
27
|
* import { MigrationHubRefactorSpacesClient, DeleteEnvironmentCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
28
28
|
* // const { MigrationHubRefactorSpacesClient, DeleteEnvironmentCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
29
29
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteEnvironmentCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, DeleteResourcePolicyCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, DeleteResourcePolicyCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Identifier: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteResourcePolicyCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DeleteRouteCommandOutput extends DeleteRouteResponse, __Metadat
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, DeleteRouteCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, DeleteRouteCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* RouteIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DeleteRouteCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, DeleteServiceCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, DeleteServiceCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* ServiceIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DeleteServiceCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, GetApplicationCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, GetApplicationCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetApplicationCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, GetEnvironmentCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, GetEnvironmentCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetEnvironmentCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, GetResourcePolicyCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, GetResourcePolicyCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Identifier: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetResourcePolicyCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetRouteCommandOutput extends GetRouteResponse, __MetadataBeare
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, GetRouteCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, GetRouteCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* RouteIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetRouteCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, GetServiceCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, GetServiceCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* ServiceIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetServiceCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, ListApplicationsCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, ListApplicationsCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListApplicationsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface ListEnvironmentVpcsCommandOutput extends ListEnvironmentVpcsRes
|
|
|
27
27
|
* import { MigrationHubRefactorSpacesClient, ListEnvironmentVpcsCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
28
28
|
* // const { MigrationHubRefactorSpacesClient, ListEnvironmentVpcsCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
29
29
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* };
|
|
30
35
|
* const command = new ListEnvironmentVpcsCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse,
|
|
|
27
27
|
* import { MigrationHubRefactorSpacesClient, ListEnvironmentsCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
28
28
|
* // const { MigrationHubRefactorSpacesClient, ListEnvironmentsCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
29
29
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* };
|
|
30
34
|
* const command = new ListEnvironmentsCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListRoutesCommandOutput extends ListRoutesResponse, __MetadataB
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, ListRoutesCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, ListRoutesCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListRoutesCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, ListServicesCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, ListServicesCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListServicesCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
27
|
* import { MigrationHubRefactorSpacesClient, ListTagsForResourceCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
28
28
|
* // const { MigrationHubRefactorSpacesClient, ListTagsForResourceCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
29
29
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -30,6 +30,10 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
30
30
|
* import { MigrationHubRefactorSpacesClient, PutResourcePolicyCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
31
31
|
* // const { MigrationHubRefactorSpacesClient, PutResourcePolicyCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
32
32
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
35
|
+
* Policy: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
33
37
|
* const command = new PutResourcePolicyCommand(input);
|
|
34
38
|
* const response = await client.send(command);
|
|
35
39
|
* ```
|
|
@@ -32,6 +32,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
32
32
|
* import { MigrationHubRefactorSpacesClient, TagResourceCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
33
33
|
* // const { MigrationHubRefactorSpacesClient, TagResourceCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
34
34
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
35
|
+
* const input = {
|
|
36
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
37
|
+
* Tags: { // required
|
|
38
|
+
* "<keys>": "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* };
|
|
35
41
|
* const command = new TagResourceCommand(input);
|
|
36
42
|
* const response = await client.send(command);
|
|
37
43
|
* ```
|
|
@@ -28,6 +28,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
28
28
|
* import { MigrationHubRefactorSpacesClient, UntagResourceCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
29
29
|
* // const { MigrationHubRefactorSpacesClient, UntagResourceCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
30
30
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
33
|
+
* TagKeys: [ // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* };
|
|
31
37
|
* const command = new UntagResourceCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UpdateRouteCommandOutput extends UpdateRouteResponse, __Metadat
|
|
|
26
26
|
* import { MigrationHubRefactorSpacesClient, UpdateRouteCommand } from "@aws-sdk/client-migration-hub-refactor-spaces"; // ES Modules import
|
|
27
27
|
* // const { MigrationHubRefactorSpacesClient, UpdateRouteCommand } = require("@aws-sdk/client-migration-hub-refactor-spaces"); // CommonJS import
|
|
28
28
|
* const client = new MigrationHubRefactorSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* RouteIdentifier: "STRING_VALUE", // required
|
|
33
|
+
* ActivationState: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UpdateRouteCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
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.300.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|