@aws-sdk/client-elastic-load-balancing-v2 3.36.1 → 3.40.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 +42 -0
- package/dist-cjs/commands/index.js +37 -0
- package/dist-cjs/endpoints.js +130 -24
- package/dist-cjs/index.js +5 -45
- package/dist-cjs/models/models_0.js +8 -3
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_query.js +18 -0
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-cjs/waiters/index.js +8 -0
- package/dist-es/commands/index.js +34 -0
- package/dist-es/endpoints.js +130 -24
- package/dist-es/index.js +5 -45
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_query.js +18 -0
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-es/waiters/index.js +5 -0
- package/dist-types/ElasticLoadBalancingV2Client.d.ts +8 -0
- package/dist-types/commands/index.d.ts +34 -0
- package/dist-types/index.d.ts +5 -45
- package/dist-types/models/models_0.d.ts +41 -12
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -3
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/ElasticLoadBalancingV2Client.d.ts +4 -0
- package/dist-types/ts3.4/commands/index.d.ts +34 -0
- package/dist-types/ts3.4/index.d.ts +5 -45
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/package.json +33 -33
|
@@ -72,6 +72,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
72
72
|
|
|
73
73
|
logger?: __Logger;
|
|
74
74
|
|
|
75
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
76
|
+
|
|
77
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
78
|
+
|
|
75
79
|
serviceId?: string;
|
|
76
80
|
|
|
77
81
|
region?: string | __Provider<string>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export * from "./AddListenerCertificatesCommand";
|
|
2
|
+
export * from "./AddTagsCommand";
|
|
3
|
+
export * from "./CreateListenerCommand";
|
|
4
|
+
export * from "./CreateLoadBalancerCommand";
|
|
5
|
+
export * from "./CreateRuleCommand";
|
|
6
|
+
export * from "./CreateTargetGroupCommand";
|
|
7
|
+
export * from "./DeleteListenerCommand";
|
|
8
|
+
export * from "./DeleteLoadBalancerCommand";
|
|
9
|
+
export * from "./DeleteRuleCommand";
|
|
10
|
+
export * from "./DeleteTargetGroupCommand";
|
|
11
|
+
export * from "./DeregisterTargetsCommand";
|
|
12
|
+
export * from "./DescribeAccountLimitsCommand";
|
|
13
|
+
export * from "./DescribeListenerCertificatesCommand";
|
|
14
|
+
export * from "./DescribeListenersCommand";
|
|
15
|
+
export * from "./DescribeLoadBalancerAttributesCommand";
|
|
16
|
+
export * from "./DescribeLoadBalancersCommand";
|
|
17
|
+
export * from "./DescribeRulesCommand";
|
|
18
|
+
export * from "./DescribeSSLPoliciesCommand";
|
|
19
|
+
export * from "./DescribeTagsCommand";
|
|
20
|
+
export * from "./DescribeTargetGroupAttributesCommand";
|
|
21
|
+
export * from "./DescribeTargetGroupsCommand";
|
|
22
|
+
export * from "./DescribeTargetHealthCommand";
|
|
23
|
+
export * from "./ModifyListenerCommand";
|
|
24
|
+
export * from "./ModifyLoadBalancerAttributesCommand";
|
|
25
|
+
export * from "./ModifyRuleCommand";
|
|
26
|
+
export * from "./ModifyTargetGroupAttributesCommand";
|
|
27
|
+
export * from "./ModifyTargetGroupCommand";
|
|
28
|
+
export * from "./RegisterTargetsCommand";
|
|
29
|
+
export * from "./RemoveListenerCertificatesCommand";
|
|
30
|
+
export * from "./RemoveTagsCommand";
|
|
31
|
+
export * from "./SetIpAddressTypeCommand";
|
|
32
|
+
export * from "./SetRulePrioritiesCommand";
|
|
33
|
+
export * from "./SetSecurityGroupsCommand";
|
|
34
|
+
export * from "./SetSubnetsCommand";
|
|
@@ -1,46 +1,6 @@
|
|
|
1
|
-
export * from "./ElasticLoadBalancingV2Client";
|
|
2
1
|
export * from "./ElasticLoadBalancingV2";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./
|
|
8
|
-
export * from "./commands/CreateTargetGroupCommand";
|
|
9
|
-
export * from "./commands/DeleteListenerCommand";
|
|
10
|
-
export * from "./commands/DeleteLoadBalancerCommand";
|
|
11
|
-
export * from "./commands/DeleteRuleCommand";
|
|
12
|
-
export * from "./commands/DeleteTargetGroupCommand";
|
|
13
|
-
export * from "./commands/DeregisterTargetsCommand";
|
|
14
|
-
export * from "./commands/DescribeAccountLimitsCommand";
|
|
15
|
-
export * from "./commands/DescribeListenerCertificatesCommand";
|
|
16
|
-
export * from "./commands/DescribeListenersCommand";
|
|
17
|
-
export * from "./pagination/DescribeListenersPaginator";
|
|
18
|
-
export * from "./commands/DescribeLoadBalancerAttributesCommand";
|
|
19
|
-
export * from "./commands/DescribeLoadBalancersCommand";
|
|
20
|
-
export * from "./pagination/DescribeLoadBalancersPaginator";
|
|
21
|
-
export * from "./waiters/waitForLoadBalancerAvailable";
|
|
22
|
-
export * from "./waiters/waitForLoadBalancerExists";
|
|
23
|
-
export * from "./waiters/waitForLoadBalancersDeleted";
|
|
24
|
-
export * from "./commands/DescribeRulesCommand";
|
|
25
|
-
export * from "./commands/DescribeSSLPoliciesCommand";
|
|
26
|
-
export * from "./commands/DescribeTagsCommand";
|
|
27
|
-
export * from "./commands/DescribeTargetGroupAttributesCommand";
|
|
28
|
-
export * from "./commands/DescribeTargetGroupsCommand";
|
|
29
|
-
export * from "./pagination/DescribeTargetGroupsPaginator";
|
|
30
|
-
export * from "./commands/DescribeTargetHealthCommand";
|
|
31
|
-
export * from "./waiters/waitForTargetDeregistered";
|
|
32
|
-
export * from "./waiters/waitForTargetInService";
|
|
33
|
-
export * from "./commands/ModifyListenerCommand";
|
|
34
|
-
export * from "./commands/ModifyLoadBalancerAttributesCommand";
|
|
35
|
-
export * from "./commands/ModifyRuleCommand";
|
|
36
|
-
export * from "./commands/ModifyTargetGroupCommand";
|
|
37
|
-
export * from "./commands/ModifyTargetGroupAttributesCommand";
|
|
38
|
-
export * from "./commands/RegisterTargetsCommand";
|
|
39
|
-
export * from "./commands/RemoveListenerCertificatesCommand";
|
|
40
|
-
export * from "./commands/RemoveTagsCommand";
|
|
41
|
-
export * from "./commands/SetIpAddressTypeCommand";
|
|
42
|
-
export * from "./commands/SetRulePrioritiesCommand";
|
|
43
|
-
export * from "./commands/SetSecurityGroupsCommand";
|
|
44
|
-
export * from "./commands/SetSubnetsCommand";
|
|
45
|
-
export * from "./pagination/Interfaces";
|
|
46
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./ElasticLoadBalancingV2Client";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export * from "./waiters";
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -29,7 +31,7 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
29
31
|
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
30
32
|
signingEscapePath?: boolean | undefined;
|
|
31
33
|
systemClockOffset?: number | undefined;
|
|
32
|
-
signingRegion?: string | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
33
35
|
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
34
36
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
35
37
|
};
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: ElasticLoadBalancingV2ClientConf
|
|
|
16
16
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
18
|
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
serviceId: string;
|
|
20
22
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
21
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
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.40.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -19,43 +19,43 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-crypto/sha256-browser": "
|
|
23
|
-
"@aws-crypto/sha256-js": "
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
52
|
-
"@aws-sdk/util-waiter": "3.
|
|
22
|
+
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
|
+
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.40.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.40.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.40.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.40.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.40.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.40.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.40.0",
|
|
42
|
+
"@aws-sdk/types": "3.40.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.40.0",
|
|
44
|
+
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
|
+
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.40.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.40.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
|
+
"@aws-sdk/util-waiter": "3.40.0",
|
|
53
53
|
"entities": "2.2.0",
|
|
54
54
|
"fast-xml-parser": "3.19.0",
|
|
55
55
|
"tslib": "^2.3.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/client-documentation-generator": "3.
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.38.0",
|
|
59
59
|
"@types/node": "^12.7.5",
|
|
60
60
|
"downlevel-dts": "0.7.0",
|
|
61
61
|
"jest": "^26.1.0",
|