@aws-sdk/client-migration-hub-refactor-spaces 3.296.0 → 3.298.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/commands/DeleteApplicationCommand.js +2 -3
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +2 -3
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +2 -3
- package/dist-cjs/commands/DeleteRouteCommand.js +2 -3
- package/dist-cjs/commands/DeleteServiceCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationCommand.js +1 -1
- package/dist-cjs/commands/GetEnvironmentCommand.js +1 -1
- package/dist-cjs/commands/GetResourcePolicyCommand.js +2 -3
- package/dist-cjs/commands/GetRouteCommand.js +1 -1
- package/dist-cjs/commands/GetServiceCommand.js +1 -1
- package/dist-cjs/commands/ListApplicationsCommand.js +1 -1
- package/dist-cjs/commands/ListEnvironmentVpcsCommand.js +2 -3
- package/dist-cjs/commands/ListEnvironmentsCommand.js +1 -1
- package/dist-cjs/commands/ListRoutesCommand.js +1 -1
- package/dist-cjs/commands/ListServicesCommand.js +1 -1
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -1
- package/dist-cjs/commands/PutResourcePolicyCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/commands/UpdateRouteCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -170
- package/dist-es/commands/DeleteApplicationCommand.js +2 -3
- package/dist-es/commands/DeleteEnvironmentCommand.js +2 -3
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -3
- package/dist-es/commands/DeleteRouteCommand.js +2 -3
- package/dist-es/commands/DeleteServiceCommand.js +2 -3
- package/dist-es/commands/GetApplicationCommand.js +2 -2
- package/dist-es/commands/GetEnvironmentCommand.js +2 -2
- package/dist-es/commands/GetResourcePolicyCommand.js +2 -3
- package/dist-es/commands/GetRouteCommand.js +2 -2
- package/dist-es/commands/GetServiceCommand.js +2 -2
- package/dist-es/commands/ListApplicationsCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentVpcsCommand.js +2 -3
- package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListRoutesCommand.js +2 -2
- package/dist-es/commands/ListServicesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateRouteCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -126
- package/dist-types/MigrationHubRefactorSpaces.d.ts +25 -0
- package/dist-types/MigrationHubRefactorSpacesClient.d.ts +24 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/CreateRouteCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRouteCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetRouteCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentVpcsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListRoutesCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRouteCommand.d.ts +16 -0
- package/dist-types/models/MigrationHubRefactorSpacesServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +208 -168
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentVpcsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRoutesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -126
- package/package.json +4 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { MigrationHubRefactorSpacesClient } from "../MigrationHubRefactorSpacesClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface MigrationHubRefactorSpacesPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: MigrationHubRefactorSpacesClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
3
3
|
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApplications(config: MigrationHubRefactorSpacesPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListEnvironmentVpcsCommandInput, ListEnvironmentVpcsCommandOutput } from "../commands/ListEnvironmentVpcsCommand";
|
|
3
3
|
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListEnvironmentVpcs(config: MigrationHubRefactorSpacesPaginationConfiguration, input: ListEnvironmentVpcsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentVpcsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
3
3
|
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListEnvironments(config: MigrationHubRefactorSpacesPaginationConfiguration, input: ListEnvironmentsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListRoutesCommandInput, ListRoutesCommandOutput } from "../commands/ListRoutesCommand";
|
|
3
3
|
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListRoutes(config: MigrationHubRefactorSpacesPaginationConfiguration, input: ListRoutesCommandInput, ...additionalArguments: any): Paginator<ListRoutesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
|
|
3
3
|
import { MigrationHubRefactorSpacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListServices(config: MigrationHubRefactorSpacesPaginationConfiguration, input: ListServicesCommandInput, ...additionalArguments: any): Paginator<ListServicesCommandOutput>;
|
|
@@ -626,18 +626,6 @@ export interface UpdateRouteResponse {
|
|
|
626
626
|
State?: RouteState | string;
|
|
627
627
|
LastUpdatedTime?: Date;
|
|
628
628
|
}
|
|
629
|
-
export declare const ApiGatewayProxyConfigFilterSensitiveLog: (
|
|
630
|
-
obj: ApiGatewayProxyConfig
|
|
631
|
-
) => any;
|
|
632
|
-
export declare const ApiGatewayProxyInputFilterSensitiveLog: (
|
|
633
|
-
obj: ApiGatewayProxyInput
|
|
634
|
-
) => any;
|
|
635
|
-
export declare const ApiGatewayProxySummaryFilterSensitiveLog: (
|
|
636
|
-
obj: ApiGatewayProxySummary
|
|
637
|
-
) => any;
|
|
638
|
-
export declare const ErrorResponseFilterSensitiveLog: (
|
|
639
|
-
obj: ErrorResponse
|
|
640
|
-
) => any;
|
|
641
629
|
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
642
630
|
obj: ApplicationSummary
|
|
643
631
|
) => any;
|
|
@@ -653,169 +641,55 @@ export declare const CreateEnvironmentRequestFilterSensitiveLog: (
|
|
|
653
641
|
export declare const CreateEnvironmentResponseFilterSensitiveLog: (
|
|
654
642
|
obj: CreateEnvironmentResponse
|
|
655
643
|
) => any;
|
|
656
|
-
export declare const DefaultRouteInputFilterSensitiveLog: (
|
|
657
|
-
obj: DefaultRouteInput
|
|
658
|
-
) => any;
|
|
659
|
-
export declare const UriPathRouteInputFilterSensitiveLog: (
|
|
660
|
-
obj: UriPathRouteInput
|
|
661
|
-
) => any;
|
|
662
644
|
export declare const CreateRouteRequestFilterSensitiveLog: (
|
|
663
645
|
obj: CreateRouteRequest
|
|
664
646
|
) => any;
|
|
665
647
|
export declare const CreateRouteResponseFilterSensitiveLog: (
|
|
666
648
|
obj: CreateRouteResponse
|
|
667
649
|
) => any;
|
|
668
|
-
export declare const LambdaEndpointInputFilterSensitiveLog: (
|
|
669
|
-
obj: LambdaEndpointInput
|
|
670
|
-
) => any;
|
|
671
|
-
export declare const UrlEndpointInputFilterSensitiveLog: (
|
|
672
|
-
obj: UrlEndpointInput
|
|
673
|
-
) => any;
|
|
674
650
|
export declare const CreateServiceRequestFilterSensitiveLog: (
|
|
675
651
|
obj: CreateServiceRequest
|
|
676
652
|
) => any;
|
|
677
653
|
export declare const CreateServiceResponseFilterSensitiveLog: (
|
|
678
654
|
obj: CreateServiceResponse
|
|
679
655
|
) => any;
|
|
680
|
-
export declare const DeleteApplicationRequestFilterSensitiveLog: (
|
|
681
|
-
obj: DeleteApplicationRequest
|
|
682
|
-
) => any;
|
|
683
|
-
export declare const DeleteApplicationResponseFilterSensitiveLog: (
|
|
684
|
-
obj: DeleteApplicationResponse
|
|
685
|
-
) => any;
|
|
686
|
-
export declare const DeleteEnvironmentRequestFilterSensitiveLog: (
|
|
687
|
-
obj: DeleteEnvironmentRequest
|
|
688
|
-
) => any;
|
|
689
|
-
export declare const DeleteEnvironmentResponseFilterSensitiveLog: (
|
|
690
|
-
obj: DeleteEnvironmentResponse
|
|
691
|
-
) => any;
|
|
692
|
-
export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (
|
|
693
|
-
obj: DeleteResourcePolicyRequest
|
|
694
|
-
) => any;
|
|
695
|
-
export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (
|
|
696
|
-
obj: DeleteResourcePolicyResponse
|
|
697
|
-
) => any;
|
|
698
|
-
export declare const DeleteRouteRequestFilterSensitiveLog: (
|
|
699
|
-
obj: DeleteRouteRequest
|
|
700
|
-
) => any;
|
|
701
|
-
export declare const DeleteRouteResponseFilterSensitiveLog: (
|
|
702
|
-
obj: DeleteRouteResponse
|
|
703
|
-
) => any;
|
|
704
|
-
export declare const DeleteServiceRequestFilterSensitiveLog: (
|
|
705
|
-
obj: DeleteServiceRequest
|
|
706
|
-
) => any;
|
|
707
|
-
export declare const DeleteServiceResponseFilterSensitiveLog: (
|
|
708
|
-
obj: DeleteServiceResponse
|
|
709
|
-
) => any;
|
|
710
656
|
export declare const EnvironmentSummaryFilterSensitiveLog: (
|
|
711
657
|
obj: EnvironmentSummary
|
|
712
658
|
) => any;
|
|
713
|
-
export declare const EnvironmentVpcFilterSensitiveLog: (
|
|
714
|
-
obj: EnvironmentVpc
|
|
715
|
-
) => any;
|
|
716
|
-
export declare const GetApplicationRequestFilterSensitiveLog: (
|
|
717
|
-
obj: GetApplicationRequest
|
|
718
|
-
) => any;
|
|
719
659
|
export declare const GetApplicationResponseFilterSensitiveLog: (
|
|
720
660
|
obj: GetApplicationResponse
|
|
721
661
|
) => any;
|
|
722
|
-
export declare const GetEnvironmentRequestFilterSensitiveLog: (
|
|
723
|
-
obj: GetEnvironmentRequest
|
|
724
|
-
) => any;
|
|
725
662
|
export declare const GetEnvironmentResponseFilterSensitiveLog: (
|
|
726
663
|
obj: GetEnvironmentResponse
|
|
727
664
|
) => any;
|
|
728
|
-
export declare const GetResourcePolicyRequestFilterSensitiveLog: (
|
|
729
|
-
obj: GetResourcePolicyRequest
|
|
730
|
-
) => any;
|
|
731
|
-
export declare const GetResourcePolicyResponseFilterSensitiveLog: (
|
|
732
|
-
obj: GetResourcePolicyResponse
|
|
733
|
-
) => any;
|
|
734
|
-
export declare const GetRouteRequestFilterSensitiveLog: (
|
|
735
|
-
obj: GetRouteRequest
|
|
736
|
-
) => any;
|
|
737
665
|
export declare const GetRouteResponseFilterSensitiveLog: (
|
|
738
666
|
obj: GetRouteResponse
|
|
739
667
|
) => any;
|
|
740
|
-
export declare const GetServiceRequestFilterSensitiveLog: (
|
|
741
|
-
obj: GetServiceRequest
|
|
742
|
-
) => any;
|
|
743
|
-
export declare const LambdaEndpointConfigFilterSensitiveLog: (
|
|
744
|
-
obj: LambdaEndpointConfig
|
|
745
|
-
) => any;
|
|
746
|
-
export declare const UrlEndpointConfigFilterSensitiveLog: (
|
|
747
|
-
obj: UrlEndpointConfig
|
|
748
|
-
) => any;
|
|
749
668
|
export declare const GetServiceResponseFilterSensitiveLog: (
|
|
750
669
|
obj: GetServiceResponse
|
|
751
670
|
) => any;
|
|
752
|
-
export declare const LambdaEndpointSummaryFilterSensitiveLog: (
|
|
753
|
-
obj: LambdaEndpointSummary
|
|
754
|
-
) => any;
|
|
755
|
-
export declare const ListApplicationsRequestFilterSensitiveLog: (
|
|
756
|
-
obj: ListApplicationsRequest
|
|
757
|
-
) => any;
|
|
758
671
|
export declare const ListApplicationsResponseFilterSensitiveLog: (
|
|
759
672
|
obj: ListApplicationsResponse
|
|
760
673
|
) => any;
|
|
761
|
-
export declare const ListEnvironmentsRequestFilterSensitiveLog: (
|
|
762
|
-
obj: ListEnvironmentsRequest
|
|
763
|
-
) => any;
|
|
764
674
|
export declare const ListEnvironmentsResponseFilterSensitiveLog: (
|
|
765
675
|
obj: ListEnvironmentsResponse
|
|
766
676
|
) => any;
|
|
767
|
-
export declare const ListEnvironmentVpcsRequestFilterSensitiveLog: (
|
|
768
|
-
obj: ListEnvironmentVpcsRequest
|
|
769
|
-
) => any;
|
|
770
|
-
export declare const ListEnvironmentVpcsResponseFilterSensitiveLog: (
|
|
771
|
-
obj: ListEnvironmentVpcsResponse
|
|
772
|
-
) => any;
|
|
773
|
-
export declare const ListRoutesRequestFilterSensitiveLog: (
|
|
774
|
-
obj: ListRoutesRequest
|
|
775
|
-
) => any;
|
|
776
677
|
export declare const RouteSummaryFilterSensitiveLog: (obj: RouteSummary) => any;
|
|
777
678
|
export declare const ListRoutesResponseFilterSensitiveLog: (
|
|
778
679
|
obj: ListRoutesResponse
|
|
779
680
|
) => any;
|
|
780
|
-
export declare const ListServicesRequestFilterSensitiveLog: (
|
|
781
|
-
obj: ListServicesRequest
|
|
782
|
-
) => any;
|
|
783
|
-
export declare const UrlEndpointSummaryFilterSensitiveLog: (
|
|
784
|
-
obj: UrlEndpointSummary
|
|
785
|
-
) => any;
|
|
786
681
|
export declare const ServiceSummaryFilterSensitiveLog: (
|
|
787
682
|
obj: ServiceSummary
|
|
788
683
|
) => any;
|
|
789
684
|
export declare const ListServicesResponseFilterSensitiveLog: (
|
|
790
685
|
obj: ListServicesResponse
|
|
791
686
|
) => any;
|
|
792
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
793
|
-
obj: ListTagsForResourceRequest
|
|
794
|
-
) => any;
|
|
795
687
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
796
688
|
obj: ListTagsForResourceResponse
|
|
797
689
|
) => any;
|
|
798
|
-
export declare const PutResourcePolicyRequestFilterSensitiveLog: (
|
|
799
|
-
obj: PutResourcePolicyRequest
|
|
800
|
-
) => any;
|
|
801
|
-
export declare const PutResourcePolicyResponseFilterSensitiveLog: (
|
|
802
|
-
obj: PutResourcePolicyResponse
|
|
803
|
-
) => any;
|
|
804
690
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
805
691
|
obj: TagResourceRequest
|
|
806
692
|
) => any;
|
|
807
|
-
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
808
|
-
obj: TagResourceResponse
|
|
809
|
-
) => any;
|
|
810
693
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
811
694
|
obj: UntagResourceRequest
|
|
812
695
|
) => any;
|
|
813
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
814
|
-
obj: UntagResourceResponse
|
|
815
|
-
) => any;
|
|
816
|
-
export declare const UpdateRouteRequestFilterSensitiveLog: (
|
|
817
|
-
obj: UpdateRouteRequest
|
|
818
|
-
) => any;
|
|
819
|
-
export declare const UpdateRouteResponseFilterSensitiveLog: (
|
|
820
|
-
obj: UpdateRouteResponse
|
|
821
|
-
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migration-hub-refactor-spaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migration Hub Refactor Spaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo migration-hub-refactor-spaces"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|