@aws-sdk/client-ec2 3.88.0 → 3.89.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/CHANGELOG.md +11 -0
- package/dist-cjs/commands/DescribeClientVpnRoutesCommand.js +2 -1
- package/dist-cjs/commands/DescribeClientVpnTargetNetworksCommand.js +3 -3
- package/dist-cjs/commands/DescribePublicIpv4PoolsCommand.js +3 -3
- package/dist-cjs/commands/DescribeRegionsCommand.js +1 -2
- package/dist-cjs/commands/GetEbsEncryptionByDefaultCommand.js +3 -3
- package/dist-cjs/commands/ReplaceTransitGatewayRouteCommand.js +2 -1
- package/dist-cjs/commands/ReportInstanceStatusCommand.js +2 -2
- package/dist-cjs/commands/RequestSpotFleetCommand.js +1 -2
- package/dist-cjs/models/models_2.js +36 -36
- package/dist-cjs/models/models_3.js +36 -36
- package/dist-cjs/models/models_4.js +36 -37
- package/dist-cjs/models/models_5.js +37 -24
- package/dist-cjs/models/models_6.js +20 -2
- package/dist-cjs/protocols/Aws_ec2.js +100 -7
- package/dist-es/commands/DescribeClientVpnRoutesCommand.js +2 -1
- package/dist-es/commands/DescribeClientVpnTargetNetworksCommand.js +1 -1
- package/dist-es/commands/DescribePublicIpv4PoolsCommand.js +1 -1
- package/dist-es/commands/DescribeRegionsCommand.js +1 -2
- package/dist-es/commands/GetEbsEncryptionByDefaultCommand.js +1 -1
- package/dist-es/commands/ReplaceTransitGatewayRouteCommand.js +2 -1
- package/dist-es/commands/ReportInstanceStatusCommand.js +1 -1
- package/dist-es/commands/RequestSpotFleetCommand.js +1 -2
- package/dist-es/models/models_2.js +26 -20
- package/dist-es/models/models_3.js +20 -20
- package/dist-es/models/models_4.js +20 -23
- package/dist-es/models/models_5.js +23 -12
- package/dist-es/models/models_6.js +12 -0
- package/dist-es/protocols/Aws_ec2.js +106 -8
- package/dist-types/commands/DescribeClientVpnRoutesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClientVpnTargetNetworksCommand.d.ts +1 -1
- package/dist-types/commands/DescribePublicIpv4PoolsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRegionsCommand.d.ts +1 -2
- package/dist-types/commands/GetEbsEncryptionByDefaultCommand.d.ts +1 -1
- package/dist-types/commands/ReplaceTransitGatewayRouteCommand.d.ts +2 -1
- package/dist-types/commands/ReportInstanceStatusCommand.d.ts +1 -1
- package/dist-types/commands/RequestSpotFleetCommand.d.ts +1 -2
- package/dist-types/models/models_1.d.ts +4 -4
- package/dist-types/models/models_2.d.ts +78 -164
- package/dist-types/models/models_3.d.ts +156 -162
- package/dist-types/models/models_4.d.ts +186 -75
- package/dist-types/models/models_5.d.ts +93 -121
- package/dist-types/models/models_6.d.ts +119 -1
- package/dist-types/ts3.4/commands/DescribeClientVpnRoutesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeClientVpnTargetNetworksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePublicIpv4PoolsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRegionsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetEbsEncryptionByDefaultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ReplaceTransitGatewayRouteCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ReportInstanceStatusCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RequestSpotFleetCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_1.d.ts +2 -2
- package/dist-types/ts3.4/models/models_2.d.ts +46 -79
- package/dist-types/ts3.4/models/models_3.d.ts +79 -75
- package/dist-types/ts3.4/models/models_4.d.ts +79 -47
- package/dist-types/ts3.4/models/models_5.d.ts +57 -44
- package/dist-types/ts3.4/models/models_6.d.ts +42 -1
- package/package.json +1 -1
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
+
export var DescribePublicIpv4PoolsRequest;
|
|
3
|
+
(function (DescribePublicIpv4PoolsRequest) {
|
|
4
|
+
DescribePublicIpv4PoolsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
|
+
})(DescribePublicIpv4PoolsRequest || (DescribePublicIpv4PoolsRequest = {}));
|
|
6
|
+
export var PublicIpv4PoolRange;
|
|
7
|
+
(function (PublicIpv4PoolRange) {
|
|
8
|
+
PublicIpv4PoolRange.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
|
+
})(PublicIpv4PoolRange || (PublicIpv4PoolRange = {}));
|
|
10
|
+
export var PublicIpv4Pool;
|
|
11
|
+
(function (PublicIpv4Pool) {
|
|
12
|
+
PublicIpv4Pool.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
13
|
+
})(PublicIpv4Pool || (PublicIpv4Pool = {}));
|
|
14
|
+
export var DescribePublicIpv4PoolsResult;
|
|
15
|
+
(function (DescribePublicIpv4PoolsResult) {
|
|
16
|
+
DescribePublicIpv4PoolsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
17
|
+
})(DescribePublicIpv4PoolsResult || (DescribePublicIpv4PoolsResult = {}));
|
|
18
|
+
export var DescribeRegionsRequest;
|
|
19
|
+
(function (DescribeRegionsRequest) {
|
|
20
|
+
DescribeRegionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
21
|
+
})(DescribeRegionsRequest || (DescribeRegionsRequest = {}));
|
|
2
22
|
export var Region;
|
|
3
23
|
(function (Region) {
|
|
4
24
|
Region.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1139,26 +1159,3 @@ export var GetEbsDefaultKmsKeyIdResult;
|
|
|
1139
1159
|
(function (GetEbsDefaultKmsKeyIdResult) {
|
|
1140
1160
|
GetEbsDefaultKmsKeyIdResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1141
1161
|
})(GetEbsDefaultKmsKeyIdResult || (GetEbsDefaultKmsKeyIdResult = {}));
|
|
1142
|
-
export var GetEbsEncryptionByDefaultRequest;
|
|
1143
|
-
(function (GetEbsEncryptionByDefaultRequest) {
|
|
1144
|
-
GetEbsEncryptionByDefaultRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1145
|
-
})(GetEbsEncryptionByDefaultRequest || (GetEbsEncryptionByDefaultRequest = {}));
|
|
1146
|
-
export var GetEbsEncryptionByDefaultResult;
|
|
1147
|
-
(function (GetEbsEncryptionByDefaultResult) {
|
|
1148
|
-
GetEbsEncryptionByDefaultResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1149
|
-
})(GetEbsEncryptionByDefaultResult || (GetEbsEncryptionByDefaultResult = {}));
|
|
1150
|
-
export var PartitionLoadFrequency;
|
|
1151
|
-
(function (PartitionLoadFrequency) {
|
|
1152
|
-
PartitionLoadFrequency["DAILY"] = "daily";
|
|
1153
|
-
PartitionLoadFrequency["MONTHLY"] = "monthly";
|
|
1154
|
-
PartitionLoadFrequency["NONE"] = "none";
|
|
1155
|
-
PartitionLoadFrequency["WEEKLY"] = "weekly";
|
|
1156
|
-
})(PartitionLoadFrequency || (PartitionLoadFrequency = {}));
|
|
1157
|
-
export var AthenaIntegration;
|
|
1158
|
-
(function (AthenaIntegration) {
|
|
1159
|
-
AthenaIntegration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1160
|
-
})(AthenaIntegration || (AthenaIntegration = {}));
|
|
1161
|
-
export var IntegrateServices;
|
|
1162
|
-
(function (IntegrateServices) {
|
|
1163
|
-
IntegrateServices.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1164
|
-
})(IntegrateServices || (IntegrateServices = {}));
|
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
export var GetEbsEncryptionByDefaultRequest;
|
|
4
|
+
(function (GetEbsEncryptionByDefaultRequest) {
|
|
5
|
+
GetEbsEncryptionByDefaultRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
6
|
+
})(GetEbsEncryptionByDefaultRequest || (GetEbsEncryptionByDefaultRequest = {}));
|
|
7
|
+
export var GetEbsEncryptionByDefaultResult;
|
|
8
|
+
(function (GetEbsEncryptionByDefaultResult) {
|
|
9
|
+
GetEbsEncryptionByDefaultResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
|
+
})(GetEbsEncryptionByDefaultResult || (GetEbsEncryptionByDefaultResult = {}));
|
|
11
|
+
export var PartitionLoadFrequency;
|
|
12
|
+
(function (PartitionLoadFrequency) {
|
|
13
|
+
PartitionLoadFrequency["DAILY"] = "daily";
|
|
14
|
+
PartitionLoadFrequency["MONTHLY"] = "monthly";
|
|
15
|
+
PartitionLoadFrequency["NONE"] = "none";
|
|
16
|
+
PartitionLoadFrequency["WEEKLY"] = "weekly";
|
|
17
|
+
})(PartitionLoadFrequency || (PartitionLoadFrequency = {}));
|
|
18
|
+
export var AthenaIntegration;
|
|
19
|
+
(function (AthenaIntegration) {
|
|
20
|
+
AthenaIntegration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
21
|
+
})(AthenaIntegration || (AthenaIntegration = {}));
|
|
22
|
+
export var IntegrateServices;
|
|
23
|
+
(function (IntegrateServices) {
|
|
24
|
+
IntegrateServices.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
25
|
+
})(IntegrateServices || (IntegrateServices = {}));
|
|
3
26
|
export var GetFlowLogsIntegrationTemplateRequest;
|
|
4
27
|
(function (GetFlowLogsIntegrationTemplateRequest) {
|
|
5
28
|
GetFlowLogsIntegrationTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1178,15 +1201,3 @@ export var ReplaceTransitGatewayRouteRequest;
|
|
|
1178
1201
|
(function (ReplaceTransitGatewayRouteRequest) {
|
|
1179
1202
|
ReplaceTransitGatewayRouteRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1180
1203
|
})(ReplaceTransitGatewayRouteRequest || (ReplaceTransitGatewayRouteRequest = {}));
|
|
1181
|
-
export var ReplaceTransitGatewayRouteResult;
|
|
1182
|
-
(function (ReplaceTransitGatewayRouteResult) {
|
|
1183
|
-
ReplaceTransitGatewayRouteResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1184
|
-
})(ReplaceTransitGatewayRouteResult || (ReplaceTransitGatewayRouteResult = {}));
|
|
1185
|
-
export var ReportInstanceStatusRequest;
|
|
1186
|
-
(function (ReportInstanceStatusRequest) {
|
|
1187
|
-
ReportInstanceStatusRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1188
|
-
})(ReportInstanceStatusRequest || (ReportInstanceStatusRequest = {}));
|
|
1189
|
-
export var RequestSpotFleetRequest;
|
|
1190
|
-
(function (RequestSpotFleetRequest) {
|
|
1191
|
-
RequestSpotFleetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1192
|
-
})(RequestSpotFleetRequest || (RequestSpotFleetRequest = {}));
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
export var ReplaceTransitGatewayRouteResult;
|
|
4
|
+
(function (ReplaceTransitGatewayRouteResult) {
|
|
5
|
+
ReplaceTransitGatewayRouteResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
6
|
+
})(ReplaceTransitGatewayRouteResult || (ReplaceTransitGatewayRouteResult = {}));
|
|
7
|
+
export var ReportInstanceStatusRequest;
|
|
8
|
+
(function (ReportInstanceStatusRequest) {
|
|
9
|
+
ReportInstanceStatusRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
|
+
})(ReportInstanceStatusRequest || (ReportInstanceStatusRequest = {}));
|
|
11
|
+
export var RequestSpotFleetRequest;
|
|
12
|
+
(function (RequestSpotFleetRequest) {
|
|
13
|
+
RequestSpotFleetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
14
|
+
})(RequestSpotFleetRequest || (RequestSpotFleetRequest = {}));
|
|
3
15
|
export var RequestSpotFleetResponse;
|
|
4
16
|
(function (RequestSpotFleetResponse) {
|
|
5
17
|
RequestSpotFleetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -32198,14 +32198,6 @@ var serializeAws_ec2CreateStoreImageTaskRequest = function (input, context) {
|
|
|
32198
32198
|
};
|
|
32199
32199
|
var serializeAws_ec2CreateSubnetCidrReservationRequest = function (input, context) {
|
|
32200
32200
|
var entries = {};
|
|
32201
|
-
if (input.TagSpecifications !== undefined && input.TagSpecifications !== null) {
|
|
32202
|
-
var memberEntries = serializeAws_ec2TagSpecificationList(input.TagSpecifications, context);
|
|
32203
|
-
Object.entries(memberEntries).forEach(function (_a) {
|
|
32204
|
-
var _b = __read(_a, 2), key = _b[0], value = _b[1];
|
|
32205
|
-
var loc = "TagSpecification.".concat(key.substring(key.indexOf(".") + 1));
|
|
32206
|
-
entries[loc] = value;
|
|
32207
|
-
});
|
|
32208
|
-
}
|
|
32209
32201
|
if (input.SubnetId !== undefined && input.SubnetId !== null) {
|
|
32210
32202
|
entries["SubnetId"] = input.SubnetId;
|
|
32211
32203
|
}
|
|
@@ -32221,6 +32213,14 @@ var serializeAws_ec2CreateSubnetCidrReservationRequest = function (input, contex
|
|
|
32221
32213
|
if (input.DryRun !== undefined && input.DryRun !== null) {
|
|
32222
32214
|
entries["DryRun"] = input.DryRun;
|
|
32223
32215
|
}
|
|
32216
|
+
if (input.TagSpecifications !== undefined && input.TagSpecifications !== null) {
|
|
32217
|
+
var memberEntries = serializeAws_ec2TagSpecificationList(input.TagSpecifications, context);
|
|
32218
|
+
Object.entries(memberEntries).forEach(function (_a) {
|
|
32219
|
+
var _b = __read(_a, 2), key = _b[0], value = _b[1];
|
|
32220
|
+
var loc = "TagSpecification.".concat(key.substring(key.indexOf(".") + 1));
|
|
32221
|
+
entries[loc] = value;
|
|
32222
|
+
});
|
|
32223
|
+
}
|
|
32224
32224
|
return entries;
|
|
32225
32225
|
};
|
|
32226
32226
|
var serializeAws_ec2CreateSubnetRequest = function (input, context) {
|
|
@@ -32878,6 +32878,17 @@ var serializeAws_ec2CreateVpcEndpointRequest = function (input, context) {
|
|
|
32878
32878
|
entries[loc] = value;
|
|
32879
32879
|
});
|
|
32880
32880
|
}
|
|
32881
|
+
if (input.IpAddressType !== undefined && input.IpAddressType !== null) {
|
|
32882
|
+
entries["IpAddressType"] = input.IpAddressType;
|
|
32883
|
+
}
|
|
32884
|
+
if (input.DnsOptions !== undefined && input.DnsOptions !== null) {
|
|
32885
|
+
var memberEntries = serializeAws_ec2DnsOptionsSpecification(input.DnsOptions, context);
|
|
32886
|
+
Object.entries(memberEntries).forEach(function (_a) {
|
|
32887
|
+
var _b = __read(_a, 2), key = _b[0], value = _b[1];
|
|
32888
|
+
var loc = "DnsOptions.".concat(key);
|
|
32889
|
+
entries[loc] = value;
|
|
32890
|
+
});
|
|
32891
|
+
}
|
|
32881
32892
|
if (input.ClientToken !== undefined && input.ClientToken !== null) {
|
|
32882
32893
|
entries["ClientToken"] = input.ClientToken;
|
|
32883
32894
|
}
|
|
@@ -32921,6 +32932,14 @@ var serializeAws_ec2CreateVpcEndpointServiceConfigurationRequest = function (inp
|
|
|
32921
32932
|
entries[loc] = value;
|
|
32922
32933
|
});
|
|
32923
32934
|
}
|
|
32935
|
+
if (input.SupportedIpAddressTypes !== undefined && input.SupportedIpAddressTypes !== null) {
|
|
32936
|
+
var memberEntries = serializeAws_ec2ValueStringList(input.SupportedIpAddressTypes, context);
|
|
32937
|
+
Object.entries(memberEntries).forEach(function (_a) {
|
|
32938
|
+
var _b = __read(_a, 2), key = _b[0], value = _b[1];
|
|
32939
|
+
var loc = "SupportedIpAddressType.".concat(key.substring(key.indexOf(".") + 1));
|
|
32940
|
+
entries[loc] = value;
|
|
32941
|
+
});
|
|
32942
|
+
}
|
|
32924
32943
|
if (input.ClientToken !== undefined && input.ClientToken !== null) {
|
|
32925
32944
|
entries["ClientToken"] = input.ClientToken;
|
|
32926
32945
|
}
|
|
@@ -37960,6 +37979,13 @@ var serializeAws_ec2DiskImageList = function (input, context) {
|
|
|
37960
37979
|
}
|
|
37961
37980
|
return entries;
|
|
37962
37981
|
};
|
|
37982
|
+
var serializeAws_ec2DnsOptionsSpecification = function (input, context) {
|
|
37983
|
+
var entries = {};
|
|
37984
|
+
if (input.DnsRecordIpType !== undefined && input.DnsRecordIpType !== null) {
|
|
37985
|
+
entries["DnsRecordIpType"] = input.DnsRecordIpType;
|
|
37986
|
+
}
|
|
37987
|
+
return entries;
|
|
37988
|
+
};
|
|
37963
37989
|
var serializeAws_ec2DnsServersOptionsModifyStructure = function (input, context) {
|
|
37964
37990
|
var entries = {};
|
|
37965
37991
|
if (input.CustomDnsServers !== undefined && input.CustomDnsServers !== null) {
|
|
@@ -43980,6 +44006,17 @@ var serializeAws_ec2ModifyVpcEndpointRequest = function (input, context) {
|
|
|
43980
44006
|
entries[loc] = value;
|
|
43981
44007
|
});
|
|
43982
44008
|
}
|
|
44009
|
+
if (input.IpAddressType !== undefined && input.IpAddressType !== null) {
|
|
44010
|
+
entries["IpAddressType"] = input.IpAddressType;
|
|
44011
|
+
}
|
|
44012
|
+
if (input.DnsOptions !== undefined && input.DnsOptions !== null) {
|
|
44013
|
+
var memberEntries = serializeAws_ec2DnsOptionsSpecification(input.DnsOptions, context);
|
|
44014
|
+
Object.entries(memberEntries).forEach(function (_a) {
|
|
44015
|
+
var _b = __read(_a, 2), key = _b[0], value = _b[1];
|
|
44016
|
+
var loc = "DnsOptions.".concat(key);
|
|
44017
|
+
entries[loc] = value;
|
|
44018
|
+
});
|
|
44019
|
+
}
|
|
43983
44020
|
if (input.PrivateDnsEnabled !== undefined && input.PrivateDnsEnabled !== null) {
|
|
43984
44021
|
entries["PrivateDnsEnabled"] = input.PrivateDnsEnabled;
|
|
43985
44022
|
}
|
|
@@ -44034,6 +44071,22 @@ var serializeAws_ec2ModifyVpcEndpointServiceConfigurationRequest = function (inp
|
|
|
44034
44071
|
entries[loc] = value;
|
|
44035
44072
|
});
|
|
44036
44073
|
}
|
|
44074
|
+
if (input.AddSupportedIpAddressTypes !== undefined && input.AddSupportedIpAddressTypes !== null) {
|
|
44075
|
+
var memberEntries = serializeAws_ec2ValueStringList(input.AddSupportedIpAddressTypes, context);
|
|
44076
|
+
Object.entries(memberEntries).forEach(function (_a) {
|
|
44077
|
+
var _b = __read(_a, 2), key = _b[0], value = _b[1];
|
|
44078
|
+
var loc = "AddSupportedIpAddressType.".concat(key.substring(key.indexOf(".") + 1));
|
|
44079
|
+
entries[loc] = value;
|
|
44080
|
+
});
|
|
44081
|
+
}
|
|
44082
|
+
if (input.RemoveSupportedIpAddressTypes !== undefined && input.RemoveSupportedIpAddressTypes !== null) {
|
|
44083
|
+
var memberEntries = serializeAws_ec2ValueStringList(input.RemoveSupportedIpAddressTypes, context);
|
|
44084
|
+
Object.entries(memberEntries).forEach(function (_a) {
|
|
44085
|
+
var _b = __read(_a, 2), key = _b[0], value = _b[1];
|
|
44086
|
+
var loc = "RemoveSupportedIpAddressType.".concat(key.substring(key.indexOf(".") + 1));
|
|
44087
|
+
entries[loc] = value;
|
|
44088
|
+
});
|
|
44089
|
+
}
|
|
44037
44090
|
return entries;
|
|
44038
44091
|
};
|
|
44039
44092
|
var serializeAws_ec2ModifyVpcEndpointServicePayerResponsibilityRequest = function (input, context) {
|
|
@@ -57249,6 +57302,15 @@ var deserializeAws_ec2DnsEntrySet = function (output, context) {
|
|
|
57249
57302
|
return deserializeAws_ec2DnsEntry(entry, context);
|
|
57250
57303
|
});
|
|
57251
57304
|
};
|
|
57305
|
+
var deserializeAws_ec2DnsOptions = function (output, context) {
|
|
57306
|
+
var contents = {
|
|
57307
|
+
DnsRecordIpType: undefined,
|
|
57308
|
+
};
|
|
57309
|
+
if (output["dnsRecordIpType"] !== undefined) {
|
|
57310
|
+
contents.DnsRecordIpType = __expectString(output["dnsRecordIpType"]);
|
|
57311
|
+
}
|
|
57312
|
+
return contents;
|
|
57313
|
+
};
|
|
57252
57314
|
var deserializeAws_ec2EbsBlockDevice = function (output, context) {
|
|
57253
57315
|
var contents = {
|
|
57254
57316
|
DeleteOnTermination: undefined,
|
|
@@ -68796,6 +68858,7 @@ var deserializeAws_ec2ServiceConfiguration = function (output, context) {
|
|
|
68796
68858
|
ManagesVpcEndpoints: undefined,
|
|
68797
68859
|
NetworkLoadBalancerArns: undefined,
|
|
68798
68860
|
GatewayLoadBalancerArns: undefined,
|
|
68861
|
+
SupportedIpAddressTypes: undefined,
|
|
68799
68862
|
BaseEndpointDnsNames: undefined,
|
|
68800
68863
|
PrivateDnsName: undefined,
|
|
68801
68864
|
PrivateDnsNameConfiguration: undefined,
|
|
@@ -68841,6 +68904,12 @@ var deserializeAws_ec2ServiceConfiguration = function (output, context) {
|
|
|
68841
68904
|
if (output["gatewayLoadBalancerArnSet"] !== undefined && output["gatewayLoadBalancerArnSet"]["item"] !== undefined) {
|
|
68842
68905
|
contents.GatewayLoadBalancerArns = deserializeAws_ec2ValueStringList(__getArrayIfSingleItem(output["gatewayLoadBalancerArnSet"]["item"]), context);
|
|
68843
68906
|
}
|
|
68907
|
+
if (output.supportedIpAddressTypeSet === "") {
|
|
68908
|
+
contents.SupportedIpAddressTypes = [];
|
|
68909
|
+
}
|
|
68910
|
+
if (output["supportedIpAddressTypeSet"] !== undefined && output["supportedIpAddressTypeSet"]["item"] !== undefined) {
|
|
68911
|
+
contents.SupportedIpAddressTypes = deserializeAws_ec2SupportedIpAddressTypes(__getArrayIfSingleItem(output["supportedIpAddressTypeSet"]["item"]), context);
|
|
68912
|
+
}
|
|
68844
68913
|
if (output.baseEndpointDnsNameSet === "") {
|
|
68845
68914
|
contents.BaseEndpointDnsNames = [];
|
|
68846
68915
|
}
|
|
@@ -68890,6 +68959,7 @@ var deserializeAws_ec2ServiceDetail = function (output, context) {
|
|
|
68890
68959
|
PayerResponsibility: undefined,
|
|
68891
68960
|
Tags: undefined,
|
|
68892
68961
|
PrivateDnsNameVerificationState: undefined,
|
|
68962
|
+
SupportedIpAddressTypes: undefined,
|
|
68893
68963
|
};
|
|
68894
68964
|
if (output["serviceName"] !== undefined) {
|
|
68895
68965
|
contents.ServiceName = __expectString(output["serviceName"]);
|
|
@@ -68948,6 +69018,12 @@ var deserializeAws_ec2ServiceDetail = function (output, context) {
|
|
|
68948
69018
|
if (output["privateDnsNameVerificationState"] !== undefined) {
|
|
68949
69019
|
contents.PrivateDnsNameVerificationState = __expectString(output["privateDnsNameVerificationState"]);
|
|
68950
69020
|
}
|
|
69021
|
+
if (output.supportedIpAddressTypeSet === "") {
|
|
69022
|
+
contents.SupportedIpAddressTypes = [];
|
|
69023
|
+
}
|
|
69024
|
+
if (output["supportedIpAddressTypeSet"] !== undefined && output["supportedIpAddressTypeSet"]["item"] !== undefined) {
|
|
69025
|
+
contents.SupportedIpAddressTypes = deserializeAws_ec2SupportedIpAddressTypes(__getArrayIfSingleItem(output["supportedIpAddressTypeSet"]["item"]), context);
|
|
69026
|
+
}
|
|
68951
69027
|
return contents;
|
|
68952
69028
|
};
|
|
68953
69029
|
var deserializeAws_ec2ServiceDetailSet = function (output, context) {
|
|
@@ -70379,6 +70455,16 @@ var deserializeAws_ec2SuccessfulQueuedPurchaseDeletionSet = function (output, co
|
|
|
70379
70455
|
return deserializeAws_ec2SuccessfulQueuedPurchaseDeletion(entry, context);
|
|
70380
70456
|
});
|
|
70381
70457
|
};
|
|
70458
|
+
var deserializeAws_ec2SupportedIpAddressTypes = function (output, context) {
|
|
70459
|
+
return (output || [])
|
|
70460
|
+
.filter(function (e) { return e != null; })
|
|
70461
|
+
.map(function (entry) {
|
|
70462
|
+
if (entry === null) {
|
|
70463
|
+
return null;
|
|
70464
|
+
}
|
|
70465
|
+
return __expectString(entry);
|
|
70466
|
+
});
|
|
70467
|
+
};
|
|
70382
70468
|
var deserializeAws_ec2Tag = function (output, context) {
|
|
70383
70469
|
var contents = {
|
|
70384
70470
|
Key: undefined,
|
|
@@ -73042,6 +73128,8 @@ var deserializeAws_ec2VpcEndpoint = function (output, context) {
|
|
|
73042
73128
|
RouteTableIds: undefined,
|
|
73043
73129
|
SubnetIds: undefined,
|
|
73044
73130
|
Groups: undefined,
|
|
73131
|
+
IpAddressType: undefined,
|
|
73132
|
+
DnsOptions: undefined,
|
|
73045
73133
|
PrivateDnsEnabled: undefined,
|
|
73046
73134
|
RequesterManaged: undefined,
|
|
73047
73135
|
NetworkInterfaceIds: undefined,
|
|
@@ -73087,6 +73175,12 @@ var deserializeAws_ec2VpcEndpoint = function (output, context) {
|
|
|
73087
73175
|
if (output["groupSet"] !== undefined && output["groupSet"]["item"] !== undefined) {
|
|
73088
73176
|
contents.Groups = deserializeAws_ec2GroupIdentifierSet(__getArrayIfSingleItem(output["groupSet"]["item"]), context);
|
|
73089
73177
|
}
|
|
73178
|
+
if (output["ipAddressType"] !== undefined) {
|
|
73179
|
+
contents.IpAddressType = __expectString(output["ipAddressType"]);
|
|
73180
|
+
}
|
|
73181
|
+
if (output["dnsOptions"] !== undefined) {
|
|
73182
|
+
contents.DnsOptions = deserializeAws_ec2DnsOptions(output["dnsOptions"], context);
|
|
73183
|
+
}
|
|
73090
73184
|
if (output["privateDnsEnabled"] !== undefined) {
|
|
73091
73185
|
contents.PrivateDnsEnabled = __parseBoolean(output["privateDnsEnabled"]);
|
|
73092
73186
|
}
|
|
@@ -73132,6 +73226,7 @@ var deserializeAws_ec2VpcEndpointConnection = function (output, context) {
|
|
|
73132
73226
|
DnsEntries: undefined,
|
|
73133
73227
|
NetworkLoadBalancerArns: undefined,
|
|
73134
73228
|
GatewayLoadBalancerArns: undefined,
|
|
73229
|
+
IpAddressType: undefined,
|
|
73135
73230
|
};
|
|
73136
73231
|
if (output["serviceId"] !== undefined) {
|
|
73137
73232
|
contents.ServiceId = __expectString(output["serviceId"]);
|
|
@@ -73166,6 +73261,9 @@ var deserializeAws_ec2VpcEndpointConnection = function (output, context) {
|
|
|
73166
73261
|
if (output["gatewayLoadBalancerArnSet"] !== undefined && output["gatewayLoadBalancerArnSet"]["item"] !== undefined) {
|
|
73167
73262
|
contents.GatewayLoadBalancerArns = deserializeAws_ec2ValueStringList(__getArrayIfSingleItem(output["gatewayLoadBalancerArnSet"]["item"]), context);
|
|
73168
73263
|
}
|
|
73264
|
+
if (output["ipAddressType"] !== undefined) {
|
|
73265
|
+
contents.IpAddressType = __expectString(output["ipAddressType"]);
|
|
73266
|
+
}
|
|
73169
73267
|
return contents;
|
|
73170
73268
|
};
|
|
73171
73269
|
var deserializeAws_ec2VpcEndpointConnectionSet = function (output, context) {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribeClientVpnRoutesRequest
|
|
4
|
+
import { DescribeClientVpnRoutesRequest } from "../models/models_2";
|
|
5
|
+
import { DescribeClientVpnRoutesResult } from "../models/models_3";
|
|
5
6
|
export interface DescribeClientVpnRoutesCommandInput extends DescribeClientVpnRoutesRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface DescribeClientVpnRoutesCommandOutput extends DescribeClientVpnRoutesResult, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribeClientVpnTargetNetworksRequest, DescribeClientVpnTargetNetworksResult } from "../models/
|
|
4
|
+
import { DescribeClientVpnTargetNetworksRequest, DescribeClientVpnTargetNetworksResult } from "../models/models_3";
|
|
5
5
|
export interface DescribeClientVpnTargetNetworksCommandInput extends DescribeClientVpnTargetNetworksRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface DescribeClientVpnTargetNetworksCommandOutput extends DescribeClientVpnTargetNetworksResult, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribePublicIpv4PoolsRequest, DescribePublicIpv4PoolsResult } from "../models/
|
|
4
|
+
import { DescribePublicIpv4PoolsRequest, DescribePublicIpv4PoolsResult } from "../models/models_4";
|
|
5
5
|
export interface DescribePublicIpv4PoolsCommandInput extends DescribePublicIpv4PoolsRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface DescribePublicIpv4PoolsCommandOutput extends DescribePublicIpv4PoolsResult, __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { DescribeRegionsRequest } from "../models/
|
|
5
|
-
import { DescribeRegionsResult } from "../models/models_4";
|
|
4
|
+
import { DescribeRegionsRequest, DescribeRegionsResult } from "../models/models_4";
|
|
6
5
|
export interface DescribeRegionsCommandInput extends DescribeRegionsRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface DescribeRegionsCommandOutput extends DescribeRegionsResult, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { GetEbsEncryptionByDefaultRequest, GetEbsEncryptionByDefaultResult } from "../models/
|
|
4
|
+
import { GetEbsEncryptionByDefaultRequest, GetEbsEncryptionByDefaultResult } from "../models/models_5";
|
|
5
5
|
export interface GetEbsEncryptionByDefaultCommandInput extends GetEbsEncryptionByDefaultRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface GetEbsEncryptionByDefaultCommandOutput extends GetEbsEncryptionByDefaultResult, __MetadataBearer {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { ReplaceTransitGatewayRouteRequest
|
|
4
|
+
import { ReplaceTransitGatewayRouteRequest } from "../models/models_5";
|
|
5
|
+
import { ReplaceTransitGatewayRouteResult } from "../models/models_6";
|
|
5
6
|
export interface ReplaceTransitGatewayRouteCommandInput extends ReplaceTransitGatewayRouteRequest {
|
|
6
7
|
}
|
|
7
8
|
export interface ReplaceTransitGatewayRouteCommandOutput extends ReplaceTransitGatewayRouteResult, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { ReportInstanceStatusRequest } from "../models/
|
|
4
|
+
import { ReportInstanceStatusRequest } from "../models/models_6";
|
|
5
5
|
export interface ReportInstanceStatusCommandInput extends ReportInstanceStatusRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface ReportInstanceStatusCommandOutput extends __MetadataBearer {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import { RequestSpotFleetRequest } from "../models/
|
|
5
|
-
import { RequestSpotFleetResponse } from "../models/models_6";
|
|
4
|
+
import { RequestSpotFleetRequest, RequestSpotFleetResponse } from "../models/models_6";
|
|
6
5
|
export interface RequestSpotFleetCommandInput extends RequestSpotFleetRequest {
|
|
7
6
|
}
|
|
8
7
|
export interface RequestSpotFleetCommandOutput extends RequestSpotFleetResponse, __MetadataBearer {
|
|
@@ -7625,10 +7625,6 @@ export declare enum SubnetCidrReservationType {
|
|
|
7625
7625
|
prefix = "prefix"
|
|
7626
7626
|
}
|
|
7627
7627
|
export interface CreateSubnetCidrReservationRequest {
|
|
7628
|
-
/**
|
|
7629
|
-
* <p>The tags to assign to the subnet CIDR reservation.</p>
|
|
7630
|
-
*/
|
|
7631
|
-
TagSpecifications?: TagSpecification[];
|
|
7632
7628
|
/**
|
|
7633
7629
|
* <p>The ID of the subnet.</p>
|
|
7634
7630
|
*/
|
|
@@ -7672,6 +7668,10 @@ export interface CreateSubnetCidrReservationRequest {
|
|
|
7672
7668
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7673
7669
|
*/
|
|
7674
7670
|
DryRun?: boolean;
|
|
7671
|
+
/**
|
|
7672
|
+
* <p>The tags to assign to the subnet CIDR reservation.</p>
|
|
7673
|
+
*/
|
|
7674
|
+
TagSpecifications?: TagSpecification[];
|
|
7675
7675
|
}
|
|
7676
7676
|
export declare namespace CreateSubnetCidrReservationRequest {
|
|
7677
7677
|
/**
|