@aws-sdk/client-elastic-load-balancing-v2 3.835.0 → 3.839.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 +6 -0
- package/dist-es/pagination/DescribeAccountLimitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-types/commands/AddListenerCertificatesCommand.d.ts +3 -3
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +1 -0
- package/dist-types/commands/DeregisterTargetsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +2 -2
- package/dist-types/commands/RegisterTargetsCommand.d.ts +21 -3
- package/dist-types/models/models_0.d.ts +16 -14
- package/dist-types/pagination/DescribeAccountLimitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/pagination/DescribeAccountLimitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -158,6 +158,7 @@ __export(index_exports, {
|
|
|
158
158
|
TrustStoreStatus: () => TrustStoreStatus,
|
|
159
159
|
UnsupportedProtocolException: () => UnsupportedProtocolException,
|
|
160
160
|
__Client: () => import_smithy_client.Client,
|
|
161
|
+
paginateDescribeAccountLimits: () => paginateDescribeAccountLimits,
|
|
161
162
|
paginateDescribeListenerCertificates: () => paginateDescribeListenerCertificates,
|
|
162
163
|
paginateDescribeListeners: () => paginateDescribeListeners,
|
|
163
164
|
paginateDescribeLoadBalancers: () => paginateDescribeLoadBalancers,
|
|
@@ -8380,6 +8381,10 @@ var ElasticLoadBalancingV2 = class extends ElasticLoadBalancingV2Client {
|
|
|
8380
8381
|
};
|
|
8381
8382
|
(0, import_smithy_client.createAggregatedClient)(commands, ElasticLoadBalancingV2);
|
|
8382
8383
|
|
|
8384
|
+
// src/pagination/DescribeAccountLimitsPaginator.ts
|
|
8385
|
+
|
|
8386
|
+
var paginateDescribeAccountLimits = (0, import_core.createPaginator)(ElasticLoadBalancingV2Client, DescribeAccountLimitsCommand, "Marker", "NextMarker", "");
|
|
8387
|
+
|
|
8383
8388
|
// src/pagination/DescribeListenerCertificatesPaginator.ts
|
|
8384
8389
|
|
|
8385
8390
|
var paginateDescribeListenerCertificates = (0, import_core.createPaginator)(ElasticLoadBalancingV2Client, DescribeListenerCertificatesCommand, "Marker", "NextMarker", "");
|
|
@@ -8679,6 +8684,7 @@ var waitUntilTargetInService = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
8679
8684
|
SetRulePrioritiesCommand,
|
|
8680
8685
|
SetSecurityGroupsCommand,
|
|
8681
8686
|
SetSubnetsCommand,
|
|
8687
|
+
paginateDescribeAccountLimits,
|
|
8682
8688
|
paginateDescribeListenerCertificates,
|
|
8683
8689
|
paginateDescribeListeners,
|
|
8684
8690
|
paginateDescribeLoadBalancers,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { DescribeAccountLimitsCommand, } from "../commands/DescribeAccountLimitsCommand";
|
|
3
|
+
import { ElasticLoadBalancingV2Client } from "../ElasticLoadBalancingV2Client";
|
|
4
|
+
export const paginateDescribeAccountLimits = createPaginator(ElasticLoadBalancingV2Client, DescribeAccountLimitsCommand, "Marker", "NextMarker", "");
|
|
@@ -31,9 +31,9 @@ declare const AddListenerCertificatesCommand_base: {
|
|
|
31
31
|
* or TLS listener.</p>
|
|
32
32
|
* <p>If the certificate in already in the certificate list, the call is successful but the
|
|
33
33
|
* certificate is not added again.</p>
|
|
34
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
|
35
|
-
*
|
|
36
|
-
*
|
|
34
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/https-listener-certificates.html">SSL
|
|
35
|
+
* certificates</a> in the <i>Application Load Balancers Guide</i> or <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/tls-listener-certificates.html">Server
|
|
36
|
+
* certificates</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
37
37
|
* @example
|
|
38
38
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
39
|
* ```javascript
|
|
@@ -28,6 +28,7 @@ declare const CreateTrustStoreCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Creates a trust store.</p>
|
|
31
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/mutual-authentication.html">Mutual TLS for Application Load Balancers</a>.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -36,19 +36,19 @@ declare const DeregisterTargetsCommand_base: {
|
|
|
36
36
|
* <ul>
|
|
37
37
|
* <li>
|
|
38
38
|
* <p>
|
|
39
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
|
39
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/edit-target-group-attributes.html#deregistration-delay">
|
|
40
40
|
* Deregistration delay</a> in the <i>Application Load Balancers User Guide</i>
|
|
41
41
|
* </p>
|
|
42
42
|
* </li>
|
|
43
43
|
* <li>
|
|
44
44
|
* <p>
|
|
45
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
45
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/edit-target-group-attributes.html#deregistration-delay">
|
|
46
46
|
* Deregistration delay</a> in the <i>Network Load Balancers User Guide</i>
|
|
47
47
|
* </p>
|
|
48
48
|
* </li>
|
|
49
49
|
* <li>
|
|
50
50
|
* <p>
|
|
51
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-
|
|
51
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/edit-target-group-attributes.html#deregistration-delay">
|
|
52
52
|
* Deregistration delay</a> in the <i>Gateway Load Balancers User Guide</i>
|
|
53
53
|
* </p>
|
|
54
54
|
* </li>
|
|
@@ -32,8 +32,8 @@ declare const DescribeListenerCertificatesCommand_base: {
|
|
|
32
32
|
* <p>If the default certificate is also in the certificate list, it appears twice in the
|
|
33
33
|
* results (once with <code>IsDefault</code> set to true and once with <code>IsDefault</code> set
|
|
34
34
|
* to false).</p>
|
|
35
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
|
36
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
35
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/https-listener-certificates.html">SSL certificates</a> in the <i>Application Load Balancers Guide</i> or
|
|
36
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/tls-listener-certificates.html">Server certificates</a> in the <i>Network Load Balancers
|
|
37
37
|
* Guide</i>.</p>
|
|
38
38
|
* @example
|
|
39
39
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -28,8 +28,8 @@ declare const DescribeSSLPoliciesCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Describes the specified policies or all policies used for SSL negotiation.</p>
|
|
31
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
|
32
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
31
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html">Security policies</a> in the <i>Application Load Balancers Guide</i> and
|
|
32
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html">Security policies</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -34,9 +34,27 @@ declare const RegisterTargetsCommand_base: {
|
|
|
34
34
|
* port for the target group. Alternatively, you can override the port for a target when you
|
|
35
35
|
* register it. You can register each EC2 instance or IP address with the same target group
|
|
36
36
|
* multiple times using different ports.</p>
|
|
37
|
-
* <p>
|
|
38
|
-
*
|
|
39
|
-
*
|
|
37
|
+
* <p>For more information, see the following:</p>
|
|
38
|
+
* <ul>
|
|
39
|
+
* <li>
|
|
40
|
+
* <p>
|
|
41
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-register-targets.html">Register
|
|
42
|
+
* targets for your Application Load Balancer</a>
|
|
43
|
+
* </p>
|
|
44
|
+
* </li>
|
|
45
|
+
* <li>
|
|
46
|
+
* <p>
|
|
47
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/target-group-register-targets.html">Register targets
|
|
48
|
+
* for your Network Load Balancer</a>
|
|
49
|
+
* </p>
|
|
50
|
+
* </li>
|
|
51
|
+
* <li>
|
|
52
|
+
* <p>
|
|
53
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-group-register-targets.html">Register targets for your
|
|
54
|
+
* Gateway Load Balancer</a>
|
|
55
|
+
* </p>
|
|
56
|
+
* </li>
|
|
57
|
+
* </ul>
|
|
40
58
|
* @example
|
|
41
59
|
* Use a bare-bones client and the command you need to make an API call.
|
|
42
60
|
* ```javascript
|
|
@@ -235,7 +235,8 @@ export interface TargetGroupStickinessConfig {
|
|
|
235
235
|
Enabled?: boolean | undefined;
|
|
236
236
|
/**
|
|
237
237
|
* <p>The time period, in seconds, during which requests from a client should be routed to the
|
|
238
|
-
* same target group. The range is 1-604800 seconds (7 days)
|
|
238
|
+
* same target group. The range is 1-604800 seconds (7 days). You must specify this value when
|
|
239
|
+
* enabling target group stickiness.</p>
|
|
239
240
|
* @public
|
|
240
241
|
*/
|
|
241
242
|
DurationSeconds?: number | undefined;
|
|
@@ -1126,8 +1127,8 @@ export interface CreateListenerInput {
|
|
|
1126
1127
|
/**
|
|
1127
1128
|
* <p>[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are
|
|
1128
1129
|
* supported.</p>
|
|
1129
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
|
1130
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
1130
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html">Security policies</a> in the <i>Application Load Balancers Guide</i> and
|
|
1131
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html">Security policies</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
1131
1132
|
* @public
|
|
1132
1133
|
*/
|
|
1133
1134
|
SslPolicy?: string | undefined;
|
|
@@ -1173,7 +1174,7 @@ export interface CreateListenerInput {
|
|
|
1173
1174
|
* </p>
|
|
1174
1175
|
* </li>
|
|
1175
1176
|
* </ul>
|
|
1176
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
1177
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies">ALPN
|
|
1177
1178
|
* policies</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
1178
1179
|
* @public
|
|
1179
1180
|
*/
|
|
@@ -1883,7 +1884,8 @@ export interface HostHeaderConditionConfig {
|
|
|
1883
1884
|
/**
|
|
1884
1885
|
* <p>The host names. The maximum size of each name is 128 characters. The comparison is
|
|
1885
1886
|
* case insensitive. The following wildcard characters are supported: * (matches 0 or more
|
|
1886
|
-
* characters) and ? (matches exactly 1 character)
|
|
1887
|
+
* characters) and ? (matches exactly 1 character). You must include at least one "."
|
|
1888
|
+
* character. You can include only alphabetical characters after the final "." character.</p>
|
|
1887
1889
|
* <p>If you specify multiple strings, the condition is satisfied if one of the strings matches
|
|
1888
1890
|
* the host name.</p>
|
|
1889
1891
|
* @public
|
|
@@ -1901,7 +1903,7 @@ export interface HttpHeaderConditionConfig {
|
|
|
1901
1903
|
* <p>The name of the HTTP header field. The maximum size is 40 characters. The header name is
|
|
1902
1904
|
* case insensitive. The allowed characters are specified by RFC 7230. Wildcards are not
|
|
1903
1905
|
* supported.</p>
|
|
1904
|
-
* <p>You can't use an HTTP header condition to specify the host header.
|
|
1906
|
+
* <p>You can't use an HTTP header condition to specify the host header. Instead, use a <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html#host-conditions">host condition</a>.</p>
|
|
1905
1907
|
* @public
|
|
1906
1908
|
*/
|
|
1907
1909
|
HttpHeaderName?: string | undefined;
|
|
@@ -1949,7 +1951,7 @@ export interface PathPatternConditionConfig {
|
|
|
1949
1951
|
* are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).</p>
|
|
1950
1952
|
* <p>If you specify multiple strings, the condition is satisfied if one of them matches the
|
|
1951
1953
|
* request URL. The path pattern is compared only to the path of the URL, not to its query
|
|
1952
|
-
* string. To compare against the query string, use <a>
|
|
1954
|
+
* string. To compare against the query string, use a <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html#query-string-conditions">query string condition</a>.</p>
|
|
1953
1955
|
* @public
|
|
1954
1956
|
*/
|
|
1955
1957
|
Values?: string[] | undefined;
|
|
@@ -2005,7 +2007,7 @@ export interface SourceIpConditionConfig {
|
|
|
2005
2007
|
* <p>If you specify multiple addresses, the condition is satisfied if the source IP address of
|
|
2006
2008
|
* the request matches one of the CIDR blocks. This condition is not satisfied by the addresses
|
|
2007
2009
|
* in the X-Forwarded-For header. To search for addresses in the X-Forwarded-For header, use
|
|
2008
|
-
*
|
|
2010
|
+
* an <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html#http-header-conditions">HTTP header condition</a>.</p>
|
|
2009
2011
|
* <p>The total number of values must be less than, or equal to five.</p>
|
|
2010
2012
|
* @public
|
|
2011
2013
|
*/
|
|
@@ -3066,7 +3068,7 @@ export interface DescribeCapacityReservationInput {
|
|
|
3066
3068
|
LoadBalancerArn: string | undefined;
|
|
3067
3069
|
}
|
|
3068
3070
|
/**
|
|
3069
|
-
* <p>The capacity reservation status for each
|
|
3071
|
+
* <p>The capacity reservation status for each Availability Zone.</p>
|
|
3070
3072
|
* @public
|
|
3071
3073
|
*/
|
|
3072
3074
|
export interface ZonalCapacityReservationState {
|
|
@@ -3076,7 +3078,7 @@ export interface ZonalCapacityReservationState {
|
|
|
3076
3078
|
*/
|
|
3077
3079
|
State?: CapacityReservationStatus | undefined;
|
|
3078
3080
|
/**
|
|
3079
|
-
* <p>Information about the
|
|
3081
|
+
* <p>Information about the Availability Zone.</p>
|
|
3080
3082
|
* @public
|
|
3081
3083
|
*/
|
|
3082
3084
|
AvailabilityZone?: string | undefined;
|
|
@@ -3824,7 +3826,7 @@ export interface TargetGroupAttribute {
|
|
|
3824
3826
|
* If the number of healthy targets is below this value, mark the zone as unhealthy
|
|
3825
3827
|
* in DNS, so that traffic is routed only to healthy zones. The possible values are
|
|
3826
3828
|
* <code>off</code> or an integer from 1 to the maximum number of targets.
|
|
3827
|
-
* The default is
|
|
3829
|
+
* The default is 1.</p>
|
|
3828
3830
|
* </li>
|
|
3829
3831
|
* <li>
|
|
3830
3832
|
* <p>
|
|
@@ -4658,8 +4660,8 @@ export interface ModifyListenerInput {
|
|
|
4658
4660
|
/**
|
|
4659
4661
|
* <p>[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are
|
|
4660
4662
|
* supported.</p>
|
|
4661
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
|
4662
|
-
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
4663
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html">Security policies</a> in the <i>Application Load Balancers Guide</i> or
|
|
4664
|
+
* <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html">Security policies</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
4663
4665
|
* @public
|
|
4664
4666
|
*/
|
|
4665
4667
|
SslPolicy?: string | undefined;
|
|
@@ -4705,7 +4707,7 @@ export interface ModifyListenerInput {
|
|
|
4705
4707
|
* </p>
|
|
4706
4708
|
* </li>
|
|
4707
4709
|
* </ul>
|
|
4708
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
4710
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies">ALPN
|
|
4709
4711
|
* policies</a> in the <i>Network Load Balancers Guide</i>.</p>
|
|
4710
4712
|
* @public
|
|
4711
4713
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "../commands/DescribeAccountLimitsCommand";
|
|
3
|
+
import { ElasticLoadBalancingV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateDescribeAccountLimits: (config: ElasticLoadBalancingV2PaginationConfiguration, input: DescribeAccountLimitsCommandInput, ...rest: any[]) => Paginator<DescribeAccountLimitsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeAccountLimitsCommandInput,
|
|
4
|
+
DescribeAccountLimitsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeAccountLimitsCommand";
|
|
6
|
+
import { ElasticLoadBalancingV2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeAccountLimits: (
|
|
8
|
+
config: ElasticLoadBalancingV2PaginationConfiguration,
|
|
9
|
+
input: DescribeAccountLimitsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeAccountLimitsCommandOutput>;
|
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.839.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,43 +20,43 @@
|
|
|
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.839.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.839.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.839.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
30
|
"@aws-sdk/types": "3.821.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.828.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.839.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
-
"@smithy/core": "^3.
|
|
35
|
+
"@smithy/core": "^3.6.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.13",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.14",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.6",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.5",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.21",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.21",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
57
|
"@smithy/util-retry": "^4.0.6",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
|
-
"@smithy/util-waiter": "^4.0.
|
|
59
|
+
"@smithy/util-waiter": "^4.0.6",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|