aws-sdk-elasticloadbalancingv2 1.18.0 → 1.19.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5d2accf5253668c5067fc4458b7e027ef507e57
|
4
|
+
data.tar.gz: 469d2c92186cfa0dc6b26de66818d718c00d506d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa014a4effc6ede279c15ed5cc772a9a3a85bd96e05e2227423e68b2e30e3f9e8c56cb4e9337d53cf2a92c461a575346ab468e19c18524b8ce08a34b81ce83aa
|
7
|
+
data.tar.gz: 6a9ebf1542c3a5f7bdc80aca7cf66a469f01ef56a9b29d256222dbe6949afab33dbd3aecd368eed7bf003be616de8bf00ec5430371e706e54bd2d0ec865ce2d9
|
@@ -472,7 +472,7 @@ module Aws::ElasticLoadBalancingV2
|
|
472
472
|
#
|
473
473
|
# resp = client.create_listener({
|
474
474
|
# load_balancer_arn: "LoadBalancerArn", # required
|
475
|
-
# protocol: "HTTP", # required, accepts HTTP, HTTPS, TCP
|
475
|
+
# protocol: "HTTP", # required, accepts HTTP, HTTPS, TCP
|
476
476
|
# port: 1, # required
|
477
477
|
# ssl_policy: "SslPolicyName",
|
478
478
|
# certificates: [
|
@@ -483,7 +483,7 @@ module Aws::ElasticLoadBalancingV2
|
|
483
483
|
# ],
|
484
484
|
# default_actions: [ # required
|
485
485
|
# {
|
486
|
-
# type: "forward", # required, accepts forward, authenticate-oidc,
|
486
|
+
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
487
487
|
# target_group_arn: "TargetGroupArn",
|
488
488
|
# authenticate_oidc_config: {
|
489
489
|
# issuer: "AuthenticateOidcActionIssuer", # required
|
@@ -491,7 +491,7 @@ module Aws::ElasticLoadBalancingV2
|
|
491
491
|
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
492
492
|
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
493
493
|
# client_id: "AuthenticateOidcActionClientId", # required
|
494
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
494
|
+
# client_secret: "AuthenticateOidcActionClientSecret", # required
|
495
495
|
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
496
496
|
# scope: "AuthenticateOidcActionScope",
|
497
497
|
# session_timeout: 1,
|
@@ -499,7 +499,6 @@ module Aws::ElasticLoadBalancingV2
|
|
499
499
|
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
500
500
|
# },
|
501
501
|
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
502
|
-
# use_existing_client_secret: false,
|
503
502
|
# },
|
504
503
|
# authenticate_cognito_config: {
|
505
504
|
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
@@ -537,13 +536,13 @@ module Aws::ElasticLoadBalancingV2
|
|
537
536
|
# resp.listeners[0].listener_arn #=> String
|
538
537
|
# resp.listeners[0].load_balancer_arn #=> String
|
539
538
|
# resp.listeners[0].port #=> Integer
|
540
|
-
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
539
|
+
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
541
540
|
# resp.listeners[0].certificates #=> Array
|
542
541
|
# resp.listeners[0].certificates[0].certificate_arn #=> String
|
543
542
|
# resp.listeners[0].certificates[0].is_default #=> Boolean
|
544
543
|
# resp.listeners[0].ssl_policy #=> String
|
545
544
|
# resp.listeners[0].default_actions #=> Array
|
546
|
-
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "
|
545
|
+
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
547
546
|
# resp.listeners[0].default_actions[0].target_group_arn #=> String
|
548
547
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.issuer #=> String
|
549
548
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
@@ -557,7 +556,6 @@ module Aws::ElasticLoadBalancingV2
|
|
557
556
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authentication_request_extra_params #=> Hash
|
558
557
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authentication_request_extra_params["AuthenticateOidcActionAuthenticationRequestParamName"] #=> String
|
559
558
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.on_unauthenticated_request #=> String, one of "deny", "allow", "authenticate"
|
560
|
-
# resp.listeners[0].default_actions[0].authenticate_oidc_config.use_existing_client_secret #=> Boolean
|
561
559
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_arn #=> String
|
562
560
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_client_id #=> String
|
563
561
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_domain #=> String
|
@@ -783,7 +781,6 @@ module Aws::ElasticLoadBalancingV2
|
|
783
781
|
# {
|
784
782
|
# subnet_id: "SubnetId",
|
785
783
|
# allocation_id: "AllocationId",
|
786
|
-
# static_ip: false,
|
787
784
|
# },
|
788
785
|
# ],
|
789
786
|
# security_groups: ["SecurityGroupId"],
|
@@ -817,7 +814,6 @@ module Aws::ElasticLoadBalancingV2
|
|
817
814
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses #=> Array
|
818
815
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
819
816
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
820
|
-
# resp.load_balancers[0].availability_zones[0].static_ip #=> Boolean
|
821
817
|
# resp.load_balancers[0].security_groups #=> Array
|
822
818
|
# resp.load_balancers[0].security_groups[0] #=> String
|
823
819
|
# resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
@@ -970,28 +966,12 @@ module Aws::ElasticLoadBalancingV2
|
|
970
966
|
# {
|
971
967
|
# field: "ConditionFieldName",
|
972
968
|
# values: ["StringValue"],
|
973
|
-
# host_header_config: {
|
974
|
-
# values: ["StringValue"],
|
975
|
-
# },
|
976
|
-
# path_pattern_config: {
|
977
|
-
# values: ["StringValue"],
|
978
|
-
# },
|
979
|
-
# http_header_config: {
|
980
|
-
# http_header_name: "HttpHeaderConditionName",
|
981
|
-
# values: ["StringValue"],
|
982
|
-
# },
|
983
|
-
# query_string_config: {
|
984
|
-
# values: ["StringValue"],
|
985
|
-
# },
|
986
|
-
# http_request_method_config: {
|
987
|
-
# values: ["GET"], # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
|
988
|
-
# },
|
989
969
|
# },
|
990
970
|
# ],
|
991
971
|
# priority: 1, # required
|
992
972
|
# actions: [ # required
|
993
973
|
# {
|
994
|
-
# type: "forward", # required, accepts forward, authenticate-oidc,
|
974
|
+
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
995
975
|
# target_group_arn: "TargetGroupArn",
|
996
976
|
# authenticate_oidc_config: {
|
997
977
|
# issuer: "AuthenticateOidcActionIssuer", # required
|
@@ -999,7 +979,7 @@ module Aws::ElasticLoadBalancingV2
|
|
999
979
|
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
1000
980
|
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
1001
981
|
# client_id: "AuthenticateOidcActionClientId", # required
|
1002
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
982
|
+
# client_secret: "AuthenticateOidcActionClientSecret", # required
|
1003
983
|
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
1004
984
|
# scope: "AuthenticateOidcActionScope",
|
1005
985
|
# session_timeout: 1,
|
@@ -1007,7 +987,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1007
987
|
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
1008
988
|
# },
|
1009
989
|
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
1010
|
-
# use_existing_client_secret: false,
|
1011
990
|
# },
|
1012
991
|
# authenticate_cognito_config: {
|
1013
992
|
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
@@ -1048,19 +1027,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1048
1027
|
# resp.rules[0].conditions[0].field #=> String
|
1049
1028
|
# resp.rules[0].conditions[0].values #=> Array
|
1050
1029
|
# resp.rules[0].conditions[0].values[0] #=> String
|
1051
|
-
# resp.rules[0].conditions[0].host_header_config.values #=> Array
|
1052
|
-
# resp.rules[0].conditions[0].host_header_config.values[0] #=> String
|
1053
|
-
# resp.rules[0].conditions[0].path_pattern_config.values #=> Array
|
1054
|
-
# resp.rules[0].conditions[0].path_pattern_config.values[0] #=> String
|
1055
|
-
# resp.rules[0].conditions[0].http_header_config.http_header_name #=> String
|
1056
|
-
# resp.rules[0].conditions[0].http_header_config.values #=> Array
|
1057
|
-
# resp.rules[0].conditions[0].http_header_config.values[0] #=> String
|
1058
|
-
# resp.rules[0].conditions[0].query_string_config.values #=> Array
|
1059
|
-
# resp.rules[0].conditions[0].query_string_config.values[0] #=> String
|
1060
|
-
# resp.rules[0].conditions[0].http_request_method_config.values #=> Array
|
1061
|
-
# resp.rules[0].conditions[0].http_request_method_config.values[0] #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
1062
1030
|
# resp.rules[0].actions #=> Array
|
1063
|
-
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "
|
1031
|
+
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
1064
1032
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
1065
1033
|
# resp.rules[0].actions[0].authenticate_oidc_config.issuer #=> String
|
1066
1034
|
# resp.rules[0].actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
@@ -1074,7 +1042,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1074
1042
|
# resp.rules[0].actions[0].authenticate_oidc_config.authentication_request_extra_params #=> Hash
|
1075
1043
|
# resp.rules[0].actions[0].authenticate_oidc_config.authentication_request_extra_params["AuthenticateOidcActionAuthenticationRequestParamName"] #=> String
|
1076
1044
|
# resp.rules[0].actions[0].authenticate_oidc_config.on_unauthenticated_request #=> String, one of "deny", "allow", "authenticate"
|
1077
|
-
# resp.rules[0].actions[0].authenticate_oidc_config.use_existing_client_secret #=> Boolean
|
1078
1045
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_arn #=> String
|
1079
1046
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_client_id #=> String
|
1080
1047
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_domain #=> String
|
@@ -1265,10 +1232,10 @@ module Aws::ElasticLoadBalancingV2
|
|
1265
1232
|
#
|
1266
1233
|
# resp = client.create_target_group({
|
1267
1234
|
# name: "TargetGroupName", # required
|
1268
|
-
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP
|
1235
|
+
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP
|
1269
1236
|
# port: 1,
|
1270
1237
|
# vpc_id: "VpcId",
|
1271
|
-
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP
|
1238
|
+
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP
|
1272
1239
|
# health_check_port: "HealthCheckPort",
|
1273
1240
|
# health_check_enabled: false,
|
1274
1241
|
# health_check_path: "Path",
|
@@ -1287,10 +1254,10 @@ module Aws::ElasticLoadBalancingV2
|
|
1287
1254
|
# resp.target_groups #=> Array
|
1288
1255
|
# resp.target_groups[0].target_group_arn #=> String
|
1289
1256
|
# resp.target_groups[0].target_group_name #=> String
|
1290
|
-
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
1257
|
+
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
1291
1258
|
# resp.target_groups[0].port #=> Integer
|
1292
1259
|
# resp.target_groups[0].vpc_id #=> String
|
1293
|
-
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
1260
|
+
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
1294
1261
|
# resp.target_groups[0].health_check_port #=> String
|
1295
1262
|
# resp.target_groups[0].health_check_enabled #=> Boolean
|
1296
1263
|
# resp.target_groups[0].health_check_interval_seconds #=> Integer
|
@@ -1656,13 +1623,13 @@ module Aws::ElasticLoadBalancingV2
|
|
1656
1623
|
# resp.listeners[0].listener_arn #=> String
|
1657
1624
|
# resp.listeners[0].load_balancer_arn #=> String
|
1658
1625
|
# resp.listeners[0].port #=> Integer
|
1659
|
-
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
1626
|
+
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
1660
1627
|
# resp.listeners[0].certificates #=> Array
|
1661
1628
|
# resp.listeners[0].certificates[0].certificate_arn #=> String
|
1662
1629
|
# resp.listeners[0].certificates[0].is_default #=> Boolean
|
1663
1630
|
# resp.listeners[0].ssl_policy #=> String
|
1664
1631
|
# resp.listeners[0].default_actions #=> Array
|
1665
|
-
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "
|
1632
|
+
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
1666
1633
|
# resp.listeners[0].default_actions[0].target_group_arn #=> String
|
1667
1634
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.issuer #=> String
|
1668
1635
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
@@ -1676,7 +1643,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1676
1643
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authentication_request_extra_params #=> Hash
|
1677
1644
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authentication_request_extra_params["AuthenticateOidcActionAuthenticationRequestParamName"] #=> String
|
1678
1645
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.on_unauthenticated_request #=> String, one of "deny", "allow", "authenticate"
|
1679
|
-
# resp.listeners[0].default_actions[0].authenticate_oidc_config.use_existing_client_secret #=> Boolean
|
1680
1646
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_arn #=> String
|
1681
1647
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_client_id #=> String
|
1682
1648
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_domain #=> String
|
@@ -1878,7 +1844,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1878
1844
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses #=> Array
|
1879
1845
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
1880
1846
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
1881
|
-
# resp.load_balancers[0].availability_zones[0].static_ip #=> Boolean
|
1882
1847
|
# resp.load_balancers[0].security_groups #=> Array
|
1883
1848
|
# resp.load_balancers[0].security_groups[0] #=> String
|
1884
1849
|
# resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
@@ -1893,34 +1858,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1893
1858
|
req.send_request(options)
|
1894
1859
|
end
|
1895
1860
|
|
1896
|
-
# @option params [required, String] :load_balancer_arn
|
1897
|
-
#
|
1898
|
-
# @return [Types::DescribeProvisionedCapacityOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1899
|
-
#
|
1900
|
-
# * {Types::DescribeProvisionedCapacityOutput#provisioned_capacity #provisioned_capacity} => Types::ProvisionedCapacity
|
1901
|
-
#
|
1902
|
-
# @example Request syntax with placeholder values
|
1903
|
-
#
|
1904
|
-
# resp = client.describe_provisioned_capacity({
|
1905
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
1906
|
-
# })
|
1907
|
-
#
|
1908
|
-
# @example Response structure
|
1909
|
-
#
|
1910
|
-
# resp.provisioned_capacity.minimum_lb_capacity_units #=> Integer
|
1911
|
-
# resp.provisioned_capacity.status #=> String, one of "disabled", "pending", "provisioned", "pre-warmed"
|
1912
|
-
# resp.provisioned_capacity.decreases_remaining #=> Integer
|
1913
|
-
# resp.provisioned_capacity.last_modified_time #=> Time
|
1914
|
-
#
|
1915
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeProvisionedCapacity AWS API Documentation
|
1916
|
-
#
|
1917
|
-
# @overload describe_provisioned_capacity(params = {})
|
1918
|
-
# @param [Hash] params ({})
|
1919
|
-
def describe_provisioned_capacity(params = {}, options = {})
|
1920
|
-
req = build_request(:describe_provisioned_capacity, params)
|
1921
|
-
req.send_request(options)
|
1922
|
-
end
|
1923
|
-
|
1924
1861
|
# Describes the specified rules or the rules for the specified listener.
|
1925
1862
|
# You must specify either a listener or one or more rules.
|
1926
1863
|
#
|
@@ -1996,19 +1933,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1996
1933
|
# resp.rules[0].conditions[0].field #=> String
|
1997
1934
|
# resp.rules[0].conditions[0].values #=> Array
|
1998
1935
|
# resp.rules[0].conditions[0].values[0] #=> String
|
1999
|
-
# resp.rules[0].conditions[0].host_header_config.values #=> Array
|
2000
|
-
# resp.rules[0].conditions[0].host_header_config.values[0] #=> String
|
2001
|
-
# resp.rules[0].conditions[0].path_pattern_config.values #=> Array
|
2002
|
-
# resp.rules[0].conditions[0].path_pattern_config.values[0] #=> String
|
2003
|
-
# resp.rules[0].conditions[0].http_header_config.http_header_name #=> String
|
2004
|
-
# resp.rules[0].conditions[0].http_header_config.values #=> Array
|
2005
|
-
# resp.rules[0].conditions[0].http_header_config.values[0] #=> String
|
2006
|
-
# resp.rules[0].conditions[0].query_string_config.values #=> Array
|
2007
|
-
# resp.rules[0].conditions[0].query_string_config.values[0] #=> String
|
2008
|
-
# resp.rules[0].conditions[0].http_request_method_config.values #=> Array
|
2009
|
-
# resp.rules[0].conditions[0].http_request_method_config.values[0] #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2010
1936
|
# resp.rules[0].actions #=> Array
|
2011
|
-
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "
|
1937
|
+
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
2012
1938
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
2013
1939
|
# resp.rules[0].actions[0].authenticate_oidc_config.issuer #=> String
|
2014
1940
|
# resp.rules[0].actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
@@ -2022,7 +1948,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2022
1948
|
# resp.rules[0].actions[0].authenticate_oidc_config.authentication_request_extra_params #=> Hash
|
2023
1949
|
# resp.rules[0].actions[0].authenticate_oidc_config.authentication_request_extra_params["AuthenticateOidcActionAuthenticationRequestParamName"] #=> String
|
2024
1950
|
# resp.rules[0].actions[0].authenticate_oidc_config.on_unauthenticated_request #=> String, one of "deny", "allow", "authenticate"
|
2025
|
-
# resp.rules[0].actions[0].authenticate_oidc_config.use_existing_client_secret #=> Boolean
|
2026
1951
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_arn #=> String
|
2027
1952
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_client_id #=> String
|
2028
1953
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_domain #=> String
|
@@ -2427,10 +2352,10 @@ module Aws::ElasticLoadBalancingV2
|
|
2427
2352
|
# resp.target_groups #=> Array
|
2428
2353
|
# resp.target_groups[0].target_group_arn #=> String
|
2429
2354
|
# resp.target_groups[0].target_group_name #=> String
|
2430
|
-
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
2355
|
+
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
2431
2356
|
# resp.target_groups[0].port #=> Integer
|
2432
2357
|
# resp.target_groups[0].vpc_id #=> String
|
2433
|
-
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
2358
|
+
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
2434
2359
|
# resp.target_groups[0].health_check_port #=> String
|
2435
2360
|
# resp.target_groups[0].health_check_enabled #=> Boolean
|
2436
2361
|
# resp.target_groups[0].health_check_interval_seconds #=> Integer
|
@@ -2700,7 +2625,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2700
2625
|
# resp = client.modify_listener({
|
2701
2626
|
# listener_arn: "ListenerArn", # required
|
2702
2627
|
# port: 1,
|
2703
|
-
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP
|
2628
|
+
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP
|
2704
2629
|
# ssl_policy: "SslPolicyName",
|
2705
2630
|
# certificates: [
|
2706
2631
|
# {
|
@@ -2710,7 +2635,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2710
2635
|
# ],
|
2711
2636
|
# default_actions: [
|
2712
2637
|
# {
|
2713
|
-
# type: "forward", # required, accepts forward, authenticate-oidc,
|
2638
|
+
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
2714
2639
|
# target_group_arn: "TargetGroupArn",
|
2715
2640
|
# authenticate_oidc_config: {
|
2716
2641
|
# issuer: "AuthenticateOidcActionIssuer", # required
|
@@ -2718,7 +2643,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2718
2643
|
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
2719
2644
|
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
2720
2645
|
# client_id: "AuthenticateOidcActionClientId", # required
|
2721
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
2646
|
+
# client_secret: "AuthenticateOidcActionClientSecret", # required
|
2722
2647
|
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
2723
2648
|
# scope: "AuthenticateOidcActionScope",
|
2724
2649
|
# session_timeout: 1,
|
@@ -2726,7 +2651,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2726
2651
|
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
2727
2652
|
# },
|
2728
2653
|
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
2729
|
-
# use_existing_client_secret: false,
|
2730
2654
|
# },
|
2731
2655
|
# authenticate_cognito_config: {
|
2732
2656
|
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
@@ -2764,13 +2688,13 @@ module Aws::ElasticLoadBalancingV2
|
|
2764
2688
|
# resp.listeners[0].listener_arn #=> String
|
2765
2689
|
# resp.listeners[0].load_balancer_arn #=> String
|
2766
2690
|
# resp.listeners[0].port #=> Integer
|
2767
|
-
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
2691
|
+
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
2768
2692
|
# resp.listeners[0].certificates #=> Array
|
2769
2693
|
# resp.listeners[0].certificates[0].certificate_arn #=> String
|
2770
2694
|
# resp.listeners[0].certificates[0].is_default #=> Boolean
|
2771
2695
|
# resp.listeners[0].ssl_policy #=> String
|
2772
2696
|
# resp.listeners[0].default_actions #=> Array
|
2773
|
-
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "
|
2697
|
+
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
2774
2698
|
# resp.listeners[0].default_actions[0].target_group_arn #=> String
|
2775
2699
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.issuer #=> String
|
2776
2700
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
@@ -2784,7 +2708,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2784
2708
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authentication_request_extra_params #=> Hash
|
2785
2709
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authentication_request_extra_params["AuthenticateOidcActionAuthenticationRequestParamName"] #=> String
|
2786
2710
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.on_unauthenticated_request #=> String, one of "deny", "allow", "authenticate"
|
2787
|
-
# resp.listeners[0].default_actions[0].authenticate_oidc_config.use_existing_client_secret #=> Boolean
|
2788
2711
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_arn #=> String
|
2789
2712
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_client_id #=> String
|
2790
2713
|
# resp.listeners[0].default_actions[0].authenticate_cognito_config.user_pool_domain #=> String
|
@@ -2988,37 +2911,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2988
2911
|
req.send_request(options)
|
2989
2912
|
end
|
2990
2913
|
|
2991
|
-
# @option params [required, String] :load_balancer_arn
|
2992
|
-
#
|
2993
|
-
# @option params [required, Integer] :minimum_lb_capacity_units
|
2994
|
-
#
|
2995
|
-
# @return [Types::ModifyProvisionedCapacityOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2996
|
-
#
|
2997
|
-
# * {Types::ModifyProvisionedCapacityOutput#provisioned_capacity #provisioned_capacity} => Types::ProvisionedCapacity
|
2998
|
-
#
|
2999
|
-
# @example Request syntax with placeholder values
|
3000
|
-
#
|
3001
|
-
# resp = client.modify_provisioned_capacity({
|
3002
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
3003
|
-
# minimum_lb_capacity_units: 1, # required
|
3004
|
-
# })
|
3005
|
-
#
|
3006
|
-
# @example Response structure
|
3007
|
-
#
|
3008
|
-
# resp.provisioned_capacity.minimum_lb_capacity_units #=> Integer
|
3009
|
-
# resp.provisioned_capacity.status #=> String, one of "disabled", "pending", "provisioned", "pre-warmed"
|
3010
|
-
# resp.provisioned_capacity.decreases_remaining #=> Integer
|
3011
|
-
# resp.provisioned_capacity.last_modified_time #=> Time
|
3012
|
-
#
|
3013
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyProvisionedCapacity AWS API Documentation
|
3014
|
-
#
|
3015
|
-
# @overload modify_provisioned_capacity(params = {})
|
3016
|
-
# @param [Hash] params ({})
|
3017
|
-
def modify_provisioned_capacity(params = {}, options = {})
|
3018
|
-
req = build_request(:modify_provisioned_capacity, params)
|
3019
|
-
req.send_request(options)
|
3020
|
-
end
|
3021
|
-
|
3022
2914
|
# Modifies the specified rule.
|
3023
2915
|
#
|
3024
2916
|
# Any existing properties that you do not modify retain their current
|
@@ -3135,27 +3027,11 @@ module Aws::ElasticLoadBalancingV2
|
|
3135
3027
|
# {
|
3136
3028
|
# field: "ConditionFieldName",
|
3137
3029
|
# values: ["StringValue"],
|
3138
|
-
# host_header_config: {
|
3139
|
-
# values: ["StringValue"],
|
3140
|
-
# },
|
3141
|
-
# path_pattern_config: {
|
3142
|
-
# values: ["StringValue"],
|
3143
|
-
# },
|
3144
|
-
# http_header_config: {
|
3145
|
-
# http_header_name: "HttpHeaderConditionName",
|
3146
|
-
# values: ["StringValue"],
|
3147
|
-
# },
|
3148
|
-
# query_string_config: {
|
3149
|
-
# values: ["StringValue"],
|
3150
|
-
# },
|
3151
|
-
# http_request_method_config: {
|
3152
|
-
# values: ["GET"], # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
|
3153
|
-
# },
|
3154
3030
|
# },
|
3155
3031
|
# ],
|
3156
3032
|
# actions: [
|
3157
3033
|
# {
|
3158
|
-
# type: "forward", # required, accepts forward, authenticate-oidc,
|
3034
|
+
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
3159
3035
|
# target_group_arn: "TargetGroupArn",
|
3160
3036
|
# authenticate_oidc_config: {
|
3161
3037
|
# issuer: "AuthenticateOidcActionIssuer", # required
|
@@ -3163,7 +3039,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3163
3039
|
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
3164
3040
|
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
3165
3041
|
# client_id: "AuthenticateOidcActionClientId", # required
|
3166
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
3042
|
+
# client_secret: "AuthenticateOidcActionClientSecret", # required
|
3167
3043
|
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
3168
3044
|
# scope: "AuthenticateOidcActionScope",
|
3169
3045
|
# session_timeout: 1,
|
@@ -3171,7 +3047,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3171
3047
|
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
3172
3048
|
# },
|
3173
3049
|
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
3174
|
-
# use_existing_client_secret: false,
|
3175
3050
|
# },
|
3176
3051
|
# authenticate_cognito_config: {
|
3177
3052
|
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
@@ -3212,19 +3087,8 @@ module Aws::ElasticLoadBalancingV2
|
|
3212
3087
|
# resp.rules[0].conditions[0].field #=> String
|
3213
3088
|
# resp.rules[0].conditions[0].values #=> Array
|
3214
3089
|
# resp.rules[0].conditions[0].values[0] #=> String
|
3215
|
-
# resp.rules[0].conditions[0].host_header_config.values #=> Array
|
3216
|
-
# resp.rules[0].conditions[0].host_header_config.values[0] #=> String
|
3217
|
-
# resp.rules[0].conditions[0].path_pattern_config.values #=> Array
|
3218
|
-
# resp.rules[0].conditions[0].path_pattern_config.values[0] #=> String
|
3219
|
-
# resp.rules[0].conditions[0].http_header_config.http_header_name #=> String
|
3220
|
-
# resp.rules[0].conditions[0].http_header_config.values #=> Array
|
3221
|
-
# resp.rules[0].conditions[0].http_header_config.values[0] #=> String
|
3222
|
-
# resp.rules[0].conditions[0].query_string_config.values #=> Array
|
3223
|
-
# resp.rules[0].conditions[0].query_string_config.values[0] #=> String
|
3224
|
-
# resp.rules[0].conditions[0].http_request_method_config.values #=> Array
|
3225
|
-
# resp.rules[0].conditions[0].http_request_method_config.values[0] #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
3226
3090
|
# resp.rules[0].actions #=> Array
|
3227
|
-
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "
|
3091
|
+
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
3228
3092
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
3229
3093
|
# resp.rules[0].actions[0].authenticate_oidc_config.issuer #=> String
|
3230
3094
|
# resp.rules[0].actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
@@ -3238,7 +3102,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3238
3102
|
# resp.rules[0].actions[0].authenticate_oidc_config.authentication_request_extra_params #=> Hash
|
3239
3103
|
# resp.rules[0].actions[0].authenticate_oidc_config.authentication_request_extra_params["AuthenticateOidcActionAuthenticationRequestParamName"] #=> String
|
3240
3104
|
# resp.rules[0].actions[0].authenticate_oidc_config.on_unauthenticated_request #=> String, one of "deny", "allow", "authenticate"
|
3241
|
-
# resp.rules[0].actions[0].authenticate_oidc_config.use_existing_client_secret #=> Boolean
|
3242
3105
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_arn #=> String
|
3243
3106
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_client_id #=> String
|
3244
3107
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_domain #=> String
|
@@ -3373,7 +3236,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3373
3236
|
#
|
3374
3237
|
# resp = client.modify_target_group({
|
3375
3238
|
# target_group_arn: "TargetGroupArn", # required
|
3376
|
-
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP
|
3239
|
+
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP
|
3377
3240
|
# health_check_port: "HealthCheckPort",
|
3378
3241
|
# health_check_path: "Path",
|
3379
3242
|
# health_check_enabled: false,
|
@@ -3391,10 +3254,10 @@ module Aws::ElasticLoadBalancingV2
|
|
3391
3254
|
# resp.target_groups #=> Array
|
3392
3255
|
# resp.target_groups[0].target_group_arn #=> String
|
3393
3256
|
# resp.target_groups[0].target_group_name #=> String
|
3394
|
-
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
3257
|
+
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
3395
3258
|
# resp.target_groups[0].port #=> Integer
|
3396
3259
|
# resp.target_groups[0].vpc_id #=> String
|
3397
|
-
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
3260
|
+
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
|
3398
3261
|
# resp.target_groups[0].health_check_port #=> String
|
3399
3262
|
# resp.target_groups[0].health_check_enabled #=> Boolean
|
3400
3263
|
# resp.target_groups[0].health_check_interval_seconds #=> Integer
|
@@ -3772,19 +3635,8 @@ module Aws::ElasticLoadBalancingV2
|
|
3772
3635
|
# resp.rules[0].conditions[0].field #=> String
|
3773
3636
|
# resp.rules[0].conditions[0].values #=> Array
|
3774
3637
|
# resp.rules[0].conditions[0].values[0] #=> String
|
3775
|
-
# resp.rules[0].conditions[0].host_header_config.values #=> Array
|
3776
|
-
# resp.rules[0].conditions[0].host_header_config.values[0] #=> String
|
3777
|
-
# resp.rules[0].conditions[0].path_pattern_config.values #=> Array
|
3778
|
-
# resp.rules[0].conditions[0].path_pattern_config.values[0] #=> String
|
3779
|
-
# resp.rules[0].conditions[0].http_header_config.http_header_name #=> String
|
3780
|
-
# resp.rules[0].conditions[0].http_header_config.values #=> Array
|
3781
|
-
# resp.rules[0].conditions[0].http_header_config.values[0] #=> String
|
3782
|
-
# resp.rules[0].conditions[0].query_string_config.values #=> Array
|
3783
|
-
# resp.rules[0].conditions[0].query_string_config.values[0] #=> String
|
3784
|
-
# resp.rules[0].conditions[0].http_request_method_config.values #=> Array
|
3785
|
-
# resp.rules[0].conditions[0].http_request_method_config.values[0] #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
3786
3638
|
# resp.rules[0].actions #=> Array
|
3787
|
-
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "
|
3639
|
+
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
3788
3640
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
3789
3641
|
# resp.rules[0].actions[0].authenticate_oidc_config.issuer #=> String
|
3790
3642
|
# resp.rules[0].actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
@@ -3798,7 +3650,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3798
3650
|
# resp.rules[0].actions[0].authenticate_oidc_config.authentication_request_extra_params #=> Hash
|
3799
3651
|
# resp.rules[0].actions[0].authenticate_oidc_config.authentication_request_extra_params["AuthenticateOidcActionAuthenticationRequestParamName"] #=> String
|
3800
3652
|
# resp.rules[0].actions[0].authenticate_oidc_config.on_unauthenticated_request #=> String, one of "deny", "allow", "authenticate"
|
3801
|
-
# resp.rules[0].actions[0].authenticate_oidc_config.use_existing_client_secret #=> Boolean
|
3802
3653
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_arn #=> String
|
3803
3654
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_client_id #=> String
|
3804
3655
|
# resp.rules[0].actions[0].authenticate_cognito_config.user_pool_domain #=> String
|
@@ -3946,7 +3797,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3946
3797
|
# {
|
3947
3798
|
# subnet_id: "SubnetId",
|
3948
3799
|
# allocation_id: "AllocationId",
|
3949
|
-
# static_ip: false,
|
3950
3800
|
# },
|
3951
3801
|
# ],
|
3952
3802
|
# })
|
@@ -3959,7 +3809,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3959
3809
|
# resp.availability_zones[0].load_balancer_addresses #=> Array
|
3960
3810
|
# resp.availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
3961
3811
|
# resp.availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
3962
|
-
# resp.availability_zones[0].static_ip #=> Boolean
|
3963
3812
|
#
|
3964
3813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnets AWS API Documentation
|
3965
3814
|
#
|
@@ -3983,7 +3832,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3983
3832
|
params: params,
|
3984
3833
|
config: config)
|
3985
3834
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
3986
|
-
context[:gem_version] = '1.
|
3835
|
+
context[:gem_version] = '1.19.0'
|
3987
3836
|
Seahorse::Client::Request.new(handlers, context)
|
3988
3837
|
end
|
3989
3838
|
|