@aws-sdk/client-elastic-load-balancing-v2 3.577.0 → 3.582.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 +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/CreateLoadBalancerCommand.d.ts +2 -2
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +1 -1
- package/dist-types/commands/SetIpAddressTypeCommand.d.ts +2 -2
- package/dist-types/commands/SetSubnetsCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +41 -11
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -892,6 +892,7 @@ __name(_UnsupportedProtocolException, "UnsupportedProtocolException");
|
|
|
892
892
|
var UnsupportedProtocolException = _UnsupportedProtocolException;
|
|
893
893
|
var IpAddressType = {
|
|
894
894
|
DUALSTACK: "dualstack",
|
|
895
|
+
DUALSTACK_WITHOUT_PUBLIC_IPV4: "dualstack-without-public-ipv4",
|
|
895
896
|
IPV4: "ipv4"
|
|
896
897
|
};
|
|
897
898
|
var LoadBalancerSchemeEnum = {
|
|
@@ -419,6 +419,7 @@ export class UnsupportedProtocolException extends __BaseException {
|
|
|
419
419
|
}
|
|
420
420
|
export const IpAddressType = {
|
|
421
421
|
DUALSTACK: "dualstack",
|
|
422
|
+
DUALSTACK_WITHOUT_PUBLIC_IPV4: "dualstack-without-public-ipv4",
|
|
422
423
|
IPV4: "ipv4",
|
|
423
424
|
};
|
|
424
425
|
export const LoadBalancerSchemeEnum = {
|
|
@@ -80,7 +80,7 @@ declare const CreateLoadBalancerCommand_base: {
|
|
|
80
80
|
* },
|
|
81
81
|
* ],
|
|
82
82
|
* Type: "application" || "network" || "gateway",
|
|
83
|
-
* IpAddressType: "ipv4" || "dualstack",
|
|
83
|
+
* IpAddressType: "ipv4" || "dualstack" || "dualstack-without-public-ipv4",
|
|
84
84
|
* CustomerOwnedIpv4Pool: "STRING_VALUE",
|
|
85
85
|
* };
|
|
86
86
|
* const command = new CreateLoadBalancerCommand(input);
|
|
@@ -118,7 +118,7 @@ declare const CreateLoadBalancerCommand_base: {
|
|
|
118
118
|
* // SecurityGroups: [ // SecurityGroups
|
|
119
119
|
* // "STRING_VALUE",
|
|
120
120
|
* // ],
|
|
121
|
-
* // IpAddressType: "ipv4" || "dualstack",
|
|
121
|
+
* // IpAddressType: "ipv4" || "dualstack" || "dualstack-without-public-ipv4",
|
|
122
122
|
* // CustomerOwnedIpv4Pool: "STRING_VALUE",
|
|
123
123
|
* // EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic: "STRING_VALUE",
|
|
124
124
|
* // },
|
|
@@ -78,7 +78,7 @@ declare const DescribeLoadBalancersCommand_base: {
|
|
|
78
78
|
* // SecurityGroups: [ // SecurityGroups
|
|
79
79
|
* // "STRING_VALUE",
|
|
80
80
|
* // ],
|
|
81
|
-
* // IpAddressType: "ipv4" || "dualstack",
|
|
81
|
+
* // IpAddressType: "ipv4" || "dualstack" || "dualstack-without-public-ipv4",
|
|
82
82
|
* // CustomerOwnedIpv4Pool: "STRING_VALUE",
|
|
83
83
|
* // EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic: "STRING_VALUE",
|
|
84
84
|
* // },
|
|
@@ -35,12 +35,12 @@ declare const SetIpAddressTypeCommand_base: {
|
|
|
35
35
|
* const client = new ElasticLoadBalancingV2Client(config);
|
|
36
36
|
* const input = { // SetIpAddressTypeInput
|
|
37
37
|
* LoadBalancerArn: "STRING_VALUE", // required
|
|
38
|
-
* IpAddressType: "ipv4" || "dualstack", // required
|
|
38
|
+
* IpAddressType: "ipv4" || "dualstack" || "dualstack-without-public-ipv4", // required
|
|
39
39
|
* };
|
|
40
40
|
* const command = new SetIpAddressTypeCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
42
|
* // { // SetIpAddressTypeOutput
|
|
43
|
-
* // IpAddressType: "ipv4" || "dualstack",
|
|
43
|
+
* // IpAddressType: "ipv4" || "dualstack" || "dualstack-without-public-ipv4",
|
|
44
44
|
* // };
|
|
45
45
|
*
|
|
46
46
|
* ```
|
|
@@ -51,7 +51,7 @@ declare const SetSubnetsCommand_base: {
|
|
|
51
51
|
* IPv6Address: "STRING_VALUE",
|
|
52
52
|
* },
|
|
53
53
|
* ],
|
|
54
|
-
* IpAddressType: "ipv4" || "dualstack",
|
|
54
|
+
* IpAddressType: "ipv4" || "dualstack" || "dualstack-without-public-ipv4",
|
|
55
55
|
* };
|
|
56
56
|
* const command = new SetSubnetsCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
@@ -71,7 +71,7 @@ declare const SetSubnetsCommand_base: {
|
|
|
71
71
|
* // ],
|
|
72
72
|
* // },
|
|
73
73
|
* // ],
|
|
74
|
-
* // IpAddressType: "ipv4" || "dualstack",
|
|
74
|
+
* // IpAddressType: "ipv4" || "dualstack" || "dualstack-without-public-ipv4",
|
|
75
75
|
* // };
|
|
76
76
|
*
|
|
77
77
|
* ```
|
|
@@ -1270,6 +1270,7 @@ export declare class UnsupportedProtocolException extends __BaseException {
|
|
|
1270
1270
|
*/
|
|
1271
1271
|
export declare const IpAddressType: {
|
|
1272
1272
|
readonly DUALSTACK: "dualstack";
|
|
1273
|
+
readonly DUALSTACK_WITHOUT_PUBLIC_IPV4: "dualstack-without-public-ipv4";
|
|
1273
1274
|
readonly IPV4: "ipv4";
|
|
1274
1275
|
};
|
|
1275
1276
|
/**
|
|
@@ -1405,9 +1406,18 @@ export interface CreateLoadBalancerInput {
|
|
|
1405
1406
|
*/
|
|
1406
1407
|
Type?: LoadBalancerTypeEnum;
|
|
1407
1408
|
/**
|
|
1408
|
-
* <p>
|
|
1409
|
-
*
|
|
1410
|
-
* addresses)
|
|
1409
|
+
* <p>Note: Internal load balancers must use the <code>ipv4</code> IP address type.</p>
|
|
1410
|
+
* <p>[Application Load Balancers] The IP address type. The possible values are
|
|
1411
|
+
* <code>ipv4</code> (for only IPv4 addresses), <code>dualstack</code> (for IPv4 and
|
|
1412
|
+
* IPv6 addresses), and <code>dualstack-without-public-ipv4</code> (for IPv6 only public
|
|
1413
|
+
* addresses, with private IPv4 and IPv6 addresses).</p>
|
|
1414
|
+
* <p>[Network Load Balancers] The IP address type. The possible values are
|
|
1415
|
+
* <code>ipv4</code> (for only IPv4 addresses) and <code>dualstack</code>
|
|
1416
|
+
* (for IPv4 and IPv6 addresses). You can’t specify <code>dualstack</code>
|
|
1417
|
+
* for a load balancer with a UDP or TCP_UDP listener.</p>
|
|
1418
|
+
* <p>[Gateway Load Balancers] The IP address type. The possible values are
|
|
1419
|
+
* <code>ipv4</code> (for only IPv4 addresses) and <code>dualstack</code>
|
|
1420
|
+
* (for IPv4 and IPv6 addresses).</p>
|
|
1411
1421
|
* @public
|
|
1412
1422
|
*/
|
|
1413
1423
|
IpAddressType?: IpAddressType;
|
|
@@ -1520,9 +1530,15 @@ export interface LoadBalancer {
|
|
|
1520
1530
|
*/
|
|
1521
1531
|
SecurityGroups?: string[];
|
|
1522
1532
|
/**
|
|
1523
|
-
* <p>The type of IP addresses used
|
|
1524
|
-
*
|
|
1525
|
-
* addresses)
|
|
1533
|
+
* <p>[Application Load Balancers] The type of IP addresses used for public or private
|
|
1534
|
+
* connections by the subnets attached to your load balancer. The possible values are
|
|
1535
|
+
* <code>ipv4</code> (for only IPv4 addresses), <code>dualstack</code> (for IPv4 and
|
|
1536
|
+
* IPv6 addresses), and <code>dualstack-without-public-ipv4</code> (for IPv6 only public
|
|
1537
|
+
* addresses, with private IPv4 and IPv6 addresses).</p>
|
|
1538
|
+
* <p>[Network Load Balancers and Gateway Load Balancers] The type of IP addresses
|
|
1539
|
+
* used for public or private connections by the subnets attached to your load
|
|
1540
|
+
* balancer. The possible values are <code>ipv4</code> (for only IPv4 addresses)
|
|
1541
|
+
* and <code>dualstack</code> (for IPv4 and IPv6 addresses).</p>
|
|
1526
1542
|
* @public
|
|
1527
1543
|
*/
|
|
1528
1544
|
IpAddressType?: IpAddressType;
|
|
@@ -4366,9 +4382,18 @@ export interface SetIpAddressTypeInput {
|
|
|
4366
4382
|
*/
|
|
4367
4383
|
LoadBalancerArn: string | undefined;
|
|
4368
4384
|
/**
|
|
4369
|
-
* <p>
|
|
4370
|
-
*
|
|
4371
|
-
*
|
|
4385
|
+
* <p>Note: Internal load balancers must use the <code>ipv4</code> IP address type.</p>
|
|
4386
|
+
* <p>[Application Load Balancers] The IP address type. The possible values are
|
|
4387
|
+
* <code>ipv4</code> (for only IPv4 addresses), <code>dualstack</code> (for IPv4 and
|
|
4388
|
+
* IPv6 addresses), and <code>dualstack-without-public-ipv4</code> (for IPv6 only public
|
|
4389
|
+
* addresses, with private IPv4 and IPv6 addresses).</p>
|
|
4390
|
+
* <p>[Network Load Balancers] The IP address type. The possible values are
|
|
4391
|
+
* <code>ipv4</code> (for only IPv4 addresses) and <code>dualstack</code>
|
|
4392
|
+
* (for IPv4 and IPv6 addresses). You can’t specify <code>dualstack</code>
|
|
4393
|
+
* for a load balancer with a UDP or TCP_UDP listener.</p>
|
|
4394
|
+
* <p>[Gateway Load Balancers] The IP address type. The possible values are
|
|
4395
|
+
* <code>ipv4</code> (for only IPv4 addresses) and <code>dualstack</code>
|
|
4396
|
+
* (for IPv4 and IPv6 addresses).</p>
|
|
4372
4397
|
* @public
|
|
4373
4398
|
*/
|
|
4374
4399
|
IpAddressType: IpAddressType | undefined;
|
|
@@ -4511,7 +4536,11 @@ export interface SetSubnetsInput {
|
|
|
4511
4536
|
*/
|
|
4512
4537
|
SubnetMappings?: SubnetMapping[];
|
|
4513
4538
|
/**
|
|
4514
|
-
* <p>[
|
|
4539
|
+
* <p>[Application Load Balancers] The IP address type. The possible values are
|
|
4540
|
+
* <code>ipv4</code> (for only IPv4 addresses), <code>dualstack</code> (for IPv4 and
|
|
4541
|
+
* IPv6 addresses), and <code>dualstack-without-public-ipv4</code> (for IPv6 only public
|
|
4542
|
+
* addresses, with private IPv4 and IPv6 addresses).</p>
|
|
4543
|
+
* <p>[Network Load Balancers] The type of IP addresses used by the subnets for your load
|
|
4515
4544
|
* balancer. The possible values are <code>ipv4</code> (for IPv4 addresses) and
|
|
4516
4545
|
* <code>dualstack</code> (for IPv4 and IPv6 addresses). You can’t specify
|
|
4517
4546
|
* <code>dualstack</code> for a load balancer with a UDP or TCP_UDP listener.</p>
|
|
@@ -4532,7 +4561,8 @@ export interface SetSubnetsOutput {
|
|
|
4532
4561
|
*/
|
|
4533
4562
|
AvailabilityZones?: AvailabilityZone[];
|
|
4534
4563
|
/**
|
|
4535
|
-
* <p>[
|
|
4564
|
+
* <p>[Application Load Balancers] The IP address type.</p>
|
|
4565
|
+
* <p>[Network Load Balancers] The IP address type.</p>
|
|
4536
4566
|
* <p>[Gateway Load Balancers] The IP address type.</p>
|
|
4537
4567
|
* @public
|
|
4538
4568
|
*/
|
|
@@ -471,6 +471,7 @@ export declare class UnsupportedProtocolException extends __BaseException {
|
|
|
471
471
|
}
|
|
472
472
|
export declare const IpAddressType: {
|
|
473
473
|
readonly DUALSTACK: "dualstack";
|
|
474
|
+
readonly DUALSTACK_WITHOUT_PUBLIC_IPV4: "dualstack-without-public-ipv4";
|
|
474
475
|
readonly IPV4: "ipv4";
|
|
475
476
|
};
|
|
476
477
|
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.582.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-elastic-load-balancing-v2",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.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.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.582.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.582.0",
|
|
25
|
+
"@aws-sdk/core": "3.582.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.582.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -34,26 +34,26 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.577.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.0",
|
|
37
|
-
"@smithy/core": "^2.0.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.0.
|
|
37
|
+
"@smithy/core": "^2.0.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.0",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.0.0",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.1",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.0",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.0",
|
|
46
46
|
"@smithy/node-config-provider": "^3.0.0",
|
|
47
47
|
"@smithy/node-http-handler": "^3.0.0",
|
|
48
48
|
"@smithy/protocol-http": "^4.0.0",
|
|
49
|
-
"@smithy/smithy-client": "^3.0.
|
|
49
|
+
"@smithy/smithy-client": "^3.0.1",
|
|
50
50
|
"@smithy/types": "^3.0.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.0",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.1",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.1",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.0",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.0",
|
|
59
59
|
"@smithy/util-retry": "^3.0.0",
|