@aws-sdk/client-migration-hub-refactor-spaces 3.50.0 → 3.53.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/MigrationHubRefactorSpacesServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +126 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +284 -1072
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/MigrationHubRefactorSpacesServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +117 -1
  9. package/dist-es/protocols/Aws_restJson1.js +581 -1173
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/MigrationHubRefactorSpacesServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +58 -25
  13. package/dist-types/ts3.4/MigrationHubRefactorSpaces.d.ts +120 -0
  14. package/dist-types/ts3.4/MigrationHubRefactorSpacesClient.d.ts +96 -0
  15. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/GetRouteCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ListEnvironmentVpcsCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +23 -0
  39. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  40. package/dist-types/ts3.4/index.d.ts +6 -0
  41. package/dist-types/ts3.4/models/MigrationHubRefactorSpacesServiceException.d.ts +6 -0
  42. package/dist-types/ts3.4/models/index.d.ts +1 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +1252 -0
  44. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  45. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/ListEnvironmentVpcsPaginator.d.ts +4 -0
  47. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +4 -0
  48. package/dist-types/ts3.4/pagination/ListRoutesPaginator.d.ts +4 -0
  49. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
  50. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +71 -0
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  56. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./MigrationHubRefactorSpacesClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { MigrationHubRefactorSpacesServiceException } from "./models/MigrationHubRefactorSpacesServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from MigrationHubRefactorSpaces service.
4
+ */
5
+ export declare class MigrationHubRefactorSpacesServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,11 +1,16 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MigrationHubRefactorSpacesServiceException as __BaseException } from "./MigrationHubRefactorSpacesServiceException";
2
3
  /**
3
4
  * <p>The user does not have sufficient access to perform this action. </p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
8
9
  Message: string | undefined;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
14
  }
10
15
  export declare enum ApiGatewayEndpointType {
11
16
  PRIVATE = "PRIVATE",
@@ -267,9 +272,9 @@ export declare namespace ApplicationSummary {
267
272
  /**
268
273
  * <p>Updating or deleting a resource can cause an inconsistent state.</p>
269
274
  */
