@aws-sdk/client-elastic-load-balancing-v2 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 (35) hide show
  1. package/dist-types/commands/AddListenerCertificatesCommand.d.ts +10 -0
  2. package/dist-types/commands/AddTagsCommand.d.ts +42 -0
  3. package/dist-types/commands/CreateListenerCommand.d.ts +144 -0
  4. package/dist-types/commands/CreateLoadBalancerCommand.d.ts +137 -0
  5. package/dist-types/commands/CreateRuleCommand.d.ts +101 -0
  6. package/dist-types/commands/CreateTargetGroupCommand.d.ts +51 -0
  7. package/dist-types/commands/DeleteListenerCommand.d.ts +18 -0
  8. package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +21 -0
  9. package/dist-types/commands/DeleteRuleCommand.d.ts +18 -0
  10. package/dist-types/commands/DeleteTargetGroupCommand.d.ts +15 -0
  11. package/dist-types/commands/DeregisterTargetsCommand.d.ts +24 -0
  12. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -0
  13. package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +4 -0
  14. package/dist-types/commands/DescribeListenersCommand.d.ts +41 -0
  15. package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +41 -0
  16. package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +49 -0
  17. package/dist-types/commands/DescribeRulesCommand.d.ts +48 -0
  18. package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +109 -0
  19. package/dist-types/commands/DescribeTagsCommand.d.ts +45 -0
  20. package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +37 -0
  21. package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +46 -0
  22. package/dist-types/commands/DescribeTargetHealthCommand.d.ts +83 -0
  23. package/dist-types/commands/ModifyListenerCommand.d.ts +130 -0
  24. package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +144 -0
  25. package/dist-types/commands/ModifyRuleCommand.d.ts +81 -0
  26. package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +46 -0
  27. package/dist-types/commands/ModifyTargetGroupCommand.d.ts +45 -0
  28. package/dist-types/commands/RegisterTargetsCommand.d.ts +55 -0
  29. package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +7 -0
  30. package/dist-types/commands/RemoveTagsCommand.d.ts +33 -0
  31. package/dist-types/commands/SetIpAddressTypeCommand.d.ts +10 -0
  32. package/dist-types/commands/SetRulePrioritiesCommand.d.ts +51 -0
  33. package/dist-types/commands/SetSecurityGroupsCommand.d.ts +31 -0
  34. package/dist-types/commands/SetSubnetsCommand.d.ts +48 -0
  35. package/package.json +30 -30
@@ -32,6 +32,37 @@ export interface SetSecurityGroupsCommandOutput extends SetSecurityGroupsOutput,
32
32
  * @see {@link SetSecurityGroupsCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
34
34
  *
35
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
36
+ * <p>The requested configuration is not valid.</p>
37
+ *
38
+ * @throws {@link InvalidSecurityGroupException} (client fault)
39
+ * <p>The specified security group does not exist.</p>
40
+ *
41
+ * @throws {@link LoadBalancerNotFoundException} (client fault)
42
+ * <p>The specified load balancer does not exist.</p>
43
+ *
44
+ *
45
+ * @example To associate a security group with a load balancer
46
+ * ```javascript
47
+ * // This example associates the specified security group with the specified load balancer.
48
+ * const input = {
49
+ * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
50
+ * "SecurityGroups": [
51
+ * "sg-5943793c"
52
+ * ]
53
+ * };
54
+ * const command = new SetSecurityGroupsCommand(input);
55
+ * const response = await client.send(command);
56
+ * /* response ==
57
+ * {
58
+ * "SecurityGroupIds": [
59
+ * "sg-5943793c"
60
+ * ]
61
+ * }
62
+ * *\/
63
+ * // example id: elbv2-set-security-groups-1
64
+ * ```
65
+ *
35
66
  */
36
67
  export declare class SetSecurityGroupsCommand extends $Command<SetSecurityGroupsCommandInput, SetSecurityGroupsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
37
68
  readonly input: SetSecurityGroupsCommandInput;
@@ -34,6 +34,54 @@ export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBea
34
34
  * @see {@link SetSubnetsCommandOutput} for command's `response` shape.
35
35
  * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
36
36
  *
37
+ * @throws {@link AllocationIdNotFoundException} (client fault)
38
+ * <p>The specified allocation ID does not exist.</p>
39
+ *
40
+ * @throws {@link AvailabilityZoneNotSupportedException} (client fault)
41
+ * <p>The specified Availability Zone is not supported.</p>
42
+ *
43
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
44
+ * <p>The requested configuration is not valid.</p>
45
+ *
46
+ * @throws {@link InvalidSubnetException} (client fault)
47
+ * <p>The specified subnet is out of available addresses.</p>
48
+ *
49
+ * @throws {@link LoadBalancerNotFoundException} (client fault)
50
+ * <p>The specified load balancer does not exist.</p>
51
+ *
52
+ * @throws {@link SubnetNotFoundException} (client fault)
53
+ * <p>The specified subnet does not exist.</p>
54
+ *
55
+ *
56
+ * @example To enable Availability Zones for a load balancer
57
+ * ```javascript
58
+ * // This example enables the Availability Zones for the specified subnets for the specified load balancer.
59
+ * const input = {
60
+ * "LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
61
+ * "Subnets": [
62
+ * "subnet-8360a9e7",
63
+ * "subnet-b7d581c0"
64
+ * ]
65
+ * };
66
+ * const command = new SetSubnetsCommand(input);
67
+ * const response = await client.send(command);
68
+ * /* response ==
69
+ * {
70
+ * "AvailabilityZones": [
71
+ * {
72
+ * "SubnetId": "subnet-8360a9e7",
73
+ * "ZoneName": "us-west-2a"
74
+ * },
75
+ * {
76
+ * "SubnetId": "subnet-b7d581c0",
77
+ * "ZoneName": "us-west-2b"
78
+ * }
79
+ * ]
80
+ * }
81
+ * *\/
82
+ * // example id: elbv2-set-subnets-1
83
+ * ```
84
+ *
37
85
  */
38
86
  export declare class SetSubnetsCommand extends $Command<SetSubnetsCommandInput, SetSubnetsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
39
87
  readonly input: SetSubnetsCommandInput;
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.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
  },