aws-sdk-elasticloadbalancing 1.41.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a4667883437595a4d2002c934b9f88e92fe28bf7f8b199c53511ae88626489e
4
- data.tar.gz: 8b2ef1ff2c3911b90f94aff8b93cf89faed9aa3efc8819ac450641a1c90723ce
3
+ metadata.gz: 529a71f47ae8e39b80d1fd6381245c6cc47496f4ff52e1670bc9eddfab8b64d4
4
+ data.tar.gz: 46299dfa5f0f6cae2cf1cffcd42abe223810c2d7895d4788f864521bc4103038
5
5
  SHA512:
6
- metadata.gz: 481e67b496bd5fcae3bda50455bdf486974e3d77bbd8a14f0422d179dc61f5cf7fd7a000de7fa9869fe5dca8c1782af3b4f361e46e3fc32185c320ffe5bc2cf0
7
- data.tar.gz: 4b21be8ff9ecc9e6c21d6153e25d74dd3979ecc22d2e962b40f131f76ac15383023ca5032eab50789edc57596e546b532a710932c389d5c0b36b7f6765271f35
6
+ metadata.gz: ea5ef2098cd6824d31e3910859ccdbe4c85baaf2c25a0caaaebb3a827249e092b3981455d6091b1a548cc2be4be0f70900874477daa5b3d4353d85c67c17b495
7
+ data.tar.gz: 92c0ddfb781443866e058358d6eba6d6ae372aa1d43a1dbdcffea71d550699f4c6d468fd5f61e327ea66142ef9a86d8946e7b0a09cef3a6167773e74b3bbff1f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.41.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -275,4 +282,4 @@ Unreleased Changes
275
282
  1.0.0.rc1 (2016-12-05)
276
283
  ------------------
277
284
 
278
- * Feature - Initial preview release of the `aws-sdk-elasticloadbalancing` gem.
285
+ * Feature - Initial preview release of the `aws-sdk-elasticloadbalancing` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -2653,7 +2653,7 @@ module Aws::ElasticLoadBalancing
2653
2653
  params: params,
2654
2654
  config: config)
2655
2655
  context[:gem_name] = 'aws-sdk-elasticloadbalancing'
2656
- context[:gem_version] = '1.41.0'
2656
+ context[:gem_version] = '1.42.0'
2657
2657
  Seahorse::Client::Request.new(handlers, context)
2658
2658
  end
2659
2659
 
@@ -9,110 +9,46 @@
9
9
 
10
10
  module Aws::ElasticLoadBalancing
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
39
+ end
40
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
41
+ end
42
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
43
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
44
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
45
+ end
46
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
47
+ end
48
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticloadbalancing.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
49
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
50
+ raise ArgumentError, 'No endpoint could be resolved'
24
51
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
52
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2VsYXN0aWNsb2FkYmFsYW5jaW5nLWZpcHMu
77
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9
78
- IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
79
- aW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1
80
- YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
81
- bm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsi
82
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3si
83
- cmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
84
- Olt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
85
- Olt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0
86
- aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUi
87
- LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVs
88
- ZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5nRXF1YWxzIiwiYXJn
89
- diI6WyJhd3MtdXMtZ292Iix7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJl
90
- ZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19XX1dLCJlbmRwb2ludCI6
91
- eyJ1cmwiOiJodHRwczovL2VsYXN0aWNsb2FkYmFsYW5jaW5nLntSZWdpb259
92
- LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
93
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9u
94
- cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZWxhc3RpY2xvYWRi
95
- YWxhbmNpbmctZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
96
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
97
- ZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBT
98
- IGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
99
- cnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJm
100
- biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3Rh
101
- Y2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
102
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
103
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
104
- LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
105
- cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
106
- Oi8vZWxhc3RpY2xvYWRiYWxhbmNpbmcue1JlZ2lvbn0ue1BhcnRpdGlvblJl
107
- c3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
108
- YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMi
109
- OltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBh
110
- cnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJl
111
- cnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
112
- aHR0cHM6Ly9lbGFzdGljbG9hZGJhbGFuY2luZy57UmVnaW9ufS57UGFydGl0
113
- aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
114
- cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
115
-
116
- JSON
117
53
  end
118
54
  end
@@ -12,16 +12,6 @@ module Aws::ElasticLoadBalancing
12
12
 
13
13
  # Information about the `AccessLog` attribute.
14
14
  #
15
- # @note When making an API call, you may pass AccessLog
16
- # data as a hash:
17
- #
18
- # {
19
- # enabled: false, # required
20
- # s3_bucket_name: "S3BucketName",
21
- # emit_interval: 1,
22
- # s3_bucket_prefix: "AccessLogPrefix",
23
- # }
24
- #
25
15
  # @!attribute [rw] enabled
26
16
  # Specifies whether access logs are enabled for the load balancer.
27
17
  # @return [Boolean]
@@ -62,14 +52,6 @@ module Aws::ElasticLoadBalancing
62
52
 
63
53
  # Contains the parameters for EnableAvailabilityZonesForLoadBalancer.
64
54
  #
65
- # @note When making an API call, you may pass AddAvailabilityZonesInput
66
- # data as a hash:
67
- #
68
- # {
69
- # load_balancer_name: "AccessPointName", # required
70
- # availability_zones: ["AvailabilityZone"], # required
71
- # }
72
- #
73
55
  # @!attribute [rw] load_balancer_name
74
56
  # The name of the load balancer.
75
57
  # @return [String]
@@ -104,19 +86,6 @@ module Aws::ElasticLoadBalancing
104
86
 
105
87
  # Contains the parameters for AddTags.
106
88
  #
107
- # @note When making an API call, you may pass AddTagsInput
108
- # data as a hash:
109
- #
110
- # {
111
- # load_balancer_names: ["AccessPointName"], # required
112
- # tags: [ # required
113
- # {
114
- # key: "TagKey", # required
115
- # value: "TagValue",
116
- # },
117
- # ],
118
- # }
119
- #
120
89
  # @!attribute [rw] load_balancer_names
121
90
  # The name of the load balancer. You can specify one load balancer
122
91
  # only.
@@ -143,14 +112,6 @@ module Aws::ElasticLoadBalancing
143
112
 
144
113
  # Information about additional load balancer attributes.
145
114
  #
146
- # @note When making an API call, you may pass AdditionalAttribute
147
- # data as a hash:
148
- #
149
- # {
150
- # key: "AdditionalAttributeKey",
151
- # value: "AdditionalAttributeValue",
152
- # }
153
- #
154
115
  # @!attribute [rw] key
155
116
  # The name of the attribute.
156
117
  #
@@ -200,14 +161,6 @@ module Aws::ElasticLoadBalancing
200
161
 
201
162
  # Contains the parameters for ApplySecurityGroupsToLoadBalancer.
202
163
  #
203
- # @note When making an API call, you may pass ApplySecurityGroupsToLoadBalancerInput
204
- # data as a hash:
205
- #
206
- # {
207
- # load_balancer_name: "AccessPointName", # required
208
- # security_groups: ["SecurityGroupId"], # required
209
- # }
210
- #
211
164
  # @!attribute [rw] load_balancer_name
212
165
  # The name of the load balancer.
213
166
  # @return [String]
@@ -242,14 +195,6 @@ module Aws::ElasticLoadBalancing
242
195
 
243
196
  # Contains the parameters for AttachLoaBalancerToSubnets.
244
197
  #
245
- # @note When making an API call, you may pass AttachLoadBalancerToSubnetsInput
246
- # data as a hash:
247
- #
248
- # {
249
- # load_balancer_name: "AccessPointName", # required
250
- # subnets: ["SubnetId"], # required
251
- # }
252
- #
253
198
  # @!attribute [rw] load_balancer_name
254
199
  # The name of the load balancer.
255
200
  # @return [String]
@@ -312,20 +257,6 @@ module Aws::ElasticLoadBalancing
312
257
 
313
258
  # Contains the parameters for ConfigureHealthCheck.
314
259
  #
315
- # @note When making an API call, you may pass ConfigureHealthCheckInput
316
- # data as a hash:
317
- #
318
- # {
319
- # load_balancer_name: "AccessPointName", # required
320
- # health_check: { # required
321
- # target: "HealthCheckTarget", # required
322
- # interval: 1, # required
323
- # timeout: 1, # required
324
- # unhealthy_threshold: 1, # required
325
- # healthy_threshold: 1, # required
326
- # },
327
- # }
328
- #
329
260
  # @!attribute [rw] load_balancer_name
330
261
  # The name of the load balancer.
331
262
  # @return [String]
@@ -359,14 +290,6 @@ module Aws::ElasticLoadBalancing
359
290
 
360
291
  # Information about the `ConnectionDraining` attribute.
361
292
  #
362
- # @note When making an API call, you may pass ConnectionDraining
363
- # data as a hash:
364
- #
365
- # {
366
- # enabled: false, # required
367
- # timeout: 1,
368
- # }
369
- #
370
293
  # @!attribute [rw] enabled
371
294
  # Specifies whether connection draining is enabled for the load
372
295
  # balancer.
@@ -388,13 +311,6 @@ module Aws::ElasticLoadBalancing
388
311
 
389
312
  # Information about the `ConnectionSettings` attribute.
390
313
  #
391
- # @note When making an API call, you may pass ConnectionSettings
392
- # data as a hash:
393
- #
394
- # {
395
- # idle_timeout: 1, # required
396
- # }
397
- #
398
314
  # @!attribute [rw] idle_timeout
399
315
  # The time, in seconds, that the connection is allowed to be idle (no
400
316
  # data has been sent over the connection) before it is closed by the
@@ -411,32 +327,6 @@ module Aws::ElasticLoadBalancing
411
327
 
412
328
  # Contains the parameters for CreateLoadBalancer.
413
329
  #
414
- # @note When making an API call, you may pass CreateAccessPointInput
415
- # data as a hash:
416
- #
417
- # {
418
- # load_balancer_name: "AccessPointName", # required
419
- # listeners: [ # required
420
- # {
421
- # protocol: "Protocol", # required
422
- # load_balancer_port: 1, # required
423
- # instance_protocol: "Protocol",
424
- # instance_port: 1, # required
425
- # ssl_certificate_id: "SSLCertificateId",
426
- # },
427
- # ],
428
- # availability_zones: ["AvailabilityZone"],
429
- # subnets: ["SubnetId"],
430
- # security_groups: ["SecurityGroupId"],
431
- # scheme: "LoadBalancerScheme",
432
- # tags: [
433
- # {
434
- # key: "TagKey", # required
435
- # value: "TagValue",
436
- # },
437
- # ],
438
- # }
439
- #
440
330
  # @!attribute [rw] load_balancer_name
441
331
  # The name of the load balancer.
442
332
  #
@@ -535,15 +425,6 @@ module Aws::ElasticLoadBalancing
535
425
 
536
426
  # Contains the parameters for CreateAppCookieStickinessPolicy.
537
427
  #
538
- # @note When making an API call, you may pass CreateAppCookieStickinessPolicyInput
539
- # data as a hash:
540
- #
541
- # {
542
- # load_balancer_name: "AccessPointName", # required
543
- # policy_name: "PolicyName", # required
544
- # cookie_name: "CookieName", # required
545
- # }
546
- #
547
428
  # @!attribute [rw] load_balancer_name
548
429
  # The name of the load balancer.
549
430
  # @return [String]
@@ -576,15 +457,6 @@ module Aws::ElasticLoadBalancing
576
457
 
577
458
  # Contains the parameters for CreateLBCookieStickinessPolicy.
578
459
  #
579
- # @note When making an API call, you may pass CreateLBCookieStickinessPolicyInput
580
- # data as a hash:
581
- #
582
- # {
583
- # load_balancer_name: "AccessPointName", # required
584
- # policy_name: "PolicyName", # required
585
- # cookie_expiration_period: 1,
586
- # }
587
- #
588
460
  # @!attribute [rw] load_balancer_name
589
461
  # The name of the load balancer.
590
462
  # @return [String]
@@ -620,22 +492,6 @@ module Aws::ElasticLoadBalancing
620
492
 
621
493
  # Contains the parameters for CreateLoadBalancerListeners.
622
494
  #
623
- # @note When making an API call, you may pass CreateLoadBalancerListenerInput
624
- # data as a hash:
625
- #
626
- # {
627
- # load_balancer_name: "AccessPointName", # required
628
- # listeners: [ # required
629
- # {
630
- # protocol: "Protocol", # required
631
- # load_balancer_port: 1, # required
632
- # instance_protocol: "Protocol",
633
- # instance_port: 1, # required
634
- # ssl_certificate_id: "SSLCertificateId",
635
- # },
636
- # ],
637
- # }
638
- #
639
495
  # @!attribute [rw] load_balancer_name
640
496
  # The name of the load balancer.
641
497
  # @return [String]
@@ -661,21 +517,6 @@ module Aws::ElasticLoadBalancing
661
517
 
662
518
  # Contains the parameters for CreateLoadBalancerPolicy.
663
519
  #
664
- # @note When making an API call, you may pass CreateLoadBalancerPolicyInput
665
- # data as a hash:
666
- #
667
- # {
668
- # load_balancer_name: "AccessPointName", # required
669
- # policy_name: "PolicyName", # required
670
- # policy_type_name: "PolicyTypeName", # required
671
- # policy_attributes: [
672
- # {
673
- # attribute_name: "AttributeName",
674
- # attribute_value: "AttributeValue",
675
- # },
676
- # ],
677
- # }
678
- #
679
520
  # @!attribute [rw] load_balancer_name
680
521
  # The name of the load balancer.
681
522
  # @return [String]
@@ -713,13 +554,6 @@ module Aws::ElasticLoadBalancing
713
554
 
714
555
  # Information about the `CrossZoneLoadBalancing` attribute.
715
556
  #
716
- # @note When making an API call, you may pass CrossZoneLoadBalancing
717
- # data as a hash:
718
- #
719
- # {
720
- # enabled: false, # required
721
- # }
722
- #
723
557
  # @!attribute [rw] enabled
724
558
  # Specifies whether cross-zone load balancing is enabled for the load
725
559
  # balancer.
@@ -735,13 +569,6 @@ module Aws::ElasticLoadBalancing
735
569
 
736
570
  # Contains the parameters for DeleteLoadBalancer.
737
571
  #
738
- # @note When making an API call, you may pass DeleteAccessPointInput
739
- # data as a hash:
740
- #
741
- # {
742
- # load_balancer_name: "AccessPointName", # required
743
- # }
744
- #
745
572
  # @!attribute [rw] load_balancer_name
746
573
  # The name of the load balancer.
747
574
  # @return [String]
@@ -762,14 +589,6 @@ module Aws::ElasticLoadBalancing
762
589
 
763
590
  # Contains the parameters for DeleteLoadBalancerListeners.
764
591
  #
765
- # @note When making an API call, you may pass DeleteLoadBalancerListenerInput
766
- # data as a hash:
767
- #
768
- # {
769
- # load_balancer_name: "AccessPointName", # required
770
- # load_balancer_ports: [1], # required
771
- # }
772
- #
773
592
  # @!attribute [rw] load_balancer_name
774
593
  # The name of the load balancer.
775
594
  # @return [String]
@@ -795,14 +614,6 @@ module Aws::ElasticLoadBalancing
795
614
 
796
615
  # Contains the parameters for DeleteLoadBalancerPolicy.
797
616
  #
798
- # @note When making an API call, you may pass DeleteLoadBalancerPolicyInput
799
- # data as a hash:
800
- #
801
- # {
802
- # load_balancer_name: "AccessPointName", # required
803
- # policy_name: "PolicyName", # required
804
- # }
805
- #
806
617
  # @!attribute [rw] load_balancer_name
807
618
  # The name of the load balancer.
808
619
  # @return [String]
@@ -835,18 +646,6 @@ module Aws::ElasticLoadBalancing
835
646
 
836
647
  # Contains the parameters for DeregisterInstancesFromLoadBalancer.
837
648
  #
838
- # @note When making an API call, you may pass DeregisterEndPointsInput
839
- # data as a hash:
840
- #
841
- # {
842
- # load_balancer_name: "AccessPointName", # required
843
- # instances: [ # required
844
- # {
845
- # instance_id: "InstanceId",
846
- # },
847
- # ],
848
- # }
849
- #
850
649
  # @!attribute [rw] load_balancer_name
851
650
  # The name of the load balancer.
852
651
  # @return [String]
@@ -880,15 +679,6 @@ module Aws::ElasticLoadBalancing
880
679
 
881
680
  # Contains the parameters for DescribeLoadBalancers.
882
681
  #
883
- # @note When making an API call, you may pass DescribeAccessPointsInput
884
- # data as a hash:
885
- #
886
- # {
887
- # load_balancer_names: ["AccessPointName"],
888
- # marker: "Marker",
889
- # page_size: 1,
890
- # }
891
- #
892
682
  # @!attribute [rw] load_balancer_names
893
683
  # The names of the load balancers.
894
684
  # @return [Array<String>]
@@ -933,14 +723,6 @@ module Aws::ElasticLoadBalancing
933
723
  include Aws::Structure
934
724
  end
935
725
 
936
- # @note When making an API call, you may pass DescribeAccountLimitsInput
937
- # data as a hash:
938
- #
939
- # {
940
- # marker: "Marker",
941
- # page_size: 1,
942
- # }
943
- #
944
726
  # @!attribute [rw] marker
945
727
  # The marker for the next set of results. (You received this marker
946
728
  # from a previous call.)
@@ -979,18 +761,6 @@ module Aws::ElasticLoadBalancing
979
761
 
980
762
  # Contains the parameters for DescribeInstanceHealth.
981
763
  #
982
- # @note When making an API call, you may pass DescribeEndPointStateInput
983
- # data as a hash:
984
- #
985
- # {
986
- # load_balancer_name: "AccessPointName", # required
987
- # instances: [
988
- # {
989
- # instance_id: "InstanceId",
990
- # },
991
- # ],
992
- # }
993
- #
994
764
  # @!attribute [rw] load_balancer_name
995
765
  # The name of the load balancer.
996
766
  # @return [String]
@@ -1024,13 +794,6 @@ module Aws::ElasticLoadBalancing
1024
794
 
1025
795
  # Contains the parameters for DescribeLoadBalancerAttributes.
1026
796
  #
1027
- # @note When making an API call, you may pass DescribeLoadBalancerAttributesInput
1028
- # data as a hash:
1029
- #
1030
- # {
1031
- # load_balancer_name: "AccessPointName", # required
1032
- # }
1033
- #
1034
797
  # @!attribute [rw] load_balancer_name
1035
798
  # The name of the load balancer.
1036
799
  # @return [String]
@@ -1059,14 +822,6 @@ module Aws::ElasticLoadBalancing
1059
822
 
1060
823
  # Contains the parameters for DescribeLoadBalancerPolicies.
1061
824
  #
1062
- # @note When making an API call, you may pass DescribeLoadBalancerPoliciesInput
1063
- # data as a hash:
1064
- #
1065
- # {
1066
- # load_balancer_name: "AccessPointName",
1067
- # policy_names: ["PolicyName"],
1068
- # }
1069
- #
1070
825
  # @!attribute [rw] load_balancer_name
1071
826
  # The name of the load balancer.
1072
827
  # @return [String]
@@ -1100,13 +855,6 @@ module Aws::ElasticLoadBalancing
1100
855
 
1101
856
  # Contains the parameters for DescribeLoadBalancerPolicyTypes.
1102
857
  #
1103
- # @note When making an API call, you may pass DescribeLoadBalancerPolicyTypesInput
1104
- # data as a hash:
1105
- #
1106
- # {
1107
- # policy_type_names: ["PolicyTypeName"],
1108
- # }
1109
- #
1110
858
  # @!attribute [rw] policy_type_names
1111
859
  # The names of the policy types. If no names are specified, describes
1112
860
  # all policy types defined by Elastic Load Balancing.
@@ -1136,13 +884,6 @@ module Aws::ElasticLoadBalancing
1136
884
 
1137
885
  # Contains the parameters for DescribeTags.
1138
886
  #
1139
- # @note When making an API call, you may pass DescribeTagsInput
1140
- # data as a hash:
1141
- #
1142
- # {
1143
- # load_balancer_names: ["AccessPointName"], # required
1144
- # }
1145
- #
1146
887
  # @!attribute [rw] load_balancer_names
1147
888
  # The names of the load balancers.
1148
889
  # @return [Array<String>]
@@ -1171,14 +912,6 @@ module Aws::ElasticLoadBalancing
1171
912
 
1172
913
  # Contains the parameters for DetachLoadBalancerFromSubnets.
1173
914
  #
1174
- # @note When making an API call, you may pass DetachLoadBalancerFromSubnetsInput
1175
- # data as a hash:
1176
- #
1177
- # {
1178
- # load_balancer_name: "AccessPointName", # required
1179
- # subnets: ["SubnetId"], # required
1180
- # }
1181
- #
1182
915
  # @!attribute [rw] load_balancer_name
1183
916
  # The name of the load balancer.
1184
917
  # @return [String]
@@ -1239,17 +972,6 @@ module Aws::ElasticLoadBalancing
1239
972
 
1240
973
  # Information about a health check.
1241
974
  #
1242
- # @note When making an API call, you may pass HealthCheck
1243
- # data as a hash:
1244
- #
1245
- # {
1246
- # target: "HealthCheckTarget", # required
1247
- # interval: 1, # required
1248
- # timeout: 1, # required
1249
- # unhealthy_threshold: 1, # required
1250
- # healthy_threshold: 1, # required
1251
- # }
1252
- #
1253
975
  # @!attribute [rw] target
1254
976
  # The instance being checked. The protocol is either TCP, HTTP, HTTPS,
1255
977
  # or SSL. The range of valid ports is one (1) through 65535.
@@ -1308,13 +1030,6 @@ module Aws::ElasticLoadBalancing
1308
1030
 
1309
1031
  # The ID of an EC2 instance.
1310
1032
  #
1311
- # @note When making an API call, you may pass Instance
1312
- # data as a hash:
1313
- #
1314
- # {
1315
- # instance_id: "InstanceId",
1316
- # }
1317
- #
1318
1033
  # @!attribute [rw] instance_id
1319
1034
  # The instance ID.
1320
1035
  # @return [String]
@@ -1479,17 +1194,6 @@ module Aws::ElasticLoadBalancing
1479
1194
  #
1480
1195
  # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
1481
1196
  #
1482
- # @note When making an API call, you may pass Listener
1483
- # data as a hash:
1484
- #
1485
- # {
1486
- # protocol: "Protocol", # required
1487
- # load_balancer_port: 1, # required
1488
- # instance_protocol: "Protocol",
1489
- # instance_port: 1, # required
1490
- # ssl_certificate_id: "SSLCertificateId",
1491
- # }
1492
- #
1493
1197
  # @!attribute [rw] protocol
1494
1198
  # The load balancer transport protocol to use for routing: HTTP,
1495
1199
  # HTTPS, TCP, or SSL.
@@ -1573,34 +1277,6 @@ module Aws::ElasticLoadBalancing
1573
1277
 
1574
1278
  # The attributes for a load balancer.
1575
1279
  #
1576
- # @note When making an API call, you may pass LoadBalancerAttributes
1577
- # data as a hash:
1578
- #
1579
- # {
1580
- # cross_zone_load_balancing: {
1581
- # enabled: false, # required
1582
- # },
1583
- # access_log: {
1584
- # enabled: false, # required
1585
- # s3_bucket_name: "S3BucketName",
1586
- # emit_interval: 1,
1587
- # s3_bucket_prefix: "AccessLogPrefix",
1588
- # },
1589
- # connection_draining: {
1590
- # enabled: false, # required
1591
- # timeout: 1,
1592
- # },
1593
- # connection_settings: {
1594
- # idle_timeout: 1, # required
1595
- # },
1596
- # additional_attributes: [
1597
- # {
1598
- # key: "AdditionalAttributeKey",
1599
- # value: "AdditionalAttributeValue",
1600
- # },
1601
- # ],
1602
- # }
1603
- #
1604
1280
  # @!attribute [rw] cross_zone_load_balancing