270
- export interface ConflictException extends __SmithyException, $MetadataBearer {
271
- name: "ConflictException";
272
- $fault: "client";
275
+ export declare class ConflictException extends __BaseException {
276
+ readonly name: "ConflictException";
277
+ readonly $fault: "client";
273
278
  Message: string | undefined;
274
279
  /**
275
280
  * <p>The ID of the resource. </p>
@@ -279,6 +284,10 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
279
284
  * <p>The type of resource. </p>
280
285
  */
281
286
  ResourceType: string | undefined;
287
+ /**
288
+ * @internal
289
+ */
290
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
282
291
  }
283
292
  export interface CreateApplicationRequest {
284
293
  /**
@@ -391,17 +400,21 @@ export declare namespace CreateApplicationResponse {
391
400
  /**
392
401
  * <p>An unexpected error occurred while processing the request.</p>
393
402
  */
394
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
395
- name: "InternalServerException";
396
- $fault: "server";
403
+ export declare class InternalServerException extends __BaseException {
404
+ readonly name: "InternalServerException";
405
+ readonly $fault: "server";
397
406
  Message: string | undefined;
407
+ /**
408
+ * @internal
409
+ */
410
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
398
411
  }
399
412
  /**
400
413
  * <p>The request references a resource that does not exist. </p>
401
414
  */
402
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
403
- name: "ResourceNotFoundException";
404
- $fault: "client";
415
+ export declare class ResourceNotFoundException extends __BaseException {
416
+ readonly name: "ResourceNotFoundException";
417
+ readonly $fault: "client";
405
418
  Message: string | undefined;
406
419
  /**
407
420
  * <p>The ID of the resource. </p>
@@ -411,13 +424,17 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
411
424
  * <p>The type of resource. </p>
412
425
  */
413
426
  ResourceType: string | undefined;
427
+ /**
428
+ * @internal
429
+ */
430
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
414
431
  }
415
432
  /**
416
433
  * <p>The request would cause a service quota to be exceeded. </p>
417
434
  */
418
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
419
- name: "ServiceQuotaExceededException";
420
- $fault: "client";
435
+ export declare class ServiceQuotaExceededException extends __BaseException {
436
+ readonly name: "ServiceQuotaExceededException";
437
+ readonly $fault: "client";
421
438
  Message: string | undefined;
422
439
  /**
423
440
  * <p>The ID of the resource. </p>
@@ -437,13 +454,17 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
437
454
  * exception service code. </p>
438
455
  */
439
456
  ServiceCode: string | undefined;
457
+ /**
458
+ * @internal
459
+ */
460
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
440
461
  }
441
462
  /**
442
463
  * <p>Request was denied because the request was throttled. </p>
443
464
  */
444
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
445
- name: "ThrottlingException";
446
- $fault: "client";
465
+ export declare class ThrottlingException extends __BaseException {
466
+ readonly name: "ThrottlingException";
467
+ readonly $fault: "client";
447
468
  Message: string | undefined;
448
469
  /**
449
470
  * <p>Service quota requirement to identify originating quota. Reached throttling quota
@@ -459,14 +480,22 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
459
480
  * <p>The number of seconds to wait before retrying. </p>
460
481
  */
461
482
  RetryAfterSeconds?: number;
483
+ /**
484
+ * @internal
485
+ */
486
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
462
487
  }
463
488
  /**
464
489
  * <p>The input does not satisfy the constraints specified by an Amazon Web Service. </p>
465
490
  */
466
- export interface ValidationException extends __SmithyException, $MetadataBearer {
467
- name: "ValidationException";
468
- $fault: "client";
491
+ export declare class ValidationException extends __BaseException {
492
+ readonly name: "ValidationException";
493
+ readonly $fault: "client";
469
494
  Message: string | undefined;
495
+ /**
496
+ * @internal
497
+ */
498
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
470
499
  }
471
500
  export declare enum NetworkFabricType {
472
501
  TRANSIT_GATEWAY = "TRANSIT_GATEWAY"
@@ -1641,10 +1670,14 @@ export declare namespace GetServiceResponse {
1641
1670
  /**
1642
1671
  * <p>The resource policy is not valid.</p>
1643
1672
  */
1644
- export interface InvalidResourcePolicyException extends __SmithyException, $MetadataBearer {
1645
- name: "InvalidResourcePolicyException";
1646
- $fault: "client";
1673
+ export declare class InvalidResourcePolicyException extends __BaseException {
1674
+ readonly name: "InvalidResourcePolicyException";
1675
+ readonly $fault: "client";
1647
1676
  Message: string | undefined;
1677
+ /**
1678
+ * @internal
1679
+ */
1680
+ constructor(opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>);
1648
1681
  }
1649
1682
  /**
1650
1683
  * <p>The summary for the Lambda endpoint type. </p>
@@ -0,0 +1,120 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
3
+ import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
4
+ import { CreateRouteCommandInput, CreateRouteCommandOutput } from "./commands/CreateRouteCommand";
5
+ import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
6
+ import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
7
+ import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
8
+ import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
9
+ import { DeleteRouteCommandInput, DeleteRouteCommandOutput } from "./commands/DeleteRouteCommand";
10
+ import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
11
+ import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
12
+ import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
13
+ import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
14
+ import { GetRouteCommandInput, GetRouteCommandOutput } from "./commands/GetRouteCommand";
15
+ import { GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
16
+ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
17
+ import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
18
+ import { ListEnvironmentVpcsCommandInput, ListEnvironmentVpcsCommandOutput } from "./commands/ListEnvironmentVpcsCommand";
19
+ import { ListRoutesCommandInput, ListRoutesCommandOutput } from "./commands/ListRoutesCommand";
20
+ import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
21
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
22
+ import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
23
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
24
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
25
+ import { MigrationHubRefactorSpacesClient } from "./MigrationHubRefactorSpacesClient";
26
+
27
+ export declare class MigrationHubRefactorSpaces extends MigrationHubRefactorSpacesClient {
28
+
29
+ createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
30
+ createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
31
+ createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
32
+
33
+ createEnvironment(args: CreateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentCommandOutput>;
34
+ createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
35
+ createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
36
+
37
+ createRoute(args: CreateRouteCommandInput, options?: __HttpHandlerOptions): Promise<CreateRouteCommandOutput>;
38
+ createRoute(args: CreateRouteCommandInput, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
39
+ createRoute(args: CreateRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
40
+
41
+ createService(args: CreateServiceCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceCommandOutput>;
42
+ createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
43
+ createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
44
+
45
+ deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
46
+ deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
47
+ deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
48
+
49
+ deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
50
+ deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
51
+ deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
52
+
53
+ deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
54
+ deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
55
+ deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
56
+
57
+ deleteRoute(args: DeleteRouteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteCommandOutput>;
58
+ deleteRoute(args: DeleteRouteCommandInput, cb: (err: any, data?: DeleteRouteCommandOutput) => void): void;
59
+ deleteRoute(args: DeleteRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteCommandOutput) => void): void;
60
+
61
+ deleteService(args: DeleteServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceCommandOutput>;
62
+ deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
63
+ deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
64
+
65
+ getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
66
+ getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
67
+ getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
68
+
69
+ getEnvironment(args: GetEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCommandOutput>;
70
+ getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
71
+ getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
72
+
73
+ getResourcePolicy(args: GetResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePolicyCommandOutput>;
74
+ getResourcePolicy(args: GetResourcePolicyCommandInput, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
75
+ getResourcePolicy(args: GetResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
76
+
77
+ getRoute(args: GetRouteCommandInput, options?: __HttpHandlerOptions): Promise<GetRouteCommandOutput>;
78
+ getRoute(args: GetRouteCommandInput, cb: (err: any, data?: GetRouteCommandOutput) => void): void;
79
+ getRoute(args: GetRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRouteCommandOutput) => void): void;
80
+
81
+ getService(args: GetServiceCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceCommandOutput>;
82
+ getService(args: GetServiceCommandInput, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
83
+ getService(args: GetServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
84
+
85
+ listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
86
+ listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
87
+ listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
88
+
89
+ listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
90
+ listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
91
+ listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
92
+
93
+ listEnvironmentVpcs(args: ListEnvironmentVpcsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentVpcsCommandOutput>;
94
+ listEnvironmentVpcs(args: ListEnvironmentVpcsCommandInput, cb: (err: any, data?: ListEnvironmentVpcsCommandOutput) => void): void;
95
+ listEnvironmentVpcs(args: ListEnvironmentVpcsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentVpcsCommandOutput) => void): void;
96
+
97
+ listRoutes(args: ListRoutesCommandInput, options?: __HttpHandlerOptions): Promise<ListRoutesCommandOutput>;
98
+ listRoutes(args: ListRoutesCommandInput, cb: (err: any, data?: ListRoutesCommandOutput) => void): void;
99
+ listRoutes(args: ListRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoutesCommandOutput) => void): void;
100
+
101
+ listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
102
+ listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
103
+ listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
104
+
105
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
106
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
107
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
108
+
109
+ putResourcePolicy(args: PutResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePolicyCommandOutput>;
110
+ putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
111
+ putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
112
+
113
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
114
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
115
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
116
+
117
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
118
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
119
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
120
+ }
@@ -0,0 +1,96 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
10
+ import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
11
+ import { CreateRouteCommandInput, CreateRouteCommandOutput } from "./commands/CreateRouteCommand";
12
+ import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
13
+ import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
14
+ import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
15
+ import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
16
+ import { DeleteRouteCommandInput, DeleteRouteCommandOutput } from "./commands/DeleteRouteCommand";
17
+ import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
18
+ import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
19
+ import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
20
+ import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
21
+ import { GetRouteCommandInput, GetRouteCommandOutput } from "./commands/GetRouteCommand";
22
+ import { GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
23
+ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
24
+ import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
25
+ import { ListEnvironmentVpcsCommandInput, ListEnvironmentVpcsCommandOutput } from "./commands/ListEnvironmentVpcsCommand";
26
+ import { ListRoutesCommandInput, ListRoutesCommandOutput } from "./commands/ListRoutesCommand";
27
+ import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
28
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
29
+ import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
30
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
31
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
32
+ export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateEnvironmentCommandInput | CreateRouteCommandInput | CreateServiceCommandInput | DeleteApplicationCommandInput | DeleteEnvironmentCommandInput | DeleteResourcePolicyCommandInput | DeleteRouteCommandInput | DeleteServiceCommandInput | GetApplicationCommandInput | GetEnvironmentCommandInput | GetResourcePolicyCommandInput | GetRouteCommandInput | GetServiceCommandInput | ListApplicationsCommandInput | ListEnvironmentVpcsCommandInput | ListEnvironmentsCommandInput | ListRoutesCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | PutResourcePolicyCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
33
+ export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateEnvironmentCommandOutput | CreateRouteCommandOutput | CreateServiceCommandOutput | DeleteApplicationCommandOutput | DeleteEnvironmentCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRouteCommandOutput | DeleteServiceCommandOutput | GetApplicationCommandOutput | GetEnvironmentCommandOutput | GetResourcePolicyCommandOutput | GetRouteCommandOutput | GetServiceCommandOutput | ListApplicationsCommandOutput | ListEnvironmentVpcsCommandOutput | ListEnvironmentsCommandOutput | ListRoutesCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | PutResourcePolicyCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
34
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
35
+
36
+ requestHandler?: __HttpHandler;
37
+
38
+ sha256?: __HashConstructor;
39
+
40
+ urlParser?: __UrlParser;
41
+
42
+ bodyLengthChecker?: (body: any) => number | undefined;
43
+
44
+ streamCollector?: __StreamCollector;
45
+
46
+ base64Decoder?: __Decoder;
47
+
48
+ base64Encoder?: __Encoder;
49
+
50
+ utf8Decoder?: __Decoder;
51
+
52
+ utf8Encoder?: __Encoder;
53
+
54
+ runtime?: string;
55
+
56
+ disableHostPrefix?: boolean;
57
+
58
+ maxAttempts?: number | __Provider<number>;
59
+
60
+ retryMode?: string | __Provider<string>;
61
+
62
+ logger?: __Logger;
63
+
64
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
65
+
66
+ useFipsEndpoint?: boolean | __Provider<boolean>;
67
+
68
+ serviceId?: string;
69
+
70
+ region?: string | __Provider<string>;
71
+
72
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
73
+
74
+ regionInfoProvider?: RegionInfoProvider;
75
+
76
+ defaultUserAgentProvider?: Provider<__UserAgent>;
77
+
78
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
79
+ }
80
+ declare type MigrationHubRefactorSpacesClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
81
+
82
+ export interface MigrationHubRefactorSpacesClientConfig extends MigrationHubRefactorSpacesClientConfigType {
83
+ }
84
+ declare type MigrationHubRefactorSpacesClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
85
+
86
+ export interface MigrationHubRefactorSpacesClientResolvedConfig extends MigrationHubRefactorSpacesClientResolvedConfigType {
87
+ }
88
+
89
+ export declare class MigrationHubRefactorSpacesClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MigrationHubRefactorSpacesClientResolvedConfig> {
90
+
91
+ readonly config: MigrationHubRefactorSpacesClientResolvedConfig;
92
+ constructor(configuration: MigrationHubRefactorSpacesClientConfig);
93
+
94
+ destroy(): void;
95
+ }
96
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
5
+ export interface CreateApplicationCommandInput extends CreateApplicationRequest {
6
+ }
7
+ export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: CreateApplicationCommandInput;
12
+ constructor(input: CreateApplicationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0";
5
+ export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest {
6
+ }
7
+ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateEnvironmentCommand extends $Command<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: CreateEnvironmentCommandInput;
12
+ constructor(input: CreateEnvironmentCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { CreateRouteRequest, CreateRouteResponse } from "../models/models_0";
5
+ export interface CreateRouteCommandInput extends CreateRouteRequest {
6
+ }
7
+ export interface CreateRouteCommandOutput extends CreateRouteResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateRouteCommand extends $Command<CreateRouteCommandInput, CreateRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: CreateRouteCommandInput;
12
+ constructor(input: CreateRouteCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRouteCommandInput, CreateRouteCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0";
5
+ export interface CreateServiceCommandInput extends CreateServiceRequest {
6
+ }
7
+ export interface CreateServiceCommandOutput extends CreateServiceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: CreateServiceCommandInput;
12
+ constructor(input: CreateServiceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateServiceCommandInput, CreateServiceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
5
+ export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
6
+ }
7
+ export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: DeleteApplicationCommandInput;
12
+ constructor(input: DeleteApplicationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0";
5
+ export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest {
6
+ }
7
+ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: DeleteEnvironmentCommandInput;
12
+ constructor(input: DeleteEnvironmentCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0";
5
+ export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {
6
+ }
7
+ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: DeleteResourcePolicyCommandInput;
12
+ constructor(input: DeleteResourcePolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { DeleteRouteRequest, DeleteRouteResponse } from "../models/models_0";
5
+ export interface DeleteRouteCommandInput extends DeleteRouteRequest {
6
+ }
7
+ export interface DeleteRouteCommandOutput extends DeleteRouteResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteRouteCommand extends $Command<DeleteRouteCommandInput, DeleteRouteCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: DeleteRouteCommandInput;
12
+ constructor(input: DeleteRouteCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRouteCommandInput, DeleteRouteCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0";
5
+ export interface DeleteServiceCommandInput extends DeleteServiceRequest {
6
+ }
7
+ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: DeleteServiceCommandInput;
12
+ constructor(input: DeleteServiceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteServiceCommandInput, DeleteServiceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
5
+ export interface GetApplicationCommandInput extends GetApplicationRequest {
6
+ }
7
+ export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: GetApplicationCommandInput;
12
+ constructor(input: GetApplicationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0";
5
+ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
6
+ }
7
+ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetEnvironmentCommand extends $Command<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: GetEnvironmentCommandInput;
12
+ constructor(input: GetEnvironmentCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEnvironmentCommandInput, GetEnvironmentCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubRefactorSpacesClient";
4
+ import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0";
5
+ export interface GetResourcePolicyCommandInput extends GetResourcePolicyRequest {
6
+ }
7
+ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, MigrationHubRefactorSpacesClientResolvedConfig> {
11
+ readonly input: GetResourcePolicyCommandInput;
12
+ constructor(input: GetResourcePolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubRefactorSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }