@aws-sdk/client-migration-hub-refactor-spaces 3.936.0 → 3.940.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 +108 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +94 -0
- package/dist-es/models/models_0.js +1 -94
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +198 -0
- package/dist-types/models/models_0.d.ts +1 -198
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +114 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -114
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -1659,6 +1659,101 @@ const paginateListRoutes = core.createPaginator(MigrationHubRefactorSpacesClient
|
|
|
1659
1659
|
|
|
1660
1660
|
const paginateListServices = core.createPaginator(MigrationHubRefactorSpacesClient, ListServicesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1661
1661
|
|
|
1662
|
+
const ApiGatewayEndpointType = {
|
|
1663
|
+
PRIVATE: "PRIVATE",
|
|
1664
|
+
REGIONAL: "REGIONAL",
|
|
1665
|
+
};
|
|
1666
|
+
const ApplicationState = {
|
|
1667
|
+
ACTIVE: "ACTIVE",
|
|
1668
|
+
CREATING: "CREATING",
|
|
1669
|
+
DELETING: "DELETING",
|
|
1670
|
+
FAILED: "FAILED",
|
|
1671
|
+
UPDATING: "UPDATING",
|
|
1672
|
+
};
|
|
1673
|
+
const ErrorCode = {
|
|
1674
|
+
INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE",
|
|
1675
|
+
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
1676
|
+
REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED",
|
|
1677
|
+
RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE",
|
|
1678
|
+
RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE",
|
|
1679
|
+
RESOURCE_IN_USE: "RESOURCE_IN_USE",
|
|
1680
|
+
RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED",
|
|
1681
|
+
RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",
|
|
1682
|
+
RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE",
|
|
1683
|
+
RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE",
|
|
1684
|
+
SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
|
|
1685
|
+
STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE",
|
|
1686
|
+
};
|
|
1687
|
+
const ErrorResourceType = {
|
|
1688
|
+
API_GATEWAY: "API_GATEWAY",
|
|
1689
|
+
APPLICATION: "APPLICATION",
|
|
1690
|
+
ENVIRONMENT: "ENVIRONMENT",
|
|
1691
|
+
IAM_ROLE: "IAM_ROLE",
|
|
1692
|
+
LAMBDA: "LAMBDA",
|
|
1693
|
+
LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER",
|
|
1694
|
+
NLB: "NLB",
|
|
1695
|
+
RESOURCE_SHARE: "RESOURCE_SHARE",
|
|
1696
|
+
ROUTE: "ROUTE",
|
|
1697
|
+
ROUTE_TABLE: "ROUTE_TABLE",
|
|
1698
|
+
SECURITY_GROUP: "SECURITY_GROUP",
|
|
1699
|
+
SERVICE: "SERVICE",
|
|
1700
|
+
SUBNET: "SUBNET",
|
|
1701
|
+
TARGET_GROUP: "TARGET_GROUP",
|
|
1702
|
+
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
1703
|
+
TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT",
|
|
1704
|
+
VPC: "VPC",
|
|
1705
|
+
VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION",
|
|
1706
|
+
VPC_LINK: "VPC_LINK",
|
|
1707
|
+
};
|
|
1708
|
+
const ProxyType = {
|
|
1709
|
+
API_GATEWAY: "API_GATEWAY",
|
|
1710
|
+
};
|
|
1711
|
+
const NetworkFabricType = {
|
|
1712
|
+
NONE: "NONE",
|
|
1713
|
+
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
1714
|
+
};
|
|
1715
|
+
const EnvironmentState = {
|
|
1716
|
+
ACTIVE: "ACTIVE",
|
|
1717
|
+
CREATING: "CREATING",
|
|
1718
|
+
DELETING: "DELETING",
|
|
1719
|
+
FAILED: "FAILED",
|
|
1720
|
+
};
|
|
1721
|
+
const RouteActivationState = {
|
|
1722
|
+
ACTIVE: "ACTIVE",
|
|
1723
|
+
INACTIVE: "INACTIVE",
|
|
1724
|
+
};
|
|
1725
|
+
const RouteType = {
|
|
1726
|
+
DEFAULT: "DEFAULT",
|
|
1727
|
+
URI_PATH: "URI_PATH",
|
|
1728
|
+
};
|
|
1729
|
+
const HttpMethod = {
|
|
1730
|
+
DELETE: "DELETE",
|
|
1731
|
+
GET: "GET",
|
|
1732
|
+
HEAD: "HEAD",
|
|
1733
|
+
OPTIONS: "OPTIONS",
|
|
1734
|
+
PATCH: "PATCH",
|
|
1735
|
+
POST: "POST",
|
|
1736
|
+
PUT: "PUT",
|
|
1737
|
+
};
|
|
1738
|
+
const RouteState = {
|
|
1739
|
+
ACTIVE: "ACTIVE",
|
|
1740
|
+
CREATING: "CREATING",
|
|
1741
|
+
DELETING: "DELETING",
|
|
1742
|
+
FAILED: "FAILED",
|
|
1743
|
+
INACTIVE: "INACTIVE",
|
|
1744
|
+
UPDATING: "UPDATING",
|
|
1745
|
+
};
|
|
1746
|
+
const ServiceEndpointType = {
|
|
1747
|
+
LAMBDA: "LAMBDA",
|
|
1748
|
+
URL: "URL",
|
|
1749
|
+
};
|
|
1750
|
+
const ServiceState = {
|
|
1751
|
+
ACTIVE: "ACTIVE",
|
|
1752
|
+
CREATING: "CREATING",
|
|
1753
|
+
DELETING: "DELETING",
|
|
1754
|
+
FAILED: "FAILED",
|
|
1755
|
+
};
|
|
1756
|
+
|
|
1662
1757
|
Object.defineProperty(exports, "$Command", {
|
|
1663
1758
|
enumerable: true,
|
|
1664
1759
|
get: function () { return smithyClient.Command; }
|
|
@@ -1668,6 +1763,8 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1668
1763
|
get: function () { return smithyClient.Client; }
|
|
1669
1764
|
});
|
|
1670
1765
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1766
|
+
exports.ApiGatewayEndpointType = ApiGatewayEndpointType;
|
|
1767
|
+
exports.ApplicationState = ApplicationState;
|
|
1671
1768
|
exports.ConflictException = ConflictException$1;
|
|
1672
1769
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1673
1770
|
exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
|
|
@@ -1678,11 +1775,15 @@ exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
|
|
|
1678
1775
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
1679
1776
|
exports.DeleteRouteCommand = DeleteRouteCommand;
|
|
1680
1777
|
exports.DeleteServiceCommand = DeleteServiceCommand;
|
|
1778
|
+
exports.EnvironmentState = EnvironmentState;
|
|
1779
|
+
exports.ErrorCode = ErrorCode;
|
|
1780
|
+
exports.ErrorResourceType = ErrorResourceType;
|
|
1681
1781
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1682
1782
|
exports.GetEnvironmentCommand = GetEnvironmentCommand;
|
|
1683
1783
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
1684
1784
|
exports.GetRouteCommand = GetRouteCommand;
|
|
1685
1785
|
exports.GetServiceCommand = GetServiceCommand;
|
|
1786
|
+
exports.HttpMethod = HttpMethod;
|
|
1686
1787
|
exports.InternalServerException = InternalServerException$1;
|
|
1687
1788
|
exports.InvalidResourcePolicyException = InvalidResourcePolicyException$1;
|
|
1688
1789
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
@@ -1694,9 +1795,16 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
|
1694
1795
|
exports.MigrationHubRefactorSpaces = MigrationHubRefactorSpaces;
|
|
1695
1796
|
exports.MigrationHubRefactorSpacesClient = MigrationHubRefactorSpacesClient;
|
|
1696
1797
|
exports.MigrationHubRefactorSpacesServiceException = MigrationHubRefactorSpacesServiceException$1;
|
|
1798
|
+
exports.NetworkFabricType = NetworkFabricType;
|
|
1799
|
+
exports.ProxyType = ProxyType;
|
|
1697
1800
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
1698
1801
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1802
|
+
exports.RouteActivationState = RouteActivationState;
|
|
1803
|
+
exports.RouteState = RouteState;
|
|
1804
|
+
exports.RouteType = RouteType;
|
|
1805
|
+
exports.ServiceEndpointType = ServiceEndpointType;
|
|
1699
1806
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1807
|
+
exports.ServiceState = ServiceState;
|
|
1700
1808
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1701
1809
|
exports.ThrottlingException = ThrottlingException$1;
|
|
1702
1810
|
exports.UntagResourceCommand = UntagResourceCommand;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./MigrationHubRefactorSpacesClient";
|
|
|
2
2
|
export * from "./MigrationHubRefactorSpaces";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { MigrationHubRefactorSpacesServiceException } from "./models/MigrationHubRefactorSpacesServiceException";
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
export const ApiGatewayEndpointType = {
|
|
2
|
+
PRIVATE: "PRIVATE",
|
|
3
|
+
REGIONAL: "REGIONAL",
|
|
4
|
+
};
|
|
5
|
+
export const ApplicationState = {
|
|
6
|
+
ACTIVE: "ACTIVE",
|
|
7
|
+
CREATING: "CREATING",
|
|
8
|
+
DELETING: "DELETING",
|
|
9
|
+
FAILED: "FAILED",
|
|
10
|
+
UPDATING: "UPDATING",
|
|
11
|
+
};
|
|
12
|
+
export const ErrorCode = {
|
|
13
|
+
INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE",
|
|
14
|
+
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
15
|
+
REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED",
|
|
16
|
+
RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE",
|
|
17
|
+
RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE",
|
|
18
|
+
RESOURCE_IN_USE: "RESOURCE_IN_USE",
|
|
19
|
+
RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED",
|
|
20
|
+
RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",
|
|
21
|
+
RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE",
|
|
22
|
+
RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE",
|
|
23
|
+
SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
|
|
24
|
+
STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE",
|
|
25
|
+
};
|
|
26
|
+
export const ErrorResourceType = {
|
|
27
|
+
API_GATEWAY: "API_GATEWAY",
|
|
28
|
+
APPLICATION: "APPLICATION",
|
|
29
|
+
ENVIRONMENT: "ENVIRONMENT",
|
|
30
|
+
IAM_ROLE: "IAM_ROLE",
|
|
31
|
+
LAMBDA: "LAMBDA",
|
|
32
|
+
LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER",
|
|
33
|
+
NLB: "NLB",
|
|
34
|
+
RESOURCE_SHARE: "RESOURCE_SHARE",
|
|
35
|
+
ROUTE: "ROUTE",
|
|
36
|
+
ROUTE_TABLE: "ROUTE_TABLE",
|
|
37
|
+
SECURITY_GROUP: "SECURITY_GROUP",
|
|
38
|
+
SERVICE: "SERVICE",
|
|
39
|
+
SUBNET: "SUBNET",
|
|
40
|
+
TARGET_GROUP: "TARGET_GROUP",
|
|
41
|
+
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
42
|
+
TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT",
|
|
43
|
+
VPC: "VPC",
|
|
44
|
+
VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION",
|
|
45
|
+
VPC_LINK: "VPC_LINK",
|
|
46
|
+
};
|
|
47
|
+
export const ProxyType = {
|
|
48
|
+
API_GATEWAY: "API_GATEWAY",
|
|
49
|
+
};
|
|
50
|
+
export const NetworkFabricType = {
|
|
51
|
+
NONE: "NONE",
|
|
52
|
+
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
53
|
+
};
|
|
54
|
+
export const EnvironmentState = {
|
|
55
|
+
ACTIVE: "ACTIVE",
|
|
56
|
+
CREATING: "CREATING",
|
|
57
|
+
DELETING: "DELETING",
|
|
58
|
+
FAILED: "FAILED",
|
|
59
|
+
};
|
|
60
|
+
export const RouteActivationState = {
|
|
61
|
+
ACTIVE: "ACTIVE",
|
|
62
|
+
INACTIVE: "INACTIVE",
|
|
63
|
+
};
|
|
64
|
+
export const RouteType = {
|
|
65
|
+
DEFAULT: "DEFAULT",
|
|
66
|
+
URI_PATH: "URI_PATH",
|
|
67
|
+
};
|
|
68
|
+
export const HttpMethod = {
|
|
69
|
+
DELETE: "DELETE",
|
|
70
|
+
GET: "GET",
|
|
71
|
+
HEAD: "HEAD",
|
|
72
|
+
OPTIONS: "OPTIONS",
|
|
73
|
+
PATCH: "PATCH",
|
|
74
|
+
POST: "POST",
|
|
75
|
+
PUT: "PUT",
|
|
76
|
+
};
|
|
77
|
+
export const RouteState = {
|
|
78
|
+
ACTIVE: "ACTIVE",
|
|
79
|
+
CREATING: "CREATING",
|
|
80
|
+
DELETING: "DELETING",
|
|
81
|
+
FAILED: "FAILED",
|
|
82
|
+
INACTIVE: "INACTIVE",
|
|
83
|
+
UPDATING: "UPDATING",
|
|
84
|
+
};
|
|
85
|
+
export const ServiceEndpointType = {
|
|
86
|
+
LAMBDA: "LAMBDA",
|
|
87
|
+
URL: "URL",
|
|
88
|
+
};
|
|
89
|
+
export const ServiceState = {
|
|
90
|
+
ACTIVE: "ACTIVE",
|
|
91
|
+
CREATING: "CREATING",
|
|
92
|
+
DELETING: "DELETING",
|
|
93
|
+
FAILED: "FAILED",
|
|
94
|
+
};
|
|
@@ -1,94 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
PRIVATE: "PRIVATE",
|
|
3
|
-
REGIONAL: "REGIONAL",
|
|
4
|
-
};
|
|
5
|
-
export const ApplicationState = {
|
|
6
|
-
ACTIVE: "ACTIVE",
|
|
7
|
-
CREATING: "CREATING",
|
|
8
|
-
DELETING: "DELETING",
|
|
9
|
-
FAILED: "FAILED",
|
|
10
|
-
UPDATING: "UPDATING",
|
|
11
|
-
};
|
|
12
|
-
export const ErrorCode = {
|
|
13
|
-
INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE",
|
|
14
|
-
NOT_AUTHORIZED: "NOT_AUTHORIZED",
|
|
15
|
-
REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED",
|
|
16
|
-
RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE",
|
|
17
|
-
RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE",
|
|
18
|
-
RESOURCE_IN_USE: "RESOURCE_IN_USE",
|
|
19
|
-
RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED",
|
|
20
|
-
RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",
|
|
21
|
-
RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE",
|
|
22
|
-
RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE",
|
|
23
|
-
SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE",
|
|
24
|
-
STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE",
|
|
25
|
-
};
|
|
26
|
-
export const ErrorResourceType = {
|
|
27
|
-
API_GATEWAY: "API_GATEWAY",
|
|
28
|
-
APPLICATION: "APPLICATION",
|
|
29
|
-
ENVIRONMENT: "ENVIRONMENT",
|
|
30
|
-
IAM_ROLE: "IAM_ROLE",
|
|
31
|
-
LAMBDA: "LAMBDA",
|
|
32
|
-
LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER",
|
|
33
|
-
NLB: "NLB",
|
|
34
|
-
RESOURCE_SHARE: "RESOURCE_SHARE",
|
|
35
|
-
ROUTE: "ROUTE",
|
|
36
|
-
ROUTE_TABLE: "ROUTE_TABLE",
|
|
37
|
-
SECURITY_GROUP: "SECURITY_GROUP",
|
|
38
|
-
SERVICE: "SERVICE",
|
|
39
|
-
SUBNET: "SUBNET",
|
|
40
|
-
TARGET_GROUP: "TARGET_GROUP",
|
|
41
|
-
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
42
|
-
TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT",
|
|
43
|
-
VPC: "VPC",
|
|
44
|
-
VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION",
|
|
45
|
-
VPC_LINK: "VPC_LINK",
|
|
46
|
-
};
|
|
47
|
-
export const ProxyType = {
|
|
48
|
-
API_GATEWAY: "API_GATEWAY",
|
|
49
|
-
};
|
|
50
|
-
export const NetworkFabricType = {
|
|
51
|
-
NONE: "NONE",
|
|
52
|
-
TRANSIT_GATEWAY: "TRANSIT_GATEWAY",
|
|
53
|
-
};
|
|
54
|
-
export const EnvironmentState = {
|
|
55
|
-
ACTIVE: "ACTIVE",
|
|
56
|
-
CREATING: "CREATING",
|
|
57
|
-
DELETING: "DELETING",
|
|
58
|
-
FAILED: "FAILED",
|
|
59
|
-
};
|
|
60
|
-
export const RouteActivationState = {
|
|
61
|
-
ACTIVE: "ACTIVE",
|
|
62
|
-
INACTIVE: "INACTIVE",
|
|
63
|
-
};
|
|
64
|
-
export const RouteType = {
|
|
65
|
-
DEFAULT: "DEFAULT",
|
|
66
|
-
URI_PATH: "URI_PATH",
|
|
67
|
-
};
|
|
68
|
-
export const HttpMethod = {
|
|
69
|
-
DELETE: "DELETE",
|
|
70
|
-
GET: "GET",
|
|
71
|
-
HEAD: "HEAD",
|
|
72
|
-
OPTIONS: "OPTIONS",
|
|
73
|
-
PATCH: "PATCH",
|
|
74
|
-
POST: "POST",
|
|
75
|
-
PUT: "PUT",
|
|
76
|
-
};
|
|
77
|
-
export const RouteState = {
|
|
78
|
-
ACTIVE: "ACTIVE",
|
|
79
|
-
CREATING: "CREATING",
|
|
80
|
-
DELETING: "DELETING",
|
|
81
|
-
FAILED: "FAILED",
|
|
82
|
-
INACTIVE: "INACTIVE",
|
|
83
|
-
UPDATING: "UPDATING",
|
|
84
|
-
};
|
|
85
|
-
export const ServiceEndpointType = {
|
|
86
|
-
LAMBDA: "LAMBDA",
|
|
87
|
-
URL: "URL",
|
|
88
|
-
};
|
|
89
|
-
export const ServiceState = {
|
|
90
|
-
ACTIVE: "ACTIVE",
|
|
91
|
-
CREATING: "CREATING",
|
|
92
|
-
DELETING: "DELETING",
|
|
93
|
-
FAILED: "FAILED",
|
|
94
|
-
};
|
|
1
|
+
export {};
|
package/dist-types/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
17
17
|
export type { MigrationHubRefactorSpacesExtensionConfiguration } from "./extensionConfiguration";
|
|
18
18
|
export * from "./commands";
|
|
19
19
|
export * from "./pagination";
|
|
20
|
+
export * from "./models/enums";
|
|
20
21
|
export * from "./models/errors";
|
|
21
22
|
export type * from "./models/models_0";
|
|
22
23
|
export { MigrationHubRefactorSpacesServiceException } from "./models/MigrationHubRefactorSpacesServiceException";
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ApiGatewayEndpointType: {
|
|
6
|
+
readonly PRIVATE: "PRIVATE";
|
|
7
|
+
readonly REGIONAL: "REGIONAL";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type ApiGatewayEndpointType = (typeof ApiGatewayEndpointType)[keyof typeof ApiGatewayEndpointType];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const ApplicationState: {
|
|
18
|
+
readonly ACTIVE: "ACTIVE";
|
|
19
|
+
readonly CREATING: "CREATING";
|
|
20
|
+
readonly DELETING: "DELETING";
|
|
21
|
+
readonly FAILED: "FAILED";
|
|
22
|
+
readonly UPDATING: "UPDATING";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type ApplicationState = (typeof ApplicationState)[keyof typeof ApplicationState];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const ErrorCode: {
|
|
33
|
+
readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE";
|
|
34
|
+
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
35
|
+
readonly REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED";
|
|
36
|
+
readonly RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE";
|
|
37
|
+
readonly RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE";
|
|
38
|
+
readonly RESOURCE_IN_USE: "RESOURCE_IN_USE";
|
|
39
|
+
readonly RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED";
|
|
40
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
41
|
+
readonly RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE";
|
|
42
|
+
readonly RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE";
|
|
43
|
+
readonly SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE";
|
|
44
|
+
readonly STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE";
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
* @enum
|
|
53
|
+
*/
|
|
54
|
+
export declare const ErrorResourceType: {
|
|
55
|
+
readonly API_GATEWAY: "API_GATEWAY";
|
|
56
|
+
readonly APPLICATION: "APPLICATION";
|
|
57
|
+
readonly ENVIRONMENT: "ENVIRONMENT";
|
|
58
|
+
readonly IAM_ROLE: "IAM_ROLE";
|
|
59
|
+
readonly LAMBDA: "LAMBDA";
|
|
60
|
+
readonly LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER";
|
|
61
|
+
readonly NLB: "NLB";
|
|
62
|
+
readonly RESOURCE_SHARE: "RESOURCE_SHARE";
|
|
63
|
+
readonly ROUTE: "ROUTE";
|
|
64
|
+
readonly ROUTE_TABLE: "ROUTE_TABLE";
|
|
65
|
+
readonly SECURITY_GROUP: "SECURITY_GROUP";
|
|
66
|
+
readonly SERVICE: "SERVICE";
|
|
67
|
+
readonly SUBNET: "SUBNET";
|
|
68
|
+
readonly TARGET_GROUP: "TARGET_GROUP";
|
|
69
|
+
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
70
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT";
|
|
71
|
+
readonly VPC: "VPC";
|
|
72
|
+
readonly VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION";
|
|
73
|
+
readonly VPC_LINK: "VPC_LINK";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type ErrorResourceType = (typeof ErrorResourceType)[keyof typeof ErrorResourceType];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* @enum
|
|
82
|
+
*/
|
|
83
|
+
export declare const ProxyType: {
|
|
84
|
+
readonly API_GATEWAY: "API_GATEWAY";
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export type ProxyType = (typeof ProxyType)[keyof typeof ProxyType];
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
* @enum
|
|
93
|
+
*/
|
|
94
|
+
export declare const NetworkFabricType: {
|
|
95
|
+
readonly NONE: "NONE";
|
|
96
|
+
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export type NetworkFabricType = (typeof NetworkFabricType)[keyof typeof NetworkFabricType];
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
* @enum
|
|
105
|
+
*/
|
|
106
|
+
export declare const EnvironmentState: {
|
|
107
|
+
readonly ACTIVE: "ACTIVE";
|
|
108
|
+
readonly CREATING: "CREATING";
|
|
109
|
+
readonly DELETING: "DELETING";
|
|
110
|
+
readonly FAILED: "FAILED";
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export type EnvironmentState = (typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
* @enum
|
|
119
|
+
*/
|
|
120
|
+
export declare const RouteActivationState: {
|
|
121
|
+
readonly ACTIVE: "ACTIVE";
|
|
122
|
+
readonly INACTIVE: "INACTIVE";
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
export type RouteActivationState = (typeof RouteActivationState)[keyof typeof RouteActivationState];
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
* @enum
|
|
131
|
+
*/
|
|
132
|
+
export declare const RouteType: {
|
|
133
|
+
readonly DEFAULT: "DEFAULT";
|
|
134
|
+
readonly URI_PATH: "URI_PATH";
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
* @enum
|
|
143
|
+
*/
|
|
144
|
+
export declare const HttpMethod: {
|
|
145
|
+
readonly DELETE: "DELETE";
|
|
146
|
+
readonly GET: "GET";
|
|
147
|
+
readonly HEAD: "HEAD";
|
|
148
|
+
readonly OPTIONS: "OPTIONS";
|
|
149
|
+
readonly PATCH: "PATCH";
|
|
150
|
+
readonly POST: "POST";
|
|
151
|
+
readonly PUT: "PUT";
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* @enum
|
|
160
|
+
*/
|
|
161
|
+
export declare const RouteState: {
|
|
162
|
+
readonly ACTIVE: "ACTIVE";
|
|
163
|
+
readonly CREATING: "CREATING";
|
|
164
|
+
readonly DELETING: "DELETING";
|
|
165
|
+
readonly FAILED: "FAILED";
|
|
166
|
+
readonly INACTIVE: "INACTIVE";
|
|
167
|
+
readonly UPDATING: "UPDATING";
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* @enum
|
|
176
|
+
*/
|
|
177
|
+
export declare const ServiceEndpointType: {
|
|
178
|
+
readonly LAMBDA: "LAMBDA";
|
|
179
|
+
readonly URL: "URL";
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
export type ServiceEndpointType = (typeof ServiceEndpointType)[keyof typeof ServiceEndpointType];
|
|
185
|
+
/**
|
|
186
|
+
* @public
|
|
187
|
+
* @enum
|
|
188
|
+
*/
|
|
189
|
+
export declare const ServiceState: {
|
|
190
|
+
readonly ACTIVE: "ACTIVE";
|
|
191
|
+
readonly CREATING: "CREATING";
|
|
192
|
+
readonly DELETING: "DELETING";
|
|
193
|
+
readonly FAILED: "FAILED";
|
|
194
|
+
};
|
|
195
|
+
/**
|
|
196
|
+
* @public
|
|
197
|
+
*/
|
|
198
|
+
export type ServiceState = (typeof ServiceState)[keyof typeof ServiceState];
|
|
@@ -1,15 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
* @public
|
|
3
|
-
* @enum
|
|
4
|
-
*/
|
|
5
|
-
export declare const ApiGatewayEndpointType: {
|
|
6
|
-
readonly PRIVATE: "PRIVATE";
|
|
7
|
-
readonly REGIONAL: "REGIONAL";
|
|
8
|
-
};
|
|
9
|
-
/**
|
|
10
|
-
* @public
|
|
11
|
-
*/
|
|
12
|
-
export type ApiGatewayEndpointType = (typeof ApiGatewayEndpointType)[keyof typeof ApiGatewayEndpointType];
|
|
1
|
+
import { ApiGatewayEndpointType, ApplicationState, EnvironmentState, ErrorCode, ErrorResourceType, HttpMethod, NetworkFabricType, ProxyType, RouteActivationState, RouteState, RouteType, ServiceEndpointType, ServiceState } from "./enums";
|
|
13
2
|
/**
|
|
14
3
|
* <p>A wrapper object holding the Amazon API Gateway proxy configuration. </p>
|
|
15
4
|
* @public
|
|
@@ -117,72 +106,6 @@ export interface ApiGatewayProxySummary {
|
|
|
117
106
|
*/
|
|
118
107
|
StageName?: string | undefined;
|
|
119
108
|
}
|
|
120
|
-
/**
|
|
121
|
-
* @public
|
|
122
|
-
* @enum
|
|
123
|
-
*/
|
|
124
|
-
export declare const ApplicationState: {
|
|
125
|
-
readonly ACTIVE: "ACTIVE";
|
|
126
|
-
readonly CREATING: "CREATING";
|
|
127
|
-
readonly DELETING: "DELETING";
|
|
128
|
-
readonly FAILED: "FAILED";
|
|
129
|
-
readonly UPDATING: "UPDATING";
|
|
130
|
-
};
|
|
131
|
-
/**
|
|
132
|
-
* @public
|
|
133
|
-
*/
|
|
134
|
-
export type ApplicationState = (typeof ApplicationState)[keyof typeof ApplicationState];
|
|
135
|
-
/**
|
|
136
|
-
* @public
|
|
137
|
-
* @enum
|
|
138
|
-
*/
|
|
139
|
-
export declare const ErrorCode: {
|
|
140
|
-
readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE";
|
|
141
|
-
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
142
|
-
readonly REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED";
|
|
143
|
-
readonly RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE";
|
|
144
|
-
readonly RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE";
|
|
145
|
-
readonly RESOURCE_IN_USE: "RESOURCE_IN_USE";
|
|
146
|
-
readonly RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED";
|
|
147
|
-
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
148
|
-
readonly RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE";
|
|
149
|
-
readonly RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE";
|
|
150
|
-
readonly SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE";
|
|
151
|
-
readonly STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE";
|
|
152
|
-
};
|
|
153
|
-
/**
|
|
154
|
-
* @public
|
|
155
|
-
*/
|
|
156
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
157
|
-
/**
|
|
158
|
-
* @public
|
|
159
|
-
* @enum
|
|
160
|
-
*/
|
|
161
|
-
export declare const ErrorResourceType: {
|
|
162
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
163
|
-
readonly APPLICATION: "APPLICATION";
|
|
164
|
-
readonly ENVIRONMENT: "ENVIRONMENT";
|
|
165
|
-
readonly IAM_ROLE: "IAM_ROLE";
|
|
166
|
-
readonly LAMBDA: "LAMBDA";
|
|
167
|
-
readonly LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER";
|
|
168
|
-
readonly NLB: "NLB";
|
|
169
|
-
readonly RESOURCE_SHARE: "RESOURCE_SHARE";
|
|
170
|
-
readonly ROUTE: "ROUTE";
|
|
171
|
-
readonly ROUTE_TABLE: "ROUTE_TABLE";
|
|
172
|
-
readonly SECURITY_GROUP: "SECURITY_GROUP";
|
|
173
|
-
readonly SERVICE: "SERVICE";
|
|
174
|
-
readonly SUBNET: "SUBNET";
|
|
175
|
-
readonly TARGET_GROUP: "TARGET_GROUP";
|
|
176
|
-
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
177
|
-
readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT";
|
|
178
|
-
readonly VPC: "VPC";
|
|
179
|
-
readonly VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION";
|
|
180
|
-
readonly VPC_LINK: "VPC_LINK";
|
|
181
|
-
};
|
|
182
|
-
/**
|
|
183
|
-
* @public
|
|
184
|
-
*/
|
|
185
|
-
export type ErrorResourceType = (typeof ErrorResourceType)[keyof typeof ErrorResourceType];
|
|
186
109
|
/**
|
|
187
110
|
* <p>Error associated with a resource returned for a Get or List resource response. </p>
|
|
188
111
|
* @public
|
|
@@ -219,17 +142,6 @@ export interface ErrorResponse {
|
|
|
219
142
|
*/
|
|
220
143
|
AdditionalDetails?: Record<string, string> | undefined;
|
|
221
144
|
}
|
|
222
|
-
/**
|
|
223
|
-
* @public
|
|
224
|
-
* @enum
|
|
225
|
-
*/
|
|
226
|
-
export declare const ProxyType: {
|
|
227
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
228
|
-
};
|
|
229
|
-
/**
|
|
230
|
-
* @public
|
|
231
|
-
*/
|
|
232
|
-
export type ProxyType = (typeof ProxyType)[keyof typeof ProxyType];
|
|
233
145
|
/**
|
|
234
146
|
* <p>The list of <code>ApplicationSummary</code> objects. </p>
|
|
235
147
|
* @public
|
|
@@ -426,18 +338,6 @@ export interface CreateApplicationResponse {
|
|
|
426
338
|
*/
|
|
427
339
|
CreatedTime?: Date | undefined;
|
|
428
340
|
}
|
|
429
|
-
/**
|
|
430
|
-
* @public
|
|
431
|
-
* @enum
|
|
432
|
-
*/
|
|
433
|
-
export declare const NetworkFabricType: {
|
|
434
|
-
readonly NONE: "NONE";
|
|
435
|
-
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
436
|
-
};
|
|
437
|
-
/**
|
|
438
|
-
* @public
|
|
439
|
-
*/
|
|
440
|
-
export type NetworkFabricType = (typeof NetworkFabricType)[keyof typeof NetworkFabricType];
|
|
441
341
|
/**
|
|
442
342
|
* @public
|
|
443
343
|
*/
|
|
@@ -469,20 +369,6 @@ export interface CreateEnvironmentRequest {
|
|
|
469
369
|
*/
|
|
470
370
|
ClientToken?: string | undefined;
|
|
471
371
|
}
|
|
472
|
-
/**
|
|
473
|
-
* @public
|
|
474
|
-
* @enum
|
|
475
|
-
*/
|
|
476
|
-
export declare const EnvironmentState: {
|
|
477
|
-
readonly ACTIVE: "ACTIVE";
|
|
478
|
-
readonly CREATING: "CREATING";
|
|
479
|
-
readonly DELETING: "DELETING";
|
|
480
|
-
readonly FAILED: "FAILED";
|
|
481
|
-
};
|
|
482
|
-
/**
|
|
483
|
-
* @public
|
|
484
|
-
*/
|
|
485
|
-
export type EnvironmentState = (typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
486
372
|
/**
|
|
487
373
|
* @public
|
|
488
374
|
*/
|
|
@@ -538,18 +424,6 @@ export interface CreateEnvironmentResponse {
|
|
|
538
424
|
*/
|
|
539
425
|
CreatedTime?: Date | undefined;
|
|
540
426
|
}
|
|
541
|
-
/**
|
|
542
|
-
* @public
|
|
543
|
-
* @enum
|
|
544
|
-
*/
|
|
545
|
-
export declare const RouteActivationState: {
|
|
546
|
-
readonly ACTIVE: "ACTIVE";
|
|
547
|
-
readonly INACTIVE: "INACTIVE";
|
|
548
|
-
};
|
|
549
|
-
/**
|
|
550
|
-
* @public
|
|
551
|
-
*/
|
|
552
|
-
export type RouteActivationState = (typeof RouteActivationState)[keyof typeof RouteActivationState];
|
|
553
427
|
/**
|
|
554
428
|
* <p> The configuration for the default route type. </p>
|
|
555
429
|
* @public
|
|
@@ -562,35 +436,6 @@ export interface DefaultRouteInput {
|
|
|
562
436
|
*/
|
|
563
437
|
ActivationState?: RouteActivationState | undefined;
|
|
564
438
|
}
|
|
565
|
-
/**
|
|
566
|
-
* @public
|
|
567
|
-
* @enum
|
|
568
|
-
*/
|
|
569
|
-
export declare const RouteType: {
|
|
570
|
-
readonly DEFAULT: "DEFAULT";
|
|
571
|
-
readonly URI_PATH: "URI_PATH";
|
|
572
|
-
};
|
|
573
|
-
/**
|
|
574
|
-
* @public
|
|
575
|
-
*/
|
|
576
|
-
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
577
|
-
/**
|
|
578
|
-
* @public
|
|
579
|
-
* @enum
|
|
580
|
-
*/
|
|
581
|
-
export declare const HttpMethod: {
|
|
582
|
-
readonly DELETE: "DELETE";
|
|
583
|
-
readonly GET: "GET";
|
|
584
|
-
readonly HEAD: "HEAD";
|
|
585
|
-
readonly OPTIONS: "OPTIONS";
|
|
586
|
-
readonly PATCH: "PATCH";
|
|
587
|
-
readonly POST: "POST";
|
|
588
|
-
readonly PUT: "PUT";
|
|
589
|
-
};
|
|
590
|
-
/**
|
|
591
|
-
* @public
|
|
592
|
-
*/
|
|
593
|
-
export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];
|
|
594
439
|
/**
|
|
595
440
|
* <p>The configuration for the URI path route type. </p>
|
|
596
441
|
* @public
|
|
@@ -678,22 +523,6 @@ export interface CreateRouteRequest {
|
|
|
678
523
|
*/
|
|
679
524
|
ClientToken?: string | undefined;
|
|
680
525
|
}
|
|
681
|
-
/**
|
|
682
|
-
* @public
|
|
683
|
-
* @enum
|
|
684
|
-
*/
|
|
685
|
-
export declare const RouteState: {
|
|
686
|
-
readonly ACTIVE: "ACTIVE";
|
|
687
|
-
readonly CREATING: "CREATING";
|
|
688
|
-
readonly DELETING: "DELETING";
|
|
689
|
-
readonly FAILED: "FAILED";
|
|
690
|
-
readonly INACTIVE: "INACTIVE";
|
|
691
|
-
readonly UPDATING: "UPDATING";
|
|
692
|
-
};
|
|
693
|
-
/**
|
|
694
|
-
* @public
|
|
695
|
-
*/
|
|
696
|
-
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
697
526
|
/**
|
|
698
527
|
* @public
|
|
699
528
|
*/
|
|
@@ -767,18 +596,6 @@ export interface CreateRouteResponse {
|
|
|
767
596
|
*/
|
|
768
597
|
CreatedTime?: Date | undefined;
|
|
769
598
|
}
|
|
770
|
-
/**
|
|
771
|
-
* @public
|
|
772
|
-
* @enum
|
|
773
|
-
*/
|
|
774
|
-
export declare const ServiceEndpointType: {
|
|
775
|
-
readonly LAMBDA: "LAMBDA";
|
|
776
|
-
readonly URL: "URL";
|
|
777
|
-
};
|
|
778
|
-
/**
|
|
779
|
-
* @public
|
|
780
|
-
*/
|
|
781
|
-
export type ServiceEndpointType = (typeof ServiceEndpointType)[keyof typeof ServiceEndpointType];
|
|
782
599
|
/**
|
|
783
600
|
* <p>The input for the Lambda endpoint type. </p>
|
|
784
601
|
* @public
|
|
@@ -870,20 +687,6 @@ export interface CreateServiceRequest {
|
|
|
870
687
|
*/
|
|
871
688
|
ClientToken?: string | undefined;
|
|
872
689
|
}
|
|
873
|
-
/**
|
|
874
|
-
* @public
|
|
875
|
-
* @enum
|
|
876
|
-
*/
|
|
877
|
-
export declare const ServiceState: {
|
|
878
|
-
readonly ACTIVE: "ACTIVE";
|
|
879
|
-
readonly CREATING: "CREATING";
|
|
880
|
-
readonly DELETING: "DELETING";
|
|
881
|
-
readonly FAILED: "FAILED";
|
|
882
|
-
};
|
|
883
|
-
/**
|
|
884
|
-
* @public
|
|
885
|
-
*/
|
|
886
|
-
export type ServiceState = (typeof ServiceState)[keyof typeof ServiceState];
|
|
887
690
|
/**
|
|
888
691
|
* @public
|
|
889
692
|
*/
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { MigrationHubRefactorSpacesExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { MigrationHubRefactorSpacesServiceException } from "./models/MigrationHubRefactorSpacesServiceException";
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
export declare const ApiGatewayEndpointType: {
|
|
2
|
+
readonly PRIVATE: "PRIVATE";
|
|
3
|
+
readonly REGIONAL: "REGIONAL";
|
|
4
|
+
};
|
|
5
|
+
export type ApiGatewayEndpointType =
|
|
6
|
+
(typeof ApiGatewayEndpointType)[keyof typeof ApiGatewayEndpointType];
|
|
7
|
+
export declare const ApplicationState: {
|
|
8
|
+
readonly ACTIVE: "ACTIVE";
|
|
9
|
+
readonly CREATING: "CREATING";
|
|
10
|
+
readonly DELETING: "DELETING";
|
|
11
|
+
readonly FAILED: "FAILED";
|
|
12
|
+
readonly UPDATING: "UPDATING";
|
|
13
|
+
};
|
|
14
|
+
export type ApplicationState =
|
|
15
|
+
(typeof ApplicationState)[keyof typeof ApplicationState];
|
|
16
|
+
export declare const ErrorCode: {
|
|
17
|
+
readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE";
|
|
18
|
+
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
19
|
+
readonly REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED";
|
|
20
|
+
readonly RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE";
|
|
21
|
+
readonly RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE";
|
|
22
|
+
readonly RESOURCE_IN_USE: "RESOURCE_IN_USE";
|
|
23
|
+
readonly RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED";
|
|
24
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
25
|
+
readonly RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE";
|
|
26
|
+
readonly RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE";
|
|
27
|
+
readonly SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE";
|
|
28
|
+
readonly STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE";
|
|
29
|
+
};
|
|
30
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
31
|
+
export declare const ErrorResourceType: {
|
|
32
|
+
readonly API_GATEWAY: "API_GATEWAY";
|
|
33
|
+
readonly APPLICATION: "APPLICATION";
|
|
34
|
+
readonly ENVIRONMENT: "ENVIRONMENT";
|
|
35
|
+
readonly IAM_ROLE: "IAM_ROLE";
|
|
36
|
+
readonly LAMBDA: "LAMBDA";
|
|
37
|
+
readonly LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER";
|
|
38
|
+
readonly NLB: "NLB";
|
|
39
|
+
readonly RESOURCE_SHARE: "RESOURCE_SHARE";
|
|
40
|
+
readonly ROUTE: "ROUTE";
|
|
41
|
+
readonly ROUTE_TABLE: "ROUTE_TABLE";
|
|
42
|
+
readonly SECURITY_GROUP: "SECURITY_GROUP";
|
|
43
|
+
readonly SERVICE: "SERVICE";
|
|
44
|
+
readonly SUBNET: "SUBNET";
|
|
45
|
+
readonly TARGET_GROUP: "TARGET_GROUP";
|
|
46
|
+
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
47
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT";
|
|
48
|
+
readonly VPC: "VPC";
|
|
49
|
+
readonly VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION";
|
|
50
|
+
readonly VPC_LINK: "VPC_LINK";
|
|
51
|
+
};
|
|
52
|
+
export type ErrorResourceType =
|
|
53
|
+
(typeof ErrorResourceType)[keyof typeof ErrorResourceType];
|
|
54
|
+
export declare const ProxyType: {
|
|
55
|
+
readonly API_GATEWAY: "API_GATEWAY";
|
|
56
|
+
};
|
|
57
|
+
export type ProxyType = (typeof ProxyType)[keyof typeof ProxyType];
|
|
58
|
+
export declare const NetworkFabricType: {
|
|
59
|
+
readonly NONE: "NONE";
|
|
60
|
+
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
61
|
+
};
|
|
62
|
+
export type NetworkFabricType =
|
|
63
|
+
(typeof NetworkFabricType)[keyof typeof NetworkFabricType];
|
|
64
|
+
export declare const EnvironmentState: {
|
|
65
|
+
readonly ACTIVE: "ACTIVE";
|
|
66
|
+
readonly CREATING: "CREATING";
|
|
67
|
+
readonly DELETING: "DELETING";
|
|
68
|
+
readonly FAILED: "FAILED";
|
|
69
|
+
};
|
|
70
|
+
export type EnvironmentState =
|
|
71
|
+
(typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
72
|
+
export declare const RouteActivationState: {
|
|
73
|
+
readonly ACTIVE: "ACTIVE";
|
|
74
|
+
readonly INACTIVE: "INACTIVE";
|
|
75
|
+
};
|
|
76
|
+
export type RouteActivationState =
|
|
77
|
+
(typeof RouteActivationState)[keyof typeof RouteActivationState];
|
|
78
|
+
export declare const RouteType: {
|
|
79
|
+
readonly DEFAULT: "DEFAULT";
|
|
80
|
+
readonly URI_PATH: "URI_PATH";
|
|
81
|
+
};
|
|
82
|
+
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
83
|
+
export declare const HttpMethod: {
|
|
84
|
+
readonly DELETE: "DELETE";
|
|
85
|
+
readonly GET: "GET";
|
|
86
|
+
readonly HEAD: "HEAD";
|
|
87
|
+
readonly OPTIONS: "OPTIONS";
|
|
88
|
+
readonly PATCH: "PATCH";
|
|
89
|
+
readonly POST: "POST";
|
|
90
|
+
readonly PUT: "PUT";
|
|
91
|
+
};
|
|
92
|
+
export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];
|
|
93
|
+
export declare const RouteState: {
|
|
94
|
+
readonly ACTIVE: "ACTIVE";
|
|
95
|
+
readonly CREATING: "CREATING";
|
|
96
|
+
readonly DELETING: "DELETING";
|
|
97
|
+
readonly FAILED: "FAILED";
|
|
98
|
+
readonly INACTIVE: "INACTIVE";
|
|
99
|
+
readonly UPDATING: "UPDATING";
|
|
100
|
+
};
|
|
101
|
+
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
102
|
+
export declare const ServiceEndpointType: {
|
|
103
|
+
readonly LAMBDA: "LAMBDA";
|
|
104
|
+
readonly URL: "URL";
|
|
105
|
+
};
|
|
106
|
+
export type ServiceEndpointType =
|
|
107
|
+
(typeof ServiceEndpointType)[keyof typeof ServiceEndpointType];
|
|
108
|
+
export declare const ServiceState: {
|
|
109
|
+
readonly ACTIVE: "ACTIVE";
|
|
110
|
+
readonly CREATING: "CREATING";
|
|
111
|
+
readonly DELETING: "DELETING";
|
|
112
|
+
readonly FAILED: "FAILED";
|
|
113
|
+
};
|
|
114
|
+
export type ServiceState = (typeof ServiceState)[keyof typeof ServiceState];
|
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ApiGatewayEndpointType,
|
|
3
|
+
ApplicationState,
|
|
4
|
+
EnvironmentState,
|
|
5
|
+
ErrorCode,
|
|
6
|
+
ErrorResourceType,
|
|
7
|
+
HttpMethod,
|
|
8
|
+
NetworkFabricType,
|
|
9
|
+
ProxyType,
|
|
10
|
+
RouteActivationState,
|
|
11
|
+
RouteState,
|
|
12
|
+
RouteType,
|
|
13
|
+
ServiceEndpointType,
|
|
14
|
+
ServiceState,
|
|
15
|
+
} from "./enums";
|
|
7
16
|
export interface ApiGatewayProxyConfig {
|
|
8
17
|
ProxyUrl?: string | undefined;
|
|
9
18
|
ApiGatewayId?: string | undefined;
|
|
@@ -26,53 +35,6 @@ export interface ApiGatewayProxySummary {
|
|
|
26
35
|
EndpointType?: ApiGatewayEndpointType | undefined;
|
|
27
36
|
StageName?: string | undefined;
|
|
28
37
|
}
|
|
29
|
-
export declare const ApplicationState: {
|
|
30
|
-
readonly ACTIVE: "ACTIVE";
|
|
31
|
-
readonly CREATING: "CREATING";
|
|
32
|
-
readonly DELETING: "DELETING";
|
|
33
|
-
readonly FAILED: "FAILED";
|
|
34
|
-
readonly UPDATING: "UPDATING";
|
|
35
|
-
};
|
|
36
|
-
export type ApplicationState =
|
|
37
|
-
(typeof ApplicationState)[keyof typeof ApplicationState];
|
|
38
|
-
export declare const ErrorCode: {
|
|
39
|
-
readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE";
|
|
40
|
-
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
41
|
-
readonly REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED";
|
|
42
|
-
readonly RESOURCE_CREATION_FAILURE: "RESOURCE_CREATION_FAILURE";
|
|
43
|
-
readonly RESOURCE_DELETION_FAILURE: "RESOURCE_DELETION_FAILURE";
|
|
44
|
-
readonly RESOURCE_IN_USE: "RESOURCE_IN_USE";
|
|
45
|
-
readonly RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED";
|
|
46
|
-
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
47
|
-
readonly RESOURCE_RETRIEVAL_FAILURE: "RESOURCE_RETRIEVAL_FAILURE";
|
|
48
|
-
readonly RESOURCE_UPDATE_FAILURE: "RESOURCE_UPDATE_FAILURE";
|
|
49
|
-
readonly SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE: "SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE";
|
|
50
|
-
readonly STATE_TRANSITION_FAILURE: "STATE_TRANSITION_FAILURE";
|
|
51
|
-
};
|
|
52
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
53
|
-
export declare const ErrorResourceType: {
|
|
54
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
55
|
-
readonly APPLICATION: "APPLICATION";
|
|
56
|
-
readonly ENVIRONMENT: "ENVIRONMENT";
|
|
57
|
-
readonly IAM_ROLE: "IAM_ROLE";
|
|
58
|
-
readonly LAMBDA: "LAMBDA";
|
|
59
|
-
readonly LOAD_BALANCER_LISTENER: "LOAD_BALANCER_LISTENER";
|
|
60
|
-
readonly NLB: "NLB";
|
|
61
|
-
readonly RESOURCE_SHARE: "RESOURCE_SHARE";
|
|
62
|
-
readonly ROUTE: "ROUTE";
|
|
63
|
-
readonly ROUTE_TABLE: "ROUTE_TABLE";
|
|
64
|
-
readonly SECURITY_GROUP: "SECURITY_GROUP";
|
|
65
|
-
readonly SERVICE: "SERVICE";
|
|
66
|
-
readonly SUBNET: "SUBNET";
|
|
67
|
-
readonly TARGET_GROUP: "TARGET_GROUP";
|
|
68
|
-
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
69
|
-
readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT";
|
|
70
|
-
readonly VPC: "VPC";
|
|
71
|
-
readonly VPC_ENDPOINT_SERVICE_CONFIGURATION: "VPC_ENDPOINT_SERVICE_CONFIGURATION";
|
|
72
|
-
readonly VPC_LINK: "VPC_LINK";
|
|
73
|
-
};
|
|
74
|
-
export type ErrorResourceType =
|
|
75
|
-
(typeof ErrorResourceType)[keyof typeof ErrorResourceType];
|
|
76
38
|
export interface ErrorResponse {
|
|
77
39
|
Code?: ErrorCode | undefined;
|
|
78
40
|
Message?: string | undefined;
|
|
@@ -81,10 +43,6 @@ export interface ErrorResponse {
|
|
|
81
43
|
ResourceType?: ErrorResourceType | undefined;
|
|
82
44
|
AdditionalDetails?: Record<string, string> | undefined;
|
|
83
45
|
}
|
|
84
|
-
export declare const ProxyType: {
|
|
85
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
86
|
-
};
|
|
87
|
-
export type ProxyType = (typeof ProxyType)[keyof typeof ProxyType];
|
|
88
46
|
export interface ApplicationSummary {
|
|
89
47
|
Name?: string | undefined;
|
|
90
48
|
Arn?: string | undefined;
|
|
@@ -125,12 +83,6 @@ export interface CreateApplicationResponse {
|
|
|
125
83
|
LastUpdatedTime?: Date | undefined;
|
|
126
84
|
CreatedTime?: Date | undefined;
|
|
127
85
|
}
|
|
128
|
-
export declare const NetworkFabricType: {
|
|
129
|
-
readonly NONE: "NONE";
|
|
130
|
-
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
131
|
-
};
|
|
132
|
-
export type NetworkFabricType =
|
|
133
|
-
(typeof NetworkFabricType)[keyof typeof NetworkFabricType];
|
|
134
86
|
export interface CreateEnvironmentRequest {
|
|
135
87
|
Name: string | undefined;
|
|
136
88
|
Description?: string | undefined;
|
|
@@ -138,14 +90,6 @@ export interface CreateEnvironmentRequest {
|
|
|
138
90
|
Tags?: Record<string, string> | undefined;
|
|
139
91
|
ClientToken?: string | undefined;
|
|
140
92
|
}
|
|
141
|
-
export declare const EnvironmentState: {
|
|
142
|
-
readonly ACTIVE: "ACTIVE";
|
|
143
|
-
readonly CREATING: "CREATING";
|
|
144
|
-
readonly DELETING: "DELETING";
|
|
145
|
-
readonly FAILED: "FAILED";
|
|
146
|
-
};
|
|
147
|
-
export type EnvironmentState =
|
|
148
|
-
(typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
149
93
|
export interface CreateEnvironmentResponse {
|
|
150
94
|
Name?: string | undefined;
|
|
151
95
|
Arn?: string | undefined;
|
|
@@ -158,30 +102,9 @@ export interface CreateEnvironmentResponse {
|
|
|
158
102
|
LastUpdatedTime?: Date | undefined;
|
|
159
103
|
CreatedTime?: Date | undefined;
|
|
160
104
|
}
|
|
161
|
-
export declare const RouteActivationState: {
|
|
162
|
-
readonly ACTIVE: "ACTIVE";
|
|
163
|
-
readonly INACTIVE: "INACTIVE";
|
|
164
|
-
};
|
|
165
|
-
export type RouteActivationState =
|
|
166
|
-
(typeof RouteActivationState)[keyof typeof RouteActivationState];
|
|
167
105
|
export interface DefaultRouteInput {
|
|
168
106
|
ActivationState?: RouteActivationState | undefined;
|
|
169
107
|
}
|
|
170
|
-
export declare const RouteType: {
|
|
171
|
-
readonly DEFAULT: "DEFAULT";
|
|
172
|
-
readonly URI_PATH: "URI_PATH";
|
|
173
|
-
};
|
|
174
|
-
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
175
|
-
export declare const HttpMethod: {
|
|
176
|
-
readonly DELETE: "DELETE";
|
|
177
|
-
readonly GET: "GET";
|
|
178
|
-
readonly HEAD: "HEAD";
|
|
179
|
-
readonly OPTIONS: "OPTIONS";
|
|
180
|
-
readonly PATCH: "PATCH";
|
|
181
|
-
readonly POST: "POST";
|
|
182
|
-
readonly PUT: "PUT";
|
|
183
|
-
};
|
|
184
|
-
export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];
|
|
185
108
|
export interface UriPathRouteInput {
|
|
186
109
|
SourcePath: string | undefined;
|
|
187
110
|
ActivationState: RouteActivationState | undefined;
|
|
@@ -199,15 +122,6 @@ export interface CreateRouteRequest {
|
|
|
199
122
|
Tags?: Record<string, string> | undefined;
|
|
200
123
|
ClientToken?: string | undefined;
|
|
201
124
|
}
|
|
202
|
-
export declare const RouteState: {
|
|
203
|
-
readonly ACTIVE: "ACTIVE";
|
|
204
|
-
readonly CREATING: "CREATING";
|
|
205
|
-
readonly DELETING: "DELETING";
|
|
206
|
-
readonly FAILED: "FAILED";
|
|
207
|
-
readonly INACTIVE: "INACTIVE";
|
|
208
|
-
readonly UPDATING: "UPDATING";
|
|
209
|
-
};
|
|
210
|
-
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
211
125
|
export interface CreateRouteResponse {
|
|
212
126
|
RouteId?: string | undefined;
|
|
213
127
|
Arn?: string | undefined;
|
|
@@ -222,12 +136,6 @@ export interface CreateRouteResponse {
|
|
|
222
136
|
LastUpdatedTime?: Date | undefined;
|
|
223
137
|
CreatedTime?: Date | undefined;
|
|
224
138
|
}
|
|
225
|
-
export declare const ServiceEndpointType: {
|
|
226
|
-
readonly LAMBDA: "LAMBDA";
|
|
227
|
-
readonly URL: "URL";
|
|
228
|
-
};
|
|
229
|
-
export type ServiceEndpointType =
|
|
230
|
-
(typeof ServiceEndpointType)[keyof typeof ServiceEndpointType];
|
|
231
139
|
export interface LambdaEndpointInput {
|
|
232
140
|
Arn: string | undefined;
|
|
233
141
|
}
|
|
@@ -247,13 +155,6 @@ export interface CreateServiceRequest {
|
|
|
247
155
|
Tags?: Record<string, string> | undefined;
|
|
248
156
|
ClientToken?: string | undefined;
|
|
249
157
|
}
|
|
250
|
-
export declare const ServiceState: {
|
|
251
|
-
readonly ACTIVE: "ACTIVE";
|
|
252
|
-
readonly CREATING: "CREATING";
|
|
253
|
-
readonly DELETING: "DELETING";
|
|
254
|
-
readonly FAILED: "FAILED";
|
|
255
|
-
};
|
|
256
|
-
export type ServiceState = (typeof ServiceState)[keyof typeof ServiceState];
|
|
257
158
|
export interface CreateServiceResponse {
|
|
258
159
|
ServiceId?: string | undefined;
|
|
259
160
|
Name?: string | undefined;
|
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.940.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-migration-hub-refactor-spaces",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.940.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.940.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.940.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.940.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|