1605
1281
  # If enabled, the load balancer routes the request traffic evenly
1606
1282
  # across all instances regardless of the Availability Zones.
@@ -1777,37 +1453,6 @@ module Aws::ElasticLoadBalancing
1777
1453
 
1778
1454
  # Contains the parameters for ModifyLoadBalancerAttributes.
1779
1455
  #
1780
- # @note When making an API call, you may pass ModifyLoadBalancerAttributesInput
1781
- # data as a hash:
1782
- #
1783
- # {
1784
- # load_balancer_name: "AccessPointName", # required
1785
- # load_balancer_attributes: { # required
1786
- # cross_zone_load_balancing: {
1787
- # enabled: false, # required
1788
- # },
1789
- # access_log: {
1790
- # enabled: false, # required
1791
- # s3_bucket_name: "S3BucketName",
1792
- # emit_interval: 1,
1793
- # s3_bucket_prefix: "AccessLogPrefix",
1794
- # },
1795
- # connection_draining: {
1796
- # enabled: false, # required
1797
- # timeout: 1,
1798
- # },
1799
- # connection_settings: {
1800
- # idle_timeout: 1, # required
1801
- # },
1802
- # additional_attributes: [
1803
- # {
1804
- # key: "AdditionalAttributeKey",
1805
- # value: "AdditionalAttributeValue",
1806
- # },
1807
- # ],
1808
- # },
1809
- # }
1810
- #
1811
1456
  # @!attribute [rw] load_balancer_name
1812
1457
  # The name of the load balancer.
1813
1458
  # @return [String]
@@ -1878,14 +1523,6 @@ module Aws::ElasticLoadBalancing
1878
1523
 
1879
1524
  # Information about a policy attribute.
1880
1525
  #
1881
- # @note When making an API call, you may pass PolicyAttribute
1882
- # data as a hash:
1883
- #
1884
- # {
1885
- # attribute_name: "AttributeName",
1886
- # attribute_value: "AttributeValue",
1887
- # }
1888
- #
1889
1526
  # @!attribute [rw] attribute_name
1890
1527
  # The name of the attribute.
1891
1528
  # @return [String]
@@ -2029,18 +1666,6 @@ module Aws::ElasticLoadBalancing
2029
1666
 
2030
1667
  # Contains the parameters for RegisterInstancesWithLoadBalancer.
2031
1668
  #
2032
- # @note When making an API call, you may pass RegisterEndPointsInput
2033
- # data as a hash:
2034
- #
2035
- # {
2036
- # load_balancer_name: "AccessPointName", # required
2037
- # instances: [ # required
2038
- # {
2039
- # instance_id: "InstanceId",
2040
- # },
2041
- # ],
2042
- # }
2043
- #
2044
1669
  # @!attribute [rw] load_balancer_name
2045
1670
  # The name of the load balancer.
2046
1671
  # @return [String]
@@ -2074,14 +1699,6 @@ module Aws::ElasticLoadBalancing
2074
1699
 
2075
1700
  # Contains the parameters for DisableAvailabilityZonesForLoadBalancer.
2076
1701
  #
2077
- # @note When making an API call, you may pass RemoveAvailabilityZonesInput
2078
- # data as a hash:
2079
- #
2080
- # {
2081
- # load_balancer_name: "AccessPointName", # required
2082
- # availability_zones: ["AvailabilityZone"], # required
2083
- # }
2084
- #
2085
1702
  # @!attribute [rw] load_balancer_name
2086
1703
  # The name of the load balancer.
2087
1704
  # @return [String]
@@ -2115,18 +1732,6 @@ module Aws::ElasticLoadBalancing
2115
1732
 
