aws-sdk-elasticloadbalancingv2 1.117.0 → 1.118.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +4 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +9 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +34 -2
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- data/sig/types.rbs +8 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28592a774fefbb11d851101c8ba642988b58e5a67a5cbd88fcccf7c3043e2700
|
4
|
+
data.tar.gz: 52f8e89827dc599a4bd51d778fc5d9ad60c03d6084ece58a69cdc6cfc49198e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcb52676f7441b6d974d46190921f64a6502cfed3d961a895c1b714554df6d545705c615cc027f1fd7bb46b0a4b5df66ddfc3296b556750c14704106d7e13554
|
7
|
+
data.tar.gz: ec0e1c9570497a603ee0f05aa64075df1e37378511eec130d808559fc70bccc5df5e6808b1e07cf3068f48564a2c3efafd9836c5bef1dac89f23b27d54508278
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.118.0 (2024-10-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add zonal_shift.config.enabled attribute. Add new AdministrativeOverride construct in the describe-target-health API response to include information about the override status applied to a target.
|
8
|
+
|
4
9
|
1.117.0 (2024-09-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.118.0
|
@@ -3214,6 +3214,9 @@ module Aws::ElasticLoadBalancingV2
|
|
3214
3214
|
# resp.target_health_descriptions[0].target_health.description #=> String
|
3215
3215
|
# resp.target_health_descriptions[0].anomaly_detection.result #=> String, one of "anomalous", "normal"
|
3216
3216
|
# resp.target_health_descriptions[0].anomaly_detection.mitigation_in_effect #=> String, one of "yes", "no"
|
3217
|
+
# resp.target_health_descriptions[0].administrative_override.state #=> String, one of "unknown", "no_override", "zonal_shift_active", "zonal_shift_delegated_to_dns"
|
3218
|
+
# resp.target_health_descriptions[0].administrative_override.reason #=> String, one of "AdministrativeOverride.Unknown", "AdministrativeOverride.NoOverride", "AdministrativeOverride.ZonalShiftActive", "AdministrativeOverride.ZonalShiftDelegatedToDns"
|
3219
|
+
# resp.target_health_descriptions[0].administrative_override.description #=> String
|
3217
3220
|
#
|
3218
3221
|
#
|
3219
3222
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5092,7 +5095,7 @@ module Aws::ElasticLoadBalancingV2
|
|
5092
5095
|
tracer: tracer
|
5093
5096
|
)
|
5094
5097
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
5095
|
-
context[:gem_version] = '1.
|
5098
|
+
context[:gem_version] = '1.118.0'
|
5096
5099
|
Seahorse::Client::Request.new(handlers, context)
|
5097
5100
|
end
|
5098
5101
|
|
@@ -25,6 +25,7 @@ module Aws::ElasticLoadBalancingV2
|
|
25
25
|
AddTagsOutput = Shapes::StructureShape.new(name: 'AddTagsOutput')
|
26
26
|
AddTrustStoreRevocationsInput = Shapes::StructureShape.new(name: 'AddTrustStoreRevocationsInput')
|
27
27
|
AddTrustStoreRevocationsOutput = Shapes::StructureShape.new(name: 'AddTrustStoreRevocationsOutput')
|
28
|
+
AdministrativeOverride = Shapes::StructureShape.new(name: 'AdministrativeOverride')
|
28
29
|
AllocationId = Shapes::StringShape.new(name: 'AllocationId')
|
29
30
|
AllocationIdNotFoundException = Shapes::StructureShape.new(name: 'AllocationIdNotFoundException', error: {"code"=>"AllocationIdNotFound", "httpStatusCode"=>400, "senderFault"=>true})
|
30
31
|
AlpnPolicyName = Shapes::ListShape.new(name: 'AlpnPolicyName')
|
@@ -318,6 +319,8 @@ module Aws::ElasticLoadBalancingV2
|
|
318
319
|
TagKeys = Shapes::ListShape.new(name: 'TagKeys')
|
319
320
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
320
321
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
322
|
+
TargetAdministrativeOverrideReasonEnum = Shapes::StringShape.new(name: 'TargetAdministrativeOverrideReasonEnum')
|
323
|
+
TargetAdministrativeOverrideStateEnum = Shapes::StringShape.new(name: 'TargetAdministrativeOverrideStateEnum')
|
321
324
|
TargetDescription = Shapes::StructureShape.new(name: 'TargetDescription')
|
322
325
|
TargetDescriptions = Shapes::ListShape.new(name: 'TargetDescriptions')
|
323
326
|
TargetGroup = Shapes::StructureShape.new(name: 'TargetGroup')
|
@@ -414,6 +417,11 @@ module Aws::ElasticLoadBalancingV2
|
|
414
417
|
AddTrustStoreRevocationsOutput.add_member(:trust_store_revocations, Shapes::ShapeRef.new(shape: TrustStoreRevocations, location_name: "TrustStoreRevocations"))
|
415
418
|
AddTrustStoreRevocationsOutput.struct_class = Types::AddTrustStoreRevocationsOutput
|
416
419
|
|
420
|
+
AdministrativeOverride.add_member(:state, Shapes::ShapeRef.new(shape: TargetAdministrativeOverrideStateEnum, location_name: "State"))
|
421
|
+
AdministrativeOverride.add_member(:reason, Shapes::ShapeRef.new(shape: TargetAdministrativeOverrideReasonEnum, location_name: "Reason"))
|
422
|
+
AdministrativeOverride.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
423
|
+
AdministrativeOverride.struct_class = Types::AdministrativeOverride
|
424
|
+
|
417
425
|
AllocationIdNotFoundException.struct_class = Types::AllocationIdNotFoundException
|
418
426
|
|
419
427
|
AlpnPolicyName.member = Shapes::ShapeRef.new(shape: AlpnPolicyValue)
|
@@ -1181,6 +1189,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1181
1189
|
TargetHealthDescription.add_member(:health_check_port, Shapes::ShapeRef.new(shape: HealthCheckPort, location_name: "HealthCheckPort"))
|
1182
1190
|
TargetHealthDescription.add_member(:target_health, Shapes::ShapeRef.new(shape: TargetHealth, location_name: "TargetHealth"))
|
1183
1191
|
TargetHealthDescription.add_member(:anomaly_detection, Shapes::ShapeRef.new(shape: AnomalyDetection, location_name: "AnomalyDetection"))
|
1192
|
+
TargetHealthDescription.add_member(:administrative_override, Shapes::ShapeRef.new(shape: AdministrativeOverride, location_name: "AdministrativeOverride"))
|
1184
1193
|
TargetHealthDescription.struct_class = Types::TargetHealthDescription
|
1185
1194
|
|
1186
1195
|
TargetHealthDescriptions.member = Shapes::ShapeRef.new(shape: TargetHealthDescription)
|
@@ -167,6 +167,31 @@ module Aws::ElasticLoadBalancingV2
|
|
167
167
|
include Aws::Structure
|
168
168
|
end
|
169
169
|
|
170
|
+
# Information about the override status applied to a target.
|
171
|
+
#
|
172
|
+
# @!attribute [rw] state
|
173
|
+
# The state of the override.
|
174
|
+
# @return [String]
|
175
|
+
#
|
176
|
+
# @!attribute [rw] reason
|
177
|
+
# The reason code for the state.
|
178
|
+
# @return [String]
|
179
|
+
#
|
180
|
+
# @!attribute [rw] description
|
181
|
+
# A description of the override state that provides additional
|
182
|
+
# details.
|
183
|
+
# @return [String]
|
184
|
+
#
|
185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/AdministrativeOverride AWS API Documentation
|
186
|
+
#
|
187
|
+
class AdministrativeOverride < Struct.new(
|
188
|
+
:state,
|
189
|
+
:reason,
|
190
|
+
:description)
|
191
|
+
SENSITIVE = []
|
192
|
+
include Aws::Structure
|
193
|
+
end
|
194
|
+
|
170
195
|
# The specified allocation ID does not exist.
|
171
196
|
#
|
172
197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/AllocationIdNotFoundException AWS API Documentation
|
@@ -2429,7 +2454,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2429
2454
|
# percent zonal affinity, and `any_availability_zone` with 0 percent
|
2430
2455
|
# zonal affinity.
|
2431
2456
|
#
|
2432
|
-
#
|
2457
|
+
# * `zonal_shift.config.enabled` - Indicates whether zonal shift is
|
2458
|
+
# enabled. The possible values are `true` and `false`. The default
|
2459
|
+
# is `false`.
|
2433
2460
|
# @return [String]
|
2434
2461
|
#
|
2435
2462
|
# @!attribute [rw] value
|
@@ -4230,13 +4257,18 @@ module Aws::ElasticLoadBalancingV2
|
|
4230
4257
|
# If anomalies were detected, the result is `anomalous`.
|
4231
4258
|
# @return [Types::AnomalyDetection]
|
4232
4259
|
#
|
4260
|
+
# @!attribute [rw] administrative_override
|
4261
|
+
# The administrative override information for the target.
|
4262
|
+
# @return [Types::AdministrativeOverride]
|
4263
|
+
#
|
4233
4264
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetHealthDescription AWS API Documentation
|
4234
4265
|
#
|
4235
4266
|
class TargetHealthDescription < Struct.new(
|
4236
4267
|
:target,
|
4237
4268
|
:health_check_port,
|
4238
4269
|
:target_health,
|
4239
|
-
:anomaly_detection
|
4270
|
+
:anomaly_detection,
|
4271
|
+
:administrative_override)
|
4240
4272
|
SENSITIVE = []
|
4241
4273
|
include Aws::Structure
|
4242
4274
|
end
|
data/sig/types.rbs
CHANGED
@@ -54,6 +54,13 @@ module Aws::ElasticLoadBalancingV2
|
|
54
54
|
SENSITIVE: []
|
55
55
|
end
|
56
56
|
|
57
|
+
class AdministrativeOverride
|
58
|
+
attr_accessor state: ("unknown" | "no_override" | "zonal_shift_active" | "zonal_shift_delegated_to_dns")
|
59
|
+
attr_accessor reason: ("AdministrativeOverride.Unknown" | "AdministrativeOverride.NoOverride" | "AdministrativeOverride.ZonalShiftActive" | "AdministrativeOverride.ZonalShiftDelegatedToDns")
|
60
|
+
attr_accessor description: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
57
64
|
class AllocationIdNotFoundException < Aws::EmptyStructure
|
58
65
|
end
|
59
66
|
|
@@ -1020,6 +1027,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1020
1027
|
attr_accessor health_check_port: ::String
|
1021
1028
|
attr_accessor target_health: Types::TargetHealth
|
1022
1029
|
attr_accessor anomaly_detection: Types::AnomalyDetection
|
1030
|
+
attr_accessor administrative_override: Types::AdministrativeOverride
|
1023
1031
|
SENSITIVE: []
|
1024
1032
|
end
|
1025
1033
|
|
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.118.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: 2024-
|
11
|
+
date: 2024-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|