aws-sdk-elasticloadbalancingv2 1.94.0 → 1.95.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 +438 -3
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +355 -0
- data/lib/aws-sdk-elasticloadbalancingv2/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-elasticloadbalancingv2/endpoints.rb +140 -0
- data/lib/aws-sdk-elasticloadbalancingv2/errors.rb +121 -0
- data/lib/aws-sdk-elasticloadbalancingv2/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +644 -8
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- 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: 3daf4aaa54a16ea73d4dc3f38c4275049c8ee255f44aa2a03a86a0d60046fc2d
|
4
|
+
data.tar.gz: a95d7fd19fa730d1534abb005d578d4d1e795dfb2edd8d9dbe35bea38fb2d48d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3d37e589de431351aa3215772ac15d780c26c381b0c716f28896424424191ffde7f772d1ddc5a9255e64891794b5435d43e0ffb5d655aef98717b4631f66004
|
7
|
+
data.tar.gz: 4c46b2e3a7eb7da3dfe66810b42e75f56cfa6bad8e4ad75681162df0bfea9d3962d35e1825d3fb1a997196a9b416f1ccdd0a3bf6a3ae5b44a03db733343097e8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.95.0 (2023-11-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release enables both mutual authentication (mTLS), and Automatic Target Weights (ATW) for Application Load Balancers.
|
8
|
+
|
4
9
|
1.94.0 (2023-11-22)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.95.0
|
@@ -443,8 +443,8 @@ module Aws::ElasticLoadBalancingV2
|
|
443
443
|
|
444
444
|
# Adds the specified tags to the specified Elastic Load Balancing
|
445
445
|
# resource. You can tag your Application Load Balancers, Network Load
|
446
|
-
# Balancers, Gateway Load Balancers, target groups,
|
447
|
-
# rules.
|
446
|
+
# Balancers, Gateway Load Balancers, target groups, trust stores,
|
447
|
+
# listeners, and rules.
|
448
448
|
#
|
449
449
|
# Each tag consists of a key and an optional value. If a resource
|
450
450
|
# already has a tag with the same key, `AddTags` updates its value.
|
@@ -499,6 +499,49 @@ module Aws::ElasticLoadBalancingV2
|
|
499
499
|
req.send_request(options)
|
500
500
|
end
|
501
501
|
|
502
|
+
# Adds the specified revocation file to the specified trust store.
|
503
|
+
#
|
504
|
+
# @option params [required, String] :trust_store_arn
|
505
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
506
|
+
#
|
507
|
+
# @option params [Array<Types::RevocationContent>] :revocation_contents
|
508
|
+
# The revocation file to add.
|
509
|
+
#
|
510
|
+
# @return [Types::AddTrustStoreRevocationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
511
|
+
#
|
512
|
+
# * {Types::AddTrustStoreRevocationsOutput#trust_store_revocations #trust_store_revocations} => Array<Types::TrustStoreRevocation>
|
513
|
+
#
|
514
|
+
# @example Request syntax with placeholder values
|
515
|
+
#
|
516
|
+
# resp = client.add_trust_store_revocations({
|
517
|
+
# trust_store_arn: "TrustStoreArn", # required
|
518
|
+
# revocation_contents: [
|
519
|
+
# {
|
520
|
+
# s3_bucket: "S3Bucket",
|
521
|
+
# s3_key: "S3Key",
|
522
|
+
# s3_object_version: "S3ObjectVersion",
|
523
|
+
# revocation_type: "CRL", # accepts CRL
|
524
|
+
# },
|
525
|
+
# ],
|
526
|
+
# })
|
527
|
+
#
|
528
|
+
# @example Response structure
|
529
|
+
#
|
530
|
+
# resp.trust_store_revocations #=> Array
|
531
|
+
# resp.trust_store_revocations[0].trust_store_arn #=> String
|
532
|
+
# resp.trust_store_revocations[0].revocation_id #=> Integer
|
533
|
+
# resp.trust_store_revocations[0].revocation_type #=> String, one of "CRL"
|
534
|
+
# resp.trust_store_revocations[0].number_of_revoked_entries #=> Integer
|
535
|
+
#
|
536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/AddTrustStoreRevocations AWS API Documentation
|
537
|
+
#
|
538
|
+
# @overload add_trust_store_revocations(params = {})
|
539
|
+
# @param [Hash] params ({})
|
540
|
+
def add_trust_store_revocations(params = {}, options = {})
|
541
|
+
req = build_request(:add_trust_store_revocations, params)
|
542
|
+
req.send_request(options)
|
543
|
+
end
|
544
|
+
|
502
545
|
# Creates a listener for the specified Application Load Balancer,
|
503
546
|
# Network Load Balancer, or Gateway Load Balancer.
|
504
547
|
#
|
@@ -581,6 +624,9 @@ module Aws::ElasticLoadBalancingV2
|
|
581
624
|
# @option params [Array<Types::Tag>] :tags
|
582
625
|
# The tags to assign to the listener.
|
583
626
|
#
|
627
|
+
# @option params [Types::MutualAuthenticationAttributes] :mutual_authentication
|
628
|
+
# The mutual authentication configuration information.
|
629
|
+
#
|
584
630
|
# @return [Types::CreateListenerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
585
631
|
#
|
586
632
|
# * {Types::CreateListenerOutput#listeners #listeners} => Array<Types::Listener>
|
@@ -750,6 +796,11 @@ module Aws::ElasticLoadBalancingV2
|
|
750
796
|
# value: "TagValue",
|
751
797
|
# },
|
752
798
|
# ],
|
799
|
+
# mutual_authentication: {
|
800
|
+
# mode: "Mode",
|
801
|
+
# trust_store_arn: "TrustStoreArn",
|
802
|
+
# ignore_client_certificate_expiry: false,
|
803
|
+
# },
|
753
804
|
# })
|
754
805
|
#
|
755
806
|
# @example Response structure
|
@@ -805,6 +856,9 @@ module Aws::ElasticLoadBalancingV2
|
|
805
856
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
806
857
|
# resp.listeners[0].alpn_policy #=> Array
|
807
858
|
# resp.listeners[0].alpn_policy[0] #=> String
|
859
|
+
# resp.listeners[0].mutual_authentication.mode #=> String
|
860
|
+
# resp.listeners[0].mutual_authentication.trust_store_arn #=> String
|
861
|
+
# resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
|
808
862
|
#
|
809
863
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateListener AWS API Documentation
|
810
864
|
#
|
@@ -1597,6 +1651,64 @@ module Aws::ElasticLoadBalancingV2
|
|
1597
1651
|
req.send_request(options)
|
1598
1652
|
end
|
1599
1653
|
|
1654
|
+
# Creates a trust store.
|
1655
|
+
#
|
1656
|
+
# @option params [required, String] :name
|
1657
|
+
# The name of the trust store.
|
1658
|
+
#
|
1659
|
+
# This name must be unique per region and cannot be changed after
|
1660
|
+
# creation.
|
1661
|
+
#
|
1662
|
+
# @option params [required, String] :ca_certificates_bundle_s3_bucket
|
1663
|
+
# The Amazon S3 bucket for the ca certificates bundle.
|
1664
|
+
#
|
1665
|
+
# @option params [required, String] :ca_certificates_bundle_s3_key
|
1666
|
+
# The Amazon S3 path for the ca certificates bundle.
|
1667
|
+
#
|
1668
|
+
# @option params [String] :ca_certificates_bundle_s3_object_version
|
1669
|
+
# The Amazon S3 object version for the ca certificates bundle. If
|
1670
|
+
# undefined the current version is used.
|
1671
|
+
#
|
1672
|
+
# @option params [Array<Types::Tag>] :tags
|
1673
|
+
# The tags to assign to the trust store.
|
1674
|
+
#
|
1675
|
+
# @return [Types::CreateTrustStoreOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1676
|
+
#
|
1677
|
+
# * {Types::CreateTrustStoreOutput#trust_stores #trust_stores} => Array<Types::TrustStore>
|
1678
|
+
#
|
1679
|
+
# @example Request syntax with placeholder values
|
1680
|
+
#
|
1681
|
+
# resp = client.create_trust_store({
|
1682
|
+
# name: "TrustStoreName", # required
|
1683
|
+
# ca_certificates_bundle_s3_bucket: "S3Bucket", # required
|
1684
|
+
# ca_certificates_bundle_s3_key: "S3Key", # required
|
1685
|
+
# ca_certificates_bundle_s3_object_version: "S3ObjectVersion",
|
1686
|
+
# tags: [
|
1687
|
+
# {
|
1688
|
+
# key: "TagKey", # required
|
1689
|
+
# value: "TagValue",
|
1690
|
+
# },
|
1691
|
+
# ],
|
1692
|
+
# })
|
1693
|
+
#
|
1694
|
+
# @example Response structure
|
1695
|
+
#
|
1696
|
+
# resp.trust_stores #=> Array
|
1697
|
+
# resp.trust_stores[0].name #=> String
|
1698
|
+
# resp.trust_stores[0].trust_store_arn #=> String
|
1699
|
+
# resp.trust_stores[0].status #=> String, one of "ACTIVE", "CREATING"
|
1700
|
+
# resp.trust_stores[0].number_of_ca_certificates #=> Integer
|
1701
|
+
# resp.trust_stores[0].total_revoked_entries #=> Integer
|
1702
|
+
#
|
1703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTrustStore AWS API Documentation
|
1704
|
+
#
|
1705
|
+
# @overload create_trust_store(params = {})
|
1706
|
+
# @param [Hash] params ({})
|
1707
|
+
def create_trust_store(params = {}, options = {})
|
1708
|
+
req = build_request(:create_trust_store, params)
|
1709
|
+
req.send_request(options)
|
1710
|
+
end
|
1711
|
+
|
1600
1712
|
# Deletes the specified listener.
|
1601
1713
|
#
|
1602
1714
|
# Alternatively, your listener is deleted when you delete the load
|
@@ -1743,6 +1855,28 @@ module Aws::ElasticLoadBalancingV2
|
|
1743
1855
|
req.send_request(options)
|
1744
1856
|
end
|
1745
1857
|
|
1858
|
+
# Deletes a trust store.
|
1859
|
+
#
|
1860
|
+
# @option params [required, String] :trust_store_arn
|
1861
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1862
|
+
#
|
1863
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1864
|
+
#
|
1865
|
+
# @example Request syntax with placeholder values
|
1866
|
+
#
|
1867
|
+
# resp = client.delete_trust_store({
|
1868
|
+
# trust_store_arn: "TrustStoreArn", # required
|
1869
|
+
# })
|
1870
|
+
#
|
1871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DeleteTrustStore AWS API Documentation
|
1872
|
+
#
|
1873
|
+
# @overload delete_trust_store(params = {})
|
1874
|
+
# @param [Hash] params ({})
|
1875
|
+
def delete_trust_store(params = {}, options = {})
|
1876
|
+
req = build_request(:delete_trust_store, params)
|
1877
|
+
req.send_request(options)
|
1878
|
+
end
|
1879
|
+
|
1746
1880
|
# Deregisters the specified targets from the specified target group.
|
1747
1881
|
# After the targets are deregistered, they no longer receive traffic
|
1748
1882
|
# from the load balancer.
|
@@ -2042,6 +2176,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2042
2176
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
2043
2177
|
# resp.listeners[0].alpn_policy #=> Array
|
2044
2178
|
# resp.listeners[0].alpn_policy[0] #=> String
|
2179
|
+
# resp.listeners[0].mutual_authentication.mode #=> String
|
2180
|
+
# resp.listeners[0].mutual_authentication.trust_store_arn #=> String
|
2181
|
+
# resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
|
2045
2182
|
# resp.next_marker #=> String
|
2046
2183
|
#
|
2047
2184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeListeners AWS API Documentation
|
@@ -2820,6 +2957,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2820
2957
|
# @option params [Array<Types::TargetDescription>] :targets
|
2821
2958
|
# The targets.
|
2822
2959
|
#
|
2960
|
+
# @option params [Array<String>] :include
|
2961
|
+
# Used to inclue anomaly detection information.
|
2962
|
+
#
|
2823
2963
|
# @return [Types::DescribeTargetHealthOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2824
2964
|
#
|
2825
2965
|
# * {Types::DescribeTargetHealthOutput#target_health_descriptions #target_health_descriptions} => Array<Types::TargetHealthDescription>
|
@@ -2902,6 +3042,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2902
3042
|
# availability_zone: "ZoneName",
|
2903
3043
|
# },
|
2904
3044
|
# ],
|
3045
|
+
# include: ["AnomalyDetection"], # accepts AnomalyDetection, All
|
2905
3046
|
# })
|
2906
3047
|
#
|
2907
3048
|
# @example Response structure
|
@@ -2914,6 +3055,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2914
3055
|
# resp.target_health_descriptions[0].target_health.state #=> String, one of "initial", "healthy", "unhealthy", "unused", "draining", "unavailable"
|
2915
3056
|
# resp.target_health_descriptions[0].target_health.reason #=> String, one of "Elb.RegistrationInProgress", "Elb.InitialHealthChecking", "Target.ResponseCodeMismatch", "Target.Timeout", "Target.FailedHealthChecks", "Target.NotRegistered", "Target.NotInUse", "Target.DeregistrationInProgress", "Target.InvalidState", "Target.IpUnusable", "Target.HealthCheckDisabled", "Elb.InternalError"
|
2916
3057
|
# resp.target_health_descriptions[0].target_health.description #=> String
|
3058
|
+
# resp.target_health_descriptions[0].anomaly_detection.result #=> String, one of "anomalous", "normal"
|
3059
|
+
# resp.target_health_descriptions[0].anomaly_detection.mitigation_in_effect #=> String, one of "yes", "no"
|
2917
3060
|
#
|
2918
3061
|
#
|
2919
3062
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2930,6 +3073,215 @@ module Aws::ElasticLoadBalancingV2
|
|
2930
3073
|
req.send_request(options)
|
2931
3074
|
end
|
2932
3075
|
|
3076
|
+
# Describes all resources associated with the specified trust store.
|
3077
|
+
#
|
3078
|
+
# @option params [required, String] :trust_store_arn
|
3079
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
3080
|
+
#
|
3081
|
+
# @option params [String] :marker
|
3082
|
+
# The marker for the next set of results. (You received this marker from
|
3083
|
+
# a previous call.)
|
3084
|
+
#
|
3085
|
+
# @option params [Integer] :page_size
|
3086
|
+
# The maximum number of results to return with this call.
|
3087
|
+
#
|
3088
|
+
# @return [Types::DescribeTrustStoreAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3089
|
+
#
|
3090
|
+
# * {Types::DescribeTrustStoreAssociationsOutput#trust_store_associations #trust_store_associations} => Array<Types::TrustStoreAssociation>
|
3091
|
+
# * {Types::DescribeTrustStoreAssociationsOutput#next_marker #next_marker} => String
|
3092
|
+
#
|
3093
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3094
|
+
#
|
3095
|
+
# @example Request syntax with placeholder values
|
3096
|
+
#
|
3097
|
+
# resp = client.describe_trust_store_associations({
|
3098
|
+
# trust_store_arn: "TrustStoreArn", # required
|
3099
|
+
# marker: "Marker",
|
3100
|
+
# page_size: 1,
|
3101
|
+
# })
|
3102
|
+
#
|
3103
|
+
# @example Response structure
|
3104
|
+
#
|
3105
|
+
# resp.trust_store_associations #=> Array
|
3106
|
+
# resp.trust_store_associations[0].resource_arn #=> String
|
3107
|
+
# resp.next_marker #=> String
|
3108
|
+
#
|
3109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoreAssociations AWS API Documentation
|
3110
|
+
#
|
3111
|
+
# @overload describe_trust_store_associations(params = {})
|
3112
|
+
# @param [Hash] params ({})
|
3113
|
+
def describe_trust_store_associations(params = {}, options = {})
|
3114
|
+
req = build_request(:describe_trust_store_associations, params)
|
3115
|
+
req.send_request(options)
|
3116
|
+
end
|
3117
|
+
|
3118
|
+
# Describes the revocation files in use by the specified trust store
|
3119
|
+
# arn, or revocation ID.
|
3120
|
+
#
|
3121
|
+
# @option params [required, String] :trust_store_arn
|
3122
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
3123
|
+
#
|
3124
|
+
# @option params [Array<Integer>] :revocation_ids
|
3125
|
+
# The revocation IDs of the revocation files you want to describe.
|
3126
|
+
#
|
3127
|
+
# @option params [String] :marker
|
3128
|
+
# The marker for the next set of results. (You received this marker from
|
3129
|
+
# a previous call.)
|
3130
|
+
#
|
3131
|
+
# @option params [Integer] :page_size
|
3132
|
+
# The maximum number of results to return with this call.
|
3133
|
+
#
|
3134
|
+
# @return [Types::DescribeTrustStoreRevocationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3135
|
+
#
|
3136
|
+
# * {Types::DescribeTrustStoreRevocationsOutput#trust_store_revocations #trust_store_revocations} => Array<Types::DescribeTrustStoreRevocation>
|
3137
|
+
# * {Types::DescribeTrustStoreRevocationsOutput#next_marker #next_marker} => String
|
3138
|
+
#
|
3139
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3140
|
+
#
|
3141
|
+
# @example Request syntax with placeholder values
|
3142
|
+
#
|
3143
|
+
# resp = client.describe_trust_store_revocations({
|
3144
|
+
# trust_store_arn: "TrustStoreArn", # required
|
3145
|
+
# revocation_ids: [1],
|
3146
|
+
# marker: "Marker",
|
3147
|
+
# page_size: 1,
|
3148
|
+
# })
|
3149
|
+
#
|
3150
|
+
# @example Response structure
|
3151
|
+
#
|
3152
|
+
# resp.trust_store_revocations #=> Array
|
3153
|
+
# resp.trust_store_revocations[0].trust_store_arn #=> String
|
3154
|
+
# resp.trust_store_revocations[0].revocation_id #=> Integer
|
3155
|
+
# resp.trust_store_revocations[0].revocation_type #=> String, one of "CRL"
|
3156
|
+
# resp.trust_store_revocations[0].number_of_revoked_entries #=> Integer
|
3157
|
+
# resp.next_marker #=> String
|
3158
|
+
#
|
3159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoreRevocations AWS API Documentation
|
3160
|
+
#
|
3161
|
+
# @overload describe_trust_store_revocations(params = {})
|
3162
|
+
# @param [Hash] params ({})
|
3163
|
+
def describe_trust_store_revocations(params = {}, options = {})
|
3164
|
+
req = build_request(:describe_trust_store_revocations, params)
|
3165
|
+
req.send_request(options)
|
3166
|
+
end
|
3167
|
+
|
3168
|
+
# Describes all trust stores for a given account by trust store arn’s or
|
3169
|
+
# name.
|
3170
|
+
#
|
3171
|
+
# @option params [Array<String>] :trust_store_arns
|
3172
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
3173
|
+
#
|
3174
|
+
# @option params [Array<String>] :names
|
3175
|
+
# The names of the trust stores.
|
3176
|
+
#
|
3177
|
+
# @option params [String] :marker
|
3178
|
+
# The marker for the next set of results. (You received this marker from
|
3179
|
+
# a previous call.)
|
3180
|
+
#
|
3181
|
+
# @option params [Integer] :page_size
|
3182
|
+
# The maximum number of results to return with this call.
|
3183
|
+
#
|
3184
|
+
# @return [Types::DescribeTrustStoresOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3185
|
+
#
|
3186
|
+
# * {Types::DescribeTrustStoresOutput#trust_stores #trust_stores} => Array<Types::TrustStore>
|
3187
|
+
# * {Types::DescribeTrustStoresOutput#next_marker #next_marker} => String
|
3188
|
+
#
|
3189
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3190
|
+
#
|
3191
|
+
# @example Request syntax with placeholder values
|
3192
|
+
#
|
3193
|
+
# resp = client.describe_trust_stores({
|
3194
|
+
# trust_store_arns: ["TrustStoreArn"],
|
3195
|
+
# names: ["TrustStoreName"],
|
3196
|
+
# marker: "Marker",
|
3197
|
+
# page_size: 1,
|
3198
|
+
# })
|
3199
|
+
#
|
3200
|
+
# @example Response structure
|
3201
|
+
#
|
3202
|
+
# resp.trust_stores #=> Array
|
3203
|
+
# resp.trust_stores[0].name #=> String
|
3204
|
+
# resp.trust_stores[0].trust_store_arn #=> String
|
3205
|
+
# resp.trust_stores[0].status #=> String, one of "ACTIVE", "CREATING"
|
3206
|
+
# resp.trust_stores[0].number_of_ca_certificates #=> Integer
|
3207
|
+
# resp.trust_stores[0].total_revoked_entries #=> Integer
|
3208
|
+
# resp.next_marker #=> String
|
3209
|
+
#
|
3210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStores AWS API Documentation
|
3211
|
+
#
|
3212
|
+
# @overload describe_trust_stores(params = {})
|
3213
|
+
# @param [Hash] params ({})
|
3214
|
+
def describe_trust_stores(params = {}, options = {})
|
3215
|
+
req = build_request(:describe_trust_stores, params)
|
3216
|
+
req.send_request(options)
|
3217
|
+
end
|
3218
|
+
|
3219
|
+
# Retrieves the ca certificate bundle.
|
3220
|
+
#
|
3221
|
+
# This action returns a pre-signed S3 URI which is active for ten
|
3222
|
+
# minutes.
|
3223
|
+
#
|
3224
|
+
# @option params [required, String] :trust_store_arn
|
3225
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
3226
|
+
#
|
3227
|
+
# @return [Types::GetTrustStoreCaCertificatesBundleOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3228
|
+
#
|
3229
|
+
# * {Types::GetTrustStoreCaCertificatesBundleOutput#location #location} => String
|
3230
|
+
#
|
3231
|
+
# @example Request syntax with placeholder values
|
3232
|
+
#
|
3233
|
+
# resp = client.get_trust_store_ca_certificates_bundle({
|
3234
|
+
# trust_store_arn: "TrustStoreArn", # required
|
3235
|
+
# })
|
3236
|
+
#
|
3237
|
+
# @example Response structure
|
3238
|
+
#
|
3239
|
+
# resp.location #=> String
|
3240
|
+
#
|
3241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetTrustStoreCaCertificatesBundle AWS API Documentation
|
3242
|
+
#
|
3243
|
+
# @overload get_trust_store_ca_certificates_bundle(params = {})
|
3244
|
+
# @param [Hash] params ({})
|
3245
|
+
def get_trust_store_ca_certificates_bundle(params = {}, options = {})
|
3246
|
+
req = build_request(:get_trust_store_ca_certificates_bundle, params)
|
3247
|
+
req.send_request(options)
|
3248
|
+
end
|
3249
|
+
|
3250
|
+
# Retrieves the specified revocation file.
|
3251
|
+
#
|
3252
|
+
# This action returns a pre-signed S3 URI which is active for ten
|
3253
|
+
# minutes.
|
3254
|
+
#
|
3255
|
+
# @option params [required, String] :trust_store_arn
|
3256
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
3257
|
+
#
|
3258
|
+
# @option params [required, Integer] :revocation_id
|
3259
|
+
# The revocation ID of the revocation file.
|
3260
|
+
#
|
3261
|
+
# @return [Types::GetTrustStoreRevocationContentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3262
|
+
#
|
3263
|
+
# * {Types::GetTrustStoreRevocationContentOutput#location #location} => String
|
3264
|
+
#
|
3265
|
+
# @example Request syntax with placeholder values
|
3266
|
+
#
|
3267
|
+
# resp = client.get_trust_store_revocation_content({
|
3268
|
+
# trust_store_arn: "TrustStoreArn", # required
|
3269
|
+
# revocation_id: 1, # required
|
3270
|
+
# })
|
3271
|
+
#
|
3272
|
+
# @example Response structure
|
3273
|
+
#
|
3274
|
+
# resp.location #=> String
|
3275
|
+
#
|
3276
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetTrustStoreRevocationContent AWS API Documentation
|
3277
|
+
#
|
3278
|
+
# @overload get_trust_store_revocation_content(params = {})
|
3279
|
+
# @param [Hash] params ({})
|
3280
|
+
def get_trust_store_revocation_content(params = {}, options = {})
|
3281
|
+
req = build_request(:get_trust_store_revocation_content, params)
|
3282
|
+
req.send_request(options)
|
3283
|
+
end
|
3284
|
+
|
2933
3285
|
# Replaces the specified properties of the specified listener. Any
|
2934
3286
|
# properties that you do not specify remain unchanged.
|
2935
3287
|
#
|
@@ -3001,6 +3353,9 @@ module Aws::ElasticLoadBalancingV2
|
|
3001
3353
|
#
|
3002
3354
|
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#alpn-policies
|
3003
3355
|
#
|
3356
|
+
# @option params [Types::MutualAuthenticationAttributes] :mutual_authentication
|
3357
|
+
# The mutual authentication configuration information.
|
3358
|
+
#
|
3004
3359
|
# @return [Types::ModifyListenerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3005
3360
|
#
|
3006
3361
|
# * {Types::ModifyListenerOutput#listeners #listeners} => Array<Types::Listener>
|
@@ -3149,6 +3504,11 @@ module Aws::ElasticLoadBalancingV2
|
|
3149
3504
|
# },
|
3150
3505
|
# ],
|
3151
3506
|
# alpn_policy: ["AlpnPolicyValue"],
|
3507
|
+
# mutual_authentication: {
|
3508
|
+
# mode: "Mode",
|
3509
|
+
# trust_store_arn: "TrustStoreArn",
|
3510
|
+
# ignore_client_certificate_expiry: false,
|
3511
|
+
# },
|
3152
3512
|
# })
|
3153
3513
|
#
|
3154
3514
|
# @example Response structure
|
@@ -3204,6 +3564,9 @@ module Aws::ElasticLoadBalancingV2
|
|
3204
3564
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
3205
3565
|
# resp.listeners[0].alpn_policy #=> Array
|
3206
3566
|
# resp.listeners[0].alpn_policy[0] #=> String
|
3567
|
+
# resp.listeners[0].mutual_authentication.mode #=> String
|
3568
|
+
# resp.listeners[0].mutual_authentication.trust_store_arn #=> String
|
3569
|
+
# resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
|
3207
3570
|
#
|
3208
3571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyListener AWS API Documentation
|
3209
3572
|
#
|
@@ -3845,6 +4208,52 @@ module Aws::ElasticLoadBalancingV2
|
|
3845
4208
|
req.send_request(options)
|
3846
4209
|
end
|
3847
4210
|
|
4211
|
+
# Update the ca certificate bundle for a given trust store.
|
4212
|
+
#
|
4213
|
+
# @option params [required, String] :trust_store_arn
|
4214
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
4215
|
+
#
|
4216
|
+
# @option params [required, String] :ca_certificates_bundle_s3_bucket
|
4217
|
+
# The Amazon S3 bucket for the ca certificates bundle.
|
4218
|
+
#
|
4219
|
+
# @option params [required, String] :ca_certificates_bundle_s3_key
|
4220
|
+
# The Amazon S3 path for the ca certificates bundle.
|
4221
|
+
#
|
4222
|
+
# @option params [String] :ca_certificates_bundle_s3_object_version
|
4223
|
+
# The Amazon S3 object version for the ca certificates bundle. If
|
4224
|
+
# undefined the current version is used.
|
4225
|
+
#
|
4226
|
+
# @return [Types::ModifyTrustStoreOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4227
|
+
#
|
4228
|
+
# * {Types::ModifyTrustStoreOutput#trust_stores #trust_stores} => Array<Types::TrustStore>
|
4229
|
+
#
|
4230
|
+
# @example Request syntax with placeholder values
|
4231
|
+
#
|
4232
|
+
# resp = client.modify_trust_store({
|
4233
|
+
# trust_store_arn: "TrustStoreArn", # required
|
4234
|
+
# ca_certificates_bundle_s3_bucket: "S3Bucket", # required
|
4235
|
+
# ca_certificates_bundle_s3_key: "S3Key", # required
|
4236
|
+
# ca_certificates_bundle_s3_object_version: "S3ObjectVersion",
|
4237
|
+
# })
|
4238
|
+
#
|
4239
|
+
# @example Response structure
|
4240
|
+
#
|
4241
|
+
# resp.trust_stores #=> Array
|
4242
|
+
# resp.trust_stores[0].name #=> String
|
4243
|
+
# resp.trust_stores[0].trust_store_arn #=> String
|
4244
|
+
# resp.trust_stores[0].status #=> String, one of "ACTIVE", "CREATING"
|
4245
|
+
# resp.trust_stores[0].number_of_ca_certificates #=> Integer
|
4246
|
+
# resp.trust_stores[0].total_revoked_entries #=> Integer
|
4247
|
+
#
|
4248
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTrustStore AWS API Documentation
|
4249
|
+
#
|
4250
|
+
# @overload modify_trust_store(params = {})
|
4251
|
+
# @param [Hash] params ({})
|
4252
|
+
def modify_trust_store(params = {}, options = {})
|
4253
|
+
req = build_request(:modify_trust_store, params)
|
4254
|
+
req.send_request(options)
|
4255
|
+
end
|
4256
|
+
|
3848
4257
|
# Registers the specified targets with the specified target group.
|
3849
4258
|
#
|
3850
4259
|
# If the target is an EC2 instance, it must be in the `running` state
|
@@ -4005,6 +4414,32 @@ module Aws::ElasticLoadBalancingV2
|
|
4005
4414
|
req.send_request(options)
|
4006
4415
|
end
|
4007
4416
|
|
4417
|
+
# Removes the specified revocation file from the specified trust store.
|
4418
|
+
#
|
4419
|
+
# @option params [required, String] :trust_store_arn
|
4420
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
4421
|
+
#
|
4422
|
+
# @option params [required, Array<Integer>] :revocation_ids
|
4423
|
+
# The revocation IDs of the revocation files you want to remove.
|
4424
|
+
#
|
4425
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4426
|
+
#
|
4427
|
+
# @example Request syntax with placeholder values
|
4428
|
+
#
|
4429
|
+
# resp = client.remove_trust_store_revocations({
|
4430
|
+
# trust_store_arn: "TrustStoreArn", # required
|
4431
|
+
# revocation_ids: [1], # required
|
4432
|
+
# })
|
4433
|
+
#
|
4434
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/RemoveTrustStoreRevocations AWS API Documentation
|
4435
|
+
#
|
4436
|
+
# @overload remove_trust_store_revocations(params = {})
|
4437
|
+
# @param [Hash] params ({})
|
4438
|
+
def remove_trust_store_revocations(params = {}, options = {})
|
4439
|
+
req = build_request(:remove_trust_store_revocations, params)
|
4440
|
+
req.send_request(options)
|
4441
|
+
end
|
4442
|
+
|
4008
4443
|
# Sets the type of IP addresses used by the subnets of the specified
|
4009
4444
|
# load balancer.
|
4010
4445
|
#
|
@@ -4396,7 +4831,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4396
4831
|
params: params,
|
4397
4832
|
config: config)
|
4398
4833
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4399
|
-
context[:gem_version] = '1.
|
4834
|
+
context[:gem_version] = '1.95.0'
|
4400
4835
|
Seahorse::Client::Request.new(handlers, context)
|
4401
4836
|
end
|
4402
4837
|
|