@aws-sdk/client-elastic-load-balancing 3.288.0 → 3.290.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.
Files changed (30) hide show
  1. package/dist-types/commands/AddTagsCommand.d.ts +33 -0
  2. package/dist-types/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +31 -0
  3. package/dist-types/commands/AttachLoadBalancerToSubnetsCommand.d.ts +35 -0
  4. package/dist-types/commands/ConfigureHealthCheckCommand.d.ts +33 -0
  5. package/dist-types/commands/CreateAppCookieStickinessPolicyCommand.d.ts +26 -0
  6. package/dist-types/commands/CreateLBCookieStickinessPolicyCommand.d.ts +26 -0
  7. package/dist-types/commands/CreateLoadBalancerCommand.d.ts +198 -0
  8. package/dist-types/commands/CreateLoadBalancerListenersCommand.d.ts +57 -0
  9. package/dist-types/commands/CreateLoadBalancerPolicyCommand.d.ts +73 -0
  10. package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +12 -0
  11. package/dist-types/commands/DeleteLoadBalancerListenersCommand.d.ts +18 -0
  12. package/dist-types/commands/DeleteLoadBalancerPolicyCommand.d.ts +19 -0
  13. package/dist-types/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +35 -0
  14. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -0
  15. package/dist-types/commands/DescribeInstanceHealthCommand.d.ts +36 -0
  16. package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +37 -0
  17. package/dist-types/commands/DescribeLoadBalancerPoliciesCommand.d.ts +37 -0
  18. package/dist-types/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +34 -0
  19. package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +110 -0
  20. package/dist-types/commands/DescribeTagsCommand.d.ts +36 -0
  21. package/dist-types/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +28 -0
  22. package/dist-types/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +28 -0
  23. package/dist-types/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +26 -0
  24. package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +64 -0
  25. package/dist-types/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +38 -0
  26. package/dist-types/commands/RemoveTagsCommand.d.ts +22 -0
  27. package/dist-types/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +31 -0
  28. package/dist-types/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +25 -0
  29. package/dist-types/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +28 -0
  30. package/package.json +30 -30
@@ -39,6 +39,31 @@ export interface SetLoadBalancerPoliciesForBackendServerCommandOutput extends Se
39
39
  * @see {@link SetLoadBalancerPoliciesForBackendServerCommandOutput} for command's `response` shape.
40
40
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
41
41
  *
42
+ * @throws {@link AccessPointNotFoundException} (client fault)
43
+ * <p>The specified load balancer does not exist.</p>
44
+ *
45
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
46
+ * <p>The requested configuration change is not valid.</p>
47
+ *
48
+ * @throws {@link PolicyNotFoundException} (client fault)
49
+ * <p>One or more of the specified policies do not exist.</p>
50
+ *
51
+ *
52
+ * @example To replace the policies associated with a port for a backend instance
53
+ * ```javascript
54
+ * // This example replaces the policies that are currently associated with the specified port.
55
+ * const input = {
56
+ * "InstancePort": 80,
57
+ * "LoadBalancerName": "my-load-balancer",
58
+ * "PolicyNames": [
59
+ * "my-ProxyProtocol-policy"
60
+ * ]
61
+ * };
62
+ * const command = new SetLoadBalancerPoliciesForBackendServerCommand(input);
63
+ * await client.send(command);
64
+ * // example id: elb-set-load-balancer-policies-for-backend-server-1
65
+ * ```
66
+ *
42
67
  */
43
68
  export declare class SetLoadBalancerPoliciesForBackendServerCommand extends $Command<SetLoadBalancerPoliciesForBackendServerCommandInput, SetLoadBalancerPoliciesForBackendServerCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
44
69
  readonly input: SetLoadBalancerPoliciesForBackendServerCommandInput;
@@ -35,6 +35,34 @@ export interface SetLoadBalancerPoliciesOfListenerCommandOutput extends SetLoadB
35
35
  * @see {@link SetLoadBalancerPoliciesOfListenerCommandOutput} for command's `response` shape.
36
36
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
37
37
  *
38
+ * @throws {@link AccessPointNotFoundException} (client fault)
39
+ * <p>The specified load balancer does not exist.</p>
40
+ *
41
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
42
+ * <p>The requested configuration change is not valid.</p>
43
+ *
44
+ * @throws {@link ListenerNotFoundException} (client fault)
45
+ * <p>The load balancer does not have a listener configured at the specified port.</p>
46
+ *
47
+ * @throws {@link PolicyNotFoundException} (client fault)
48
+ * <p>One or more of the specified policies do not exist.</p>
49
+ *
50
+ *
51
+ * @example To replace the policies associated with a listener
52
+ * ```javascript
53
+ * // This example replaces the policies that are currently associated with the specified listener.
54
+ * const input = {
55
+ * "LoadBalancerName": "my-load-balancer",
56
+ * "LoadBalancerPort": 80,
57
+ * "PolicyNames": [
58
+ * "my-SSLNegotiation-policy"
59
+ * ]
60
+ * };
61
+ * const command = new SetLoadBalancerPoliciesOfListenerCommand(input);
62
+ * await client.send(command);
63
+ * // example id: elb-set-load-balancer-policies-of-listener-1
64
+ * ```
65
+ *
38
66
  */
39
67
  export declare class SetLoadBalancerPoliciesOfListenerCommand extends $Command<SetLoadBalancerPoliciesOfListenerCommandInput, SetLoadBalancerPoliciesOfListenerCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
40
68
  readonly input: SetLoadBalancerPoliciesOfListenerCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-load-balancing",
3
3
  "description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native",
4
- "version": "3.288.0",
4
+ "version": "3.290.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",
@@ -20,39 +20,39 @@
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-sts": "3.288.0",
24
- "@aws-sdk/config-resolver": "3.287.0",
25
- "@aws-sdk/credential-provider-node": "3.288.0",
26
- "@aws-sdk/fetch-http-handler": "3.282.0",
27
- "@aws-sdk/hash-node": "3.272.0",
28
- "@aws-sdk/invalid-dependency": "3.272.0",
29
- "@aws-sdk/middleware-content-length": "3.282.0",
30
- "@aws-sdk/middleware-endpoint": "3.282.0",
31
- "@aws-sdk/middleware-host-header": "3.282.0",
32
- "@aws-sdk/middleware-logger": "3.288.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.282.0",
34
- "@aws-sdk/middleware-retry": "3.287.0",
35
- "@aws-sdk/middleware-serde": "3.272.0",
36
- "@aws-sdk/middleware-signing": "3.282.0",
37
- "@aws-sdk/middleware-stack": "3.272.0",
38
- "@aws-sdk/middleware-user-agent": "3.282.0",
39
- "@aws-sdk/node-config-provider": "3.287.0",
40
- "@aws-sdk/node-http-handler": "3.282.0",
41
- "@aws-sdk/protocol-http": "3.282.0",
42
- "@aws-sdk/smithy-client": "3.279.0",
43
- "@aws-sdk/types": "3.272.0",
44
- "@aws-sdk/url-parser": "3.272.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.287.0",
50
- "@aws-sdk/util-endpoints": "3.272.0",
51
- "@aws-sdk/util-retry": "3.272.0",
52
- "@aws-sdk/util-user-agent-browser": "3.282.0",
53
- "@aws-sdk/util-user-agent-node": "3.287.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
- "@aws-sdk/util-waiter": "3.272.0",
55
+ "@aws-sdk/util-waiter": "3.290.0",
56
56
  "fast-xml-parser": "4.1.2",
57
57
  "tslib": "^2.3.1"
58
58
  },