aws-sdk-elasticloadbalancingv2 1.2.0 → 1.3.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 651e686c34eff62ec428a5c9049ab6e37434a749
|
4
|
+
data.tar.gz: 08bb26fc62e73388f3d225823c2ecb6f595814c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c03afe5b8dec35a1225eaeb5ae8b9025277219f2601138ac2703584967b92707eb9c3f2cd22f3aeb3242d3c9a34339969286d9ad48d0fa6439f025a91c20aeea
|
7
|
+
data.tar.gz: 86e85aed42eb0fa8ec94a3761439de625fd1928e40808674c4558e107338b941815ecfde07afef884f0aa7aafe7796f54263a46026d028c825ced0cacff3ea2d
|
@@ -258,7 +258,8 @@ module Aws::ElasticLoadBalancingV2
|
|
258
258
|
#
|
259
259
|
# @example Example: To create an HTTP listener
|
260
260
|
#
|
261
|
-
# # This example creates an HTTP listener for the specified load balancer that forwards requests to the specified target
|
261
|
+
# # This example creates an HTTP listener for the specified load balancer that forwards requests to the specified target
|
262
|
+
# # group.
|
262
263
|
#
|
263
264
|
# resp = client.create_listener({
|
264
265
|
# default_actions: [
|
@@ -292,7 +293,10 @@ module Aws::ElasticLoadBalancingV2
|
|
292
293
|
#
|
293
294
|
# @example Example: To create an HTTPS listener
|
294
295
|
#
|
295
|
-
# # This example creates an HTTPS listener for the specified load balancer that forwards requests to the specified target
|
296
|
+
# # This example creates an HTTPS listener for the specified load balancer that forwards requests to the specified target
|
297
|
+
# # group. Note that you must specify an SSL certificate for an HTTPS listener. You can create and manage certificates using
|
298
|
+
# # AWS Certificate Manager (ACM). Alternatively, you can create a certificate using SSL/TLS tools, get the certificate
|
299
|
+
# # signed by a certificate authority (CA), and upload the certificate to AWS Identity and Access Management (IAM).
|
296
300
|
#
|
297
301
|
# resp = client.create_listener({
|
298
302
|
# certificates: [
|
@@ -682,7 +686,8 @@ module Aws::ElasticLoadBalancingV2
|
|
682
686
|
#
|
683
687
|
# @example Example: To create a rule
|
684
688
|
#
|
685
|
-
# # This example creates a rule that forwards requests to the specified target group if the URL contains the specified
|
689
|
+
# # This example creates a rule that forwards requests to the specified target group if the URL contains the specified
|
690
|
+
# # pattern (for example, /img/*).
|
686
691
|
#
|
687
692
|
# resp = client.create_rule({
|
688
693
|
# actions: [
|
@@ -875,7 +880,8 @@ module Aws::ElasticLoadBalancingV2
|
|
875
880
|
#
|
876
881
|
# @example Example: To create a target group
|
877
882
|
#
|
878
|
-
# # This example creates a target group that you can use to route traffic to targets using HTTP on port 80. This target
|
883
|
+
# # This example creates a target group that you can use to route traffic to targets using HTTP on port 80. This target
|
884
|
+
# # group uses the default health check configuration.
|
879
885
|
#
|
880
886
|
# resp = client.create_target_group({
|
881
887
|
# name: "my-targets",
|
@@ -1947,7 +1953,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1947
1953
|
#
|
1948
1954
|
# @example Example: To describe the health of the targets for a target group
|
1949
1955
|
#
|
1950
|
-
# # This example describes the health of the targets for the specified target group. One target is healthy but the other is
|
1956
|
+
# # This example describes the health of the targets for the specified target group. One target is healthy but the other is
|
1957
|
+
# # not specified in an action, so it can't receive traffic from the load balancer.
|
1951
1958
|
#
|
1952
1959
|
# resp = client.describe_target_health({
|
1953
1960
|
# target_group_arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067",
|
@@ -2296,7 +2303,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2296
2303
|
#
|
2297
2304
|
# @example Example: To enable access logs
|
2298
2305
|
#
|
2299
|
-
# # This example enables access logs for the specified load balancer. Note that the S3 bucket must exist in the same region
|
2306
|
+
# # This example enables access logs for the specified load balancer. Note that the S3 bucket must exist in the same region
|
2307
|
+
# # as the load balancer and must have a policy attached that grants access to the Elastic Load Balancing service.
|
2300
2308
|
#
|
2301
2309
|
# resp = client.modify_load_balancer_attributes({
|
2302
2310
|
# attributes: [
|
@@ -2523,7 +2531,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2523
2531
|
#
|
2524
2532
|
# @example Example: To modify the health check configuration for a target group
|
2525
2533
|
#
|
2526
|
-
# # This example changes the configuration of the health checks used to evaluate the health of the targets for the specified
|
2534
|
+
# # This example changes the configuration of the health checks used to evaluate the health of the targets for the specified
|
2535
|
+
# # target group.
|
2527
2536
|
#
|
2528
2537
|
# resp = client.modify_target_group({
|
2529
2538
|
# health_check_port: "443",
|
@@ -2723,7 +2732,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2723
2732
|
#
|
2724
2733
|
# @example Example: To register targets with a target group using port overrides
|
2725
2734
|
#
|
2726
|
-
# # This example registers the specified instance with the specified target group using multiple ports. This enables you to
|
2735
|
+
# # This example registers the specified instance with the specified target group using multiple ports. This enables you to
|
2736
|
+
# # register ECS containers on the same instance as targets in the target group.
|
2727
2737
|
#
|
2728
2738
|
# resp = client.register_targets({
|
2729
2739
|
# target_group_arn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-new-targets/3bb63f11dfb0faf9",
|
@@ -3082,7 +3092,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3082
3092
|
params: params,
|
3083
3093
|
config: config)
|
3084
3094
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
3085
|
-
context[:gem_version] = '1.
|
3095
|
+
context[:gem_version] = '1.3.0'
|
3086
3096
|
Seahorse::Client::Request.new(handlers, context)
|
3087
3097
|
end
|
3088
3098
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticloadbalancingv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-09-
|
11
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|