@aws-sdk/client-ec2 3.290.0 → 3.291.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.
|
@@ -34789,6 +34789,9 @@ const serializeAws_ec2DnsOptionsSpecification = (input, context) => {
|
|
|
34789
34789
|
if (input.DnsRecordIpType != null) {
|
|
34790
34790
|
entries["DnsRecordIpType"] = input.DnsRecordIpType;
|
|
34791
34791
|
}
|
|
34792
|
+
if (input.PrivateDnsOnlyForInboundResolverEndpoint != null) {
|
|
34793
|
+
entries["PrivateDnsOnlyForInboundResolverEndpoint"] = input.PrivateDnsOnlyForInboundResolverEndpoint;
|
|
34794
|
+
}
|
|
34792
34795
|
return entries;
|
|
34793
34796
|
};
|
|
34794
34797
|
const serializeAws_ec2DnsServersOptionsModifyStructure = (input, context) => {
|
|
@@ -53740,10 +53743,14 @@ const deserializeAws_ec2DnsEntrySet = (output, context) => {
|
|
|
53740
53743
|
const deserializeAws_ec2DnsOptions = (output, context) => {
|
|
53741
53744
|
const contents = {
|
|
53742
53745
|
DnsRecordIpType: undefined,
|
|
53746
|
+
PrivateDnsOnlyForInboundResolverEndpoint: undefined,
|
|
53743
53747
|
};
|
|
53744
53748
|
if (output["dnsRecordIpType"] !== undefined) {
|
|
53745
53749
|
contents.DnsRecordIpType = (0, smithy_client_1.expectString)(output["dnsRecordIpType"]);
|
|
53746
53750
|
}
|
|
53751
|
+
if (output["privateDnsOnlyForInboundResolverEndpoint"] !== undefined) {
|
|
53752
|
+
contents.PrivateDnsOnlyForInboundResolverEndpoint = (0, smithy_client_1.parseBoolean)(output["privateDnsOnlyForInboundResolverEndpoint"]);
|
|
53753
|
+
}
|
|
53747
53754
|
return contents;
|
|
53748
53755
|
};
|
|
53749
53756
|
const deserializeAws_ec2EbsBlockDevice = (output, context) => {
|
|
@@ -33585,6 +33585,9 @@ const serializeAws_ec2DnsOptionsSpecification = (input, context) => {
|
|
|
33585
33585
|
if (input.DnsRecordIpType != null) {
|
|
33586
33586
|
entries["DnsRecordIpType"] = input.DnsRecordIpType;
|
|
33587
33587
|
}
|
|
33588
|
+
if (input.PrivateDnsOnlyForInboundResolverEndpoint != null) {
|
|
33589
|
+
entries["PrivateDnsOnlyForInboundResolverEndpoint"] = input.PrivateDnsOnlyForInboundResolverEndpoint;
|
|
33590
|
+
}
|
|
33588
33591
|
return entries;
|
|
33589
33592
|
};
|
|
33590
33593
|
const serializeAws_ec2DnsServersOptionsModifyStructure = (input, context) => {
|
|
@@ -52536,10 +52539,14 @@ const deserializeAws_ec2DnsEntrySet = (output, context) => {
|
|
|
52536
52539
|
const deserializeAws_ec2DnsOptions = (output, context) => {
|
|
52537
52540
|
const contents = {
|
|
52538
52541
|
DnsRecordIpType: undefined,
|
|
52542
|
+
PrivateDnsOnlyForInboundResolverEndpoint: undefined,
|
|
52539
52543
|
};
|
|
52540
52544
|
if (output["dnsRecordIpType"] !== undefined) {
|
|
52541
52545
|
contents.DnsRecordIpType = __expectString(output["dnsRecordIpType"]);
|
|
52542
52546
|
}
|
|
52547
|
+
if (output["privateDnsOnlyForInboundResolverEndpoint"] !== undefined) {
|
|
52548
|
+
contents.PrivateDnsOnlyForInboundResolverEndpoint = __parseBoolean(output["privateDnsOnlyForInboundResolverEndpoint"]);
|
|
52549
|
+
}
|
|
52543
52550
|
return contents;
|
|
52544
52551
|
};
|
|
52545
52552
|
const deserializeAws_ec2EbsBlockDevice = (output, context) => {
|
|
@@ -2948,6 +2948,13 @@ export interface DnsOptionsSpecification {
|
|
|
2948
2948
|
* <p>The DNS records created for the endpoint.</p>
|
|
2949
2949
|
*/
|
|
2950
2950
|
DnsRecordIpType?: DnsRecordIpType | string;
|
|
2951
|
+
/**
|
|
2952
|
+
* <p>Indicates whether to enable private DNS only for inbound endpoints. This option is
|
|
2953
|
+
* available only for services that support both gateway and interface endpoints. It routes
|
|
2954
|
+
* traffic that originates from the VPC to the gateway endpoint and traffic that originates
|
|
2955
|
+
* from on-premises to the interface endpoint.</p>
|
|
2956
|
+
*/
|
|
2957
|
+
PrivateDnsOnlyForInboundResolverEndpoint?: boolean;
|
|
2951
2958
|
}
|
|
2952
2959
|
export declare enum IpAddressType {
|
|
2953
2960
|
dualstack = "dualstack",
|
|
@@ -3056,6 +3063,10 @@ export interface DnsOptions {
|
|
|
3056
3063
|
* <p>The DNS records created for the endpoint.</p>
|
|
3057
3064
|
*/
|
|
3058
3065
|
DnsRecordIpType?: DnsRecordIpType | string;
|
|
3066
|
+
/**
|
|
3067
|
+
* <p>Indicates whether to enable private DNS only for inbound endpoints.</p>
|
|
3068
|
+
*/
|
|
3069
|
+
PrivateDnsOnlyForInboundResolverEndpoint?: boolean;
|
|
3059
3070
|
}
|
|
3060
3071
|
/**
|
|
3061
3072
|
* <p>Describes a security group.</p>
|
|
@@ -946,6 +946,7 @@ export declare enum DnsRecordIpType {
|
|
|
946
946
|
}
|
|
947
947
|
export interface DnsOptionsSpecification {
|
|
948
948
|
DnsRecordIpType?: DnsRecordIpType | string;
|
|
949
|
+
PrivateDnsOnlyForInboundResolverEndpoint?: boolean;
|
|
949
950
|
}
|
|
950
951
|
export declare enum IpAddressType {
|
|
951
952
|
dualstack = "dualstack",
|
|
@@ -978,6 +979,7 @@ export interface DnsEntry {
|
|
|
978
979
|
}
|
|
979
980
|
export interface DnsOptions {
|
|
980
981
|
DnsRecordIpType?: DnsRecordIpType | string;
|
|
982
|
+
PrivateDnsOnlyForInboundResolverEndpoint?: boolean;
|
|
981
983
|
}
|
|
982
984
|
export interface SecurityGroupIdentifier {
|
|
983
985
|
GroupId?: string;
|
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.291.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
33
|
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
34
|
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
35
|
+
"@aws-sdk/middleware-sdk-ec2": "3.291.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.290.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.290.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.290.0",
|