@aws-sdk/client-ec2 3.939.0 → 3.943.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 +109 -5
- package/dist-es/models/enums.js +16 -0
- package/dist-es/schemas/schemas_0.js +90 -5
- package/dist-types/commands/CreateNatGatewayCommand.d.ts +11 -0
- package/dist-types/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +2 -1
- package/dist-types/commands/DescribeNatGatewaysCommand.d.ts +11 -0
- package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +1 -2
- package/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +1 -2
- package/dist-types/models/enums.d.ts +40 -0
- package/dist-types/models/models_1.d.ts +47 -32
- package/dist-types/models/models_2.d.ts +33 -12
- package/dist-types/models/models_3.d.ts +11 -12
- package/dist-types/models/models_4.d.ts +14 -24
- package/dist-types/models/models_5.d.ts +22 -49
- package/dist-types/models/models_6.d.ts +48 -49
- package/dist-types/models/models_7.d.ts +51 -2
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +22 -0
- package/dist-types/ts3.4/models/models_1.d.ts +13 -8
- package/dist-types/ts3.4/models/models_2.d.ts +9 -4
- package/dist-types/ts3.4/models/models_3.d.ts +4 -3
- package/dist-types/ts3.4/models/models_4.d.ts +4 -7
- package/dist-types/ts3.4/models/models_5.d.ts +5 -11
- package/dist-types/ts3.4/models/models_6.d.ts +10 -12
- package/dist-types/ts3.4/models/models_7.d.ts +19 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +5 -5
|
@@ -111,8 +111,12 @@ import {
|
|
|
111
111
|
RegisteredInstance,
|
|
112
112
|
VerifiedAccessLogCloudWatchLogsDestination,
|
|
113
113
|
VerifiedAccessLogDeliveryStatus,
|
|
114
|
-
VerifiedAccessLogKinesisDataFirehoseDestination,
|
|
115
114
|
} from "./models_4";
|
|
115
|
+
export interface VerifiedAccessLogKinesisDataFirehoseDestination {
|
|
116
|
+
Enabled?: boolean | undefined;
|
|
117
|
+
DeliveryStatus?: VerifiedAccessLogDeliveryStatus | undefined;
|
|
118
|
+
DeliveryStream?: string | undefined;
|
|
119
|
+
}
|
|
116
120
|
export interface VerifiedAccessLogS3Destination {
|
|
117
121
|
Enabled?: boolean | undefined;
|
|
118
122
|
DeliveryStatus?: VerifiedAccessLogDeliveryStatus | undefined;
|
|
@@ -1621,13 +1625,3 @@ export interface GetInstanceUefiDataResult {
|
|
|
1621
1625
|
InstanceId?: string | undefined;
|
|
1622
1626
|
UefiData?: string | undefined;
|
|
1623
1627
|
}
|
|
1624
|
-
export interface GetIpamAddressHistoryRequest {
|
|
1625
|
-
DryRun?: boolean | undefined;
|
|
1626
|
-
Cidr: string | undefined;
|
|
1627
|
-
IpamScopeId: string | undefined;
|
|
1628
|
-
VpcId?: string | undefined;
|
|
1629
|
-
StartTime?: Date | undefined;
|
|
1630
|
-
EndTime?: Date | undefined;
|
|
1631
|
-
MaxResults?: number | undefined;
|
|
1632
|
-
NextToken?: string | undefined;
|
|
1633
|
-
}
|
|
@@ -174,6 +174,16 @@ import {
|
|
|
174
174
|
RouteServerPropagation,
|
|
175
175
|
VerifiedAccessInstanceLoggingConfiguration,
|
|
176
176
|
} from "./models_5";
|
|
177
|
+
export interface GetIpamAddressHistoryRequest {
|
|
178
|
+
DryRun?: boolean | undefined;
|
|
179
|
+
Cidr: string | undefined;
|
|
180
|
+
IpamScopeId: string | undefined;
|
|
181
|
+
VpcId?: string | undefined;
|
|
182
|
+
StartTime?: Date | undefined;
|
|
183
|
+
EndTime?: Date | undefined;
|
|
184
|
+
MaxResults?: number | undefined;
|
|
185
|
+
NextToken?: string | undefined;
|
|
186
|
+
}
|
|
177
187
|
export interface IpamAddressHistoryRecord {
|
|
178
188
|
ResourceOwnerId?: string | undefined;
|
|
179
189
|
ResourceRegion?: string | undefined;
|
|
@@ -1951,15 +1961,3 @@ export interface ModifyVerifiedAccessTrustProviderOidcOptions {
|
|
|
1951
1961
|
ClientSecret?: string | undefined;
|
|
1952
1962
|
Scope?: string | undefined;
|
|
1953
1963
|
}
|
|
1954
|
-
export interface ModifyVerifiedAccessTrustProviderRequest {
|
|
1955
|
-
VerifiedAccessTrustProviderId: string | undefined;
|
|
1956
|
-
OidcOptions?: ModifyVerifiedAccessTrustProviderOidcOptions | undefined;
|
|
1957
|
-
DeviceOptions?: ModifyVerifiedAccessTrustProviderDeviceOptions | undefined;
|
|
1958
|
-
Description?: string | undefined;
|
|
1959
|
-
DryRun?: boolean | undefined;
|
|
1960
|
-
ClientToken?: string | undefined;
|
|
1961
|
-
SseSpecification?: VerifiedAccessSseSpecificationRequest | undefined;
|
|
1962
|
-
NativeApplicationOidcOptions?:
|
|
1963
|
-
| ModifyVerifiedAccessNativeApplicationOidcOptions
|
|
1964
|
-
| undefined;
|
|
1965
|
-
}
|
|
@@ -86,6 +86,7 @@ import {
|
|
|
86
86
|
Phase2IntegrityAlgorithmsRequestListValue,
|
|
87
87
|
SubnetConfiguration,
|
|
88
88
|
TransitGatewayRoute,
|
|
89
|
+
VerifiedAccessSseSpecificationRequest,
|
|
89
90
|
VpcBlockPublicAccessExclusion,
|
|
90
91
|
VpnConnection,
|
|
91
92
|
VpnTunnelLogOptionsSpecification,
|
|
@@ -118,7 +119,24 @@ import {
|
|
|
118
119
|
VolumeModification,
|
|
119
120
|
VpcBlockPublicAccessOptions,
|
|
120
121
|
} from "./models_5";
|
|
121
|
-
import {
|
|
122
|
+
import {
|
|
123
|
+
CapacityReservationSpecification,
|
|
124
|
+
ModifyVerifiedAccessNativeApplicationOidcOptions,
|
|
125
|
+
ModifyVerifiedAccessTrustProviderDeviceOptions,
|
|
126
|
+
ModifyVerifiedAccessTrustProviderOidcOptions,
|
|
127
|
+
} from "./models_6";
|
|
128
|
+
export interface ModifyVerifiedAccessTrustProviderRequest {
|
|
129
|
+
VerifiedAccessTrustProviderId: string | undefined;
|
|
130
|
+
OidcOptions?: ModifyVerifiedAccessTrustProviderOidcOptions | undefined;
|
|
131
|
+
DeviceOptions?: ModifyVerifiedAccessTrustProviderDeviceOptions | undefined;
|
|
132
|
+
Description?: string | undefined;
|
|
133
|
+
DryRun?: boolean | undefined;
|
|
134
|
+
ClientToken?: string | undefined;
|
|
135
|
+
SseSpecification?: VerifiedAccessSseSpecificationRequest | undefined;
|
|
136
|
+
NativeApplicationOidcOptions?:
|
|
137
|
+
| ModifyVerifiedAccessNativeApplicationOidcOptions
|
|
138
|
+
| undefined;
|
|
139
|
+
}
|
|
122
140
|
export interface ModifyVerifiedAccessTrustProviderResult {
|
|
123
141
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider | undefined;
|
|
124
142
|
}
|
|
@@ -1837,6 +1837,7 @@ export declare var MoveCapacityReservationInstancesResult: StaticStructureSchema
|
|
|
1837
1837
|
export declare var MovingAddressStatus: StaticStructureSchema;
|
|
1838
1838
|
export declare var NatGateway: StaticStructureSchema;
|
|
1839
1839
|
export declare var NatGatewayAddress: StaticStructureSchema;
|
|
1840
|
+
export declare var NatGatewayAttachedAppliance: StaticStructureSchema;
|
|
1840
1841
|
export declare var NativeApplicationOidcOptions: StaticStructureSchema;
|
|
1841
1842
|
export declare var NetworkAcl: StaticStructureSchema;
|
|
1842
1843
|
export declare var NetworkAclAssociation: StaticStructureSchema;
|
|
@@ -2717,6 +2718,7 @@ export declare var ModifyVerifiedAccessEndpointPortRangeList: StaticListSchema;
|
|
|
2717
2718
|
export declare var ModifyVerifiedAccessEndpointSubnetIdList: StaticListSchema;
|
|
2718
2719
|
export declare var MovingAddressStatusSet: StaticListSchema;
|
|
2719
2720
|
export declare var NatGatewayAddressList: StaticListSchema;
|
|
2721
|
+
export declare var NatGatewayAttachedApplianceList: StaticListSchema;
|
|
2720
2722
|
export declare var NatGatewayIdStringList: StaticListSchema;
|
|
2721
2723
|
export declare var NatGatewayList: StaticListSchema;
|
|
2722
2724
|
export declare var NetworkAclAssociationList: StaticListSchema;
|
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.943.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,18 +20,18 @@
|
|
|
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.943.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.943.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
28
|
"@aws-sdk/middleware-sdk-ec2": "3.936.0",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.943.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
31
31
|
"@aws-sdk/types": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.943.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.3",
|
|
36
36
|
"@smithy/core": "^3.18.5",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.6",
|