@aws-sdk/client-migration-hub-refactor-spaces 3.300.0 → 3.303.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/models/models_0.js +94 -107
- package/dist-es/models/models_0.js +94 -107
- package/dist-types/commands/CreateApplicationCommand.d.ts +3 -3
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +2 -2
- package/dist-types/commands/CreateRouteCommand.d.ts +5 -5
- package/dist-types/commands/CreateServiceCommand.d.ts +4 -4
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRouteCommand.d.ts +1 -1
- package/dist-types/commands/DeleteServiceCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetRouteCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentVpcsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListRoutesCommand.d.ts +1 -1
- package/dist-types/commands/ListServicesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateRouteCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +159 -94
- package/dist-types/ts3.4/models/models_0.d.ts +114 -94
- package/package.json +34 -34
|
@@ -17,60 +17,55 @@ class AccessDeniedException extends MigrationHubRefactorSpacesServiceException_1
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
exports.AccessDeniedException = AccessDeniedException;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
})(ErrorResourceType = exports.ErrorResourceType || (exports.ErrorResourceType = {}));
|
|
70
|
-
var ProxyType;
|
|
71
|
-
(function (ProxyType) {
|
|
72
|
-
ProxyType["API_GATEWAY"] = "API_GATEWAY";
|
|
73
|
-
})(ProxyType = exports.ProxyType || (exports.ProxyType = {}));
|
|
20
|
+
exports.ApiGatewayEndpointType = {
|
|
21
|
+
PRIVATE: "PRIVATE",
|
|
22
|
+
REGIONAL: "REGIONAL",
|
|
23
|
+
};
|
|
24
|
+
exports.ApplicationState = {
|
|
25
|
+
ACTIVE: "ACTIVE",
|
|
26
|
+
CREATING: "CREATING",
|
|
27
|
+
DELETING: "DELETING",
|
|
28
|
+
FAILED: "FAILED",
|
|
29
|
+
UPDATING: "UPDATING",
|
|
30
|
+
};
|
|
31
|
+
exports.ErrorCode = {
|
|
32
|
+
INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE",
|
|
33
|
+
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
34
|
+
REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED",
|
|
35
|
+
RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE",
|
|
36
|
+
RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE",
|
|
37
|
+
RESOURCE_IN_USE: "RESOURCE_IN_USE",
|
|
38
|
+
RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED",
|
|
39
|
+
RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",
|
|
40
|
+
RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE",
|
|
41
|
+
RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE",
|
|
42
|
+
SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
|
|
43
|
+
STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE",
|
|
44
|
+
};
|
|
45
|
+
exports.ErrorResourceType = {
|
|
46
|
+
API_GATEWAY: "API_GATEWAY",
|
|
47
|
+
APPLICATION: "APPLICATION",
|
|
48
|
+
ENVIRONMENT: "ENVIRONMENT",
|
|
49
|
+
IAM_ROLE: "IAM_ROLE",
|
|
50
|
+
LAMBDA: "LAMBDA",
|
|
51
|
+
LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER",
|
|
52
|
+
NLB: "NLB",
|
|
53
|
+
RESOURCE_SHARE: "RESOURCE_SHARE",
|
|
54
|
+
ROUTE: "ROUTE",
|
|
55
|
+
ROUTE_TABLE: "ROUTE_TABLE",
|
|
56
|
+
SECURITY_GROUP: "SECURITY_GROUP",
|
|
57
|
+
SERVICE: "SERVICE",
|
|
58
|
+
SUBNET: "SUBNET",
|
|
59
|
+
TARGET_GROUP: "TARGET_GROUP",
|
|
60
|
+
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
61
|
+
TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT",
|
|
62
|
+
VPC: "VPC",
|
|
63
|
+
VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION",
|
|
64
|
+
VPC_LINK: "VPC_LINK",
|
|
65
|
+
};
|
|
66
|
+
exports.ProxyType = {
|
|
67
|
+
API_GATEWAY: "API_GATEWAY",
|
|
68
|
+
};
|
|
74
69
|
class ConflictException extends MigrationHubRefactorSpacesServiceException_1.MigrationHubRefactorSpacesServiceException {
|
|
75
70
|
constructor(opts) {
|
|
76
71
|
super({
|
|
@@ -166,59 +161,51 @@ class ValidationException extends MigrationHubRefactorSpacesServiceException_1.M
|
|
|
166
161
|
}
|
|
167
162
|
}
|
|
168
163
|
exports.ValidationException = ValidationException;
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
})(ServiceEndpointType = exports.ServiceEndpointType || (exports.ServiceEndpointType = {}));
|
|
215
|
-
var ServiceState;
|
|
216
|
-
(function (ServiceState) {
|
|
217
|
-
ServiceState["ACTIVE"] = "ACTIVE";
|
|
218
|
-
ServiceState["CREATING"] = "CREATING";
|
|
219
|
-
ServiceState["DELETING"] = "DELETING";
|
|
220
|
-
ServiceState["FAILED"] = "FAILED";
|
|
221
|
-
})(ServiceState = exports.ServiceState || (exports.ServiceState = {}));
|
|
164
|
+
exports.NetworkFabricType = {
|
|
165
|
+
NONE: "NONE",
|
|
166
|
+
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
167
|
+
};
|
|
168
|
+
exports.EnvironmentState = {
|
|
169
|
+
ACTIVE: "ACTIVE",
|
|
170
|
+
CREATING: "CREATING",
|
|
171
|
+
DELETING: "DELETING",
|
|
172
|
+
FAILED: "FAILED",
|
|
173
|
+
};
|
|
174
|
+
exports.RouteActivationState = {
|
|
175
|
+
ACTIVE: "ACTIVE",
|
|
176
|
+
INACTIVE: "INACTIVE",
|
|
177
|
+
};
|
|
178
|
+
exports.RouteType = {
|
|
179
|
+
DEFAULT: "DEFAULT",
|
|
180
|
+
URI_PATH: "URI_PATH",
|
|
181
|
+
};
|
|
182
|
+
exports.HttpMethod = {
|
|
183
|
+
DELETE: "DELETE",
|
|
184
|
+
GET: "GET",
|
|
185
|
+
HEAD: "HEAD",
|
|
186
|
+
OPTIONS: "OPTIONS",
|
|
187
|
+
PATCH: "PATCH",
|
|
188
|
+
POST: "POST",
|
|
189
|
+
PUT: "PUT",
|
|
190
|
+
};
|
|
191
|
+
exports.RouteState = {
|
|
192
|
+
ACTIVE: "ACTIVE",
|
|
193
|
+
CREATING: "CREATING",
|
|
194
|
+
DELETING: "DELETING",
|
|
195
|
+
FAILED: "FAILED",
|
|
196
|
+
INACTIVE: "INACTIVE",
|
|
197
|
+
UPDATING: "UPDATING",
|
|
198
|
+
};
|
|
199
|
+
exports.ServiceEndpointType = {
|
|
200
|
+
LAMBDA: "LAMBDA",
|
|
201
|
+
URL: "URL",
|
|
202
|
+
};
|
|
203
|
+
exports.ServiceState = {
|
|
204
|
+
ACTIVE: "ACTIVE",
|
|
205
|
+
CREATING: "CREATING",
|
|
206
|
+
DELETING: "DELETING",
|
|
207
|
+
FAILED: "FAILED",
|
|
208
|
+
};
|
|
222
209
|
class InvalidResourcePolicyException extends MigrationHubRefactorSpacesServiceException_1.MigrationHubRefactorSpacesServiceException {
|
|
223
210
|
constructor(opts) {
|
|
224
211
|
super({
|
|
@@ -13,60 +13,55 @@ export class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
this.Message = opts.Message;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
export
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
})(ErrorResourceType || (ErrorResourceType = {}));
|
|
66
|
-
export var ProxyType;
|
|
67
|
-
(function (ProxyType) {
|
|
68
|
-
ProxyType["API_GATEWAY"] = "API_GATEWAY";
|
|
69
|
-
})(ProxyType || (ProxyType = {}));
|
|
16
|
+
export const ApiGatewayEndpointType = {
|
|
17
|
+
PRIVATE: "PRIVATE",
|
|
18
|
+
REGIONAL: "REGIONAL",
|
|
19
|
+
};
|
|
20
|
+
export const ApplicationState = {
|
|
21
|
+
ACTIVE: "ACTIVE",
|
|
22
|
+
CREATING: "CREATING",
|
|
23
|
+
DELETING: "DELETING",
|
|
24
|
+
FAILED: "FAILED",
|
|
25
|
+
UPDATING: "UPDATING",
|
|
26
|
+
};
|
|
27
|
+
export const ErrorCode = {
|
|
28
|
+
INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE",
|
|
29
|
+
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
30
|
+
REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED",
|
|
31
|
+
RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE",
|
|
32
|
+
RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE",
|
|
33
|
+
RESOURCE_IN_USE: "RESOURCE_IN_USE",
|
|
34
|
+
RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED",
|
|
35
|
+
RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",
|
|
36
|
+
RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE",
|
|
37
|
+
RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE",
|
|
38
|
+
SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
|
|
39
|
+
STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE",
|
|
40
|
+
};
|
|
41
|
+
export const ErrorResourceType = {
|
|
42
|
+
API_GATEWAY: "API_GATEWAY",
|
|
43
|
+
APPLICATION: "APPLICATION",
|
|
44
|
+
ENVIRONMENT: "ENVIRONMENT",
|
|
45
|
+
IAM_ROLE: "IAM_ROLE",
|
|
46
|
+
LAMBDA: "LAMBDA",
|
|
47
|
+
LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER",
|
|
48
|
+
NLB: "NLB",
|
|
49
|
+
RESOURCE_SHARE: "RESOURCE_SHARE",
|
|
50
|
+
ROUTE: "ROUTE",
|
|
51
|
+
ROUTE_TABLE: "ROUTE_TABLE",
|
|
52
|
+
SECURITY_GROUP: "SECURITY_GROUP",
|
|
53
|
+
SERVICE: "SERVICE",
|
|
54
|
+
SUBNET: "SUBNET",
|
|
55
|
+
TARGET_GROUP: "TARGET_GROUP",
|
|
56
|
+
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
57
|
+
TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT",
|
|
58
|
+
VPC: "VPC",
|
|
59
|
+
VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION",
|
|
60
|
+
VPC_LINK: "VPC_LINK",
|
|
61
|
+
};
|
|
62
|
+
export const ProxyType = {
|
|
63
|
+
API_GATEWAY: "API_GATEWAY",
|
|
64
|
+
};
|
|
70
65
|
export class ConflictException extends __BaseException {
|
|
71
66
|
constructor(opts) {
|
|
72
67
|
super({
|
|
@@ -156,59 +151,51 @@ export class ValidationException extends __BaseException {
|
|
|
156
151
|
this.Message = opts.Message;
|
|
157
152
|
}
|
|
158
153
|
}
|
|
159
|
-
export
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
})(ServiceEndpointType || (ServiceEndpointType = {}));
|
|
205
|
-
export var ServiceState;
|
|
206
|
-
(function (ServiceState) {
|
|
207
|
-
ServiceState["ACTIVE"] = "ACTIVE";
|
|
208
|
-
ServiceState["CREATING"] = "CREATING";
|
|
209
|
-
ServiceState["DELETING"] = "DELETING";
|
|
210
|
-
ServiceState["FAILED"] = "FAILED";
|
|
211
|
-
})(ServiceState || (ServiceState = {}));
|
|
154
|
+
export const NetworkFabricType = {
|
|
155
|
+
NONE: "NONE",
|
|
156
|
+
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
157
|
+
};
|
|
158
|
+
export const EnvironmentState = {
|
|
159
|
+
ACTIVE: "ACTIVE",
|
|
160
|
+
CREATING: "CREATING",
|
|
161
|
+
DELETING: "DELETING",
|
|
162
|
+
FAILED: "FAILED",
|
|
163
|
+
};
|
|
164
|
+
export const RouteActivationState = {
|
|
165
|
+
ACTIVE: "ACTIVE",
|
|
166
|
+
INACTIVE: "INACTIVE",
|
|
167
|
+
};
|
|
168
|
+
export const RouteType = {
|
|
169
|
+
DEFAULT: "DEFAULT",
|
|
170
|
+
URI_PATH: "URI_PATH",
|
|
171
|
+
};
|
|
172
|
+
export const HttpMethod = {
|
|
173
|
+
DELETE: "DELETE",
|
|
174
|
+
GET: "GET",
|
|
175
|
+
HEAD: "HEAD",
|
|
176
|
+
OPTIONS: "OPTIONS",
|
|
177
|
+
PATCH: "PATCH",
|
|
178
|
+
POST: "POST",
|
|
179
|
+
PUT: "PUT",
|
|
180
|
+
};
|
|
181
|
+
export const RouteState = {
|
|
182
|
+
ACTIVE: "ACTIVE",
|
|
183
|
+
CREATING: "CREATING",
|
|
184
|
+
DELETING: "DELETING",
|
|
185
|
+
FAILED: "FAILED",
|
|
186
|
+
INACTIVE: "INACTIVE",
|
|
187
|
+
UPDATING: "UPDATING",
|
|
188
|
+
};
|
|
189
|
+
export const ServiceEndpointType = {
|
|
190
|
+
LAMBDA: "LAMBDA",
|
|
191
|
+
URL: "URL",
|
|
192
|
+
};
|
|
193
|
+
export const ServiceState = {
|
|
194
|
+
ACTIVE: "ACTIVE",
|
|
195
|
+
CREATING: "CREATING",
|
|
196
|
+
DELETING: "DELETING",
|
|
197
|
+
FAILED: "FAILED",
|
|
198
|
+
};
|
|
212
199
|
export class InvalidResourcePolicyException extends __BaseException {
|
|
213
200
|
constructor(opts) {
|
|
214
201
|
super({
|
|
@@ -29,16 +29,16 @@ 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 = {
|
|
32
|
+
* const input = { // CreateApplicationRequest
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
35
35
|
* VpcId: "STRING_VALUE", // required
|
|
36
36
|
* ProxyType: "STRING_VALUE", // required
|
|
37
|
-
* ApiGatewayProxy: {
|
|
37
|
+
* ApiGatewayProxy: { // ApiGatewayProxyInput
|
|
38
38
|
* EndpointType: "STRING_VALUE",
|
|
39
39
|
* StageName: "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
|
-
* Tags: {
|
|
41
|
+
* Tags: { // TagMap
|
|
42
42
|
* "<keys>": "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* ClientToken: "STRING_VALUE",
|
|
@@ -33,11 +33,11 @@ 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 = {
|
|
36
|
+
* const input = { // CreateEnvironmentRequest
|
|
37
37
|
* Name: "STRING_VALUE", // required
|
|
38
38
|
* Description: "STRING_VALUE",
|
|
39
39
|
* NetworkFabricType: "STRING_VALUE", // required
|
|
40
|
-
* Tags: {
|
|
40
|
+
* Tags: { // TagMap
|
|
41
41
|
* "<keys>": "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
43
|
* ClientToken: "STRING_VALUE",
|
|
@@ -77,23 +77,23 @@ 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 = {
|
|
80
|
+
* const input = { // CreateRouteRequest
|
|
81
81
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
82
82
|
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
83
83
|
* ServiceIdentifier: "STRING_VALUE", // required
|
|
84
84
|
* RouteType: "STRING_VALUE", // required
|
|
85
|
-
* DefaultRoute: {
|
|
85
|
+
* DefaultRoute: { // DefaultRouteInput
|
|
86
86
|
* ActivationState: "STRING_VALUE",
|
|
87
87
|
* },
|
|
88
|
-
* UriPathRoute: {
|
|
88
|
+
* UriPathRoute: { // UriPathRouteInput
|
|
89
89
|
* SourcePath: "STRING_VALUE", // required
|
|
90
90
|
* ActivationState: "STRING_VALUE", // required
|
|
91
|
-
* Methods: [
|
|
91
|
+
* Methods: [ // HttpMethods
|
|
92
92
|
* "STRING_VALUE",
|
|
93
93
|
* ],
|
|
94
94
|
* IncludeChildPaths: true || false,
|
|
95
95
|
* },
|
|
96
|
-
* Tags: {
|
|
96
|
+
* Tags: { // TagMap
|
|
97
97
|
* "<keys>": "STRING_VALUE",
|
|
98
98
|
* },
|
|
99
99
|
* ClientToken: "STRING_VALUE",
|
|
@@ -35,21 +35,21 @@ 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 = {
|
|
38
|
+
* const input = { // CreateServiceRequest
|
|
39
39
|
* Name: "STRING_VALUE", // required
|
|
40
40
|
* Description: "STRING_VALUE",
|
|
41
41
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
42
42
|
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
43
43
|
* VpcId: "STRING_VALUE",
|
|
44
44
|
* EndpointType: "STRING_VALUE", // required
|
|
45
|
-
* UrlEndpoint: {
|
|
45
|
+
* UrlEndpoint: { // UrlEndpointInput
|
|
46
46
|
* Url: "STRING_VALUE", // required
|
|
47
47
|
* HealthUrl: "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
|
-
* LambdaEndpoint: {
|
|
49
|
+
* LambdaEndpoint: { // LambdaEndpointInput
|
|
50
50
|
* Arn: "STRING_VALUE", // required
|
|
51
51
|
* },
|
|
52
|
-
* Tags: {
|
|
52
|
+
* Tags: { // TagMap
|
|
53
53
|
* "<keys>": "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
55
|
* ClientToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteApplicationRequest
|
|
31
31
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
32
32
|
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteEnvironmentRequest
|
|
31
31
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteEnvironmentCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteResourcePolicyRequest
|
|
30
30
|
* Identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteResourcePolicyCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteRouteRequest
|
|
30
30
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
31
|
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
32
|
* RouteIdentifier: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteServiceRequest
|
|
30
30
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
31
|
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
32
|
* ServiceIdentifier: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetApplicationRequest
|
|
30
30
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
31
|
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetEnvironmentRequest
|
|
30
30
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetEnvironmentCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetResourcePolicyRequest
|
|
30
30
|
* Identifier: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetResourcePolicyCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetRouteRequest
|
|
30
30
|
* EnvironmentIdentifier: "STRING_VALUE", // required
|
|
31
31
|
* ApplicationIdentifier: "STRING_VALUE", // required
|
|
32
32
|
* RouteIdentifier: "STRING_VALUE", // required
|