2116
1733
  # Contains the parameters for RemoveTags.
2117
1734
  #
2118
- # @note When making an API call, you may pass RemoveTagsInput
2119
- # data as a hash:
2120
- #
2121
- # {
2122
- # load_balancer_names: ["AccessPointName"], # required
2123
- # tags: [ # required
2124
- # {
2125
- # key: "TagKey",
2126
- # },
2127
- # ],
2128
- # }
2129
- #
2130
1735
  # @!attribute [rw] load_balancer_names
2131
1736
  # The name of the load balancer. You can specify a maximum of one load
2132
1737
  # balancer name.
@@ -2153,15 +1758,6 @@ module Aws::ElasticLoadBalancing
2153
1758
 
2154
1759
  # Contains the parameters for SetLoadBalancerListenerSSLCertificate.
2155
1760
  #
2156
- # @note When making an API call, you may pass SetLoadBalancerListenerSSLCertificateInput
2157
- # data as a hash:
2158
- #
2159
- # {
2160
- # load_balancer_name: "AccessPointName", # required
2161
- # load_balancer_port: 1, # required
2162
- # ssl_certificate_id: "SSLCertificateId", # required
2163
- # }
2164
- #
2165
1761
  # @!attribute [rw] load_balancer_name
2166
1762
  # The name of the load balancer.
2167
1763
  # @return [String]
@@ -2192,15 +1788,6 @@ module Aws::ElasticLoadBalancing
2192
1788
 
2193
1789
  # Contains the parameters for SetLoadBalancerPoliciesForBackendServer.
2194
1790
  #
2195
- # @note When making an API call, you may pass SetLoadBalancerPoliciesForBackendServerInput
2196
- # data as a hash:
2197
- #
2198
- # {
2199
- # load_balancer_name: "AccessPointName", # required
2200
- # instance_port: 1, # required
2201
- # policy_names: ["PolicyName"], # required
2202
- # }
2203
- #
2204
1791
  # @!attribute [rw] load_balancer_name
2205
1792
  # The name of the load balancer.
2206
1793
  # @return [String]
@@ -2232,15 +1819,6 @@ module Aws::ElasticLoadBalancing
2232
1819
 
2233
1820
  # Contains the parameters for SetLoadBalancePoliciesOfListener.
2234
1821
  #
2235
- # @note When making an API call, you may pass SetLoadBalancerPoliciesOfListenerInput
2236
- # data as a hash:
2237
- #
2238
- # {
2239
- # load_balancer_name: "AccessPointName", # required
2240
- # load_balancer_port: 1, # required
2241
- # policy_names: ["PolicyName"], # required
2242
- # }
2243
- #
2244
1822
  # @!attribute [rw] load_balancer_name
2245
1823
  # The name of the load balancer.
2246
1824
  # @return [String]
@@ -2298,14 +1876,6 @@ module Aws::ElasticLoadBalancing
2298
1876
 
2299
1877
  # Information about a tag.
2300
1878
  #
2301
- # @note When making an API call, you may pass Tag
2302
- # data as a hash:
2303
- #
2304
- # {
2305
- # key: "TagKey", # required
2306
- # value: "TagValue",
2307
- # }
2308
- #
2309
1879
  # @!attribute [rw] key
2310
1880
  # The key of the tag.
2311
1881
  # @return [String]
@@ -2344,13 +1914,6 @@ module Aws::ElasticLoadBalancing
2344
1914
 
2345
1915
  # The key of a tag.
2346
1916
  #
2347
- # @note When making an API call, you may pass TagKeyOnly
2348
- # data as a hash:
2349
- #
2350
- # {
2351
- # key: "TagKey",
2352
- # }
2353
- #
2354
1917
  # @!attribute [rw] key
2355
1918
  # The name of the key.
2356
1919
  # @return [String]
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticloadbalancing/customizations'
53
53
  # @!group service
54
54
  module Aws::ElasticLoadBalancing
55
55
 
56
- GEM_VERSION = '1.41.0'
56
+ GEM_VERSION = '1.42.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticloadbalancing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.42.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core