aws-sdk-elasticloadbalancingv2 1.108.0 → 1.109.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +90 -7
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +48 -0
- data/lib/aws-sdk-elasticloadbalancingv2/endpoints.rb +28 -0
- data/lib/aws-sdk-elasticloadbalancingv2/errors.rb +33 -0
- data/lib/aws-sdk-elasticloadbalancingv2/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +76 -2
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- data/sig/client.rbs +24 -2
- data/sig/errors.rbs +6 -0
- data/sig/types.rbs +29 -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: 3e5e345f638f83c03157eb5da8ae4c592d19c37eb74ef234571f0b821be56242
|
4
|
+
data.tar.gz: 7c375f99e00d10c8d13362406a5d06786ee85547c372b9dc6b0eceda819fbfab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36a78129fe2413a1e6210e2185e946eb5b58fcccbebd08616e64a6297785da8ae940b1865f5701b4b46f62da413a67adaf98574a2fc91f141a0be1553135dfa4
|
7
|
+
data.tar.gz: 0c8d9c63ec4d92233ae84c41548b9d717cec9353b3152a453e0f32e48dc1a215b90c7a91135f3ed013db42ccd5d0c4755126999ec4fc842982306a95d5e10b23
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.109.0 (2024-07-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for sharing trust stores across accounts and organizations through integration with AWS Resource Access Manager.
|
8
|
+
|
4
9
|
1.108.0 (2024-07-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.109.0
|
@@ -837,6 +837,7 @@ module Aws::ElasticLoadBalancingV2
|
|
837
837
|
# mode: "Mode",
|
838
838
|
# trust_store_arn: "TrustStoreArn",
|
839
839
|
# ignore_client_certificate_expiry: false,
|
840
|
+
# trust_store_association_status: "active", # accepts active, removed
|
840
841
|
# },
|
841
842
|
# })
|
842
843
|
#
|
@@ -896,6 +897,7 @@ module Aws::ElasticLoadBalancingV2
|
|
896
897
|
# resp.listeners[0].mutual_authentication.mode #=> String
|
897
898
|
# resp.listeners[0].mutual_authentication.trust_store_arn #=> String
|
898
899
|
# resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
|
900
|
+
# resp.listeners[0].mutual_authentication.trust_store_association_status #=> String, one of "active", "removed"
|
899
901
|
#
|
900
902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateListener AWS API Documentation
|
901
903
|
#
|
@@ -1867,6 +1869,42 @@ module Aws::ElasticLoadBalancingV2
|
|
1867
1869
|
req.send_request(options)
|
1868
1870
|
end
|
1869
1871
|
|
1872
|
+
# Deletes a shared trust store association.
|
1873
|
+
#
|
1874
|
+
# @option params [required, String] :trust_store_arn
|
1875
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1876
|
+
#
|
1877
|
+
# @option params [required, String] :resource_arn
|
1878
|
+
# The Amazon Resource Name (ARN) of the resource.
|
1879
|
+
#
|
1880
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1881
|
+
#
|
1882
|
+
#
|
1883
|
+
# @example Example: Delete a shared trust store association
|
1884
|
+
#
|
1885
|
+
# # This example deletes the association between the specified trust store and the specified load balancer.
|
1886
|
+
#
|
1887
|
+
# resp = client.delete_shared_trust_store_association({
|
1888
|
+
# resource_arn: "arn:aws:elasticloadbalancing:us-east-1:123456789012:loadbalancer/app/my-load-balancer/80233fa81d678c2c",
|
1889
|
+
# trust_store_arn: "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a063",
|
1890
|
+
# })
|
1891
|
+
#
|
1892
|
+
# @example Request syntax with placeholder values
|
1893
|
+
#
|
1894
|
+
# resp = client.delete_shared_trust_store_association({
|
1895
|
+
# trust_store_arn: "TrustStoreArn", # required
|
1896
|
+
# resource_arn: "ResourceArn", # required
|
1897
|
+
# })
|
1898
|
+
#
|
1899
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DeleteSharedTrustStoreAssociation AWS API Documentation
|
1900
|
+
#
|
1901
|
+
# @overload delete_shared_trust_store_association(params = {})
|
1902
|
+
# @param [Hash] params ({})
|
1903
|
+
def delete_shared_trust_store_association(params = {}, options = {})
|
1904
|
+
req = build_request(:delete_shared_trust_store_association, params)
|
1905
|
+
req.send_request(options)
|
1906
|
+
end
|
1907
|
+
|
1870
1908
|
# Deletes the specified target group.
|
1871
1909
|
#
|
1872
1910
|
# You can delete a target group if it is not referenced by any actions.
|
@@ -2228,6 +2266,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2228
2266
|
# resp.listeners[0].mutual_authentication.mode #=> String
|
2229
2267
|
# resp.listeners[0].mutual_authentication.trust_store_arn #=> String
|
2230
2268
|
# resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
|
2269
|
+
# resp.listeners[0].mutual_authentication.trust_store_association_status #=> String, one of "active", "removed"
|
2231
2270
|
# resp.next_marker #=> String
|
2232
2271
|
#
|
2233
2272
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeListeners AWS API Documentation
|
@@ -3007,7 +3046,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3007
3046
|
# The targets.
|
3008
3047
|
#
|
3009
3048
|
# @option params [Array<String>] :include
|
3010
|
-
# Used to
|
3049
|
+
# Used to include anomaly detection information.
|
3011
3050
|
#
|
3012
3051
|
# @return [Types::DescribeTargetHealthOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3013
3052
|
#
|
@@ -3164,8 +3203,8 @@ module Aws::ElasticLoadBalancingV2
|
|
3164
3203
|
req.send_request(options)
|
3165
3204
|
end
|
3166
3205
|
|
3167
|
-
# Describes the revocation files in use by the specified trust store
|
3168
|
-
#
|
3206
|
+
# Describes the revocation files in use by the specified trust store or
|
3207
|
+
# revocation files.
|
3169
3208
|
#
|
3170
3209
|
# @option params [required, String] :trust_store_arn
|
3171
3210
|
# The Amazon Resource Name (ARN) of the trust store.
|
@@ -3214,8 +3253,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3214
3253
|
req.send_request(options)
|
3215
3254
|
end
|
3216
3255
|
|
3217
|
-
# Describes all trust stores for
|
3218
|
-
# name.
|
3256
|
+
# Describes all trust stores for the specified account.
|
3219
3257
|
#
|
3220
3258
|
# @option params [Array<String>] :trust_store_arns
|
3221
3259
|
# The Amazon Resource Name (ARN) of the trust store.
|
@@ -3265,6 +3303,43 @@ module Aws::ElasticLoadBalancingV2
|
|
3265
3303
|
req.send_request(options)
|
3266
3304
|
end
|
3267
3305
|
|
3306
|
+
# Retrieves the resource policy for a specified resource.
|
3307
|
+
#
|
3308
|
+
# @option params [required, String] :resource_arn
|
3309
|
+
# The Amazon Resource Name (ARN) of the resource.
|
3310
|
+
#
|
3311
|
+
# @return [Types::GetResourcePolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3312
|
+
#
|
3313
|
+
# * {Types::GetResourcePolicyOutput#policy #policy} => String
|
3314
|
+
#
|
3315
|
+
#
|
3316
|
+
# @example Example: Retrieve a resource policy
|
3317
|
+
#
|
3318
|
+
# # This example retrieves the resource policy for the specified trust store.
|
3319
|
+
#
|
3320
|
+
# resp = client.get_resource_policy({
|
3321
|
+
# resource_arn: "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a067",
|
3322
|
+
# })
|
3323
|
+
#
|
3324
|
+
# @example Request syntax with placeholder values
|
3325
|
+
#
|
3326
|
+
# resp = client.get_resource_policy({
|
3327
|
+
# resource_arn: "ResourceArn", # required
|
3328
|
+
# })
|
3329
|
+
#
|
3330
|
+
# @example Response structure
|
3331
|
+
#
|
3332
|
+
# resp.policy #=> String
|
3333
|
+
#
|
3334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetResourcePolicy AWS API Documentation
|
3335
|
+
#
|
3336
|
+
# @overload get_resource_policy(params = {})
|
3337
|
+
# @param [Hash] params ({})
|
3338
|
+
def get_resource_policy(params = {}, options = {})
|
3339
|
+
req = build_request(:get_resource_policy, params)
|
3340
|
+
req.send_request(options)
|
3341
|
+
end
|
3342
|
+
|
3268
3343
|
# Retrieves the ca certificate bundle.
|
3269
3344
|
#
|
3270
3345
|
# This action returns a pre-signed S3 URI which is active for ten
|
@@ -3557,6 +3632,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3557
3632
|
# mode: "Mode",
|
3558
3633
|
# trust_store_arn: "TrustStoreArn",
|
3559
3634
|
# ignore_client_certificate_expiry: false,
|
3635
|
+
# trust_store_association_status: "active", # accepts active, removed
|
3560
3636
|
# },
|
3561
3637
|
# })
|
3562
3638
|
#
|
@@ -3616,6 +3692,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3616
3692
|
# resp.listeners[0].mutual_authentication.mode #=> String
|
3617
3693
|
# resp.listeners[0].mutual_authentication.trust_store_arn #=> String
|
3618
3694
|
# resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
|
3695
|
+
# resp.listeners[0].mutual_authentication.trust_store_association_status #=> String, one of "active", "removed"
|
3619
3696
|
#
|
3620
3697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyListener AWS API Documentation
|
3621
3698
|
#
|
@@ -4257,7 +4334,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4257
4334
|
req.send_request(options)
|
4258
4335
|
end
|
4259
4336
|
|
4260
|
-
# Update the ca certificate bundle for
|
4337
|
+
# Update the ca certificate bundle for the specified trust store.
|
4261
4338
|
#
|
4262
4339
|
# @option params [required, String] :trust_store_arn
|
4263
4340
|
# The Amazon Resource Name (ARN) of the trust store.
|
@@ -4503,6 +4580,12 @@ module Aws::ElasticLoadBalancingV2
|
|
4503
4580
|
# IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6 only
|
4504
4581
|
# public addresses, with private IPv4 and IPv6 addresses).
|
4505
4582
|
#
|
4583
|
+
# Note: Application Load Balancer authentication only supports IPv4
|
4584
|
+
# addresses when connecting to an Identity Provider (IdP) or Amazon
|
4585
|
+
# Cognito endpoint. Without a public IPv4 address the load balancer
|
4586
|
+
# cannot complete the authentication process, resulting in HTTP 500
|
4587
|
+
# errors.
|
4588
|
+
#
|
4506
4589
|
# \[Network Load Balancers\] The IP address type. The possible values
|
4507
4590
|
# are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
|
4508
4591
|
# IPv6 addresses). You can’t specify `dualstack` for a load balancer
|
@@ -4896,7 +4979,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4896
4979
|
params: params,
|
4897
4980
|
config: config)
|
4898
4981
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4899
|
-
context[:gem_version] = '1.
|
4982
|
+
context[:gem_version] = '1.109.0'
|
4900
4983
|
Seahorse::Client::Request.new(handlers, context)
|
4901
4984
|
end
|
4902
4985
|
|
@@ -84,12 +84,15 @@ module Aws::ElasticLoadBalancingV2
|
|
84
84
|
CustomerOwnedIpv4Pool = Shapes::StringShape.new(name: 'CustomerOwnedIpv4Pool')
|
85
85
|
DNSName = Shapes::StringShape.new(name: 'DNSName')
|
86
86
|
Default = Shapes::BooleanShape.new(name: 'Default')
|
87
|
+
DeleteAssociationSameAccountException = Shapes::StructureShape.new(name: 'DeleteAssociationSameAccountException', error: {"code"=>"DeleteAssociationSameAccount", "httpStatusCode"=>400, "senderFault"=>true})
|
87
88
|
DeleteListenerInput = Shapes::StructureShape.new(name: 'DeleteListenerInput')
|
88
89
|
DeleteListenerOutput = Shapes::StructureShape.new(name: 'DeleteListenerOutput')
|
89
90
|
DeleteLoadBalancerInput = Shapes::StructureShape.new(name: 'DeleteLoadBalancerInput')
|
90
91
|
DeleteLoadBalancerOutput = Shapes::StructureShape.new(name: 'DeleteLoadBalancerOutput')
|
91
92
|
DeleteRuleInput = Shapes::StructureShape.new(name: 'DeleteRuleInput')
|
92
93
|
DeleteRuleOutput = Shapes::StructureShape.new(name: 'DeleteRuleOutput')
|
94
|
+
DeleteSharedTrustStoreAssociationInput = Shapes::StructureShape.new(name: 'DeleteSharedTrustStoreAssociationInput')
|
95
|
+
DeleteSharedTrustStoreAssociationOutput = Shapes::StructureShape.new(name: 'DeleteSharedTrustStoreAssociationOutput')
|
93
96
|
DeleteTargetGroupInput = Shapes::StructureShape.new(name: 'DeleteTargetGroupInput')
|
94
97
|
DeleteTargetGroupOutput = Shapes::StructureShape.new(name: 'DeleteTargetGroupOutput')
|
95
98
|
DeleteTrustStoreInput = Shapes::StructureShape.new(name: 'DeleteTrustStoreInput')
|
@@ -140,6 +143,8 @@ module Aws::ElasticLoadBalancingV2
|
|
140
143
|
FixedResponseActionMessage = Shapes::StringShape.new(name: 'FixedResponseActionMessage')
|
141
144
|
FixedResponseActionStatusCode = Shapes::StringShape.new(name: 'FixedResponseActionStatusCode')
|
142
145
|
ForwardActionConfig = Shapes::StructureShape.new(name: 'ForwardActionConfig')
|
146
|
+
GetResourcePolicyInput = Shapes::StructureShape.new(name: 'GetResourcePolicyInput')
|
147
|
+
GetResourcePolicyOutput = Shapes::StructureShape.new(name: 'GetResourcePolicyOutput')
|
143
148
|
GetTrustStoreCaCertificatesBundleInput = Shapes::StructureShape.new(name: 'GetTrustStoreCaCertificatesBundleInput')
|
144
149
|
GetTrustStoreCaCertificatesBundleOutput = Shapes::StructureShape.new(name: 'GetTrustStoreCaCertificatesBundleOutput')
|
145
150
|
GetTrustStoreRevocationContentInput = Shapes::StructureShape.new(name: 'GetTrustStoreRevocationContentInput')
|
@@ -223,6 +228,7 @@ module Aws::ElasticLoadBalancingV2
|
|
223
228
|
PageSize = Shapes::IntegerShape.new(name: 'PageSize')
|
224
229
|
Path = Shapes::StringShape.new(name: 'Path')
|
225
230
|
PathPatternConditionConfig = Shapes::StructureShape.new(name: 'PathPatternConditionConfig')
|
231
|
+
Policy = Shapes::StringShape.new(name: 'Policy')
|
226
232
|
Port = Shapes::IntegerShape.new(name: 'Port')
|
227
233
|
PriorityInUseException = Shapes::StructureShape.new(name: 'PriorityInUseException', error: {"code"=>"PriorityInUse", "httpStatusCode"=>400, "senderFault"=>true})
|
228
234
|
PrivateIPv4Address = Shapes::StringShape.new(name: 'PrivateIPv4Address')
|
@@ -249,6 +255,7 @@ module Aws::ElasticLoadBalancingV2
|
|
249
255
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
250
256
|
ResourceArns = Shapes::ListShape.new(name: 'ResourceArns')
|
251
257
|
ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException', error: {"code"=>"ResourceInUse", "httpStatusCode"=>400, "senderFault"=>true})
|
258
|
+
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException', error: {"code"=>"ResourceNotFound", "httpStatusCode"=>400, "senderFault"=>true})
|
252
259
|
RevocationContent = Shapes::StructureShape.new(name: 'RevocationContent')
|
253
260
|
RevocationContentNotFoundException = Shapes::StructureShape.new(name: 'RevocationContentNotFoundException', error: {"code"=>"RevocationContentNotFound", "httpStatusCode"=>400, "senderFault"=>true})
|
254
261
|
RevocationContents = Shapes::ListShape.new(name: 'RevocationContents')
|
@@ -347,7 +354,9 @@ module Aws::ElasticLoadBalancingV2
|
|
347
354
|
TrustStoreArn = Shapes::StringShape.new(name: 'TrustStoreArn')
|
348
355
|
TrustStoreArns = Shapes::ListShape.new(name: 'TrustStoreArns')
|
349
356
|
TrustStoreAssociation = Shapes::StructureShape.new(name: 'TrustStoreAssociation')
|
357
|
+
TrustStoreAssociationNotFoundException = Shapes::StructureShape.new(name: 'TrustStoreAssociationNotFoundException', error: {"code"=>"AssociationNotFound", "httpStatusCode"=>400, "senderFault"=>true})
|
350
358
|
TrustStoreAssociationResourceArn = Shapes::StringShape.new(name: 'TrustStoreAssociationResourceArn')
|
359
|
+
TrustStoreAssociationStatusEnum = Shapes::StringShape.new(name: 'TrustStoreAssociationStatusEnum')
|
351
360
|
TrustStoreAssociations = Shapes::ListShape.new(name: 'TrustStoreAssociations')
|
352
361
|
TrustStoreInUseException = Shapes::StructureShape.new(name: 'TrustStoreInUseException', error: {"code"=>"TrustStoreInUse", "httpStatusCode"=>400, "senderFault"=>true})
|
353
362
|
TrustStoreName = Shapes::StringShape.new(name: 'TrustStoreName')
|
@@ -530,6 +539,8 @@ module Aws::ElasticLoadBalancingV2
|
|
530
539
|
CreateTrustStoreOutput.add_member(:trust_stores, Shapes::ShapeRef.new(shape: TrustStores, location_name: "TrustStores"))
|
531
540
|
CreateTrustStoreOutput.struct_class = Types::CreateTrustStoreOutput
|
532
541
|
|
542
|
+
DeleteAssociationSameAccountException.struct_class = Types::DeleteAssociationSameAccountException
|
543
|
+
|
533
544
|
DeleteListenerInput.add_member(:listener_arn, Shapes::ShapeRef.new(shape: ListenerArn, required: true, location_name: "ListenerArn"))
|
534
545
|
DeleteListenerInput.struct_class = Types::DeleteListenerInput
|
535
546
|
|
@@ -545,6 +556,12 @@ module Aws::ElasticLoadBalancingV2
|
|
545
556
|
|
546
557
|
DeleteRuleOutput.struct_class = Types::DeleteRuleOutput
|
547
558
|
|
559
|
+
DeleteSharedTrustStoreAssociationInput.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: TrustStoreArn, required: true, location_name: "TrustStoreArn"))
|
560
|
+
DeleteSharedTrustStoreAssociationInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
|
561
|
+
DeleteSharedTrustStoreAssociationInput.struct_class = Types::DeleteSharedTrustStoreAssociationInput
|
562
|
+
|
563
|
+
DeleteSharedTrustStoreAssociationOutput.struct_class = Types::DeleteSharedTrustStoreAssociationOutput
|
564
|
+
|
548
565
|
DeleteTargetGroupInput.add_member(:target_group_arn, Shapes::ShapeRef.new(shape: TargetGroupArn, required: true, location_name: "TargetGroupArn"))
|
549
566
|
DeleteTargetGroupInput.struct_class = Types::DeleteTargetGroupInput
|
550
567
|
|
@@ -711,6 +728,12 @@ module Aws::ElasticLoadBalancingV2
|
|
711
728
|
ForwardActionConfig.add_member(:target_group_stickiness_config, Shapes::ShapeRef.new(shape: TargetGroupStickinessConfig, location_name: "TargetGroupStickinessConfig"))
|
712
729
|
ForwardActionConfig.struct_class = Types::ForwardActionConfig
|
713
730
|
|
731
|
+
GetResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
|
732
|
+
GetResourcePolicyInput.struct_class = Types::GetResourcePolicyInput
|
733
|
+
|
734
|
+
GetResourcePolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, location_name: "Policy"))
|
735
|
+
GetResourcePolicyOutput.struct_class = Types::GetResourcePolicyOutput
|
736
|
+
|
714
737
|
GetTrustStoreCaCertificatesBundleInput.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: TrustStoreArn, required: true, location_name: "TrustStoreArn"))
|
715
738
|
GetTrustStoreCaCertificatesBundleInput.struct_class = Types::GetTrustStoreCaCertificatesBundleInput
|
716
739
|
|
@@ -889,6 +912,7 @@ module Aws::ElasticLoadBalancingV2
|
|
889
912
|
MutualAuthenticationAttributes.add_member(:mode, Shapes::ShapeRef.new(shape: Mode, location_name: "Mode"))
|
890
913
|
MutualAuthenticationAttributes.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: TrustStoreArn, location_name: "TrustStoreArn"))
|
891
914
|
MutualAuthenticationAttributes.add_member(:ignore_client_certificate_expiry, Shapes::ShapeRef.new(shape: IgnoreClientCertificateExpiry, location_name: "IgnoreClientCertificateExpiry"))
|
915
|
+
MutualAuthenticationAttributes.add_member(:trust_store_association_status, Shapes::ShapeRef.new(shape: TrustStoreAssociationStatusEnum, location_name: "TrustStoreAssociationStatus"))
|
892
916
|
MutualAuthenticationAttributes.struct_class = Types::MutualAuthenticationAttributes
|
893
917
|
|
894
918
|
OperationNotPermittedException.struct_class = Types::OperationNotPermittedException
|
@@ -943,6 +967,8 @@ module Aws::ElasticLoadBalancingV2
|
|
943
967
|
|
944
968
|
ResourceInUseException.struct_class = Types::ResourceInUseException
|
945
969
|
|
970
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
971
|
+
|
946
972
|
RevocationContent.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, location_name: "S3Bucket"))
|
947
973
|
RevocationContent.add_member(:s3_key, Shapes::ShapeRef.new(shape: S3Key, location_name: "S3Key"))
|
948
974
|
RevocationContent.add_member(:s3_object_version, Shapes::ShapeRef.new(shape: S3ObjectVersion, location_name: "S3ObjectVersion"))
|
@@ -1167,6 +1193,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1167
1193
|
TrustStoreAssociation.add_member(:resource_arn, Shapes::ShapeRef.new(shape: TrustStoreAssociationResourceArn, location_name: "ResourceArn"))
|
1168
1194
|
TrustStoreAssociation.struct_class = Types::TrustStoreAssociation
|
1169
1195
|
|
1196
|
+
TrustStoreAssociationNotFoundException.struct_class = Types::TrustStoreAssociationNotFoundException
|
1197
|
+
|
1170
1198
|
TrustStoreAssociations.member = Shapes::ShapeRef.new(shape: TrustStoreAssociation)
|
1171
1199
|
|
1172
1200
|
TrustStoreInUseException.struct_class = Types::TrustStoreInUseException
|
@@ -1376,6 +1404,17 @@ module Aws::ElasticLoadBalancingV2
|
|
1376
1404
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1377
1405
|
end)
|
1378
1406
|
|
1407
|
+
api.add_operation(:delete_shared_trust_store_association, Seahorse::Model::Operation.new.tap do |o|
|
1408
|
+
o.name = "DeleteSharedTrustStoreAssociation"
|
1409
|
+
o.http_method = "POST"
|
1410
|
+
o.http_request_uri = "/"
|
1411
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteSharedTrustStoreAssociationInput)
|
1412
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteSharedTrustStoreAssociationOutput)
|
1413
|
+
o.errors << Shapes::ShapeRef.new(shape: TrustStoreNotFoundException)
|
1414
|
+
o.errors << Shapes::ShapeRef.new(shape: DeleteAssociationSameAccountException)
|
1415
|
+
o.errors << Shapes::ShapeRef.new(shape: TrustStoreAssociationNotFoundException)
|
1416
|
+
end)
|
1417
|
+
|
1379
1418
|
api.add_operation(:delete_target_group, Seahorse::Model::Operation.new.tap do |o|
|
1380
1419
|
o.name = "DeleteTargetGroup"
|
1381
1420
|
o.http_method = "POST"
|
@@ -1575,6 +1614,15 @@ module Aws::ElasticLoadBalancingV2
|
|
1575
1614
|
)
|
1576
1615
|
end)
|
1577
1616
|
|
1617
|
+
api.add_operation(:get_resource_policy, Seahorse::Model::Operation.new.tap do |o|
|
1618
|
+
o.name = "GetResourcePolicy"
|
1619
|
+
o.http_method = "POST"
|
1620
|
+
o.http_request_uri = "/"
|
1621
|
+
o.input = Shapes::ShapeRef.new(shape: GetResourcePolicyInput)
|
1622
|
+
o.output = Shapes::ShapeRef.new(shape: GetResourcePolicyOutput)
|
1623
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1624
|
+
end)
|
1625
|
+
|
1578
1626
|
api.add_operation(:get_trust_store_ca_certificates_bundle, Seahorse::Model::Operation.new.tap do |o|
|
1579
1627
|
o.name = "GetTrustStoreCaCertificatesBundle"
|
1580
1628
|
o.http_method = "POST"
|
@@ -166,6 +166,20 @@ module Aws::ElasticLoadBalancingV2
|
|
166
166
|
end
|
167
167
|
end
|
168
168
|
|
169
|
+
class DeleteSharedTrustStoreAssociation
|
170
|
+
def self.build(context)
|
171
|
+
unless context.config.regional_endpoint
|
172
|
+
endpoint = context.config.endpoint.to_s
|
173
|
+
end
|
174
|
+
Aws::ElasticLoadBalancingV2::EndpointParameters.new(
|
175
|
+
region: context.config.region,
|
176
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
177
|
+
use_fips: context.config.use_fips_endpoint,
|
178
|
+
endpoint: endpoint,
|
179
|
+
)
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
169
183
|
class DeleteTargetGroup
|
170
184
|
def self.build(context)
|
171
185
|
unless context.config.regional_endpoint
|
@@ -404,6 +418,20 @@ module Aws::ElasticLoadBalancingV2
|
|
404
418
|
end
|
405
419
|
end
|
406
420
|
|
421
|
+
class GetResourcePolicy
|
422
|
+
def self.build(context)
|
423
|
+
unless context.config.regional_endpoint
|
424
|
+
endpoint = context.config.endpoint.to_s
|
425
|
+
end
|
426
|
+
Aws::ElasticLoadBalancingV2::EndpointParameters.new(
|
427
|
+
region: context.config.region,
|
428
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
429
|
+
use_fips: context.config.use_fips_endpoint,
|
430
|
+
endpoint: endpoint,
|
431
|
+
)
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
407
435
|
class GetTrustStoreCaCertificatesBundle
|
408
436
|
def self.build(context)
|
409
437
|
unless context.config.regional_endpoint
|
@@ -32,6 +32,7 @@ module Aws::ElasticLoadBalancingV2
|
|
32
32
|
# * {AvailabilityZoneNotSupportedException}
|
33
33
|
# * {CaCertificatesBundleNotFoundException}
|
34
34
|
# * {CertificateNotFoundException}
|
35
|
+
# * {DeleteAssociationSameAccountException}
|
35
36
|
# * {DuplicateListenerException}
|
36
37
|
# * {DuplicateLoadBalancerNameException}
|
37
38
|
# * {DuplicateTagKeysException}
|
@@ -52,6 +53,7 @@ module Aws::ElasticLoadBalancingV2
|
|
52
53
|
# * {OperationNotPermittedException}
|
53
54
|
# * {PriorityInUseException}
|
54
55
|
# * {ResourceInUseException}
|
56
|
+
# * {ResourceNotFoundException}
|
55
57
|
# * {RevocationContentNotFoundException}
|
56
58
|
# * {RevocationIdNotFoundException}
|
57
59
|
# * {RuleNotFoundException}
|
@@ -71,6 +73,7 @@ module Aws::ElasticLoadBalancingV2
|
|
71
73
|
# * {TooManyTrustStoreRevocationEntriesException}
|
72
74
|
# * {TooManyTrustStoresException}
|
73
75
|
# * {TooManyUniqueTargetGroupsPerLoadBalancerException}
|
76
|
+
# * {TrustStoreAssociationNotFoundException}
|
74
77
|
# * {TrustStoreInUseException}
|
75
78
|
# * {TrustStoreNotFoundException}
|
76
79
|
# * {TrustStoreNotReadyException}
|
@@ -132,6 +135,16 @@ module Aws::ElasticLoadBalancingV2
|
|
132
135
|
end
|
133
136
|
end
|
134
137
|
|
138
|
+
class DeleteAssociationSameAccountException < ServiceError
|
139
|
+
|
140
|
+
# @param [Seahorse::Client::RequestContext] context
|
141
|
+
# @param [String] message
|
142
|
+
# @param [Aws::ElasticLoadBalancingV2::Types::DeleteAssociationSameAccountException] data
|
143
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
144
|
+
super(context, message, data)
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
135
148
|
class DuplicateListenerException < ServiceError
|
136
149
|
|
137
150
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -332,6 +345,16 @@ module Aws::ElasticLoadBalancingV2
|
|
332
345
|
end
|
333
346
|
end
|
334
347
|
|
348
|
+
class ResourceNotFoundException < ServiceError
|
349
|
+
|
350
|
+
# @param [Seahorse::Client::RequestContext] context
|
351
|
+
# @param [String] message
|
352
|
+
# @param [Aws::ElasticLoadBalancingV2::Types::ResourceNotFoundException] data
|
353
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
354
|
+
super(context, message, data)
|
355
|
+
end
|
356
|
+
end
|
357
|
+
|
335
358
|
class RevocationContentNotFoundException < ServiceError
|
336
359
|
|
337
360
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -522,6 +545,16 @@ module Aws::ElasticLoadBalancingV2
|
|
522
545
|
end
|
523
546
|
end
|
524
547
|
|
548
|
+
class TrustStoreAssociationNotFoundException < ServiceError
|
549
|
+
|
550
|
+
# @param [Seahorse::Client::RequestContext] context
|
551
|
+
# @param [String] message
|
552
|
+
# @param [Aws::ElasticLoadBalancingV2::Types::TrustStoreAssociationNotFoundException] data
|
553
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
554
|
+
super(context, message, data)
|
555
|
+
end
|
556
|
+
end
|
557
|
+
|
525
558
|
class TrustStoreInUseException < ServiceError
|
526
559
|
|
527
560
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -80,6 +80,8 @@ module Aws::ElasticLoadBalancingV2
|
|
80
80
|
Aws::ElasticLoadBalancingV2::Endpoints::DeleteLoadBalancer.build(context)
|
81
81
|
when :delete_rule
|
82
82
|
Aws::ElasticLoadBalancingV2::Endpoints::DeleteRule.build(context)
|
83
|
+
when :delete_shared_trust_store_association
|
84
|
+
Aws::ElasticLoadBalancingV2::Endpoints::DeleteSharedTrustStoreAssociation.build(context)
|
83
85
|
when :delete_target_group
|
84
86
|
Aws::ElasticLoadBalancingV2::Endpoints::DeleteTargetGroup.build(context)
|
85
87
|
when :delete_trust_store
|
@@ -114,6 +116,8 @@ module Aws::ElasticLoadBalancingV2
|
|
114
116
|
Aws::ElasticLoadBalancingV2::Endpoints::DescribeTrustStoreRevocations.build(context)
|
115
117
|
when :describe_trust_stores
|
116
118
|
Aws::ElasticLoadBalancingV2::Endpoints::DescribeTrustStores.build(context)
|
119
|
+
when :get_resource_policy
|
120
|
+
Aws::ElasticLoadBalancingV2::Endpoints::GetResourcePolicy.build(context)
|
117
121
|
when :get_trust_store_ca_certificates_bundle
|
118
122
|
Aws::ElasticLoadBalancingV2::Endpoints::GetTrustStoreCaCertificatesBundle.build(context)
|
119
123
|
when :get_trust_store_revocation_content
|
@@ -961,6 +961,12 @@ module Aws::ElasticLoadBalancingV2
|
|
961
961
|
include Aws::Structure
|
962
962
|
end
|
963
963
|
|
964
|
+
# The specified association cannot be within the same account.
|
965
|
+
#
|
966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DeleteAssociationSameAccountException AWS API Documentation
|
967
|
+
#
|
968
|
+
class DeleteAssociationSameAccountException < Aws::EmptyStructure; end
|
969
|
+
|
964
970
|
# @!attribute [rw] listener_arn
|
965
971
|
# The Amazon Resource Name (ARN) of the listener.
|
966
972
|
# @return [String]
|
@@ -1009,6 +1015,27 @@ module Aws::ElasticLoadBalancingV2
|
|
1009
1015
|
#
|
1010
1016
|
class DeleteRuleOutput < Aws::EmptyStructure; end
|
1011
1017
|
|
1018
|
+
# @!attribute [rw] trust_store_arn
|
1019
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1020
|
+
# @return [String]
|
1021
|
+
#
|
1022
|
+
# @!attribute [rw] resource_arn
|
1023
|
+
# The Amazon Resource Name (ARN) of the resource.
|
1024
|
+
# @return [String]
|
1025
|
+
#
|
1026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DeleteSharedTrustStoreAssociationInput AWS API Documentation
|
1027
|
+
#
|
1028
|
+
class DeleteSharedTrustStoreAssociationInput < Struct.new(
|
1029
|
+
:trust_store_arn,
|
1030
|
+
:resource_arn)
|
1031
|
+
SENSITIVE = []
|
1032
|
+
include Aws::Structure
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DeleteSharedTrustStoreAssociationOutput AWS API Documentation
|
1036
|
+
#
|
1037
|
+
class DeleteSharedTrustStoreAssociationOutput < Aws::EmptyStructure; end
|
1038
|
+
|
1012
1039
|
# @!attribute [rw] target_group_arn
|
1013
1040
|
# The Amazon Resource Name (ARN) of the target group.
|
1014
1041
|
# @return [String]
|
@@ -1460,7 +1487,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1460
1487
|
# @return [Array<Types::TargetDescription>]
|
1461
1488
|
#
|
1462
1489
|
# @!attribute [rw] include
|
1463
|
-
# Used to
|
1490
|
+
# Used to include anomaly detection information.
|
1464
1491
|
# @return [Array<String>]
|
1465
1492
|
#
|
1466
1493
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetHealthInput AWS API Documentation
|
@@ -1724,6 +1751,30 @@ module Aws::ElasticLoadBalancingV2
|
|
1724
1751
|
include Aws::Structure
|
1725
1752
|
end
|
1726
1753
|
|
1754
|
+
# @!attribute [rw] resource_arn
|
1755
|
+
# The Amazon Resource Name (ARN) of the resource.
|
1756
|
+
# @return [String]
|
1757
|
+
#
|
1758
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetResourcePolicyInput AWS API Documentation
|
1759
|
+
#
|
1760
|
+
class GetResourcePolicyInput < Struct.new(
|
1761
|
+
:resource_arn)
|
1762
|
+
SENSITIVE = []
|
1763
|
+
include Aws::Structure
|
1764
|
+
end
|
1765
|
+
|
1766
|
+
# @!attribute [rw] policy
|
1767
|
+
# The content of the resource policy.
|
1768
|
+
# @return [String]
|
1769
|
+
#
|
1770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetResourcePolicyOutput AWS API Documentation
|
1771
|
+
#
|
1772
|
+
class GetResourcePolicyOutput < Struct.new(
|
1773
|
+
:policy)
|
1774
|
+
SENSITIVE = []
|
1775
|
+
include Aws::Structure
|
1776
|
+
end
|
1777
|
+
|
1727
1778
|
# @!attribute [rw] trust_store_arn
|
1728
1779
|
# The Amazon Resource Name (ARN) of the trust store.
|
1729
1780
|
# @return [String]
|
@@ -2744,12 +2795,17 @@ module Aws::ElasticLoadBalancingV2
|
|
2744
2795
|
# Indicates whether expired client certificates are ignored.
|
2745
2796
|
# @return [Boolean]
|
2746
2797
|
#
|
2798
|
+
# @!attribute [rw] trust_store_association_status
|
2799
|
+
# Indicates a shared trust stores association status.
|
2800
|
+
# @return [String]
|
2801
|
+
#
|
2747
2802
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/MutualAuthenticationAttributes AWS API Documentation
|
2748
2803
|
#
|
2749
2804
|
class MutualAuthenticationAttributes < Struct.new(
|
2750
2805
|
:mode,
|
2751
2806
|
:trust_store_arn,
|
2752
|
-
:ignore_client_certificate_expiry
|
2807
|
+
:ignore_client_certificate_expiry,
|
2808
|
+
:trust_store_association_status)
|
2753
2809
|
SENSITIVE = []
|
2754
2810
|
include Aws::Structure
|
2755
2811
|
end
|
@@ -2997,6 +3053,12 @@ module Aws::ElasticLoadBalancingV2
|
|
2997
3053
|
#
|
2998
3054
|
class ResourceInUseException < Aws::EmptyStructure; end
|
2999
3055
|
|
3056
|
+
# The specified resource does not exist.
|
3057
|
+
#
|
3058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ResourceNotFoundException AWS API Documentation
|
3059
|
+
#
|
3060
|
+
class ResourceNotFoundException < Aws::EmptyStructure; end
|
3061
|
+
|
3000
3062
|
# Information about a revocation file.
|
3001
3063
|
#
|
3002
3064
|
# @!attribute [rw] s3_bucket
|
@@ -3234,6 +3296,12 @@ module Aws::ElasticLoadBalancingV2
|
|
3234
3296
|
# and IPv6 addresses), and `dualstack-without-public-ipv4` (for IPv6
|
3235
3297
|
# only public addresses, with private IPv4 and IPv6 addresses).
|
3236
3298
|
#
|
3299
|
+
# Note: Application Load Balancer authentication only supports IPv4
|
3300
|
+
# addresses when connecting to an Identity Provider (IdP) or Amazon
|
3301
|
+
# Cognito endpoint. Without a public IPv4 address the load balancer
|
3302
|
+
# cannot complete the authentication process, resulting in HTTP 500
|
3303
|
+
# errors.
|
3304
|
+
#
|
3237
3305
|
# \[Network Load Balancers\] The IP address type. The possible values
|
3238
3306
|
# are `ipv4` (for only IPv4 addresses) and `dualstack` (for IPv4 and
|
3239
3307
|
# IPv6 addresses). You can’t specify `dualstack` for a load balancer
|
@@ -4220,6 +4288,12 @@ module Aws::ElasticLoadBalancingV2
|
|
4220
4288
|
include Aws::Structure
|
4221
4289
|
end
|
4222
4290
|
|
4291
|
+
# The specified association does not exist.
|
4292
|
+
#
|
4293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TrustStoreAssociationNotFoundException AWS API Documentation
|
4294
|
+
#
|
4295
|
+
class TrustStoreAssociationNotFoundException < Aws::EmptyStructure; end
|
4296
|
+
|
4223
4297
|
# The specified trust store is currently in use.
|
4224
4298
|
#
|
4225
4299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TrustStoreInUseException AWS API Documentation
|
data/sig/client.rbs
CHANGED
@@ -204,7 +204,8 @@ module Aws
|
|
204
204
|
?mutual_authentication: {
|
205
205
|
mode: ::String?,
|
206
206
|
trust_store_arn: ::String?,
|
207
|
-
ignore_client_certificate_expiry: bool
|
207
|
+
ignore_client_certificate_expiry: bool?,
|
208
|
+
trust_store_association_status: ("active" | "removed")?
|
208
209
|
}
|
209
210
|
) -> _CreateListenerResponseSuccess
|
210
211
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListenerResponseSuccess
|
@@ -422,6 +423,16 @@ module Aws
|
|
422
423
|
) -> _DeleteRuleResponseSuccess
|
423
424
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRuleResponseSuccess
|
424
425
|
|
426
|
+
interface _DeleteSharedTrustStoreAssociationResponseSuccess
|
427
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSharedTrustStoreAssociationOutput]
|
428
|
+
end
|
429
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#delete_shared_trust_store_association-instance_method
|
430
|
+
def delete_shared_trust_store_association: (
|
431
|
+
trust_store_arn: ::String,
|
432
|
+
resource_arn: ::String
|
433
|
+
) -> _DeleteSharedTrustStoreAssociationResponseSuccess
|
434
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSharedTrustStoreAssociationResponseSuccess
|
435
|
+
|
425
436
|
interface _DeleteTargetGroupResponseSuccess
|
426
437
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTargetGroupOutput]
|
427
438
|
end
|
@@ -641,6 +652,16 @@ module Aws
|
|
641
652
|
) -> _DescribeTrustStoresResponseSuccess
|
642
653
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrustStoresResponseSuccess
|
643
654
|
|
655
|
+
interface _GetResourcePolicyResponseSuccess
|
656
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyOutput]
|
657
|
+
def policy: () -> ::String
|
658
|
+
end
|
659
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#get_resource_policy-instance_method
|
660
|
+
def get_resource_policy: (
|
661
|
+
resource_arn: ::String
|
662
|
+
) -> _GetResourcePolicyResponseSuccess
|
663
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
|
664
|
+
|
644
665
|
interface _GetTrustStoreCaCertificatesBundleResponseSuccess
|
645
666
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetTrustStoreCaCertificatesBundleOutput]
|
646
667
|
def location: () -> ::String
|
@@ -738,7 +759,8 @@ module Aws
|
|
738
759
|
?mutual_authentication: {
|
739
760
|
mode: ::String?,
|
740
761
|
trust_store_arn: ::String?,
|
741
|
-
ignore_client_certificate_expiry: bool
|
762
|
+
ignore_client_certificate_expiry: bool?,
|
763
|
+
trust_store_association_status: ("active" | "removed")?
|
742
764
|
}
|
743
765
|
) -> _ModifyListenerResponseSuccess
|
744
766
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyListenerResponseSuccess
|
data/sig/errors.rbs
CHANGED
@@ -21,6 +21,8 @@ module Aws
|
|
21
21
|
end
|
22
22
|
class CertificateNotFoundException < ::Aws::Errors::ServiceError
|
23
23
|
end
|
24
|
+
class DeleteAssociationSameAccountException < ::Aws::Errors::ServiceError
|
25
|
+
end
|
24
26
|
class DuplicateListenerException < ::Aws::Errors::ServiceError
|
25
27
|
end
|
26
28
|
class DuplicateLoadBalancerNameException < ::Aws::Errors::ServiceError
|
@@ -61,6 +63,8 @@ module Aws
|
|
61
63
|
end
|
62
64
|
class ResourceInUseException < ::Aws::Errors::ServiceError
|
63
65
|
end
|
66
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
67
|
+
end
|
64
68
|
class RevocationContentNotFoundException < ::Aws::Errors::ServiceError
|
65
69
|
end
|
66
70
|
class RevocationIdNotFoundException < ::Aws::Errors::ServiceError
|
@@ -99,6 +103,8 @@ module Aws
|
|
99
103
|
end
|
100
104
|
class TooManyUniqueTargetGroupsPerLoadBalancerException < ::Aws::Errors::ServiceError
|
101
105
|
end
|
106
|
+
class TrustStoreAssociationNotFoundException < ::Aws::Errors::ServiceError
|
107
|
+
end
|
102
108
|
class TrustStoreInUseException < ::Aws::Errors::ServiceError
|
103
109
|
end
|
104
110
|
class TrustStoreNotFoundException < ::Aws::Errors::ServiceError
|
data/sig/types.rbs
CHANGED
@@ -210,6 +210,9 @@ module Aws::ElasticLoadBalancingV2
|
|
210
210
|
SENSITIVE: []
|
211
211
|
end
|
212
212
|
|
213
|
+
class DeleteAssociationSameAccountException < Aws::EmptyStructure
|
214
|
+
end
|
215
|
+
|
213
216
|
class DeleteListenerInput
|
214
217
|
attr_accessor listener_arn: ::String
|
215
218
|
SENSITIVE: []
|
@@ -234,6 +237,15 @@ module Aws::ElasticLoadBalancingV2
|
|
234
237
|
class DeleteRuleOutput < Aws::EmptyStructure
|
235
238
|
end
|
236
239
|
|
240
|
+
class DeleteSharedTrustStoreAssociationInput
|
241
|
+
attr_accessor trust_store_arn: ::String
|
242
|
+
attr_accessor resource_arn: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class DeleteSharedTrustStoreAssociationOutput < Aws::EmptyStructure
|
247
|
+
end
|
248
|
+
|
237
249
|
class DeleteTargetGroupInput
|
238
250
|
attr_accessor target_group_arn: ::String
|
239
251
|
SENSITIVE: []
|
@@ -474,6 +486,16 @@ module Aws::ElasticLoadBalancingV2
|
|
474
486
|
SENSITIVE: []
|
475
487
|
end
|
476
488
|
|
489
|
+
class GetResourcePolicyInput
|
490
|
+
attr_accessor resource_arn: ::String
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class GetResourcePolicyOutput
|
495
|
+
attr_accessor policy: ::String
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
477
499
|
class GetTrustStoreCaCertificatesBundleInput
|
478
500
|
attr_accessor trust_store_arn: ::String
|
479
501
|
SENSITIVE: []
|
@@ -697,6 +719,7 @@ module Aws::ElasticLoadBalancingV2
|
|
697
719
|
attr_accessor mode: ::String
|
698
720
|
attr_accessor trust_store_arn: ::String
|
699
721
|
attr_accessor ignore_client_certificate_expiry: bool
|
722
|
+
attr_accessor trust_store_association_status: ("active" | "removed")
|
700
723
|
SENSITIVE: []
|
701
724
|
end
|
702
725
|
|
@@ -771,6 +794,9 @@ module Aws::ElasticLoadBalancingV2
|
|
771
794
|
class ResourceInUseException < Aws::EmptyStructure
|
772
795
|
end
|
773
796
|
|
797
|
+
class ResourceNotFoundException < Aws::EmptyStructure
|
798
|
+
end
|
799
|
+
|
774
800
|
class RevocationContent
|
775
801
|
attr_accessor s3_bucket: ::String
|
776
802
|
attr_accessor s3_key: ::String
|
@@ -1020,6 +1046,9 @@ module Aws::ElasticLoadBalancingV2
|
|
1020
1046
|
SENSITIVE: []
|
1021
1047
|
end
|
1022
1048
|
|
1049
|
+
class TrustStoreAssociationNotFoundException < Aws::EmptyStructure
|
1050
|
+
end
|
1051
|
+
|
1023
1052
|
class TrustStoreInUseException < Aws::EmptyStructure
|
1024
1053
|
end
|
1025
1054
|
|
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.109.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-07-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|