aws-sdk-rtbfabric 1.8.0 → 1.10.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rtbfabric/client.rb +179 -24
- data/lib/aws-sdk-rtbfabric/client_api.rb +62 -3
- data/lib/aws-sdk-rtbfabric/types.rb +240 -19
- data/lib/aws-sdk-rtbfabric/waiters.rb +173 -10
- data/lib/aws-sdk-rtbfabric.rb +1 -1
- data/sig/client.rbs +71 -7
- data/sig/types.rbs +47 -1
- data/sig/waiters.rbs +33 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93e573be3aeabb9e8b7070044c037c99fe7f671c08a528782c07371458a9b4ee
|
|
4
|
+
data.tar.gz: bec91e4792cdb6a468887318ae104c96a887e69591c1190fbe93bf2e2a82fe21
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5c926ebb71b911be7c6ba8ddd5e0796c68a4f0a01d5235c4e8a0c5d0adbcf9ca3dcfb2af93e8454626d092bbfd3f5b3aeed21937e5bbec0990e6b14e4ffed67
|
|
7
|
+
data.tar.gz: bee2ce3b6e221a4afeb0290ab38fcf37bf7e78efa359acf4dd77aa53b0ff6dd3e5427a57773e948524f93657d4d9eeb94678d29c11c1ef6892d0d5e55326351f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.10.0 (2026-04-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds optional health check configuration for Responder Gateways with ASG Managed Endpoints. When provided, RTB Fabric continuously probes customers' instance IPs and routes traffic only to healthy ones, reducing errors during deployments, scaling events, and instance failures.
|
|
8
|
+
|
|
9
|
+
1.9.0 (2026-04-07)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - AWS RTB Fabric External Responder gateways now support HTTP in addition to HTTPS for inbound external links. Gateways can accept bid requests on port 80 or serve both protocols simultaneously via listener configuration, giving customers flexible transport options for their bidding infrastructure
|
|
13
|
+
|
|
4
14
|
1.8.0 (2026-03-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.10.0
|
|
@@ -494,6 +494,9 @@ module Aws::RTBFabric
|
|
|
494
494
|
# @option params [required, Types::LinkLogSettings] :log_settings
|
|
495
495
|
# Settings for the application logs.
|
|
496
496
|
#
|
|
497
|
+
# @option params [Integer] :timeout_in_millis
|
|
498
|
+
# The timeout value in milliseconds.
|
|
499
|
+
#
|
|
497
500
|
# @return [Types::AcceptLinkResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
498
501
|
#
|
|
499
502
|
# * {Types::AcceptLinkResponse#gateway_id #gateway_id} => String
|
|
@@ -505,6 +508,8 @@ module Aws::RTBFabric
|
|
|
505
508
|
# * {Types::AcceptLinkResponse#flow_modules #flow_modules} => Array<Types::ModuleConfiguration>
|
|
506
509
|
# * {Types::AcceptLinkResponse#pending_flow_modules #pending_flow_modules} => Array<Types::ModuleConfiguration>
|
|
507
510
|
# * {Types::AcceptLinkResponse#attributes #attributes} => Types::LinkAttributes
|
|
511
|
+
# * {Types::AcceptLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
512
|
+
# * {Types::AcceptLinkResponse#connectivity_type #connectivity_type} => String
|
|
508
513
|
# * {Types::AcceptLinkResponse#link_id #link_id} => String
|
|
509
514
|
#
|
|
510
515
|
#
|
|
@@ -559,6 +564,7 @@ module Aws::RTBFabric
|
|
|
559
564
|
# },
|
|
560
565
|
# },
|
|
561
566
|
# },
|
|
567
|
+
# timeout_in_millis: 1,
|
|
562
568
|
# })
|
|
563
569
|
#
|
|
564
570
|
# @example Response structure
|
|
@@ -614,6 +620,9 @@ module Aws::RTBFabric
|
|
|
614
620
|
# resp.attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
615
621
|
# resp.attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
616
622
|
# resp.attributes.customer_provided_id #=> String
|
|
623
|
+
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
624
|
+
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
625
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
617
626
|
# resp.link_id #=> String
|
|
618
627
|
#
|
|
619
628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/AcceptLink AWS API Documentation
|
|
@@ -640,7 +649,7 @@ module Aws::RTBFabric
|
|
|
640
649
|
# Attributes of the link.
|
|
641
650
|
#
|
|
642
651
|
# @option params [required, Types::LinkLogSettings] :log_settings
|
|
643
|
-
#
|
|
652
|
+
# Settings for the application logs.
|
|
644
653
|
#
|
|
645
654
|
# @option params [Hash<String,String>] :tags
|
|
646
655
|
# A map of the key-value pairs of the tag or tags to assign to the
|
|
@@ -748,6 +757,9 @@ module Aws::RTBFabric
|
|
|
748
757
|
# @option params [required, Types::LinkLogSettings] :log_settings
|
|
749
758
|
# Settings for the application logs.
|
|
750
759
|
#
|
|
760
|
+
# @option params [Integer] :timeout_in_millis
|
|
761
|
+
# The timeout value in milliseconds.
|
|
762
|
+
#
|
|
751
763
|
# @return [Types::CreateLinkResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
752
764
|
#
|
|
753
765
|
# * {Types::CreateLinkResponse#gateway_id #gateway_id} => String
|
|
@@ -759,13 +771,15 @@ module Aws::RTBFabric
|
|
|
759
771
|
# * {Types::CreateLinkResponse#flow_modules #flow_modules} => Array<Types::ModuleConfiguration>
|
|
760
772
|
# * {Types::CreateLinkResponse#pending_flow_modules #pending_flow_modules} => Array<Types::ModuleConfiguration>
|
|
761
773
|
# * {Types::CreateLinkResponse#attributes #attributes} => Types::LinkAttributes
|
|
774
|
+
# * {Types::CreateLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
775
|
+
# * {Types::CreateLinkResponse#connectivity_type #connectivity_type} => String
|
|
762
776
|
# * {Types::CreateLinkResponse#link_id #link_id} => String
|
|
763
777
|
# * {Types::CreateLinkResponse#customer_provided_id #customer_provided_id} => String
|
|
764
778
|
#
|
|
765
779
|
#
|
|
766
|
-
# @example Example: Create a
|
|
780
|
+
# @example Example: Create a standard link between gateways
|
|
767
781
|
#
|
|
768
|
-
# # Creates a new link between RTB applications
|
|
782
|
+
# # Creates a new link between two RTB applications. Requires peerGatewayId to specify the target gateway.
|
|
769
783
|
#
|
|
770
784
|
# resp = client.create_link({
|
|
771
785
|
# gateway_id: "rtb-gw-12345678",
|
|
@@ -818,6 +832,7 @@ module Aws::RTBFabric
|
|
|
818
832
|
# },
|
|
819
833
|
# },
|
|
820
834
|
# },
|
|
835
|
+
# timeout_in_millis: 1,
|
|
821
836
|
# })
|
|
822
837
|
#
|
|
823
838
|
# @example Response structure
|
|
@@ -873,6 +888,9 @@ module Aws::RTBFabric
|
|
|
873
888
|
# resp.attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
874
889
|
# resp.attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
875
890
|
# resp.attributes.customer_provided_id #=> String
|
|
891
|
+
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
892
|
+
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
893
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
876
894
|
# resp.link_id #=> String
|
|
877
895
|
# resp.customer_provided_id #=> String
|
|
878
896
|
#
|
|
@@ -897,13 +915,13 @@ module Aws::RTBFabric
|
|
|
897
915
|
# The unique identifier of the gateway.
|
|
898
916
|
#
|
|
899
917
|
# @option params [Types::LinkAttributes] :attributes
|
|
900
|
-
#
|
|
918
|
+
# Attributes of the link.
|
|
901
919
|
#
|
|
902
920
|
# @option params [required, String] :public_endpoint
|
|
903
921
|
# The public endpoint of the link.
|
|
904
922
|
#
|
|
905
923
|
# @option params [required, Types::LinkLogSettings] :log_settings
|
|
906
|
-
#
|
|
924
|
+
# Settings for the application logs.
|
|
907
925
|
#
|
|
908
926
|
# @option params [Hash<String,String>] :tags
|
|
909
927
|
# A map of the key-value pairs of the tag or tags to assign to the
|
|
@@ -1091,6 +1109,10 @@ module Aws::RTBFabric
|
|
|
1091
1109
|
# @option params [required, String] :protocol
|
|
1092
1110
|
# The networking protocol to use.
|
|
1093
1111
|
#
|
|
1112
|
+
# @option params [Types::ListenerConfig] :listener_config
|
|
1113
|
+
# Listener configuration for the protocols (HTTP, HTTPS, or both)
|
|
1114
|
+
# accepted by the gateway.
|
|
1115
|
+
#
|
|
1094
1116
|
# @option params [Types::TrustStoreConfiguration] :trust_store_configuration
|
|
1095
1117
|
# The configuration of the trust store.
|
|
1096
1118
|
#
|
|
@@ -1110,10 +1132,15 @@ module Aws::RTBFabric
|
|
|
1110
1132
|
# A map of the key-value pairs of the tag or tags to assign to the
|
|
1111
1133
|
# resource.
|
|
1112
1134
|
#
|
|
1135
|
+
# @option params [String] :gateway_type
|
|
1136
|
+
# The type of gateway. Valid values are `EXTERNAL` or `INTERNAL`.
|
|
1137
|
+
#
|
|
1113
1138
|
# @return [Types::CreateResponderGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1114
1139
|
#
|
|
1115
1140
|
# * {Types::CreateResponderGatewayResponse#gateway_id #gateway_id} => String
|
|
1116
1141
|
# * {Types::CreateResponderGatewayResponse#status #status} => String
|
|
1142
|
+
# * {Types::CreateResponderGatewayResponse#listener_config #listener_config} => Types::ListenerConfig
|
|
1143
|
+
# * {Types::CreateResponderGatewayResponse#external_inbound_endpoint #external_inbound_endpoint} => String
|
|
1117
1144
|
#
|
|
1118
1145
|
#
|
|
1119
1146
|
# @example Example: Create a responder gateway
|
|
@@ -1150,13 +1177,26 @@ module Aws::RTBFabric
|
|
|
1150
1177
|
# domain_name: "DomainName",
|
|
1151
1178
|
# port: 1, # required
|
|
1152
1179
|
# protocol: "HTTP", # required, accepts HTTP, HTTPS
|
|
1180
|
+
# listener_config: {
|
|
1181
|
+
# protocols: ["HTTP"], # required, accepts HTTP, HTTPS
|
|
1182
|
+
# },
|
|
1153
1183
|
# trust_store_configuration: {
|
|
1154
1184
|
# certificate_authority_certificates: ["Base64EncodedCertificateChain"], # required
|
|
1155
1185
|
# },
|
|
1156
1186
|
# managed_endpoint_configuration: {
|
|
1157
1187
|
# auto_scaling_groups: {
|
|
1158
1188
|
# auto_scaling_group_names: ["AutoScalingGroupName"], # required
|
|
1159
|
-
# role_arn: "
|
|
1189
|
+
# role_arn: "AutoScalingGroupsConfigurationRoleArnString", # required
|
|
1190
|
+
# health_check_config: {
|
|
1191
|
+
# port: 1, # required
|
|
1192
|
+
# path: "HealthCheckConfigPathString", # required
|
|
1193
|
+
# protocol: "HTTP", # accepts HTTP, HTTPS
|
|
1194
|
+
# timeout_ms: 1,
|
|
1195
|
+
# interval_seconds: 1,
|
|
1196
|
+
# status_code_matcher: "StatusCodeMatcher",
|
|
1197
|
+
# healthy_threshold_count: 1,
|
|
1198
|
+
# unhealthy_threshold_count: 1,
|
|
1199
|
+
# },
|
|
1160
1200
|
# },
|
|
1161
1201
|
# eks_endpoints: {
|
|
1162
1202
|
# endpoints_resource_name: "KubernetesEndpointsResourceName", # required
|
|
@@ -1164,7 +1204,7 @@ module Aws::RTBFabric
|
|
|
1164
1204
|
# cluster_api_server_endpoint_uri: "URI", # required
|
|
1165
1205
|
# cluster_api_server_ca_certificate_chain: "Base64EncodedCertificateChain", # required
|
|
1166
1206
|
# cluster_name: "KubernetesClusterName", # required
|
|
1167
|
-
# role_arn: "
|
|
1207
|
+
# role_arn: "EksEndpointsConfigurationRoleArnString", # required
|
|
1168
1208
|
# },
|
|
1169
1209
|
# },
|
|
1170
1210
|
# client_token: "String", # required
|
|
@@ -1172,12 +1212,16 @@ module Aws::RTBFabric
|
|
|
1172
1212
|
# tags: {
|
|
1173
1213
|
# "TagKey" => "TagValue",
|
|
1174
1214
|
# },
|
|
1215
|
+
# gateway_type: "EXTERNAL", # accepts EXTERNAL, INTERNAL
|
|
1175
1216
|
# })
|
|
1176
1217
|
#
|
|
1177
1218
|
# @example Response structure
|
|
1178
1219
|
#
|
|
1179
1220
|
# resp.gateway_id #=> String
|
|
1180
1221
|
# resp.status #=> String, one of "PENDING_CREATION", "ACTIVE", "PENDING_DELETION", "DELETED", "ERROR", "PENDING_UPDATE", "ISOLATED", "PENDING_ISOLATION", "PENDING_RESTORATION"
|
|
1222
|
+
# resp.listener_config.protocols #=> Array
|
|
1223
|
+
# resp.listener_config.protocols[0] #=> String, one of "HTTP", "HTTPS"
|
|
1224
|
+
# resp.external_inbound_endpoint #=> String
|
|
1181
1225
|
#
|
|
1182
1226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/CreateResponderGateway AWS API Documentation
|
|
1183
1227
|
#
|
|
@@ -1452,6 +1496,7 @@ module Aws::RTBFabric
|
|
|
1452
1496
|
# * {Types::GetInboundExternalLinkResponse#updated_at #updated_at} => Time
|
|
1453
1497
|
# * {Types::GetInboundExternalLinkResponse#tags #tags} => Hash<String,String>
|
|
1454
1498
|
# * {Types::GetInboundExternalLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
1499
|
+
# * {Types::GetInboundExternalLinkResponse#connectivity_type #connectivity_type} => String
|
|
1455
1500
|
#
|
|
1456
1501
|
#
|
|
1457
1502
|
# @example Example: Get inbound external link details
|
|
@@ -1466,7 +1511,7 @@ module Aws::RTBFabric
|
|
|
1466
1511
|
# resp.to_h outputs the following:
|
|
1467
1512
|
# {
|
|
1468
1513
|
# created_at: Time.parse("2024-01-15T10:30:00Z"),
|
|
1469
|
-
# domain_name: "rtb-gw-12345678.
|
|
1514
|
+
# domain_name: "rtb-gw-12345678.123456789012.gateway.rtbfabric.us-east-1.amazonaws.com",
|
|
1470
1515
|
# gateway_id: "rtb-gw-12345678",
|
|
1471
1516
|
# link_id: "link-87654321",
|
|
1472
1517
|
# status: "ACTIVE",
|
|
@@ -1537,11 +1582,13 @@ module Aws::RTBFabric
|
|
|
1537
1582
|
# resp.tags["TagKey"] #=> String
|
|
1538
1583
|
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
1539
1584
|
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
1585
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
1540
1586
|
#
|
|
1541
1587
|
#
|
|
1542
1588
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1543
1589
|
#
|
|
1544
1590
|
# * inbound_external_link_active
|
|
1591
|
+
# * inbound_external_link_deleted
|
|
1545
1592
|
#
|
|
1546
1593
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/GetInboundExternalLink AWS API Documentation
|
|
1547
1594
|
#
|
|
@@ -1574,9 +1621,12 @@ module Aws::RTBFabric
|
|
|
1574
1621
|
# * {Types::GetLinkResponse#flow_modules #flow_modules} => Array<Types::ModuleConfiguration>
|
|
1575
1622
|
# * {Types::GetLinkResponse#pending_flow_modules #pending_flow_modules} => Array<Types::ModuleConfiguration>
|
|
1576
1623
|
# * {Types::GetLinkResponse#attributes #attributes} => Types::LinkAttributes
|
|
1624
|
+
# * {Types::GetLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
1625
|
+
# * {Types::GetLinkResponse#connectivity_type #connectivity_type} => String
|
|
1577
1626
|
# * {Types::GetLinkResponse#link_id #link_id} => String
|
|
1578
1627
|
# * {Types::GetLinkResponse#tags #tags} => Hash<String,String>
|
|
1579
|
-
# * {Types::GetLinkResponse#
|
|
1628
|
+
# * {Types::GetLinkResponse#http_responder_allowed #http_responder_allowed} => Boolean
|
|
1629
|
+
# * {Types::GetLinkResponse#timeout_in_millis #timeout_in_millis} => Integer
|
|
1580
1630
|
#
|
|
1581
1631
|
#
|
|
1582
1632
|
# @example Example: Get link details
|
|
@@ -1658,17 +1708,21 @@ module Aws::RTBFabric
|
|
|
1658
1708
|
# resp.attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
1659
1709
|
# resp.attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
1660
1710
|
# resp.attributes.customer_provided_id #=> String
|
|
1711
|
+
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
1712
|
+
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
1713
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
1661
1714
|
# resp.link_id #=> String
|
|
1662
1715
|
# resp.tags #=> Hash
|
|
1663
1716
|
# resp.tags["TagKey"] #=> String
|
|
1664
|
-
# resp.
|
|
1665
|
-
# resp.
|
|
1717
|
+
# resp.http_responder_allowed #=> Boolean
|
|
1718
|
+
# resp.timeout_in_millis #=> Integer
|
|
1666
1719
|
#
|
|
1667
1720
|
#
|
|
1668
1721
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1669
1722
|
#
|
|
1670
1723
|
# * link_accepted
|
|
1671
1724
|
# * link_active
|
|
1725
|
+
# * link_deleted
|
|
1672
1726
|
#
|
|
1673
1727
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/GetLink AWS API Documentation
|
|
1674
1728
|
#
|
|
@@ -1693,10 +1747,14 @@ module Aws::RTBFabric
|
|
|
1693
1747
|
# * {Types::GetOutboundExternalLinkResponse#link_id #link_id} => String
|
|
1694
1748
|
# * {Types::GetOutboundExternalLinkResponse#status #status} => String
|
|
1695
1749
|
# * {Types::GetOutboundExternalLinkResponse#public_endpoint #public_endpoint} => String
|
|
1750
|
+
# * {Types::GetOutboundExternalLinkResponse#flow_modules #flow_modules} => Array<Types::ModuleConfiguration>
|
|
1751
|
+
# * {Types::GetOutboundExternalLinkResponse#pending_flow_modules #pending_flow_modules} => Array<Types::ModuleConfiguration>
|
|
1752
|
+
# * {Types::GetOutboundExternalLinkResponse#attributes #attributes} => Types::LinkAttributes
|
|
1696
1753
|
# * {Types::GetOutboundExternalLinkResponse#created_at #created_at} => Time
|
|
1697
1754
|
# * {Types::GetOutboundExternalLinkResponse#updated_at #updated_at} => Time
|
|
1698
1755
|
# * {Types::GetOutboundExternalLinkResponse#tags #tags} => Hash<String,String>
|
|
1699
1756
|
# * {Types::GetOutboundExternalLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
1757
|
+
# * {Types::GetOutboundExternalLinkResponse#connectivity_type #connectivity_type} => String
|
|
1700
1758
|
#
|
|
1701
1759
|
#
|
|
1702
1760
|
# @example Example: Get outbound external link details
|
|
@@ -1731,17 +1789,64 @@ module Aws::RTBFabric
|
|
|
1731
1789
|
# resp.link_id #=> String
|
|
1732
1790
|
# resp.status #=> String, one of "PENDING_CREATION", "PENDING_REQUEST", "REQUESTED", "ACCEPTED", "ACTIVE", "REJECTED", "FAILED", "PENDING_DELETION", "DELETED", "PENDING_UPDATE", "PENDING_ISOLATION", "ISOLATED", "PENDING_RESTORATION"
|
|
1733
1791
|
# resp.public_endpoint #=> String
|
|
1792
|
+
# resp.flow_modules #=> Array
|
|
1793
|
+
# resp.flow_modules[0].version #=> String
|
|
1794
|
+
# resp.flow_modules[0].name #=> String
|
|
1795
|
+
# resp.flow_modules[0].depends_on #=> Array
|
|
1796
|
+
# resp.flow_modules[0].depends_on[0] #=> String
|
|
1797
|
+
# resp.flow_modules[0].module_parameters.no_bid.reason #=> String
|
|
1798
|
+
# resp.flow_modules[0].module_parameters.no_bid.reason_code #=> Integer
|
|
1799
|
+
# resp.flow_modules[0].module_parameters.no_bid.pass_through_percentage #=> Float
|
|
1800
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_type #=> String, one of "INCLUDE", "EXCLUDE"
|
|
1801
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration #=> Array
|
|
1802
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria #=> Array
|
|
1803
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].path #=> String
|
|
1804
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].values #=> Array
|
|
1805
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].values[0] #=> String
|
|
1806
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.no_bid.no_bid_reason_code #=> Integer
|
|
1807
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1808
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1809
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1810
|
+
# resp.flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1811
|
+
# resp.pending_flow_modules #=> Array
|
|
1812
|
+
# resp.pending_flow_modules[0].version #=> String
|
|
1813
|
+
# resp.pending_flow_modules[0].name #=> String
|
|
1814
|
+
# resp.pending_flow_modules[0].depends_on #=> Array
|
|
1815
|
+
# resp.pending_flow_modules[0].depends_on[0] #=> String
|
|
1816
|
+
# resp.pending_flow_modules[0].module_parameters.no_bid.reason #=> String
|
|
1817
|
+
# resp.pending_flow_modules[0].module_parameters.no_bid.reason_code #=> Integer
|
|
1818
|
+
# resp.pending_flow_modules[0].module_parameters.no_bid.pass_through_percentage #=> Float
|
|
1819
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_type #=> String, one of "INCLUDE", "EXCLUDE"
|
|
1820
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration #=> Array
|
|
1821
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria #=> Array
|
|
1822
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].path #=> String
|
|
1823
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].values #=> Array
|
|
1824
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].values[0] #=> String
|
|
1825
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.no_bid.no_bid_reason_code #=> Integer
|
|
1826
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1827
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1828
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1829
|
+
# resp.pending_flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1830
|
+
# resp.attributes.responder_error_masking #=> Array
|
|
1831
|
+
# resp.attributes.responder_error_masking[0].http_code #=> String
|
|
1832
|
+
# resp.attributes.responder_error_masking[0].action #=> String, one of "NO_BID", "PASSTHROUGH"
|
|
1833
|
+
# resp.attributes.responder_error_masking[0].logging_types #=> Array
|
|
1834
|
+
# resp.attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
1835
|
+
# resp.attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
1836
|
+
# resp.attributes.customer_provided_id #=> String
|
|
1734
1837
|
# resp.created_at #=> Time
|
|
1735
1838
|
# resp.updated_at #=> Time
|
|
1736
1839
|
# resp.tags #=> Hash
|
|
1737
1840
|
# resp.tags["TagKey"] #=> String
|
|
1738
1841
|
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
1739
1842
|
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
1843
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
1740
1844
|
#
|
|
1741
1845
|
#
|
|
1742
1846
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1743
1847
|
#
|
|
1744
1848
|
# * outbound_external_link_active
|
|
1849
|
+
# * outbound_external_link_deleted
|
|
1745
1850
|
#
|
|
1746
1851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/GetOutboundExternalLink AWS API Documentation
|
|
1747
1852
|
#
|
|
@@ -1857,6 +1962,7 @@ module Aws::RTBFabric
|
|
|
1857
1962
|
# * {Types::GetResponderGatewayResponse#domain_name #domain_name} => String
|
|
1858
1963
|
# * {Types::GetResponderGatewayResponse#port #port} => Integer
|
|
1859
1964
|
# * {Types::GetResponderGatewayResponse#protocol #protocol} => String
|
|
1965
|
+
# * {Types::GetResponderGatewayResponse#listener_config #listener_config} => Types::ListenerConfig
|
|
1860
1966
|
# * {Types::GetResponderGatewayResponse#trust_store_configuration #trust_store_configuration} => Types::TrustStoreConfiguration
|
|
1861
1967
|
# * {Types::GetResponderGatewayResponse#managed_endpoint_configuration #managed_endpoint_configuration} => Types::ManagedEndpointConfiguration
|
|
1862
1968
|
# * {Types::GetResponderGatewayResponse#gateway_id #gateway_id} => String
|
|
@@ -1864,6 +1970,8 @@ module Aws::RTBFabric
|
|
|
1864
1970
|
# * {Types::GetResponderGatewayResponse#active_links_count #active_links_count} => Integer
|
|
1865
1971
|
# * {Types::GetResponderGatewayResponse#total_links_count #total_links_count} => Integer
|
|
1866
1972
|
# * {Types::GetResponderGatewayResponse#inbound_links_count #inbound_links_count} => Integer
|
|
1973
|
+
# * {Types::GetResponderGatewayResponse#gateway_type #gateway_type} => String
|
|
1974
|
+
# * {Types::GetResponderGatewayResponse#external_inbound_endpoint #external_inbound_endpoint} => String
|
|
1867
1975
|
#
|
|
1868
1976
|
#
|
|
1869
1977
|
# @example Example: Get responder gateway details
|
|
@@ -1916,11 +2024,21 @@ module Aws::RTBFabric
|
|
|
1916
2024
|
# resp.domain_name #=> String
|
|
1917
2025
|
# resp.port #=> Integer
|
|
1918
2026
|
# resp.protocol #=> String, one of "HTTP", "HTTPS"
|
|
2027
|
+
# resp.listener_config.protocols #=> Array
|
|
2028
|
+
# resp.listener_config.protocols[0] #=> String, one of "HTTP", "HTTPS"
|
|
1919
2029
|
# resp.trust_store_configuration.certificate_authority_certificates #=> Array
|
|
1920
2030
|
# resp.trust_store_configuration.certificate_authority_certificates[0] #=> String
|
|
1921
2031
|
# resp.managed_endpoint_configuration.auto_scaling_groups.auto_scaling_group_names #=> Array
|
|
1922
2032
|
# resp.managed_endpoint_configuration.auto_scaling_groups.auto_scaling_group_names[0] #=> String
|
|
1923
2033
|
# resp.managed_endpoint_configuration.auto_scaling_groups.role_arn #=> String
|
|
2034
|
+
# resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.port #=> Integer
|
|
2035
|
+
# resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.path #=> String
|
|
2036
|
+
# resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.protocol #=> String, one of "HTTP", "HTTPS"
|
|
2037
|
+
# resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.timeout_ms #=> Integer
|
|
2038
|
+
# resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.interval_seconds #=> Integer
|
|
2039
|
+
# resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.status_code_matcher #=> String
|
|
2040
|
+
# resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.healthy_threshold_count #=> Integer
|
|
2041
|
+
# resp.managed_endpoint_configuration.auto_scaling_groups.health_check_config.unhealthy_threshold_count #=> Integer
|
|
1924
2042
|
# resp.managed_endpoint_configuration.eks_endpoints.endpoints_resource_name #=> String
|
|
1925
2043
|
# resp.managed_endpoint_configuration.eks_endpoints.endpoints_resource_namespace #=> String
|
|
1926
2044
|
# resp.managed_endpoint_configuration.eks_endpoints.cluster_api_server_endpoint_uri #=> String
|
|
@@ -1933,6 +2051,8 @@ module Aws::RTBFabric
|
|
|
1933
2051
|
# resp.active_links_count #=> Integer
|
|
1934
2052
|
# resp.total_links_count #=> Integer
|
|
1935
2053
|
# resp.inbound_links_count #=> Integer
|
|
2054
|
+
# resp.gateway_type #=> String, one of "EXTERNAL", "INTERNAL"
|
|
2055
|
+
# resp.external_inbound_endpoint #=> String
|
|
1936
2056
|
#
|
|
1937
2057
|
#
|
|
1938
2058
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -2065,9 +2185,13 @@ module Aws::RTBFabric
|
|
|
2065
2185
|
# resp.links[0].attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
2066
2186
|
# resp.links[0].attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
2067
2187
|
# resp.links[0].attributes.customer_provided_id #=> String
|
|
2188
|
+
# resp.links[0].log_settings.application_logs.sampling.error_log #=> Float
|
|
2189
|
+
# resp.links[0].log_settings.application_logs.sampling.filter_log #=> Float
|
|
2190
|
+
# resp.links[0].connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
2068
2191
|
# resp.links[0].link_id #=> String
|
|
2069
2192
|
# resp.links[0].tags #=> Hash
|
|
2070
2193
|
# resp.links[0].tags["TagKey"] #=> String
|
|
2194
|
+
# resp.links[0].public_endpoint #=> String
|
|
2071
2195
|
# resp.next_token #=> String
|
|
2072
2196
|
#
|
|
2073
2197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/ListLinks AWS API Documentation
|
|
@@ -2310,6 +2434,8 @@ module Aws::RTBFabric
|
|
|
2310
2434
|
# * {Types::RejectLinkResponse#flow_modules #flow_modules} => Array<Types::ModuleConfiguration>
|
|
2311
2435
|
# * {Types::RejectLinkResponse#pending_flow_modules #pending_flow_modules} => Array<Types::ModuleConfiguration>
|
|
2312
2436
|
# * {Types::RejectLinkResponse#attributes #attributes} => Types::LinkAttributes
|
|
2437
|
+
# * {Types::RejectLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
2438
|
+
# * {Types::RejectLinkResponse#connectivity_type #connectivity_type} => String
|
|
2313
2439
|
# * {Types::RejectLinkResponse#link_id #link_id} => String
|
|
2314
2440
|
#
|
|
2315
2441
|
#
|
|
@@ -2392,6 +2518,9 @@ module Aws::RTBFabric
|
|
|
2392
2518
|
# resp.attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
2393
2519
|
# resp.attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
2394
2520
|
# resp.attributes.customer_provided_id #=> String
|
|
2521
|
+
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
2522
|
+
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
2523
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
2395
2524
|
# resp.link_id #=> String
|
|
2396
2525
|
#
|
|
2397
2526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/RejectLink AWS API Documentation
|
|
@@ -2506,6 +2635,9 @@ module Aws::RTBFabric
|
|
|
2506
2635
|
# @option params [Types::LinkLogSettings] :log_settings
|
|
2507
2636
|
# Settings for the application logs.
|
|
2508
2637
|
#
|
|
2638
|
+
# @option params [Integer] :timeout_in_millis
|
|
2639
|
+
# The timeout value in milliseconds.
|
|
2640
|
+
#
|
|
2509
2641
|
# @return [Types::UpdateLinkResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2510
2642
|
#
|
|
2511
2643
|
# * {Types::UpdateLinkResponse#link_id #link_id} => String
|
|
@@ -2548,6 +2680,7 @@ module Aws::RTBFabric
|
|
|
2548
2680
|
# },
|
|
2549
2681
|
# },
|
|
2550
2682
|
# },
|
|
2683
|
+
# timeout_in_millis: 1,
|
|
2551
2684
|
# })
|
|
2552
2685
|
#
|
|
2553
2686
|
# @example Response structure
|
|
@@ -2752,6 +2885,9 @@ module Aws::RTBFabric
|
|
|
2752
2885
|
# @option params [required, String] :protocol
|
|
2753
2886
|
# The networking protocol to use.
|
|
2754
2887
|
#
|
|
2888
|
+
# @option params [Types::ListenerConfig] :listener_config
|
|
2889
|
+
# The listener configuration for the responder gateway.
|
|
2890
|
+
#
|
|
2755
2891
|
# @option params [Types::TrustStoreConfiguration] :trust_store_configuration
|
|
2756
2892
|
# The configuration of the trust store.
|
|
2757
2893
|
#
|
|
@@ -2800,13 +2936,26 @@ module Aws::RTBFabric
|
|
|
2800
2936
|
# domain_name: "DomainName",
|
|
2801
2937
|
# port: 1, # required
|
|
2802
2938
|
# protocol: "HTTP", # required, accepts HTTP, HTTPS
|
|
2939
|
+
# listener_config: {
|
|
2940
|
+
# protocols: ["HTTP"], # required, accepts HTTP, HTTPS
|
|
2941
|
+
# },
|
|
2803
2942
|
# trust_store_configuration: {
|
|
2804
2943
|
# certificate_authority_certificates: ["Base64EncodedCertificateChain"], # required
|
|
2805
2944
|
# },
|
|
2806
2945
|
# managed_endpoint_configuration: {
|
|
2807
2946
|
# auto_scaling_groups: {
|
|
2808
2947
|
# auto_scaling_group_names: ["AutoScalingGroupName"], # required
|
|
2809
|
-
# role_arn: "
|
|
2948
|
+
# role_arn: "AutoScalingGroupsConfigurationRoleArnString", # required
|
|
2949
|
+
# health_check_config: {
|
|
2950
|
+
# port: 1, # required
|
|
2951
|
+
# path: "HealthCheckConfigPathString", # required
|
|
2952
|
+
# protocol: "HTTP", # accepts HTTP, HTTPS
|
|
2953
|
+
# timeout_ms: 1,
|
|
2954
|
+
# interval_seconds: 1,
|
|
2955
|
+
# status_code_matcher: "StatusCodeMatcher",
|
|
2956
|
+
# healthy_threshold_count: 1,
|
|
2957
|
+
# unhealthy_threshold_count: 1,
|
|
2958
|
+
# },
|
|
2810
2959
|
# },
|
|
2811
2960
|
# eks_endpoints: {
|
|
2812
2961
|
# endpoints_resource_name: "KubernetesEndpointsResourceName", # required
|
|
@@ -2814,7 +2963,7 @@ module Aws::RTBFabric
|
|
|
2814
2963
|
# cluster_api_server_endpoint_uri: "URI", # required
|
|
2815
2964
|
# cluster_api_server_ca_certificate_chain: "Base64EncodedCertificateChain", # required
|
|
2816
2965
|
# cluster_name: "KubernetesClusterName", # required
|
|
2817
|
-
# role_arn: "
|
|
2966
|
+
# role_arn: "EksEndpointsConfigurationRoleArnString", # required
|
|
2818
2967
|
# },
|
|
2819
2968
|
# },
|
|
2820
2969
|
# client_token: "String", # required
|
|
@@ -2854,7 +3003,7 @@ module Aws::RTBFabric
|
|
|
2854
3003
|
tracer: tracer
|
|
2855
3004
|
)
|
|
2856
3005
|
context[:gem_name] = 'aws-sdk-rtbfabric'
|
|
2857
|
-
context[:gem_version] = '1.
|
|
3006
|
+
context[:gem_version] = '1.10.0'
|
|
2858
3007
|
Seahorse::Client::Request.new(handlers, context)
|
|
2859
3008
|
end
|
|
2860
3009
|
|
|
@@ -2920,16 +3069,19 @@ module Aws::RTBFabric
|
|
|
2920
3069
|
# The following table lists the valid waiter names, the operations they call,
|
|
2921
3070
|
# and the default `:delay` and `:max_attempts` values.
|
|
2922
3071
|
#
|
|
2923
|
-
# | waiter_name
|
|
2924
|
-
# |
|
|
2925
|
-
# | inbound_external_link_active
|
|
2926
|
-
# |
|
|
2927
|
-
# |
|
|
2928
|
-
# |
|
|
2929
|
-
# |
|
|
2930
|
-
# |
|
|
2931
|
-
# |
|
|
2932
|
-
# |
|
|
3072
|
+
# | waiter_name | params | :delay | :max_attempts |
|
|
3073
|
+
# | ------------------------------ | ----------------------------------- | -------- | ------------- |
|
|
3074
|
+
# | inbound_external_link_active | {Client#get_inbound_external_link} | 30 | 5 |
|
|
3075
|
+
# | inbound_external_link_deleted | {Client#get_inbound_external_link} | 30 | 5 |
|
|
3076
|
+
# | link_accepted | {Client#get_link} | 30 | 5 |
|
|
3077
|
+
# | link_active | {Client#get_link} | 30 | 5 |
|
|
3078
|
+
# | link_deleted | {Client#get_link} | 30 | 5 |
|
|
3079
|
+
# | outbound_external_link_active | {Client#get_outbound_external_link} | 30 | 5 |
|
|
3080
|
+
# | outbound_external_link_deleted | {Client#get_outbound_external_link} | 30 | 5 |
|
|
3081
|
+
# | requester_gateway_active | {Client#get_requester_gateway} | 30 | 5 |
|
|
3082
|
+
# | requester_gateway_deleted | {Client#get_requester_gateway} | 30 | 5 |
|
|
3083
|
+
# | responder_gateway_active | {Client#get_responder_gateway} | 30 | 5 |
|
|
3084
|
+
# | responder_gateway_deleted | {Client#get_responder_gateway} | 30 | 5 |
|
|
2933
3085
|
#
|
|
2934
3086
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
|
2935
3087
|
# because the waiter has entered a state that it will not transition
|
|
@@ -2981,9 +3133,12 @@ module Aws::RTBFabric
|
|
|
2981
3133
|
def waiters
|
|
2982
3134
|
{
|
|
2983
3135
|
inbound_external_link_active: Waiters::InboundExternalLinkActive,
|
|
3136
|
+
inbound_external_link_deleted: Waiters::InboundExternalLinkDeleted,
|
|
2984
3137
|
link_accepted: Waiters::LinkAccepted,
|
|
2985
3138
|
link_active: Waiters::LinkActive,
|
|
3139
|
+
link_deleted: Waiters::LinkDeleted,
|
|
2986
3140
|
outbound_external_link_active: Waiters::OutboundExternalLinkActive,
|
|
3141
|
+
outbound_external_link_deleted: Waiters::OutboundExternalLinkDeleted,
|
|
2987
3142
|
requester_gateway_active: Waiters::RequesterGatewayActive,
|
|
2988
3143
|
requester_gateway_deleted: Waiters::RequesterGatewayDeleted,
|
|
2989
3144
|
responder_gateway_active: Waiters::ResponderGatewayActive,
|