@aws-sdk/client-migration-hub-refactor-spaces 3.986.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +43 -929
- package/dist-cjs/models/MigrationHubRefactorSpacesServiceException.js +12 -0
- package/dist-cjs/models/errors.js +146 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +672 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +59 -53
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var MigrationHubRefactorSpacesServiceException = require('./models/MigrationHubRefactorSpacesServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,804 +113,6 @@ class MigrationHubRefactorSpacesClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class MigrationHubRefactorSpacesServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, MigrationHubRefactorSpacesServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends MigrationHubRefactorSpacesServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends MigrationHubRefactorSpacesServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
ResourceId;
|
|
139
|
-
ResourceType;
|
|
140
|
-
constructor(opts) {
|
|
141
|
-
super({
|
|
142
|
-
name: "ConflictException",
|
|
143
|
-
$fault: "client",
|
|
144
|
-
...opts,
|
|
145
|
-
});
|
|
146
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
147
|
-
this.Message = opts.Message;
|
|
148
|
-
this.ResourceId = opts.ResourceId;
|
|
149
|
-
this.ResourceType = opts.ResourceType;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
class InternalServerException extends MigrationHubRefactorSpacesServiceException {
|
|
153
|
-
name = "InternalServerException";
|
|
154
|
-
$fault = "server";
|
|
155
|
-
Message;
|
|
156
|
-
constructor(opts) {
|
|
157
|
-
super({
|
|
158
|
-
name: "InternalServerException",
|
|
159
|
-
$fault: "server",
|
|
160
|
-
...opts,
|
|
161
|
-
});
|
|
162
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
163
|
-
this.Message = opts.Message;
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
class ResourceNotFoundException extends MigrationHubRefactorSpacesServiceException {
|
|
167
|
-
name = "ResourceNotFoundException";
|
|
168
|
-
$fault = "client";
|
|
169
|
-
Message;
|
|
170
|
-
ResourceId;
|
|
171
|
-
ResourceType;
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "ResourceNotFoundException",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
179
|
-
this.Message = opts.Message;
|
|
180
|
-
this.ResourceId = opts.ResourceId;
|
|
181
|
-
this.ResourceType = opts.ResourceType;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
class ServiceQuotaExceededException extends MigrationHubRefactorSpacesServiceException {
|
|
185
|
-
name = "ServiceQuotaExceededException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
Message;
|
|
188
|
-
ResourceId;
|
|
189
|
-
ResourceType;
|
|
190
|
-
QuotaCode;
|
|
191
|
-
ServiceCode;
|
|
192
|
-
constructor(opts) {
|
|
193
|
-
super({
|
|
194
|
-
name: "ServiceQuotaExceededException",
|
|
195
|
-
$fault: "client",
|
|
196
|
-
...opts,
|
|
197
|
-
});
|
|
198
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
199
|
-
this.Message = opts.Message;
|
|
200
|
-
this.ResourceId = opts.ResourceId;
|
|
201
|
-
this.ResourceType = opts.ResourceType;
|
|
202
|
-
this.QuotaCode = opts.QuotaCode;
|
|
203
|
-
this.ServiceCode = opts.ServiceCode;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
class ThrottlingException extends MigrationHubRefactorSpacesServiceException {
|
|
207
|
-
name = "ThrottlingException";
|
|
208
|
-
$fault = "client";
|
|
209
|
-
Message;
|
|
210
|
-
QuotaCode;
|
|
211
|
-
ServiceCode;
|
|
212
|
-
RetryAfterSeconds;
|
|
213
|
-
constructor(opts) {
|
|
214
|
-
super({
|
|
215
|
-
name: "ThrottlingException",
|
|
216
|
-
$fault: "client",
|
|
217
|
-
...opts,
|
|
218
|
-
});
|
|
219
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
220
|
-
this.Message = opts.Message;
|
|
221
|
-
this.QuotaCode = opts.QuotaCode;
|
|
222
|
-
this.ServiceCode = opts.ServiceCode;
|
|
223
|
-
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
class ValidationException extends MigrationHubRefactorSpacesServiceException {
|
|
227
|
-
name = "ValidationException";
|
|
228
|
-
$fault = "client";
|
|
229
|
-
Message;
|
|
230
|
-
constructor(opts) {
|
|
231
|
-
super({
|
|
232
|
-
name: "ValidationException",
|
|
233
|
-
$fault: "client",
|
|
234
|
-
...opts,
|
|
235
|
-
});
|
|
236
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
237
|
-
this.Message = opts.Message;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class InvalidResourcePolicyException extends MigrationHubRefactorSpacesServiceException {
|
|
241
|
-
name = "InvalidResourcePolicyException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
Message;
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "InvalidResourcePolicyException",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, InvalidResourcePolicyException.prototype);
|
|
251
|
-
this.Message = opts.Message;
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
const _A = "Arn";
|
|
256
|
-
const _AD = "AdditionalDetails";
|
|
257
|
-
const _ADE = "AccessDeniedException";
|
|
258
|
-
const _AGI = "ApiGatewayId";
|
|
259
|
-
const _AGP = "ApiGatewayProxy";
|
|
260
|
-
const _AGPC = "ApiGatewayProxyConfig";
|
|
261
|
-
const _AGPI = "ApiGatewayProxyInput";
|
|
262
|
-
const _AGPS = "ApiGatewayProxySummary";
|
|
263
|
-
const _AI = "ApplicationId";
|
|
264
|
-
const _AIc = "AccountId";
|
|
265
|
-
const _AIp = "ApplicationIdentifier";
|
|
266
|
-
const _AS = "ApplicationSummary";
|
|
267
|
-
const _ASL = "ApplicationSummaryList";
|
|
268
|
-
const _ASP = "AppendSourcePath";
|
|
269
|
-
const _ASc = "ActivationState";
|
|
270
|
-
const _ASp = "ApplicationSummaries";
|
|
271
|
-
const _C = "Code";
|
|
272
|
-
const _CA = "CreateApplication";
|
|
273
|
-
const _CAR = "CreateApplicationRequest";
|
|
274
|
-
const _CARr = "CreateApplicationResponse";
|
|
275
|
-
const _CB = "CidrBlocks";
|
|
276
|
-
const _CBAI = "CreatedByAccountId";
|
|
277
|
-
const _CE = "ConflictException";
|
|
278
|
-
const _CER = "CreateEnvironmentRequest";
|
|
279
|
-
const _CERr = "CreateEnvironmentResponse";
|
|
280
|
-
const _CEr = "CreateEnvironment";
|
|
281
|
-
const _CR = "CreateRoute";
|
|
282
|
-
const _CRR = "CreateRouteRequest";
|
|
283
|
-
const _CRRr = "CreateRouteResponse";
|
|
284
|
-
const _CS = "CreateService";
|
|
285
|
-
const _CSR = "CreateServiceRequest";
|
|
286
|
-
const _CSRr = "CreateServiceResponse";
|
|
287
|
-
const _CT = "CreatedTime";
|
|
288
|
-
const _CTl = "ClientToken";
|
|
289
|
-
const _D = "Description";
|
|
290
|
-
const _DA = "DeleteApplication";
|
|
291
|
-
const _DAR = "DeleteApplicationRequest";
|
|
292
|
-
const _DARe = "DeleteApplicationResponse";
|
|
293
|
-
const _DE = "DeleteEnvironment";
|
|
294
|
-
const _DER = "DeleteEnvironmentRequest";
|
|
295
|
-
const _DERe = "DeleteEnvironmentResponse";
|
|
296
|
-
const _DR = "DefaultRoute";
|
|
297
|
-
const _DRI = "DefaultRouteInput";
|
|
298
|
-
const _DRP = "DeleteResourcePolicy";
|
|
299
|
-
const _DRPR = "DeleteResourcePolicyRequest";
|
|
300
|
-
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
301
|
-
const _DRR = "DeleteRouteRequest";
|
|
302
|
-
const _DRRe = "DeleteRouteResponse";
|
|
303
|
-
const _DRe = "DeleteRoute";
|
|
304
|
-
const _DS = "DeleteService";
|
|
305
|
-
const _DSR = "DeleteServiceRequest";
|
|
306
|
-
const _DSRe = "DeleteServiceResponse";
|
|
307
|
-
const _E = "Error";
|
|
308
|
-
const _EI = "EnvironmentId";
|
|
309
|
-
const _EIn = "EnvironmentIdentifier";
|
|
310
|
-
const _ER = "ErrorResponse";
|
|
311
|
-
const _ES = "EnvironmentSummary";
|
|
312
|
-
const _ESL = "EnvironmentSummaryList";
|
|
313
|
-
const _ESn = "EnvironmentSummaries";
|
|
314
|
-
const _ET = "EndpointType";
|
|
315
|
-
const _EV = "EnvironmentVpc";
|
|
316
|
-
const _EVL = "EnvironmentVpcList";
|
|
317
|
-
const _EVn = "EnvironmentVpcs";
|
|
318
|
-
const _GA = "GetApplication";
|
|
319
|
-
const _GAR = "GetApplicationRequest";
|
|
320
|
-
const _GARe = "GetApplicationResponse";
|
|
321
|
-
const _GE = "GetEnvironment";
|
|
322
|
-
const _GER = "GetEnvironmentRequest";
|
|
323
|
-
const _GERe = "GetEnvironmentResponse";
|
|
324
|
-
const _GR = "GetRoute";
|
|
325
|
-
const _GRP = "GetResourcePolicy";
|
|
326
|
-
const _GRPR = "GetResourcePolicyRequest";
|
|
327
|
-
const _GRPRe = "GetResourcePolicyResponse";
|
|
328
|
-
const _GRR = "GetRouteRequest";
|
|
329
|
-
const _GRRe = "GetRouteResponse";
|
|
330
|
-
const _GS = "GetService";
|
|
331
|
-
const _GSR = "GetServiceRequest";
|
|
332
|
-
const _GSRe = "GetServiceResponse";
|
|
333
|
-
const _HU = "HealthUrl";
|
|
334
|
-
const _I = "Identifier";
|
|
335
|
-
const _ICP = "IncludeChildPaths";
|
|
336
|
-
const _IRPE = "InvalidResourcePolicyException";
|
|
337
|
-
const _ISE = "InternalServerException";
|
|
338
|
-
const _LA = "ListApplications";
|
|
339
|
-
const _LAR = "ListApplicationsRequest";
|
|
340
|
-
const _LARi = "ListApplicationsResponse";
|
|
341
|
-
const _LE = "LambdaEndpoint";
|
|
342
|
-
const _LEC = "LambdaEndpointConfig";
|
|
343
|
-
const _LEI = "LambdaEndpointInput";
|
|
344
|
-
const _LER = "ListEnvironmentsRequest";
|
|
345
|
-
const _LERi = "ListEnvironmentsResponse";
|
|
346
|
-
const _LES = "LambdaEndpointSummary";
|
|
347
|
-
const _LEV = "ListEnvironmentVpcs";
|
|
348
|
-
const _LEVR = "ListEnvironmentVpcsRequest";
|
|
349
|
-
const _LEVRi = "ListEnvironmentVpcsResponse";
|
|
350
|
-
const _LEi = "ListEnvironments";
|
|
351
|
-
const _LR = "ListRoutes";
|
|
352
|
-
const _LRR = "ListRoutesRequest";
|
|
353
|
-
const _LRRi = "ListRoutesResponse";
|
|
354
|
-
const _LS = "ListServices";
|
|
355
|
-
const _LSR = "ListServicesRequest";
|
|
356
|
-
const _LSRi = "ListServicesResponse";
|
|
357
|
-
const _LTFR = "ListTagsForResource";
|
|
358
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
359
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
360
|
-
const _LUT = "LastUpdatedTime";
|
|
361
|
-
const _M = "Message";
|
|
362
|
-
const _MR = "MaxResults";
|
|
363
|
-
const _Me = "Methods";
|
|
364
|
-
const _N = "Name";
|
|
365
|
-
const _NA = "NlbArn";
|
|
366
|
-
const _NFT = "NetworkFabricType";
|
|
367
|
-
const _NN = "NlbName";
|
|
368
|
-
const _NT = "NextToken";
|
|
369
|
-
const _OAI = "OwnerAccountId";
|
|
370
|
-
const _P = "Policy";
|
|
371
|
-
const _PRP = "PutResourcePolicy";
|
|
372
|
-
const _PRPR = "PutResourcePolicyRequest";
|
|
373
|
-
const _PRPRu = "PutResourcePolicyResponse";
|
|
374
|
-
const _PRTI = "PathResourceToId";
|
|
375
|
-
const _PT = "ProxyType";
|
|
376
|
-
const _PU = "ProxyUrl";
|
|
377
|
-
const _QC = "QuotaCode";
|
|
378
|
-
const _RA = "ResourceArn";
|
|
379
|
-
const _RAS = "RetryAfterSeconds";
|
|
380
|
-
const _RA_ = "Retry-After";
|
|
381
|
-
const _RI = "ResourceId";
|
|
382
|
-
const _RIe = "ResourceIdentifier";
|
|
383
|
-
const _RIo = "RouteId";
|
|
384
|
-
const _RIou = "RouteIdentifier";
|
|
385
|
-
const _RNFE = "ResourceNotFoundException";
|
|
386
|
-
const _RS = "RouteSummary";
|
|
387
|
-
const _RSL = "RouteSummaryList";
|
|
388
|
-
const _RSo = "RouteSummaries";
|
|
389
|
-
const _RT = "ResourceType";
|
|
390
|
-
const _RTo = "RouteType";
|
|
391
|
-
const _S = "State";
|
|
392
|
-
const _SC = "ServiceCode";
|
|
393
|
-
const _SI = "ServiceIdentifier";
|
|
394
|
-
const _SIe = "ServiceId";
|
|
395
|
-
const _SN = "StageName";
|
|
396
|
-
const _SP = "SourcePath";
|
|
397
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
398
|
-
const _SS = "ServiceSummary";
|
|
399
|
-
const _SSL = "ServiceSummaryList";
|
|
400
|
-
const _SSe = "ServiceSummaries";
|
|
401
|
-
const _T = "Tags";
|
|
402
|
-
const _TE = "ThrottlingException";
|
|
403
|
-
const _TGI = "TransitGatewayId";
|
|
404
|
-
const _TK = "TagKeys";
|
|
405
|
-
const _TM = "TagMap";
|
|
406
|
-
const _TR = "TagResource";
|
|
407
|
-
const _TRR = "TagResourceRequest";
|
|
408
|
-
const _TRRa = "TagResourceResponse";
|
|
409
|
-
const _U = "Url";
|
|
410
|
-
const _UE = "UrlEndpoint";
|
|
411
|
-
const _UEC = "UrlEndpointConfig";
|
|
412
|
-
const _UEI = "UrlEndpointInput";
|
|
413
|
-
const _UES = "UrlEndpointSummary";
|
|
414
|
-
const _UPR = "UriPathRoute";
|
|
415
|
-
const _UPRI = "UriPathRouteInput";
|
|
416
|
-
const _UR = "UntagResource";
|
|
417
|
-
const _URR = "UntagResourceRequest";
|
|
418
|
-
const _URRn = "UntagResourceResponse";
|
|
419
|
-
const _URRp = "UpdateRouteRequest";
|
|
420
|
-
const _URRpd = "UpdateRouteResponse";
|
|
421
|
-
const _URp = "UpdateRoute";
|
|
422
|
-
const _VE = "ValidationException";
|
|
423
|
-
const _VI = "VpcId";
|
|
424
|
-
const _VLI = "VpcLinkId";
|
|
425
|
-
const _VN = "VpcName";
|
|
426
|
-
const _c = "client";
|
|
427
|
-
const _e = "error";
|
|
428
|
-
const _h = "http";
|
|
429
|
-
const _hE = "httpError";
|
|
430
|
-
const _hH = "httpHeader";
|
|
431
|
-
const _hQ = "httpQuery";
|
|
432
|
-
const _mR = "maxResults";
|
|
433
|
-
const _nT = "nextToken";
|
|
434
|
-
const _s = "server";
|
|
435
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.migrationhubrefactorspaces";
|
|
436
|
-
const _tK = "tagKeys";
|
|
437
|
-
const n0 = "com.amazonaws.migrationhubrefactorspaces";
|
|
438
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
439
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
440
|
-
[_M],
|
|
441
|
-
[0], 1
|
|
442
|
-
];
|
|
443
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
444
|
-
var ApiGatewayProxyConfig$ = [3, n0, _AGPC,
|
|
445
|
-
0,
|
|
446
|
-
[_PU, _AGI, _VLI, _NA, _NN, _ET, _SN],
|
|
447
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
448
|
-
];
|
|
449
|
-
var ApiGatewayProxyInput$ = [3, n0, _AGPI,
|
|
450
|
-
0,
|
|
451
|
-
[_ET, _SN],
|
|
452
|
-
[0, 0]
|
|
453
|
-
];
|
|
454
|
-
var ApiGatewayProxySummary$ = [3, n0, _AGPS,
|
|
455
|
-
0,
|
|
456
|
-
[_PU, _AGI, _VLI, _NA, _NN, _ET, _SN],
|
|
457
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
458
|
-
];
|
|
459
|
-
var ApplicationSummary$ = [3, n0, _AS,
|
|
460
|
-
0,
|
|
461
|
-
[_N, _A, _OAI, _CBAI, _AI, _EI, _VI, _PT, _AGP, _S, _T, _E, _LUT, _CT],
|
|
462
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => ApiGatewayProxySummary$, 0, [() => TagMap, 0], () => ErrorResponse$, 4, 4]
|
|
463
|
-
];
|
|
464
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
465
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
466
|
-
[_M, _RI, _RT],
|
|
467
|
-
[0, 0, 0], 3
|
|
468
|
-
];
|
|
469
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
470
|
-
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
471
|
-
0,
|
|
472
|
-
[_N, _EIn, _VI, _PT, _AGP, _T, _CTl],
|
|
473
|
-
[0, [0, 1], 0, 0, () => ApiGatewayProxyInput$, [() => TagMap, 0], [0, 4]], 4
|
|
474
|
-
];
|
|
475
|
-
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
476
|
-
0,
|
|
477
|
-
[_N, _A, _OAI, _CBAI, _AI, _EI, _VI, _PT, _AGP, _S, _T, _LUT, _CT],
|
|
478
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => ApiGatewayProxyInput$, 0, [() => TagMap, 0], 4, 4]
|
|
479
|
-
];
|
|
480
|
-
var CreateEnvironmentRequest$ = [3, n0, _CER,
|
|
481
|
-
0,
|
|
482
|
-
[_N, _NFT, _D, _T, _CTl],
|
|
483
|
-
[0, 0, 0, [() => TagMap, 0], [0, 4]], 2
|
|
484
|
-
];
|
|
485
|
-
var CreateEnvironmentResponse$ = [3, n0, _CERr,
|
|
486
|
-
0,
|
|
487
|
-
[_N, _A, _D, _EI, _NFT, _OAI, _S, _T, _LUT, _CT],
|
|
488
|
-
[0, 0, 0, 0, 0, 0, 0, [() => TagMap, 0], 4, 4]
|
|
489
|
-
];
|
|
490
|
-
var CreateRouteRequest$ = [3, n0, _CRR,
|
|
491
|
-
0,
|
|
492
|
-
[_EIn, _AIp, _SI, _RTo, _DR, _UPR, _T, _CTl],
|
|
493
|
-
[[0, 1], [0, 1], 0, 0, () => DefaultRouteInput$, () => UriPathRouteInput$, [() => TagMap, 0], [0, 4]], 4
|
|
494
|
-
];
|
|
495
|
-
var CreateRouteResponse$ = [3, n0, _CRRr,
|
|
496
|
-
0,
|
|
497
|
-
[_RIo, _A, _OAI, _CBAI, _RTo, _SIe, _AI, _UPR, _S, _T, _LUT, _CT],
|
|
498
|
-
[0, 0, 0, 0, 0, 0, 0, () => UriPathRouteInput$, 0, [() => TagMap, 0], 4, 4]
|
|
499
|
-
];
|
|
500
|
-
var CreateServiceRequest$ = [3, n0, _CSR,
|
|
501
|
-
0,
|
|
502
|
-
[_N, _EIn, _AIp, _ET, _D, _VI, _UE, _LE, _T, _CTl],
|
|
503
|
-
[0, [0, 1], [0, 1], 0, 0, 0, () => UrlEndpointInput$, () => LambdaEndpointInput$, [() => TagMap, 0], [0, 4]], 4
|
|
504
|
-
];
|
|
505
|
-
var CreateServiceResponse$ = [3, n0, _CSRr,
|
|
506
|
-
0,
|
|
507
|
-
[_SIe, _N, _A, _OAI, _CBAI, _D, _EI, _AI, _VI, _ET, _UE, _LE, _S, _T, _LUT, _CT],
|
|
508
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => UrlEndpointInput$, () => LambdaEndpointInput$, 0, [() => TagMap, 0], 4, 4]
|
|
509
|
-
];
|
|
510
|
-
var DefaultRouteInput$ = [3, n0, _DRI,
|
|
511
|
-
0,
|
|
512
|
-
[_ASc],
|
|
513
|
-
[0]
|
|
514
|
-
];
|
|
515
|
-
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
516
|
-
0,
|
|
517
|
-
[_EIn, _AIp],
|
|
518
|
-
[[0, 1], [0, 1]], 2
|
|
519
|
-
];
|
|
520
|
-
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
521
|
-
0,
|
|
522
|
-
[_N, _A, _AI, _EI, _S, _LUT],
|
|
523
|
-
[0, 0, 0, 0, 0, 4]
|
|
524
|
-
];
|
|
525
|
-
var DeleteEnvironmentRequest$ = [3, n0, _DER,
|
|
526
|
-
0,
|
|
527
|
-
[_EIn],
|
|
528
|
-
[[0, 1]], 1
|
|
529
|
-
];
|
|
530
|
-
var DeleteEnvironmentResponse$ = [3, n0, _DERe,
|
|
531
|
-
0,
|
|
532
|
-
[_N, _A, _EI, _S, _LUT],
|
|
533
|
-
[0, 0, 0, 0, 4]
|
|
534
|
-
];
|
|
535
|
-
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
536
|
-
0,
|
|
537
|
-
[_I],
|
|
538
|
-
[[0, 1]], 1
|
|
539
|
-
];
|
|
540
|
-
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
541
|
-
0,
|
|
542
|
-
[],
|
|
543
|
-
[]
|
|
544
|
-
];
|
|
545
|
-
var DeleteRouteRequest$ = [3, n0, _DRR,
|
|
546
|
-
0,
|
|
547
|
-
[_EIn, _AIp, _RIou],
|
|
548
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
549
|
-
];
|
|
550
|
-
var DeleteRouteResponse$ = [3, n0, _DRRe,
|
|
551
|
-
0,
|
|
552
|
-
[_RIo, _A, _SIe, _AI, _S, _LUT],
|
|
553
|
-
[0, 0, 0, 0, 0, 4]
|
|
554
|
-
];
|
|
555
|
-
var DeleteServiceRequest$ = [3, n0, _DSR,
|
|
556
|
-
0,
|
|
557
|
-
[_EIn, _AIp, _SI],
|
|
558
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
559
|
-
];
|
|
560
|
-
var DeleteServiceResponse$ = [3, n0, _DSRe,
|
|
561
|
-
0,
|
|
562
|
-
[_SIe, _N, _A, _EI, _AI, _S, _LUT],
|
|
563
|
-
[0, 0, 0, 0, 0, 0, 4]
|
|
564
|
-
];
|
|
565
|
-
var EnvironmentSummary$ = [3, n0, _ES,
|
|
566
|
-
0,
|
|
567
|
-
[_N, _A, _D, _EI, _NFT, _OAI, _TGI, _S, _T, _E, _LUT, _CT],
|
|
568
|
-
[0, 0, 0, 0, 0, 0, 0, 0, [() => TagMap, 0], () => ErrorResponse$, 4, 4]
|
|
569
|
-
];
|
|
570
|
-
var EnvironmentVpc$ = [3, n0, _EV,
|
|
571
|
-
0,
|
|
572
|
-
[_EI, _VI, _AIc, _CB, _VN, _LUT, _CT],
|
|
573
|
-
[0, 0, 0, 64 | 0, 0, 4, 4]
|
|
574
|
-
];
|
|
575
|
-
var ErrorResponse$ = [3, n0, _ER,
|
|
576
|
-
0,
|
|
577
|
-
[_C, _M, _AIc, _RIe, _RT, _AD],
|
|
578
|
-
[0, 0, 0, 0, 0, 128 | 0]
|
|
579
|
-
];
|
|
580
|
-
var GetApplicationRequest$ = [3, n0, _GAR,
|
|
581
|
-
0,
|
|
582
|
-
[_EIn, _AIp],
|
|
583
|
-
[[0, 1], [0, 1]], 2
|
|
584
|
-
];
|
|
585
|
-
var GetApplicationResponse$ = [3, n0, _GARe,
|
|
586
|
-
0,
|
|
587
|
-
[_N, _A, _OAI, _CBAI, _AI, _EI, _VI, _PT, _AGP, _S, _T, _E, _LUT, _CT],
|
|
588
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => ApiGatewayProxyConfig$, 0, [() => TagMap, 0], () => ErrorResponse$, 4, 4]
|
|
589
|
-
];
|
|
590
|
-
var GetEnvironmentRequest$ = [3, n0, _GER,
|
|
591
|
-
0,
|
|
592
|
-
[_EIn],
|
|
593
|
-
[[0, 1]], 1
|
|
594
|
-
];
|
|
595
|
-
var GetEnvironmentResponse$ = [3, n0, _GERe,
|
|
596
|
-
0,
|
|
597
|
-
[_N, _A, _D, _EI, _NFT, _OAI, _TGI, _S, _T, _E, _LUT, _CT],
|
|
598
|
-
[0, 0, 0, 0, 0, 0, 0, 0, [() => TagMap, 0], () => ErrorResponse$, 4, 4]
|
|
599
|
-
];
|
|
600
|
-
var GetResourcePolicyRequest$ = [3, n0, _GRPR,
|
|
601
|
-
0,
|
|
602
|
-
[_I],
|
|
603
|
-
[[0, 1]], 1
|
|
604
|
-
];
|
|
605
|
-
var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
|
|
606
|
-
0,
|
|
607
|
-
[_P],
|
|
608
|
-
[0]
|
|
609
|
-
];
|
|
610
|
-
var GetRouteRequest$ = [3, n0, _GRR,
|
|
611
|
-
0,
|
|
612
|
-
[_EIn, _AIp, _RIou],
|
|
613
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
614
|
-
];
|
|
615
|
-
var GetRouteResponse$ = [3, n0, _GRRe,
|
|
616
|
-
0,
|
|
617
|
-
[_RIo, _A, _OAI, _CBAI, _RTo, _SIe, _AI, _EI, _SP, _Me, _ICP, _PRTI, _S, _T, _E, _LUT, _CT, _ASP],
|
|
618
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 2, 128 | 0, 0, [() => TagMap, 0], () => ErrorResponse$, 4, 4, 2]
|
|
619
|
-
];
|
|
620
|
-
var GetServiceRequest$ = [3, n0, _GSR,
|
|
621
|
-
0,
|
|
622
|
-
[_EIn, _AIp, _SI],
|
|
623
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
624
|
-
];
|
|
625
|
-
var GetServiceResponse$ = [3, n0, _GSRe,
|
|
626
|
-
0,
|
|
627
|
-
[_SIe, _N, _A, _OAI, _CBAI, _D, _EI, _AI, _VI, _ET, _UE, _LE, _S, _T, _E, _LUT, _CT],
|
|
628
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => UrlEndpointConfig$, () => LambdaEndpointConfig$, 0, [() => TagMap, 0], () => ErrorResponse$, 4, 4]
|
|
629
|
-
];
|
|
630
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
631
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
632
|
-
[_M],
|
|
633
|
-
[0], 1
|
|
634
|
-
];
|
|
635
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
636
|
-
var InvalidResourcePolicyException$ = [-3, n0, _IRPE,
|
|
637
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
638
|
-
[_M],
|
|
639
|
-
[0], 1
|
|
640
|
-
];
|
|
641
|
-
schema.TypeRegistry.for(n0).registerError(InvalidResourcePolicyException$, InvalidResourcePolicyException);
|
|
642
|
-
var LambdaEndpointConfig$ = [3, n0, _LEC,
|
|
643
|
-
0,
|
|
644
|
-
[_A],
|
|
645
|
-
[0]
|
|
646
|
-
];
|
|
647
|
-
var LambdaEndpointInput$ = [3, n0, _LEI,
|
|
648
|
-
0,
|
|
649
|
-
[_A],
|
|
650
|
-
[0], 1
|
|
651
|
-
];
|
|
652
|
-
var LambdaEndpointSummary$ = [3, n0, _LES,
|
|
653
|
-
0,
|
|
654
|
-
[_A],
|
|
655
|
-
[0]
|
|
656
|
-
];
|
|
657
|
-
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
658
|
-
0,
|
|
659
|
-
[_EIn, _NT, _MR],
|
|
660
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
661
|
-
];
|
|
662
|
-
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
663
|
-
0,
|
|
664
|
-
[_ASL, _NT],
|
|
665
|
-
[[() => ApplicationSummaries, 0], 0]
|
|
666
|
-
];
|
|
667
|
-
var ListEnvironmentsRequest$ = [3, n0, _LER,
|
|
668
|
-
0,
|
|
669
|
-
[_NT, _MR],
|
|
670
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
671
|
-
];
|
|
672
|
-
var ListEnvironmentsResponse$ = [3, n0, _LERi,
|
|
673
|
-
0,
|
|
674
|
-
[_ESL, _NT],
|
|
675
|
-
[[() => EnvironmentSummaries, 0], 0]
|
|
676
|
-
];
|
|
677
|
-
var ListEnvironmentVpcsRequest$ = [3, n0, _LEVR,
|
|
678
|
-
0,
|
|
679
|
-
[_EIn, _NT, _MR],
|
|
680
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
681
|
-
];
|
|
682
|
-
var ListEnvironmentVpcsResponse$ = [3, n0, _LEVRi,
|
|
683
|
-
0,
|
|
684
|
-
[_EVL, _NT],
|
|
685
|
-
[() => EnvironmentVpcs, 0]
|
|
686
|
-
];
|
|
687
|
-
var ListRoutesRequest$ = [3, n0, _LRR,
|
|
688
|
-
0,
|
|
689
|
-
[_EIn, _AIp, _NT, _MR],
|
|
690
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
691
|
-
];
|
|
692
|
-
var ListRoutesResponse$ = [3, n0, _LRRi,
|
|
693
|
-
0,
|
|
694
|
-
[_RSL, _NT],
|
|
695
|
-
[[() => RouteSummaries, 0], 0]
|
|
696
|
-
];
|
|
697
|
-
var ListServicesRequest$ = [3, n0, _LSR,
|
|
698
|
-
0,
|
|
699
|
-
[_EIn, _AIp, _NT, _MR],
|
|
700
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
701
|
-
];
|
|
702
|
-
var ListServicesResponse$ = [3, n0, _LSRi,
|
|
703
|
-
0,
|
|
704
|
-
[_SSL, _NT],
|
|
705
|
-
[[() => ServiceSummaries, 0], 0]
|
|
706
|
-
];
|
|
707
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
708
|
-
0,
|
|
709
|
-
[_RA],
|
|
710
|
-
[[0, 1]], 1
|
|
711
|
-
];
|
|
712
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
713
|
-
0,
|
|
714
|
-
[_T],
|
|
715
|
-
[[() => TagMap, 0]]
|
|
716
|
-
];
|
|
717
|
-
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
718
|
-
0,
|
|
719
|
-
[_RA, _P],
|
|
720
|
-
[0, 0], 2
|
|
721
|
-
];
|
|
722
|
-
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
723
|
-
0,
|
|
724
|
-
[],
|
|
725
|
-
[]
|
|
726
|
-
];
|
|
727
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
728
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
729
|
-
[_M, _RI, _RT],
|
|
730
|
-
[0, 0, 0], 3
|
|
731
|
-
];
|
|
732
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
733
|
-
var RouteSummary$ = [3, n0, _RS,
|
|
734
|
-
0,
|
|
735
|
-
[_RIo, _A, _OAI, _CBAI, _RTo, _SIe, _AI, _EI, _SP, _Me, _ICP, _PRTI, _S, _T, _E, _LUT, _CT, _ASP],
|
|
736
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 2, 128 | 0, 0, [() => TagMap, 0], () => ErrorResponse$, 4, 4, 2]
|
|
737
|
-
];
|
|
738
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
739
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
740
|
-
[_M, _RI, _RT, _SC, _QC],
|
|
741
|
-
[0, 0, 0, 0, 0], 4
|
|
742
|
-
];
|
|
743
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
744
|
-
var ServiceSummary$ = [3, n0, _SS,
|
|
745
|
-
0,
|
|
746
|
-
[_SIe, _N, _A, _OAI, _CBAI, _D, _EI, _AI, _VI, _ET, _UE, _LE, _S, _T, _E, _LUT, _CT],
|
|
747
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => UrlEndpointSummary$, () => LambdaEndpointSummary$, 0, [() => TagMap, 0], () => ErrorResponse$, 4, 4]
|
|
748
|
-
];
|
|
749
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
750
|
-
0,
|
|
751
|
-
[_RA, _T],
|
|
752
|
-
[[0, 1], [() => TagMap, 0]], 2
|
|
753
|
-
];
|
|
754
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
755
|
-
0,
|
|
756
|
-
[],
|
|
757
|
-
[]
|
|
758
|
-
];
|
|
759
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
760
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
761
|
-
[_M, _QC, _SC, _RAS],
|
|
762
|
-
[0, 0, 0, [1, { [_hH]: _RA_ }]], 1
|
|
763
|
-
];
|
|
764
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
765
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
766
|
-
0,
|
|
767
|
-
[_RA, _TK],
|
|
768
|
-
[[0, 1], [() => TagKeys, { [_hQ]: _tK }]], 2
|
|
769
|
-
];
|
|
770
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
771
|
-
0,
|
|
772
|
-
[],
|
|
773
|
-
[]
|
|
774
|
-
];
|
|
775
|
-
var UpdateRouteRequest$ = [3, n0, _URRp,
|
|
776
|
-
0,
|
|
777
|
-
[_EIn, _AIp, _RIou, _ASc],
|
|
778
|
-
[[0, 1], [0, 1], [0, 1], 0], 4
|
|
779
|
-
];
|
|
780
|
-
var UpdateRouteResponse$ = [3, n0, _URRpd,
|
|
781
|
-
0,
|
|
782
|
-
[_RIo, _A, _SIe, _AI, _S, _LUT],
|
|
783
|
-
[0, 0, 0, 0, 0, 4]
|
|
784
|
-
];
|
|
785
|
-
var UriPathRouteInput$ = [3, n0, _UPRI,
|
|
786
|
-
0,
|
|
787
|
-
[_SP, _ASc, _Me, _ICP, _ASP],
|
|
788
|
-
[0, 0, 64 | 0, 2, 2], 2
|
|
789
|
-
];
|
|
790
|
-
var UrlEndpointConfig$ = [3, n0, _UEC,
|
|
791
|
-
0,
|
|
792
|
-
[_U, _HU],
|
|
793
|
-
[0, 0]
|
|
794
|
-
];
|
|
795
|
-
var UrlEndpointInput$ = [3, n0, _UEI,
|
|
796
|
-
0,
|
|
797
|
-
[_U, _HU],
|
|
798
|
-
[0, 0], 1
|
|
799
|
-
];
|
|
800
|
-
var UrlEndpointSummary$ = [3, n0, _UES,
|
|
801
|
-
0,
|
|
802
|
-
[_U, _HU],
|
|
803
|
-
[0, 0]
|
|
804
|
-
];
|
|
805
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
806
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
807
|
-
[_M],
|
|
808
|
-
[0], 1
|
|
809
|
-
];
|
|
810
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
811
|
-
var MigrationHubRefactorSpacesServiceException$ = [-3, _sm, "MigrationHubRefactorSpacesServiceException", 0, [], []];
|
|
812
|
-
schema.TypeRegistry.for(_sm).registerError(MigrationHubRefactorSpacesServiceException$, MigrationHubRefactorSpacesServiceException);
|
|
813
|
-
var ApplicationSummaries = [1, n0, _ASp,
|
|
814
|
-
0, [() => ApplicationSummary$,
|
|
815
|
-
0]
|
|
816
|
-
];
|
|
817
|
-
var EnvironmentSummaries = [1, n0, _ESn,
|
|
818
|
-
0, [() => EnvironmentSummary$,
|
|
819
|
-
0]
|
|
820
|
-
];
|
|
821
|
-
var EnvironmentVpcs = [1, n0, _EVn,
|
|
822
|
-
0, () => EnvironmentVpc$
|
|
823
|
-
];
|
|
824
|
-
var RouteSummaries = [1, n0, _RSo,
|
|
825
|
-
0, [() => RouteSummary$,
|
|
826
|
-
0]
|
|
827
|
-
];
|
|
828
|
-
var ServiceSummaries = [1, n0, _SSe,
|
|
829
|
-
0, [() => ServiceSummary$,
|
|
830
|
-
0]
|
|
831
|
-
];
|
|
832
|
-
var TagKeys = [1, n0, _TK,
|
|
833
|
-
8, 0
|
|
834
|
-
];
|
|
835
|
-
var TagMap = [2, n0, _TM,
|
|
836
|
-
8, 0, 0
|
|
837
|
-
];
|
|
838
|
-
var CreateApplication$ = [9, n0, _CA,
|
|
839
|
-
{ [_h]: ["POST", "/environments/{EnvironmentIdentifier}/applications", 200] }, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
840
|
-
];
|
|
841
|
-
var CreateEnvironment$ = [9, n0, _CEr,
|
|
842
|
-
{ [_h]: ["POST", "/environments", 200] }, () => CreateEnvironmentRequest$, () => CreateEnvironmentResponse$
|
|
843
|
-
];
|
|
844
|
-
var CreateRoute$ = [9, n0, _CR,
|
|
845
|
-
{ [_h]: ["POST", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/routes", 200] }, () => CreateRouteRequest$, () => CreateRouteResponse$
|
|
846
|
-
];
|
|
847
|
-
var CreateService$ = [9, n0, _CS,
|
|
848
|
-
{ [_h]: ["POST", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/services", 200] }, () => CreateServiceRequest$, () => CreateServiceResponse$
|
|
849
|
-
];
|
|
850
|
-
var DeleteApplication$ = [9, n0, _DA,
|
|
851
|
-
{ [_h]: ["DELETE", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}", 200] }, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
852
|
-
];
|
|
853
|
-
var DeleteEnvironment$ = [9, n0, _DE,
|
|
854
|
-
{ [_h]: ["DELETE", "/environments/{EnvironmentIdentifier}", 200] }, () => DeleteEnvironmentRequest$, () => DeleteEnvironmentResponse$
|
|
855
|
-
];
|
|
856
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
857
|
-
{ [_h]: ["DELETE", "/resourcepolicy/{Identifier}", 200] }, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
|
|
858
|
-
];
|
|
859
|
-
var DeleteRoute$ = [9, n0, _DRe,
|
|
860
|
-
{ [_h]: ["DELETE", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/routes/{RouteIdentifier}", 200] }, () => DeleteRouteRequest$, () => DeleteRouteResponse$
|
|
861
|
-
];
|
|
862
|
-
var DeleteService$ = [9, n0, _DS,
|
|
863
|
-
{ [_h]: ["DELETE", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/services/{ServiceIdentifier}", 200] }, () => DeleteServiceRequest$, () => DeleteServiceResponse$
|
|
864
|
-
];
|
|
865
|
-
var GetApplication$ = [9, n0, _GA,
|
|
866
|
-
{ [_h]: ["GET", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}", 200] }, () => GetApplicationRequest$, () => GetApplicationResponse$
|
|
867
|
-
];
|
|
868
|
-
var GetEnvironment$ = [9, n0, _GE,
|
|
869
|
-
{ [_h]: ["GET", "/environments/{EnvironmentIdentifier}", 200] }, () => GetEnvironmentRequest$, () => GetEnvironmentResponse$
|
|
870
|
-
];
|
|
871
|
-
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
872
|
-
{ [_h]: ["GET", "/resourcepolicy/{Identifier}", 200] }, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
873
|
-
];
|
|
874
|
-
var GetRoute$ = [9, n0, _GR,
|
|
875
|
-
{ [_h]: ["GET", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/routes/{RouteIdentifier}", 200] }, () => GetRouteRequest$, () => GetRouteResponse$
|
|
876
|
-
];
|
|
877
|
-
var GetService$ = [9, n0, _GS,
|
|
878
|
-
{ [_h]: ["GET", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/services/{ServiceIdentifier}", 200] }, () => GetServiceRequest$, () => GetServiceResponse$
|
|
879
|
-
];
|
|
880
|
-
var ListApplications$ = [9, n0, _LA,
|
|
881
|
-
{ [_h]: ["GET", "/environments/{EnvironmentIdentifier}/applications", 200] }, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
882
|
-
];
|
|
883
|
-
var ListEnvironments$ = [9, n0, _LEi,
|
|
884
|
-
{ [_h]: ["GET", "/environments", 200] }, () => ListEnvironmentsRequest$, () => ListEnvironmentsResponse$
|
|
885
|
-
];
|
|
886
|
-
var ListEnvironmentVpcs$ = [9, n0, _LEV,
|
|
887
|
-
{ [_h]: ["GET", "/environments/{EnvironmentIdentifier}/vpcs", 200] }, () => ListEnvironmentVpcsRequest$, () => ListEnvironmentVpcsResponse$
|
|
888
|
-
];
|
|
889
|
-
var ListRoutes$ = [9, n0, _LR,
|
|
890
|
-
{ [_h]: ["GET", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/routes", 200] }, () => ListRoutesRequest$, () => ListRoutesResponse$
|
|
891
|
-
];
|
|
892
|
-
var ListServices$ = [9, n0, _LS,
|
|
893
|
-
{ [_h]: ["GET", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/services", 200] }, () => ListServicesRequest$, () => ListServicesResponse$
|
|
894
|
-
];
|
|
895
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
896
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
897
|
-
];
|
|
898
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
899
|
-
{ [_h]: ["PUT", "/resourcepolicy", 200] }, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
900
|
-
];
|
|
901
|
-
var TagResource$ = [9, n0, _TR,
|
|
902
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
903
|
-
];
|
|
904
|
-
var UntagResource$ = [9, n0, _UR,
|
|
905
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
906
|
-
];
|
|
907
|
-
var UpdateRoute$ = [9, n0, _URp,
|
|
908
|
-
{ [_h]: ["PATCH", "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/routes/{RouteIdentifier}", 200] }, () => UpdateRouteRequest$, () => UpdateRouteResponse$
|
|
909
|
-
];
|
|
910
|
-
|
|
911
116
|
class CreateApplicationCommand extends smithyClient.Command
|
|
912
117
|
.classBuilder()
|
|
913
118
|
.ep(commonParams)
|
|
@@ -916,7 +121,7 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
916
121
|
})
|
|
917
122
|
.s("RefactorSpaces", "CreateApplication", {})
|
|
918
123
|
.n("MigrationHubRefactorSpacesClient", "CreateApplicationCommand")
|
|
919
|
-
.sc(CreateApplication$)
|
|
124
|
+
.sc(schemas_0.CreateApplication$)
|
|
920
125
|
.build() {
|
|
921
126
|
}
|
|
922
127
|
|
|
@@ -928,7 +133,7 @@ class CreateEnvironmentCommand extends smithyClient.Command
|
|
|
928
133
|
})
|
|
929
134
|
.s("RefactorSpaces", "CreateEnvironment", {})
|
|
930
135
|
.n("MigrationHubRefactorSpacesClient", "CreateEnvironmentCommand")
|
|
931
|
-
.sc(CreateEnvironment$)
|
|
136
|
+
.sc(schemas_0.CreateEnvironment$)
|
|
932
137
|
.build() {
|
|
933
138
|
}
|
|
934
139
|
|
|
@@ -940,7 +145,7 @@ class CreateRouteCommand extends smithyClient.Command
|
|
|
940
145
|
})
|
|
941
146
|
.s("RefactorSpaces", "CreateRoute", {})
|
|
942
147
|
.n("MigrationHubRefactorSpacesClient", "CreateRouteCommand")
|
|
943
|
-
.sc(CreateRoute$)
|
|
148
|
+
.sc(schemas_0.CreateRoute$)
|
|
944
149
|
.build() {
|
|
945
150
|
}
|
|
946
151
|
|
|
@@ -952,7 +157,7 @@ class CreateServiceCommand extends smithyClient.Command
|
|
|
952
157
|
})
|
|
953
158
|
.s("RefactorSpaces", "CreateService", {})
|
|
954
159
|
.n("MigrationHubRefactorSpacesClient", "CreateServiceCommand")
|
|
955
|
-
.sc(CreateService$)
|
|
160
|
+
.sc(schemas_0.CreateService$)
|
|
956
161
|
.build() {
|
|
957
162
|
}
|
|
958
163
|
|
|
@@ -964,7 +169,7 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
964
169
|
})
|
|
965
170
|
.s("RefactorSpaces", "DeleteApplication", {})
|
|
966
171
|
.n("MigrationHubRefactorSpacesClient", "DeleteApplicationCommand")
|
|
967
|
-
.sc(DeleteApplication$)
|
|
172
|
+
.sc(schemas_0.DeleteApplication$)
|
|
968
173
|
.build() {
|
|
969
174
|
}
|
|
970
175
|
|
|
@@ -976,7 +181,7 @@ class DeleteEnvironmentCommand extends smithyClient.Command
|
|
|
976
181
|
})
|
|
977
182
|
.s("RefactorSpaces", "DeleteEnvironment", {})
|
|
978
183
|
.n("MigrationHubRefactorSpacesClient", "DeleteEnvironmentCommand")
|
|
979
|
-
.sc(DeleteEnvironment$)
|
|
184
|
+
.sc(schemas_0.DeleteEnvironment$)
|
|
980
185
|
.build() {
|
|
981
186
|
}
|
|
982
187
|
|
|
@@ -988,7 +193,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
988
193
|
})
|
|
989
194
|
.s("RefactorSpaces", "DeleteResourcePolicy", {})
|
|
990
195
|
.n("MigrationHubRefactorSpacesClient", "DeleteResourcePolicyCommand")
|
|
991
|
-
.sc(DeleteResourcePolicy$)
|
|
196
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
992
197
|
.build() {
|
|
993
198
|
}
|
|
994
199
|
|
|
@@ -1000,7 +205,7 @@ class DeleteRouteCommand extends smithyClient.Command
|
|
|
1000
205
|
})
|
|
1001
206
|
.s("RefactorSpaces", "DeleteRoute", {})
|
|
1002
207
|
.n("MigrationHubRefactorSpacesClient", "DeleteRouteCommand")
|
|
1003
|
-
.sc(DeleteRoute$)
|
|
208
|
+
.sc(schemas_0.DeleteRoute$)
|
|
1004
209
|
.build() {
|
|
1005
210
|
}
|
|
1006
211
|
|
|
@@ -1012,7 +217,7 @@ class DeleteServiceCommand extends smithyClient.Command
|
|
|
1012
217
|
})
|
|
1013
218
|
.s("RefactorSpaces", "DeleteService", {})
|
|
1014
219
|
.n("MigrationHubRefactorSpacesClient", "DeleteServiceCommand")
|
|
1015
|
-
.sc(DeleteService$)
|
|
220
|
+
.sc(schemas_0.DeleteService$)
|
|
1016
221
|
.build() {
|
|
1017
222
|
}
|
|
1018
223
|
|
|
@@ -1024,7 +229,7 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
1024
229
|
})
|
|
1025
230
|
.s("RefactorSpaces", "GetApplication", {})
|
|
1026
231
|
.n("MigrationHubRefactorSpacesClient", "GetApplicationCommand")
|
|
1027
|
-
.sc(GetApplication$)
|
|
232
|
+
.sc(schemas_0.GetApplication$)
|
|
1028
233
|
.build() {
|
|
1029
234
|
}
|
|
1030
235
|
|
|
@@ -1036,7 +241,7 @@ class GetEnvironmentCommand extends smithyClient.Command
|
|
|
1036
241
|
})
|
|
1037
242
|
.s("RefactorSpaces", "GetEnvironment", {})
|
|
1038
243
|
.n("MigrationHubRefactorSpacesClient", "GetEnvironmentCommand")
|
|
1039
|
-
.sc(GetEnvironment$)
|
|
244
|
+
.sc(schemas_0.GetEnvironment$)
|
|
1040
245
|
.build() {
|
|
1041
246
|
}
|
|
1042
247
|
|
|
@@ -1048,7 +253,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
1048
253
|
})
|
|
1049
254
|
.s("RefactorSpaces", "GetResourcePolicy", {})
|
|
1050
255
|
.n("MigrationHubRefactorSpacesClient", "GetResourcePolicyCommand")
|
|
1051
|
-
.sc(GetResourcePolicy$)
|
|
256
|
+
.sc(schemas_0.GetResourcePolicy$)
|
|
1052
257
|
.build() {
|
|
1053
258
|
}
|
|
1054
259
|
|
|
@@ -1060,7 +265,7 @@ class GetRouteCommand extends smithyClient.Command
|
|
|
1060
265
|
})
|
|
1061
266
|
.s("RefactorSpaces", "GetRoute", {})
|
|
1062
267
|
.n("MigrationHubRefactorSpacesClient", "GetRouteCommand")
|
|
1063
|
-
.sc(GetRoute$)
|
|
268
|
+
.sc(schemas_0.GetRoute$)
|
|
1064
269
|
.build() {
|
|
1065
270
|
}
|
|
1066
271
|
|
|
@@ -1072,7 +277,7 @@ class GetServiceCommand extends smithyClient.Command
|
|
|
1072
277
|
})
|
|
1073
278
|
.s("RefactorSpaces", "GetService", {})
|
|
1074
279
|
.n("MigrationHubRefactorSpacesClient", "GetServiceCommand")
|
|
1075
|
-
.sc(GetService$)
|
|
280
|
+
.sc(schemas_0.GetService$)
|
|
1076
281
|
.build() {
|
|
1077
282
|
}
|
|
1078
283
|
|
|
@@ -1084,7 +289,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
1084
289
|
})
|
|
1085
290
|
.s("RefactorSpaces", "ListApplications", {})
|
|
1086
291
|
.n("MigrationHubRefactorSpacesClient", "ListApplicationsCommand")
|
|
1087
|
-
.sc(ListApplications$)
|
|
292
|
+
.sc(schemas_0.ListApplications$)
|
|
1088
293
|
.build() {
|
|
1089
294
|
}
|
|
1090
295
|
|
|
@@ -1096,7 +301,7 @@ class ListEnvironmentsCommand extends smithyClient.Command
|
|
|
1096
301
|
})
|
|
1097
302
|
.s("RefactorSpaces", "ListEnvironments", {})
|
|
1098
303
|
.n("MigrationHubRefactorSpacesClient", "ListEnvironmentsCommand")
|
|
1099
|
-
.sc(ListEnvironments$)
|
|
304
|
+
.sc(schemas_0.ListEnvironments$)
|
|
1100
305
|
.build() {
|
|
1101
306
|
}
|
|
1102
307
|
|
|
@@ -1108,7 +313,7 @@ class ListEnvironmentVpcsCommand extends smithyClient.Command
|
|
|
1108
313
|
})
|
|
1109
314
|
.s("RefactorSpaces", "ListEnvironmentVpcs", {})
|
|
1110
315
|
.n("MigrationHubRefactorSpacesClient", "ListEnvironmentVpcsCommand")
|
|
1111
|
-
.sc(ListEnvironmentVpcs$)
|
|
316
|
+
.sc(schemas_0.ListEnvironmentVpcs$)
|
|
1112
317
|
.build() {
|
|
1113
318
|
}
|
|
1114
319
|
|
|
@@ -1120,7 +325,7 @@ class ListRoutesCommand extends smithyClient.Command
|
|
|
1120
325
|
})
|
|
1121
326
|
.s("RefactorSpaces", "ListRoutes", {})
|
|
1122
327
|
.n("MigrationHubRefactorSpacesClient", "ListRoutesCommand")
|
|
1123
|
-
.sc(ListRoutes$)
|
|
328
|
+
.sc(schemas_0.ListRoutes$)
|
|
1124
329
|
.build() {
|
|
1125
330
|
}
|
|
1126
331
|
|
|
@@ -1132,7 +337,7 @@ class ListServicesCommand extends smithyClient.Command
|
|
|
1132
337
|
})
|
|
1133
338
|
.s("RefactorSpaces", "ListServices", {})
|
|
1134
339
|
.n("MigrationHubRefactorSpacesClient", "ListServicesCommand")
|
|
1135
|
-
.sc(ListServices$)
|
|
340
|
+
.sc(schemas_0.ListServices$)
|
|
1136
341
|
.build() {
|
|
1137
342
|
}
|
|
1138
343
|
|
|
@@ -1144,7 +349,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1144
349
|
})
|
|
1145
350
|
.s("RefactorSpaces", "ListTagsForResource", {})
|
|
1146
351
|
.n("MigrationHubRefactorSpacesClient", "ListTagsForResourceCommand")
|
|
1147
|
-
.sc(ListTagsForResource$)
|
|
352
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1148
353
|
.build() {
|
|
1149
354
|
}
|
|
1150
355
|
|
|
@@ -1156,7 +361,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
1156
361
|
})
|
|
1157
362
|
.s("RefactorSpaces", "PutResourcePolicy", {})
|
|
1158
363
|
.n("MigrationHubRefactorSpacesClient", "PutResourcePolicyCommand")
|
|
1159
|
-
.sc(PutResourcePolicy$)
|
|
364
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
1160
365
|
.build() {
|
|
1161
366
|
}
|
|
1162
367
|
|
|
@@ -1168,7 +373,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1168
373
|
})
|
|
1169
374
|
.s("RefactorSpaces", "TagResource", {})
|
|
1170
375
|
.n("MigrationHubRefactorSpacesClient", "TagResourceCommand")
|
|
1171
|
-
.sc(TagResource$)
|
|
376
|
+
.sc(schemas_0.TagResource$)
|
|
1172
377
|
.build() {
|
|
1173
378
|
}
|
|
1174
379
|
|
|
@@ -1180,7 +385,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1180
385
|
})
|
|
1181
386
|
.s("RefactorSpaces", "UntagResource", {})
|
|
1182
387
|
.n("MigrationHubRefactorSpacesClient", "UntagResourceCommand")
|
|
1183
|
-
.sc(UntagResource$)
|
|
388
|
+
.sc(schemas_0.UntagResource$)
|
|
1184
389
|
.build() {
|
|
1185
390
|
}
|
|
1186
391
|
|
|
@@ -1192,7 +397,7 @@ class UpdateRouteCommand extends smithyClient.Command
|
|
|
1192
397
|
})
|
|
1193
398
|
.s("RefactorSpaces", "UpdateRoute", {})
|
|
1194
399
|
.n("MigrationHubRefactorSpacesClient", "UpdateRouteCommand")
|
|
1195
|
-
.sc(UpdateRoute$)
|
|
400
|
+
.sc(schemas_0.UpdateRoute$)
|
|
1196
401
|
.build() {
|
|
1197
402
|
}
|
|
1198
403
|
|
|
@@ -1346,154 +551,63 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1346
551
|
enumerable: true,
|
|
1347
552
|
get: function () { return smithyClient.Client; }
|
|
1348
553
|
});
|
|
1349
|
-
exports
|
|
1350
|
-
|
|
554
|
+
Object.defineProperty(exports, "MigrationHubRefactorSpacesServiceException", {
|
|
555
|
+
enumerable: true,
|
|
556
|
+
get: function () { return MigrationHubRefactorSpacesServiceException.MigrationHubRefactorSpacesServiceException; }
|
|
557
|
+
});
|
|
1351
558
|
exports.ApiGatewayEndpointType = ApiGatewayEndpointType;
|
|
1352
|
-
exports.ApiGatewayProxyConfig$ = ApiGatewayProxyConfig$;
|
|
1353
|
-
exports.ApiGatewayProxyInput$ = ApiGatewayProxyInput$;
|
|
1354
|
-
exports.ApiGatewayProxySummary$ = ApiGatewayProxySummary$;
|
|
1355
559
|
exports.ApplicationState = ApplicationState;
|
|
1356
|
-
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
1357
|
-
exports.ConflictException = ConflictException;
|
|
1358
|
-
exports.ConflictException$ = ConflictException$;
|
|
1359
|
-
exports.CreateApplication$ = CreateApplication$;
|
|
1360
560
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1361
|
-
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
1362
|
-
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
1363
|
-
exports.CreateEnvironment$ = CreateEnvironment$;
|
|
1364
561
|
exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
|
|
1365
|
-
exports.CreateEnvironmentRequest$ = CreateEnvironmentRequest$;
|
|
1366
|
-
exports.CreateEnvironmentResponse$ = CreateEnvironmentResponse$;
|
|
1367
|
-
exports.CreateRoute$ = CreateRoute$;
|
|
1368
562
|
exports.CreateRouteCommand = CreateRouteCommand;
|
|
1369
|
-
exports.CreateRouteRequest$ = CreateRouteRequest$;
|
|
1370
|
-
exports.CreateRouteResponse$ = CreateRouteResponse$;
|
|
1371
|
-
exports.CreateService$ = CreateService$;
|
|
1372
563
|
exports.CreateServiceCommand = CreateServiceCommand;
|
|
1373
|
-
exports.CreateServiceRequest$ = CreateServiceRequest$;
|
|
1374
|
-
exports.CreateServiceResponse$ = CreateServiceResponse$;
|
|
1375
|
-
exports.DefaultRouteInput$ = DefaultRouteInput$;
|
|
1376
|
-
exports.DeleteApplication$ = DeleteApplication$;
|
|
1377
564
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1378
|
-
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
1379
|
-
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
1380
|
-
exports.DeleteEnvironment$ = DeleteEnvironment$;
|
|
1381
565
|
exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
|
|
1382
|
-
exports.DeleteEnvironmentRequest$ = DeleteEnvironmentRequest$;
|
|
1383
|
-
exports.DeleteEnvironmentResponse$ = DeleteEnvironmentResponse$;
|
|
1384
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
1385
566
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
1386
|
-
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
1387
|
-
exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
|
|
1388
|
-
exports.DeleteRoute$ = DeleteRoute$;
|
|
1389
567
|
exports.DeleteRouteCommand = DeleteRouteCommand;
|
|
1390
|
-
exports.DeleteRouteRequest$ = DeleteRouteRequest$;
|
|
1391
|
-
exports.DeleteRouteResponse$ = DeleteRouteResponse$;
|
|
1392
|
-
exports.DeleteService$ = DeleteService$;
|
|
1393
568
|
exports.DeleteServiceCommand = DeleteServiceCommand;
|
|
1394
|
-
exports.DeleteServiceRequest$ = DeleteServiceRequest$;
|
|
1395
|
-
exports.DeleteServiceResponse$ = DeleteServiceResponse$;
|
|
1396
569
|
exports.EnvironmentState = EnvironmentState;
|
|
1397
|
-
exports.EnvironmentSummary$ = EnvironmentSummary$;
|
|
1398
|
-
exports.EnvironmentVpc$ = EnvironmentVpc$;
|
|
1399
570
|
exports.ErrorCode = ErrorCode;
|
|
1400
571
|
exports.ErrorResourceType = ErrorResourceType;
|
|
1401
|
-
exports.ErrorResponse$ = ErrorResponse$;
|
|
1402
|
-
exports.GetApplication$ = GetApplication$;
|
|
1403
572
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1404
|
-
exports.GetApplicationRequest$ = GetApplicationRequest$;
|
|
1405
|
-
exports.GetApplicationResponse$ = GetApplicationResponse$;
|
|
1406
|
-
exports.GetEnvironment$ = GetEnvironment$;
|
|
1407
573
|
exports.GetEnvironmentCommand = GetEnvironmentCommand;
|
|
1408
|
-
exports.GetEnvironmentRequest$ = GetEnvironmentRequest$;
|
|
1409
|
-
exports.GetEnvironmentResponse$ = GetEnvironmentResponse$;
|
|
1410
|
-
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
1411
574
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
1412
|
-
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
1413
|
-
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
1414
|
-
exports.GetRoute$ = GetRoute$;
|
|
1415
575
|
exports.GetRouteCommand = GetRouteCommand;
|
|
1416
|
-
exports.GetRouteRequest$ = GetRouteRequest$;
|
|
1417
|
-
exports.GetRouteResponse$ = GetRouteResponse$;
|
|
1418
|
-
exports.GetService$ = GetService$;
|
|
1419
576
|
exports.GetServiceCommand = GetServiceCommand;
|
|
1420
|
-
exports.GetServiceRequest$ = GetServiceRequest$;
|
|
1421
|
-
exports.GetServiceResponse$ = GetServiceResponse$;
|
|
1422
577
|
exports.HttpMethod = HttpMethod;
|
|
1423
|
-
exports.InternalServerException = InternalServerException;
|
|
1424
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1425
|
-
exports.InvalidResourcePolicyException = InvalidResourcePolicyException;
|
|
1426
|
-
exports.InvalidResourcePolicyException$ = InvalidResourcePolicyException$;
|
|
1427
|
-
exports.LambdaEndpointConfig$ = LambdaEndpointConfig$;
|
|
1428
|
-
exports.LambdaEndpointInput$ = LambdaEndpointInput$;
|
|
1429
|
-
exports.LambdaEndpointSummary$ = LambdaEndpointSummary$;
|
|
1430
|
-
exports.ListApplications$ = ListApplications$;
|
|
1431
578
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1432
|
-
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
1433
|
-
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
1434
|
-
exports.ListEnvironmentVpcs$ = ListEnvironmentVpcs$;
|
|
1435
579
|
exports.ListEnvironmentVpcsCommand = ListEnvironmentVpcsCommand;
|
|
1436
|
-
exports.ListEnvironmentVpcsRequest$ = ListEnvironmentVpcsRequest$;
|
|
1437
|
-
exports.ListEnvironmentVpcsResponse$ = ListEnvironmentVpcsResponse$;
|
|
1438
|
-
exports.ListEnvironments$ = ListEnvironments$;
|
|
1439
580
|
exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
|
|
1440
|
-
exports.ListEnvironmentsRequest$ = ListEnvironmentsRequest$;
|
|
1441
|
-
exports.ListEnvironmentsResponse$ = ListEnvironmentsResponse$;
|
|
1442
|
-
exports.ListRoutes$ = ListRoutes$;
|
|
1443
581
|
exports.ListRoutesCommand = ListRoutesCommand;
|
|
1444
|
-
exports.ListRoutesRequest$ = ListRoutesRequest$;
|
|
1445
|
-
exports.ListRoutesResponse$ = ListRoutesResponse$;
|
|
1446
|
-
exports.ListServices$ = ListServices$;
|
|
1447
582
|
exports.ListServicesCommand = ListServicesCommand;
|
|
1448
|
-
exports.ListServicesRequest$ = ListServicesRequest$;
|
|
1449
|
-
exports.ListServicesResponse$ = ListServicesResponse$;
|
|
1450
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1451
583
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1452
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1453
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1454
584
|
exports.MigrationHubRefactorSpaces = MigrationHubRefactorSpaces;
|
|
1455
585
|
exports.MigrationHubRefactorSpacesClient = MigrationHubRefactorSpacesClient;
|
|
1456
|
-
exports.MigrationHubRefactorSpacesServiceException = MigrationHubRefactorSpacesServiceException;
|
|
1457
|
-
exports.MigrationHubRefactorSpacesServiceException$ = MigrationHubRefactorSpacesServiceException$;
|
|
1458
586
|
exports.NetworkFabricType = NetworkFabricType;
|
|
1459
587
|
exports.ProxyType = ProxyType;
|
|
1460
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
1461
588
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
1462
|
-
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
1463
|
-
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
1464
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1465
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1466
589
|
exports.RouteActivationState = RouteActivationState;
|
|
1467
590
|
exports.RouteState = RouteState;
|
|
1468
|
-
exports.RouteSummary$ = RouteSummary$;
|
|
1469
591
|
exports.RouteType = RouteType;
|
|
1470
592
|
exports.ServiceEndpointType = ServiceEndpointType;
|
|
1471
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1472
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1473
593
|
exports.ServiceState = ServiceState;
|
|
1474
|
-
exports.ServiceSummary$ = ServiceSummary$;
|
|
1475
|
-
exports.TagResource$ = TagResource$;
|
|
1476
594
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1477
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1478
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1479
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1480
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1481
|
-
exports.UntagResource$ = UntagResource$;
|
|
1482
595
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1483
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1484
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1485
|
-
exports.UpdateRoute$ = UpdateRoute$;
|
|
1486
596
|
exports.UpdateRouteCommand = UpdateRouteCommand;
|
|
1487
|
-
exports.UpdateRouteRequest$ = UpdateRouteRequest$;
|
|
1488
|
-
exports.UpdateRouteResponse$ = UpdateRouteResponse$;
|
|
1489
|
-
exports.UriPathRouteInput$ = UriPathRouteInput$;
|
|
1490
|
-
exports.UrlEndpointConfig$ = UrlEndpointConfig$;
|
|
1491
|
-
exports.UrlEndpointInput$ = UrlEndpointInput$;
|
|
1492
|
-
exports.UrlEndpointSummary$ = UrlEndpointSummary$;
|
|
1493
|
-
exports.ValidationException = ValidationException;
|
|
1494
|
-
exports.ValidationException$ = ValidationException$;
|
|
1495
597
|
exports.paginateListApplications = paginateListApplications;
|
|
1496
598
|
exports.paginateListEnvironmentVpcs = paginateListEnvironmentVpcs;
|
|
1497
599
|
exports.paginateListEnvironments = paginateListEnvironments;
|
|
1498
600
|
exports.paginateListRoutes = paginateListRoutes;
|
|
1499
601
|
exports.paginateListServices = paginateListServices;
|
|
602
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
603
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
604
|
+
enumerable: true,
|
|
605
|
+
get: function () { return schemas_0[k]; }
|
|
606
|
+
});
|
|
607
|
+
});
|
|
608
|
+
Object.keys(errors).forEach(function (k) {
|
|
609
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
610
|
+
enumerable: true,
|
|
611
|
+
get: function () { return errors[k]; }
|
|
612
|
+
});
|
|
613
|
+
});
|