@aws-sdk/client-ec2 3.658.1 → 3.664.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/README.md +8 -0
- package/dist-cjs/index.js +89 -19
- package/dist-cjs/runtimeConfig.js +1 -0
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/ModifyInstanceCpuOptionsCommand.js +22 -0
- package/dist-es/commands/ModifyVpnConnectionCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_6.js +0 -5
- package/dist-es/models/models_7.js +4 -0
- package/dist-es/protocols/Aws_ec2.js +53 -0
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-types/EC2.d.ts +7 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/ModifyInstanceCpuOptionsCommand.d.ts +85 -0
- package/dist-types/commands/ModifyVpnConnectionCommand.d.ts +2 -1
- package/dist-types/commands/ModifyVpnConnectionOptionsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +7 -8
- package/dist-types/models/models_1.d.ts +1 -1
- package/dist-types/models/models_2.d.ts +17 -18
- package/dist-types/models/models_3.d.ts +4 -4
- package/dist-types/models/models_4.d.ts +18 -18
- package/dist-types/models/models_5.d.ts +9 -9
- package/dist-types/models/models_6.d.ts +82 -92
- package/dist-types/models/models_7.d.ts +87 -30
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/runtimeConfig.d.ts +2 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -1
- package/dist-types/ts3.4/EC2.d.ts +17 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/ModifyInstanceCpuOptionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ModifyVpnConnectionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ModifyVpnConnectionOptionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_6.d.ts +11 -15
- package/dist-types/ts3.4/models/models_7.d.ts +14 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
- package/package.json +37 -37
|
@@ -2069,6 +2069,10 @@ import {
|
|
|
2069
2069
|
ModifyInstanceCapacityReservationAttributesCommandInput,
|
|
2070
2070
|
ModifyInstanceCapacityReservationAttributesCommandOutput,
|
|
2071
2071
|
} from "./commands/ModifyInstanceCapacityReservationAttributesCommand";
|
|
2072
|
+
import {
|
|
2073
|
+
ModifyInstanceCpuOptionsCommandInput,
|
|
2074
|
+
ModifyInstanceCpuOptionsCommandOutput,
|
|
2075
|
+
} from "./commands/ModifyInstanceCpuOptionsCommand";
|
|
2072
2076
|
import {
|
|
2073
2077
|
ModifyInstanceCreditSpecificationCommandInput,
|
|
2074
2078
|
ModifyInstanceCreditSpecificationCommandOutput,
|
|
@@ -3067,6 +3071,7 @@ export type ServiceInputTypes =
|
|
|
3067
3071
|
| ModifyImageAttributeCommandInput
|
|
3068
3072
|
| ModifyInstanceAttributeCommandInput
|
|
3069
3073
|
| ModifyInstanceCapacityReservationAttributesCommandInput
|
|
3074
|
+
| ModifyInstanceCpuOptionsCommandInput
|
|
3070
3075
|
| ModifyInstanceCreditSpecificationCommandInput
|
|
3071
3076
|
| ModifyInstanceEventStartTimeCommandInput
|
|
3072
3077
|
| ModifyInstanceEventWindowCommandInput
|
|
@@ -3695,6 +3700,7 @@ export type ServiceOutputTypes =
|
|
|
3695
3700
|
| ModifyImageAttributeCommandOutput
|
|
3696
3701
|
| ModifyInstanceAttributeCommandOutput
|
|
3697
3702
|
| ModifyInstanceCapacityReservationAttributesCommandOutput
|
|
3703
|
+
| ModifyInstanceCpuOptionsCommandOutput
|
|
3698
3704
|
| ModifyInstanceCreditSpecificationCommandOutput
|
|
3699
3705
|
| ModifyInstanceEventStartTimeCommandOutput
|
|
3700
3706
|
| ModifyInstanceEventWindowCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EC2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EC2Client";
|
|
8
|
+
import {
|
|
9
|
+
ModifyInstanceCpuOptionsRequest,
|
|
10
|
+
ModifyInstanceCpuOptionsResult,
|
|
11
|
+
} from "../models/models_6";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ModifyInstanceCpuOptionsCommandInput
|
|
15
|
+
extends ModifyInstanceCpuOptionsRequest {}
|
|
16
|
+
export interface ModifyInstanceCpuOptionsCommandOutput
|
|
17
|
+
extends ModifyInstanceCpuOptionsResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ModifyInstanceCpuOptionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ModifyInstanceCpuOptionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ModifyInstanceCpuOptionsCommandInput,
|
|
24
|
+
ModifyInstanceCpuOptionsCommandOutput,
|
|
25
|
+
EC2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ModifyInstanceCpuOptionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ModifyInstanceCpuOptionsCommandInput,
|
|
33
|
+
ModifyInstanceCpuOptionsCommandOutput,
|
|
34
|
+
EC2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ModifyInstanceCpuOptionsCommand extends ModifyInstanceCpuOptionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ModifyInstanceCpuOptionsRequest;
|
|
44
|
+
output: ModifyInstanceCpuOptionsResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ModifyInstanceCpuOptionsCommandInput;
|
|
48
|
+
output: ModifyInstanceCpuOptionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ModifyVpnConnectionResult,
|
|
11
|
-
} from "../models/models_6";
|
|
8
|
+
import { ModifyVpnConnectionRequest } from "../models/models_6";
|
|
9
|
+
import { ModifyVpnConnectionResult } from "../models/models_7";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ModifyVpnConnectionCommandInput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ModifyVpnConnectionOptionsRequest,
|
|
10
|
+
ModifyVpnConnectionOptionsResult,
|
|
11
|
+
} from "../models/models_7";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ModifyVpnConnectionOptionsCommandInput
|
|
@@ -504,6 +504,7 @@ export * from "./ModifyIdentityIdFormatCommand";
|
|
|
504
504
|
export * from "./ModifyImageAttributeCommand";
|
|
505
505
|
export * from "./ModifyInstanceAttributeCommand";
|
|
506
506
|
export * from "./ModifyInstanceCapacityReservationAttributesCommand";
|
|
507
|
+
export * from "./ModifyInstanceCpuOptionsCommand";
|
|
507
508
|
export * from "./ModifyInstanceCreditSpecificationCommand";
|
|
508
509
|
export * from "./ModifyInstanceEventStartTimeCommand";
|
|
509
510
|
export * from "./ModifyInstanceEventWindowCommand";
|
|
@@ -87,7 +87,6 @@ import {
|
|
|
87
87
|
VerifiedAccessEndpointProtocol,
|
|
88
88
|
VerifiedAccessGroup,
|
|
89
89
|
VerifiedAccessSseSpecificationRequest,
|
|
90
|
-
VpnConnection,
|
|
91
90
|
VpnEcmpSupportValue,
|
|
92
91
|
} from "./models_2";
|
|
93
92
|
import {
|
|
@@ -1213,6 +1212,17 @@ export interface ModifyInstanceCapacityReservationAttributesRequest {
|
|
|
1213
1212
|
export interface ModifyInstanceCapacityReservationAttributesResult {
|
|
1214
1213
|
Return?: boolean;
|
|
1215
1214
|
}
|
|
1215
|
+
export interface ModifyInstanceCpuOptionsRequest {
|
|
1216
|
+
InstanceId: string | undefined;
|
|
1217
|
+
CoreCount: number | undefined;
|
|
1218
|
+
ThreadsPerCore: number | undefined;
|
|
1219
|
+
DryRun?: boolean;
|
|
1220
|
+
}
|
|
1221
|
+
export interface ModifyInstanceCpuOptionsResult {
|
|
1222
|
+
InstanceId?: string;
|
|
1223
|
+
CoreCount?: number;
|
|
1224
|
+
ThreadsPerCore?: number;
|
|
1225
|
+
}
|
|
1216
1226
|
export interface InstanceCreditSpecificationRequest {
|
|
1217
1227
|
InstanceId: string | undefined;
|
|
1218
1228
|
CpuCredits?: string;
|
|
@@ -1888,17 +1898,6 @@ export interface ModifyVpnConnectionRequest {
|
|
|
1888
1898
|
VpnGatewayId?: string;
|
|
1889
1899
|
DryRun?: boolean;
|
|
1890
1900
|
}
|
|
1891
|
-
export interface ModifyVpnConnectionResult {
|
|
1892
|
-
VpnConnection?: VpnConnection;
|
|
1893
|
-
}
|
|
1894
|
-
export interface ModifyVpnConnectionOptionsRequest {
|
|
1895
|
-
VpnConnectionId: string | undefined;
|
|
1896
|
-
LocalIpv4NetworkCidr?: string;
|
|
1897
|
-
RemoteIpv4NetworkCidr?: string;
|
|
1898
|
-
LocalIpv6NetworkCidr?: string;
|
|
1899
|
-
RemoteIpv6NetworkCidr?: string;
|
|
1900
|
-
DryRun?: boolean;
|
|
1901
|
-
}
|
|
1902
1901
|
export declare const GetInstanceTpmEkPubResultFilterSensitiveLog: (
|
|
1903
1902
|
obj: GetInstanceTpmEkPubResult
|
|
1904
1903
|
) => any;
|
|
@@ -1958,6 +1957,3 @@ export declare const ModifyVerifiedAccessTrustProviderRequestFilterSensitiveLog:
|
|
|
1958
1957
|
export declare const ModifyVerifiedAccessTrustProviderResultFilterSensitiveLog: (
|
|
1959
1958
|
obj: ModifyVerifiedAccessTrustProviderResult
|
|
1960
1959
|
) => any;
|
|
1961
|
-
export declare const ModifyVpnConnectionResultFilterSensitiveLog: (
|
|
1962
|
-
obj: ModifyVpnConnectionResult
|
|
1963
|
-
) => any;
|
|
@@ -86,6 +86,17 @@ import {
|
|
|
86
86
|
SpotInstanceRequest,
|
|
87
87
|
} from "./models_5";
|
|
88
88
|
import { CapacityReservationSpecification } from "./models_6";
|
|
89
|
+
export interface ModifyVpnConnectionResult {
|
|
90
|
+
VpnConnection?: VpnConnection;
|
|
91
|
+
}
|
|
92
|
+
export interface ModifyVpnConnectionOptionsRequest {
|
|
93
|
+
VpnConnectionId: string | undefined;
|
|
94
|
+
LocalIpv4NetworkCidr?: string;
|
|
95
|
+
RemoteIpv4NetworkCidr?: string;
|
|
96
|
+
LocalIpv6NetworkCidr?: string;
|
|
97
|
+
RemoteIpv6NetworkCidr?: string;
|
|
98
|
+
DryRun?: boolean;
|
|
99
|
+
}
|
|
89
100
|
export interface ModifyVpnConnectionOptionsResult {
|
|
90
101
|
VpnConnection?: VpnConnection;
|
|
91
102
|
}
|
|
@@ -1069,6 +1080,9 @@ export interface WithdrawByoipCidrRequest {
|
|
|
1069
1080
|
export interface WithdrawByoipCidrResult {
|
|
1070
1081
|
ByoipCidr?: ByoipCidr;
|
|
1071
1082
|
}
|
|
1083
|
+
export declare const ModifyVpnConnectionResultFilterSensitiveLog: (
|
|
1084
|
+
obj: ModifyVpnConnectionResult
|
|
1085
|
+
) => any;
|
|
1072
1086
|
export declare const ModifyVpnConnectionOptionsResultFilterSensitiveLog: (
|
|
1073
1087
|
obj: ModifyVpnConnectionOptionsResult
|
|
1074
1088
|
) => any;
|
|
@@ -2027,6 +2027,10 @@ import {
|
|
|
2027
2027
|
ModifyInstanceCapacityReservationAttributesCommandInput,
|
|
2028
2028
|
ModifyInstanceCapacityReservationAttributesCommandOutput,
|
|
2029
2029
|
} from "../commands/ModifyInstanceCapacityReservationAttributesCommand";
|
|
2030
|
+
import {
|
|
2031
|
+
ModifyInstanceCpuOptionsCommandInput,
|
|
2032
|
+
ModifyInstanceCpuOptionsCommandOutput,
|
|
2033
|
+
} from "../commands/ModifyInstanceCpuOptionsCommand";
|
|
2030
2034
|
import {
|
|
2031
2035
|
ModifyInstanceCreditSpecificationCommandInput,
|
|
2032
2036
|
ModifyInstanceCreditSpecificationCommandOutput,
|
|
@@ -4535,6 +4539,10 @@ export declare const se_ModifyInstanceCapacityReservationAttributesCommand: (
|
|
|
4535
4539
|
input: ModifyInstanceCapacityReservationAttributesCommandInput,
|
|
4536
4540
|
context: __SerdeContext
|
|
4537
4541
|
) => Promise<__HttpRequest>;
|
|
4542
|
+
export declare const se_ModifyInstanceCpuOptionsCommand: (
|
|
4543
|
+
input: ModifyInstanceCpuOptionsCommandInput,
|
|
4544
|
+
context: __SerdeContext
|
|
4545
|
+
) => Promise<__HttpRequest>;
|
|
4538
4546
|
export declare const se_ModifyInstanceCreditSpecificationCommand: (
|
|
4539
4547
|
input: ModifyInstanceCreditSpecificationCommandInput,
|
|
4540
4548
|
context: __SerdeContext
|
|
@@ -7043,6 +7051,10 @@ export declare const de_ModifyInstanceCapacityReservationAttributesCommand: (
|
|
|
7043
7051
|
output: __HttpResponse,
|
|
7044
7052
|
context: __SerdeContext
|
|
7045
7053
|
) => Promise<ModifyInstanceCapacityReservationAttributesCommandOutput>;
|
|
7054
|
+
export declare const de_ModifyInstanceCpuOptionsCommand: (
|
|
7055
|
+
output: __HttpResponse,
|
|
7056
|
+
context: __SerdeContext
|
|
7057
|
+
) => Promise<ModifyInstanceCpuOptionsCommandOutput>;
|
|
7046
7058
|
export declare const de_ModifyInstanceCreditSpecificationCommand: (
|
|
7047
7059
|
output: __HttpResponse,
|
|
7048
7060
|
context: __SerdeContext
|
|
@@ -9,9 +9,9 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
9
9
|
credentialDefaultProvider: (
|
|
10
10
|
input: any
|
|
11
11
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
|
-
defaultUserAgentProvider:
|
|
13
|
-
import("@
|
|
14
|
-
>;
|
|
12
|
+
defaultUserAgentProvider: (
|
|
13
|
+
config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
14
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
17
17
|
requestHandler:
|
|
@@ -34,6 +34,10 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
34
34
|
logger: import("@smithy/types").Logger;
|
|
35
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
36
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
userAgentAppId?:
|
|
38
|
+
| string
|
|
39
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
40
|
+
| undefined;
|
|
37
41
|
retryStrategy?:
|
|
38
42
|
| import("@smithy/types").RetryStrategy
|
|
39
43
|
| import("@smithy/types").RetryStrategyV2
|
|
@@ -13,9 +13,11 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
13
13
|
) => import("@smithy/types").MemoizedProvider<
|
|
14
14
|
import("@smithy/types").AwsCredentialIdentity
|
|
15
15
|
>;
|
|
16
|
-
defaultUserAgentProvider:
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?:
|
|
18
|
+
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
19
|
+
| undefined
|
|
20
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
21
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
22
|
region: string | import("@smithy/types").Provider<string>;
|
|
21
23
|
requestHandler:
|
|
@@ -26,6 +28,7 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
26
28
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
29
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
30
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
29
32
|
apiVersion: string;
|
|
30
33
|
cacheMiddleware?: boolean | undefined;
|
|
31
34
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -22,9 +22,9 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
-
defaultUserAgentProvider:
|
|
26
|
-
import("@
|
|
27
|
-
>;
|
|
25
|
+
defaultUserAgentProvider: (
|
|
26
|
+
config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
27
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
28
28
|
credentialDefaultProvider: (
|
|
29
29
|
input: any
|
|
30
30
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: EC2ClientConfig) => {
|
|
|
38
38
|
import("@smithy/smithy-client").DefaultsMode
|
|
39
39
|
>;
|
|
40
40
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
+
userAgentAppId?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
44
|
+
| undefined;
|
|
41
45
|
retryStrategy?:
|
|
42
46
|
| import("@smithy/types").RetryStrategy
|
|
43
47
|
| import("@smithy/types").RetryStrategyV2
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.664.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-ec2",
|
|
@@ -20,46 +20,46 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^3.0.
|
|
38
|
-
"@smithy/core": "^2.4.
|
|
39
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
40
|
-
"@smithy/hash-node": "^3.0.
|
|
41
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
42
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
43
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
44
|
-
"@smithy/middleware-retry": "^3.0.
|
|
45
|
-
"@smithy/middleware-serde": "^3.0.
|
|
46
|
-
"@smithy/middleware-stack": "^3.0.
|
|
47
|
-
"@smithy/node-config-provider": "^3.1.
|
|
48
|
-
"@smithy/node-http-handler": "^3.2.
|
|
49
|
-
"@smithy/protocol-http": "^4.1.
|
|
50
|
-
"@smithy/smithy-client": "^3.3.
|
|
51
|
-
"@smithy/types": "^3.
|
|
52
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.664.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.664.0",
|
|
25
|
+
"@aws-sdk/core": "3.664.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.664.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.664.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.664.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.664.0",
|
|
30
|
+
"@aws-sdk/middleware-sdk-ec2": "3.664.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.664.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.664.0",
|
|
33
|
+
"@aws-sdk/types": "3.664.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.664.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.664.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.664.0",
|
|
37
|
+
"@smithy/config-resolver": "^3.0.9",
|
|
38
|
+
"@smithy/core": "^2.4.7",
|
|
39
|
+
"@smithy/fetch-http-handler": "^3.2.9",
|
|
40
|
+
"@smithy/hash-node": "^3.0.7",
|
|
41
|
+
"@smithy/invalid-dependency": "^3.0.7",
|
|
42
|
+
"@smithy/middleware-content-length": "^3.0.9",
|
|
43
|
+
"@smithy/middleware-endpoint": "^3.1.4",
|
|
44
|
+
"@smithy/middleware-retry": "^3.0.22",
|
|
45
|
+
"@smithy/middleware-serde": "^3.0.7",
|
|
46
|
+
"@smithy/middleware-stack": "^3.0.7",
|
|
47
|
+
"@smithy/node-config-provider": "^3.1.8",
|
|
48
|
+
"@smithy/node-http-handler": "^3.2.4",
|
|
49
|
+
"@smithy/protocol-http": "^4.1.4",
|
|
50
|
+
"@smithy/smithy-client": "^3.3.6",
|
|
51
|
+
"@smithy/types": "^3.5.0",
|
|
52
|
+
"@smithy/url-parser": "^3.0.7",
|
|
53
53
|
"@smithy/util-base64": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
58
|
-
"@smithy/util-endpoints": "^2.1.
|
|
59
|
-
"@smithy/util-middleware": "^3.0.
|
|
60
|
-
"@smithy/util-retry": "^3.0.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^3.0.22",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^3.0.22",
|
|
58
|
+
"@smithy/util-endpoints": "^2.1.3",
|
|
59
|
+
"@smithy/util-middleware": "^3.0.7",
|
|
60
|
+
"@smithy/util-retry": "^3.0.7",
|
|
61
61
|
"@smithy/util-utf8": "^3.0.0",
|
|
62
|
-
"@smithy/util-waiter": "^3.1.
|
|
62
|
+
"@smithy/util-waiter": "^3.1.6",
|
|
63
63
|
"tslib": "^2.6.2",
|
|
64
64
|
"uuid": "^9.0.1"
|
|
65
65
|
},
|