aws-sdk-elasticloadbalancingv2 1.47.0 → 1.48.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d45b74682a976369037c4bdbacc858f9b375d4e1ab127cb478b3d650af22aae1
|
4
|
+
data.tar.gz: 954cebf1fb025fc426513147c70ab3fde5c4551c862ea96078bf8a0149ce793d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aebf3e1df6dff0f9f7d0902952c90de7a5cb3d38041209f448e594fc4a54e84306f0c3318e343625d45267efd9334c4608c105dfa53b40390c4cd226c6bb3e74
|
7
|
+
data.tar.gz: c82d74f3d275be49f6a54c4b483beaed61918d268e712e01b48ff17f1001cf17481442f72d65cce210286ea9df80233730f32f3639e519785d062af807a7735a
|
@@ -1024,11 +1024,12 @@ module Aws::ElasticLoadBalancingV2
|
|
1024
1024
|
# Creates a rule for the specified listener. The listener must be
|
1025
1025
|
# associated with an Application Load Balancer.
|
1026
1026
|
#
|
1027
|
-
#
|
1028
|
-
#
|
1029
|
-
#
|
1030
|
-
#
|
1031
|
-
#
|
1027
|
+
# Each rule consists of a priority, one or more actions, and one or more
|
1028
|
+
# conditions. Rules are evaluated in priority order, from the lowest
|
1029
|
+
# value to the highest value. When the conditions for a rule are met,
|
1030
|
+
# its actions are performed. If the conditions for no rules are met, the
|
1031
|
+
# actions for the default rule are performed. For more information, see
|
1032
|
+
# [Listener Rules][1] in the *Application Load Balancers Guide*.
|
1032
1033
|
#
|
1033
1034
|
# To view your current rules, use DescribeRules. To update a rule, use
|
1034
1035
|
# ModifyRule. To set the priorities of your rules, use
|
@@ -1042,10 +1043,11 @@ module Aws::ElasticLoadBalancingV2
|
|
1042
1043
|
# The Amazon Resource Name (ARN) of the listener.
|
1043
1044
|
#
|
1044
1045
|
# @option params [required, Array<Types::RuleCondition>] :conditions
|
1045
|
-
# The conditions. Each rule can include
|
1046
|
-
# conditions: `http-request-method`, `host-header`,
|
1047
|
-
# `
|
1048
|
-
# `http-header` and
|
1046
|
+
# The conditions. Each rule can optionally include up to one of each of
|
1047
|
+
# the following conditions: `http-request-method`, `host-header`,
|
1048
|
+
# `path-pattern`, and `source-ip`. Each rule can also optionally include
|
1049
|
+
# one or more of each of the following conditions: `http-header` and
|
1050
|
+
# `query-string`.
|
1049
1051
|
#
|
1050
1052
|
# @option params [required, Integer] :priority
|
1051
1053
|
# The rule priority. A listener can't have multiple rules with the same
|
@@ -1412,8 +1414,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1412
1414
|
# more than one target type.
|
1413
1415
|
#
|
1414
1416
|
# * `instance` - Targets are specified by instance ID. This is the
|
1415
|
-
# default value.
|
1416
|
-
# target type must be `instance`.
|
1417
|
+
# default value.
|
1417
1418
|
#
|
1418
1419
|
# * `ip` - Targets are specified by IP address. You can specify IP
|
1419
1420
|
# addresses from the subnets of the virtual private cloud (VPC) for
|
@@ -1591,6 +1592,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1591
1592
|
|
1592
1593
|
# Deletes the specified rule.
|
1593
1594
|
#
|
1595
|
+
# You can't delete the default rule.
|
1596
|
+
#
|
1594
1597
|
# @option params [required, String] :rule_arn
|
1595
1598
|
# The Amazon Resource Name (ARN) of the rule.
|
1596
1599
|
#
|
@@ -3595,7 +3598,9 @@ module Aws::ElasticLoadBalancingV2
|
|
3595
3598
|
#
|
3596
3599
|
# @option params [Types::Matcher] :matcher
|
3597
3600
|
# \[HTTP/HTTPS health checks\] The HTTP codes to use when checking for a
|
3598
|
-
# successful response from a target.
|
3601
|
+
# successful response from a target. The possible values are from 200 to
|
3602
|
+
# 499. You can specify multiple values (for example, "200,202") or a
|
3603
|
+
# range of values (for example, "200-299"). The default is 200.
|
3599
3604
|
#
|
3600
3605
|
# With Network Load Balancers, you can't modify this setting.
|
3601
3606
|
#
|
@@ -4271,7 +4276,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4271
4276
|
params: params,
|
4272
4277
|
config: config)
|
4273
4278
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4274
|
-
context[:gem_version] = '1.
|
4279
|
+
context[:gem_version] = '1.48.0'
|
4275
4280
|
Seahorse::Client::Request.new(handlers, context)
|
4276
4281
|
end
|
4277
4282
|
|
@@ -18,6 +18,10 @@ module Aws::ElasticLoadBalancingV2
|
|
18
18
|
|
19
19
|
# Information about an action.
|
20
20
|
#
|
21
|
+
# Each rule must include exactly one of the following types of actions:
|
22
|
+
# `forward`, `fixed-response`, or `redirect`, and it must be the last
|
23
|
+
# action to be performed.
|
24
|
+
#
|
21
25
|
# @note When making an API call, you may pass Action
|
22
26
|
# data as a hash:
|
23
27
|
#
|
@@ -106,9 +110,7 @@ module Aws::ElasticLoadBalancingV2
|
|
106
110
|
# @!attribute [rw] order
|
107
111
|
# The order for the action. This value is required for rules with
|
108
112
|
# multiple actions. The action with the lowest value for order is
|
109
|
-
# performed first.
|
110
|
-
# following types of actions: a `forward`, `fixed-response`, or
|
111
|
-
# `redirect`.
|
113
|
+
# performed first.
|
112
114
|
# @return [Integer]
|
113
115
|
#
|
114
116
|
# @!attribute [rw] redirect_config
|
@@ -951,9 +953,10 @@ module Aws::ElasticLoadBalancingV2
|
|
951
953
|
# @return [String]
|
952
954
|
#
|
953
955
|
# @!attribute [rw] conditions
|
954
|
-
# The conditions. Each rule can include
|
955
|
-
# conditions: `http-request-method`, `host-header`,
|
956
|
-
# and `source-ip
|
956
|
+
# The conditions. Each rule can optionally include up to one of each
|
957
|
+
# of the following conditions: `http-request-method`, `host-header`,
|
958
|
+
# `path-pattern`, and `source-ip`. Each rule can also optionally
|
959
|
+
# include one or more of each of the following conditions:
|
957
960
|
# `http-header` and `query-string`.
|
958
961
|
# @return [Array<Types::RuleCondition>]
|
959
962
|
#
|
@@ -1134,8 +1137,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1134
1137
|
# group using more than one target type.
|
1135
1138
|
#
|
1136
1139
|
# * `instance` - Targets are specified by instance ID. This is the
|
1137
|
-
# default value.
|
1138
|
-
# the target type must be `instance`.
|
1140
|
+
# default value.
|
1139
1141
|
#
|
1140
1142
|
# * `ip` - Targets are specified by IP address. You can specify IP
|
1141
1143
|
# addresses from the subnets of the virtual private cloud (VPC) for
|
@@ -2324,6 +2326,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2324
2326
|
# seconds. The valid range is 1-4000 seconds. The default is 60
|
2325
2327
|
# seconds.
|
2326
2328
|
#
|
2329
|
+
# * `routing.http.desync_mitigation_mode` - Determines how the load
|
2330
|
+
# balancer handles requests that might pose a security risk to your
|
2331
|
+
# application. The possible values are `monitor`, `defensive`, and
|
2332
|
+
# `strictest`. The default is `defensive`.
|
2333
|
+
#
|
2327
2334
|
# * `routing.http.drop_invalid_header_fields.enabled` - Indicates
|
2328
2335
|
# whether HTTP headers with invalid header fields are removed by the
|
2329
2336
|
# load balancer (`true`) or routed to targets (`false`). The default
|
@@ -2935,7 +2942,10 @@ module Aws::ElasticLoadBalancingV2
|
|
2935
2942
|
#
|
2936
2943
|
# @!attribute [rw] matcher
|
2937
2944
|
# \[HTTP/HTTPS health checks\] The HTTP codes to use when checking for
|
2938
|
-
# a successful response from a target.
|
2945
|
+
# a successful response from a target. The possible values are from
|
2946
|
+
# 200 to 499. You can specify multiple values (for example,
|
2947
|
+
# "200,202") or a range of values (for example, "200-299"). The
|
2948
|
+
# default is 200.
|
2939
2949
|
#
|
2940
2950
|
# With Network Load Balancers, you can't modify this setting.
|
2941
2951
|
# @return [Types::Matcher]
|
@@ -3310,6 +3320,11 @@ module Aws::ElasticLoadBalancingV2
|
|
3310
3320
|
|
3311
3321
|
# Information about a condition for a rule.
|
3312
3322
|
#
|
3323
|
+
# Each rule can optionally include up to one of each of the following
|
3324
|
+
# conditions: `http-request-method`, `host-header`, `path-pattern`, and
|
3325
|
+
# `source-ip`. Each rule can also optionally include one or more of each
|
3326
|
+
# of the following conditions: `http-header` and `query-string`.
|
3327
|
+
#
|
3313
3328
|
# @note When making an API call, you may pass RuleCondition
|
3314
3329
|
# data as a hash:
|
3315
3330
|
#
|
@@ -3360,14 +3375,15 @@ module Aws::ElasticLoadBalancingV2
|
|
3360
3375
|
# @return [String]
|
3361
3376
|
#
|
3362
3377
|
# @!attribute [rw] values
|
3363
|
-
# The condition value.
|
3364
|
-
# `
|
3365
|
-
#
|
3366
|
-
# `PathPatternConfig
|
3367
|
-
#
|
3368
|
-
# If `Field` is `host-header
|
3369
|
-
#
|
3370
|
-
#
|
3378
|
+
# The condition value. Specify only when `Field` is `host-header` or
|
3379
|
+
# `path-pattern`. Alternatively, to specify multiple host names or
|
3380
|
+
# multiple path patterns, use `HostHeaderConfig` or
|
3381
|
+
# `PathPatternConfig`.
|
3382
|
+
#
|
3383
|
+
# If `Field` is `host-header` and you are not using
|
3384
|
+
# `HostHeaderConfig`, you can specify a single host name (for example,
|
3385
|
+
# my.example.com) in `Values`. A host name is case insensitive, can be
|
3386
|
+
# up to 128 characters in length, and can contain any of the following
|
3371
3387
|
# characters.
|
3372
3388
|
#
|
3373
3389
|
# * A-Z, a-z, 0-9
|
@@ -3378,10 +3394,11 @@ module Aws::ElasticLoadBalancingV2
|
|
3378
3394
|
#
|
3379
3395
|
# * ? (matches exactly 1 character)
|
3380
3396
|
#
|
3381
|
-
# If `Field` is `path-pattern
|
3382
|
-
#
|
3383
|
-
#
|
3384
|
-
# characters
|
3397
|
+
# If `Field` is `path-pattern` and you are not using
|
3398
|
+
# `PathPatternConfig`, you can specify a single path pattern (for
|
3399
|
+
# example, /img/*) in `Values`. A path pattern is case-sensitive, can
|
3400
|
+
# be up to 128 characters in length, and can contain any of the
|
3401
|
+
# following characters.
|
3385
3402
|
#
|
3386
3403
|
# * A-Z, a-z, 0-9
|
3387
3404
|
#
|
@@ -4002,8 +4019,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4002
4019
|
# during which a newly registered target receives an increasing
|
4003
4020
|
# share of the traffic to the target group. After this time period
|
4004
4021
|
# ends, the target receives its full share of traffic. The range is
|
4005
|
-
# 30-900 seconds (15 minutes).
|
4006
|
-
# default.
|
4022
|
+
# 30-900 seconds (15 minutes). The default is 0 seconds (disabled).
|
4007
4023
|
#
|
4008
4024
|
# * `stickiness.lb_cookie.duration_seconds` - The time period, in
|
4009
4025
|
# seconds, during which requests from a client should be routed to
|
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.48.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: 2020-
|
11
|
+
date: 2020-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|