aws-sdk-rtbfabric 1.8.0 → 1.9.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-rtbfabric/client.rb +151 -24
- data/lib/aws-sdk-rtbfabric/client_api.rb +43 -3
- data/lib/aws-sdk-rtbfabric/types.rb +174 -18
- data/lib/aws-sdk-rtbfabric/waiters.rb +173 -10
- data/lib/aws-sdk-rtbfabric.rb +1 -1
- data/sig/client.rbs +49 -5
- data/sig/types.rbs +34 -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: 2ddb62786fa8712b507190bde2e8ea3bf19d040f2b1e26c002cb63f83154125c
|
|
4
|
+
data.tar.gz: ebeec92f52ff481ed3e314023488370eb1d52909602afbcf183a0a6a96443f91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2138639f6fdd6c2e8622f4f5e3486dc799d19170ba3bbc02dc06e2b82995fa10f0e151abdc95ee267632d517c6f60ab102cacac528464d8b78babaf3a39eb77a
|
|
7
|
+
data.tar.gz: c4372bd2f2c00cecded4bfc4ac7191da6a521fb43f8e85726c3c8eded3c4f97191a4596d637de6bab3dbc4af1eb5e617bac58cffe3eb464e62a64877be3f2de3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.9.0 (2026-04-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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
|
|
8
|
+
|
|
4
9
|
1.8.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.9.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,16 @@ 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
|
|
1160
1190
|
# },
|
|
1161
1191
|
# eks_endpoints: {
|
|
1162
1192
|
# endpoints_resource_name: "KubernetesEndpointsResourceName", # required
|
|
@@ -1164,7 +1194,7 @@ module Aws::RTBFabric
|
|
|
1164
1194
|
# cluster_api_server_endpoint_uri: "URI", # required
|
|
1165
1195
|
# cluster_api_server_ca_certificate_chain: "Base64EncodedCertificateChain", # required
|
|
1166
1196
|
# cluster_name: "KubernetesClusterName", # required
|
|
1167
|
-
# role_arn: "
|
|
1197
|
+
# role_arn: "EksEndpointsConfigurationRoleArnString", # required
|
|
1168
1198
|
# },
|
|
1169
1199
|
# },
|
|
1170
1200
|
# client_token: "String", # required
|
|
@@ -1172,12 +1202,16 @@ module Aws::RTBFabric
|
|
|
1172
1202
|
# tags: {
|
|
1173
1203
|
# "TagKey" => "TagValue",
|
|
1174
1204
|
# },
|
|
1205
|
+
# gateway_type: "EXTERNAL", # accepts EXTERNAL, INTERNAL
|
|
1175
1206
|
# })
|
|
1176
1207
|
#
|
|
1177
1208
|
# @example Response structure
|
|
1178
1209
|
#
|
|
1179
1210
|
# resp.gateway_id #=> String
|
|
1180
1211
|
# resp.status #=> String, one of "PENDING_CREATION", "ACTIVE", "PENDING_DELETION", "DELETED", "ERROR", "PENDING_UPDATE", "ISOLATED", "PENDING_ISOLATION", "PENDING_RESTORATION"
|
|
1212
|
+
# resp.listener_config.protocols #=> Array
|
|
1213
|
+
# resp.listener_config.protocols[0] #=> String, one of "HTTP", "HTTPS"
|
|
1214
|
+
# resp.external_inbound_endpoint #=> String
|
|
1181
1215
|
#
|
|
1182
1216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/CreateResponderGateway AWS API Documentation
|
|
1183
1217
|
#
|
|
@@ -1452,6 +1486,7 @@ module Aws::RTBFabric
|
|
|
1452
1486
|
# * {Types::GetInboundExternalLinkResponse#updated_at #updated_at} => Time
|
|
1453
1487
|
# * {Types::GetInboundExternalLinkResponse#tags #tags} => Hash<String,String>
|
|
1454
1488
|
# * {Types::GetInboundExternalLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
1489
|
+
# * {Types::GetInboundExternalLinkResponse#connectivity_type #connectivity_type} => String
|
|
1455
1490
|
#
|
|
1456
1491
|
#
|
|
1457
1492
|
# @example Example: Get inbound external link details
|
|
@@ -1466,7 +1501,7 @@ module Aws::RTBFabric
|
|
|
1466
1501
|
# resp.to_h outputs the following:
|
|
1467
1502
|
# {
|
|
1468
1503
|
# created_at: Time.parse("2024-01-15T10:30:00Z"),
|
|
1469
|
-
# domain_name: "rtb-gw-12345678.
|
|
1504
|
+
# domain_name: "rtb-gw-12345678.123456789012.gateway.rtbfabric.us-east-1.amazonaws.com",
|
|
1470
1505
|
# gateway_id: "rtb-gw-12345678",
|
|
1471
1506
|
# link_id: "link-87654321",
|
|
1472
1507
|
# status: "ACTIVE",
|
|
@@ -1537,11 +1572,13 @@ module Aws::RTBFabric
|
|
|
1537
1572
|
# resp.tags["TagKey"] #=> String
|
|
1538
1573
|
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
1539
1574
|
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
1575
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
1540
1576
|
#
|
|
1541
1577
|
#
|
|
1542
1578
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1543
1579
|
#
|
|
1544
1580
|
# * inbound_external_link_active
|
|
1581
|
+
# * inbound_external_link_deleted
|
|
1545
1582
|
#
|
|
1546
1583
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/GetInboundExternalLink AWS API Documentation
|
|
1547
1584
|
#
|
|
@@ -1574,9 +1611,12 @@ module Aws::RTBFabric
|
|
|
1574
1611
|
# * {Types::GetLinkResponse#flow_modules #flow_modules} => Array<Types::ModuleConfiguration>
|
|
1575
1612
|
# * {Types::GetLinkResponse#pending_flow_modules #pending_flow_modules} => Array<Types::ModuleConfiguration>
|
|
1576
1613
|
# * {Types::GetLinkResponse#attributes #attributes} => Types::LinkAttributes
|
|
1614
|
+
# * {Types::GetLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
1615
|
+
# * {Types::GetLinkResponse#connectivity_type #connectivity_type} => String
|
|
1577
1616
|
# * {Types::GetLinkResponse#link_id #link_id} => String
|
|
1578
1617
|
# * {Types::GetLinkResponse#tags #tags} => Hash<String,String>
|
|
1579
|
-
# * {Types::GetLinkResponse#
|
|
1618
|
+
# * {Types::GetLinkResponse#http_responder_allowed #http_responder_allowed} => Boolean
|
|
1619
|
+
# * {Types::GetLinkResponse#timeout_in_millis #timeout_in_millis} => Integer
|
|
1580
1620
|
#
|
|
1581
1621
|
#
|
|
1582
1622
|
# @example Example: Get link details
|
|
@@ -1658,17 +1698,21 @@ module Aws::RTBFabric
|
|
|
1658
1698
|
# resp.attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
1659
1699
|
# resp.attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
1660
1700
|
# resp.attributes.customer_provided_id #=> String
|
|
1701
|
+
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
1702
|
+
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
1703
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
1661
1704
|
# resp.link_id #=> String
|
|
1662
1705
|
# resp.tags #=> Hash
|
|
1663
1706
|
# resp.tags["TagKey"] #=> String
|
|
1664
|
-
# resp.
|
|
1665
|
-
# resp.
|
|
1707
|
+
# resp.http_responder_allowed #=> Boolean
|
|
1708
|
+
# resp.timeout_in_millis #=> Integer
|
|
1666
1709
|
#
|
|
1667
1710
|
#
|
|
1668
1711
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1669
1712
|
#
|
|
1670
1713
|
# * link_accepted
|
|
1671
1714
|
# * link_active
|
|
1715
|
+
# * link_deleted
|
|
1672
1716
|
#
|
|
1673
1717
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/GetLink AWS API Documentation
|
|
1674
1718
|
#
|
|
@@ -1693,10 +1737,14 @@ module Aws::RTBFabric
|
|
|
1693
1737
|
# * {Types::GetOutboundExternalLinkResponse#link_id #link_id} => String
|
|
1694
1738
|
# * {Types::GetOutboundExternalLinkResponse#status #status} => String
|
|
1695
1739
|
# * {Types::GetOutboundExternalLinkResponse#public_endpoint #public_endpoint} => String
|
|
1740
|
+
# * {Types::GetOutboundExternalLinkResponse#flow_modules #flow_modules} => Array<Types::ModuleConfiguration>
|
|
1741
|
+
# * {Types::GetOutboundExternalLinkResponse#pending_flow_modules #pending_flow_modules} => Array<Types::ModuleConfiguration>
|
|
1742
|
+
# * {Types::GetOutboundExternalLinkResponse#attributes #attributes} => Types::LinkAttributes
|
|
1696
1743
|
# * {Types::GetOutboundExternalLinkResponse#created_at #created_at} => Time
|
|
1697
1744
|
# * {Types::GetOutboundExternalLinkResponse#updated_at #updated_at} => Time
|
|
1698
1745
|
# * {Types::GetOutboundExternalLinkResponse#tags #tags} => Hash<String,String>
|
|
1699
1746
|
# * {Types::GetOutboundExternalLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
1747
|
+
# * {Types::GetOutboundExternalLinkResponse#connectivity_type #connectivity_type} => String
|
|
1700
1748
|
#
|
|
1701
1749
|
#
|
|
1702
1750
|
# @example Example: Get outbound external link details
|
|
@@ -1731,17 +1779,64 @@ module Aws::RTBFabric
|
|
|
1731
1779
|
# resp.link_id #=> String
|
|
1732
1780
|
# 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
1781
|
# resp.public_endpoint #=> String
|
|
1782
|
+
# resp.flow_modules #=> Array
|
|
1783
|
+
# resp.flow_modules[0].version #=> String
|
|
1784
|
+
# resp.flow_modules[0].name #=> String
|
|
1785
|
+
# resp.flow_modules[0].depends_on #=> Array
|
|
1786
|
+
# resp.flow_modules[0].depends_on[0] #=> String
|
|
1787
|
+
# resp.flow_modules[0].module_parameters.no_bid.reason #=> String
|
|
1788
|
+
# resp.flow_modules[0].module_parameters.no_bid.reason_code #=> Integer
|
|
1789
|
+
# resp.flow_modules[0].module_parameters.no_bid.pass_through_percentage #=> Float
|
|
1790
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_type #=> String, one of "INCLUDE", "EXCLUDE"
|
|
1791
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration #=> Array
|
|
1792
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria #=> Array
|
|
1793
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].path #=> String
|
|
1794
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].values #=> Array
|
|
1795
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].values[0] #=> String
|
|
1796
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.no_bid.no_bid_reason_code #=> Integer
|
|
1797
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1798
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1799
|
+
# resp.flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1800
|
+
# resp.flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1801
|
+
# resp.pending_flow_modules #=> Array
|
|
1802
|
+
# resp.pending_flow_modules[0].version #=> String
|
|
1803
|
+
# resp.pending_flow_modules[0].name #=> String
|
|
1804
|
+
# resp.pending_flow_modules[0].depends_on #=> Array
|
|
1805
|
+
# resp.pending_flow_modules[0].depends_on[0] #=> String
|
|
1806
|
+
# resp.pending_flow_modules[0].module_parameters.no_bid.reason #=> String
|
|
1807
|
+
# resp.pending_flow_modules[0].module_parameters.no_bid.reason_code #=> Integer
|
|
1808
|
+
# resp.pending_flow_modules[0].module_parameters.no_bid.pass_through_percentage #=> Float
|
|
1809
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_type #=> String, one of "INCLUDE", "EXCLUDE"
|
|
1810
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration #=> Array
|
|
1811
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria #=> Array
|
|
1812
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].path #=> String
|
|
1813
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].values #=> Array
|
|
1814
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.filter_configuration[0].criteria[0].values[0] #=> String
|
|
1815
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.no_bid.no_bid_reason_code #=> Integer
|
|
1816
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1817
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1818
|
+
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1819
|
+
# resp.pending_flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1820
|
+
# resp.attributes.responder_error_masking #=> Array
|
|
1821
|
+
# resp.attributes.responder_error_masking[0].http_code #=> String
|
|
1822
|
+
# resp.attributes.responder_error_masking[0].action #=> String, one of "NO_BID", "PASSTHROUGH"
|
|
1823
|
+
# resp.attributes.responder_error_masking[0].logging_types #=> Array
|
|
1824
|
+
# resp.attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
1825
|
+
# resp.attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
1826
|
+
# resp.attributes.customer_provided_id #=> String
|
|
1734
1827
|
# resp.created_at #=> Time
|
|
1735
1828
|
# resp.updated_at #=> Time
|
|
1736
1829
|
# resp.tags #=> Hash
|
|
1737
1830
|
# resp.tags["TagKey"] #=> String
|
|
1738
1831
|
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
1739
1832
|
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
1833
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
1740
1834
|
#
|
|
1741
1835
|
#
|
|
1742
1836
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1743
1837
|
#
|
|
1744
1838
|
# * outbound_external_link_active
|
|
1839
|
+
# * outbound_external_link_deleted
|
|
1745
1840
|
#
|
|
1746
1841
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/GetOutboundExternalLink AWS API Documentation
|
|
1747
1842
|
#
|
|
@@ -1857,6 +1952,7 @@ module Aws::RTBFabric
|
|
|
1857
1952
|
# * {Types::GetResponderGatewayResponse#domain_name #domain_name} => String
|
|
1858
1953
|
# * {Types::GetResponderGatewayResponse#port #port} => Integer
|
|
1859
1954
|
# * {Types::GetResponderGatewayResponse#protocol #protocol} => String
|
|
1955
|
+
# * {Types::GetResponderGatewayResponse#listener_config #listener_config} => Types::ListenerConfig
|
|
1860
1956
|
# * {Types::GetResponderGatewayResponse#trust_store_configuration #trust_store_configuration} => Types::TrustStoreConfiguration
|
|
1861
1957
|
# * {Types::GetResponderGatewayResponse#managed_endpoint_configuration #managed_endpoint_configuration} => Types::ManagedEndpointConfiguration
|
|
1862
1958
|
# * {Types::GetResponderGatewayResponse#gateway_id #gateway_id} => String
|
|
@@ -1864,6 +1960,8 @@ module Aws::RTBFabric
|
|
|
1864
1960
|
# * {Types::GetResponderGatewayResponse#active_links_count #active_links_count} => Integer
|
|
1865
1961
|
# * {Types::GetResponderGatewayResponse#total_links_count #total_links_count} => Integer
|
|
1866
1962
|
# * {Types::GetResponderGatewayResponse#inbound_links_count #inbound_links_count} => Integer
|
|
1963
|
+
# * {Types::GetResponderGatewayResponse#gateway_type #gateway_type} => String
|
|
1964
|
+
# * {Types::GetResponderGatewayResponse#external_inbound_endpoint #external_inbound_endpoint} => String
|
|
1867
1965
|
#
|
|
1868
1966
|
#
|
|
1869
1967
|
# @example Example: Get responder gateway details
|
|
@@ -1916,6 +2014,8 @@ module Aws::RTBFabric
|
|
|
1916
2014
|
# resp.domain_name #=> String
|
|
1917
2015
|
# resp.port #=> Integer
|
|
1918
2016
|
# resp.protocol #=> String, one of "HTTP", "HTTPS"
|
|
2017
|
+
# resp.listener_config.protocols #=> Array
|
|
2018
|
+
# resp.listener_config.protocols[0] #=> String, one of "HTTP", "HTTPS"
|
|
1919
2019
|
# resp.trust_store_configuration.certificate_authority_certificates #=> Array
|
|
1920
2020
|
# resp.trust_store_configuration.certificate_authority_certificates[0] #=> String
|
|
1921
2021
|
# resp.managed_endpoint_configuration.auto_scaling_groups.auto_scaling_group_names #=> Array
|
|
@@ -1933,6 +2033,8 @@ module Aws::RTBFabric
|
|
|
1933
2033
|
# resp.active_links_count #=> Integer
|
|
1934
2034
|
# resp.total_links_count #=> Integer
|
|
1935
2035
|
# resp.inbound_links_count #=> Integer
|
|
2036
|
+
# resp.gateway_type #=> String, one of "EXTERNAL", "INTERNAL"
|
|
2037
|
+
# resp.external_inbound_endpoint #=> String
|
|
1936
2038
|
#
|
|
1937
2039
|
#
|
|
1938
2040
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -2065,9 +2167,13 @@ module Aws::RTBFabric
|
|
|
2065
2167
|
# resp.links[0].attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
2066
2168
|
# resp.links[0].attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
2067
2169
|
# resp.links[0].attributes.customer_provided_id #=> String
|
|
2170
|
+
# resp.links[0].log_settings.application_logs.sampling.error_log #=> Float
|
|
2171
|
+
# resp.links[0].log_settings.application_logs.sampling.filter_log #=> Float
|
|
2172
|
+
# resp.links[0].connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
2068
2173
|
# resp.links[0].link_id #=> String
|
|
2069
2174
|
# resp.links[0].tags #=> Hash
|
|
2070
2175
|
# resp.links[0].tags["TagKey"] #=> String
|
|
2176
|
+
# resp.links[0].public_endpoint #=> String
|
|
2071
2177
|
# resp.next_token #=> String
|
|
2072
2178
|
#
|
|
2073
2179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/ListLinks AWS API Documentation
|
|
@@ -2310,6 +2416,8 @@ module Aws::RTBFabric
|
|
|
2310
2416
|
# * {Types::RejectLinkResponse#flow_modules #flow_modules} => Array<Types::ModuleConfiguration>
|
|
2311
2417
|
# * {Types::RejectLinkResponse#pending_flow_modules #pending_flow_modules} => Array<Types::ModuleConfiguration>
|
|
2312
2418
|
# * {Types::RejectLinkResponse#attributes #attributes} => Types::LinkAttributes
|
|
2419
|
+
# * {Types::RejectLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
2420
|
+
# * {Types::RejectLinkResponse#connectivity_type #connectivity_type} => String
|
|
2313
2421
|
# * {Types::RejectLinkResponse#link_id #link_id} => String
|
|
2314
2422
|
#
|
|
2315
2423
|
#
|
|
@@ -2392,6 +2500,9 @@ module Aws::RTBFabric
|
|
|
2392
2500
|
# resp.attributes.responder_error_masking[0].logging_types[0] #=> String, one of "NONE", "METRIC", "RESPONSE"
|
|
2393
2501
|
# resp.attributes.responder_error_masking[0].response_logging_percentage #=> Float
|
|
2394
2502
|
# resp.attributes.customer_provided_id #=> String
|
|
2503
|
+
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
2504
|
+
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
2505
|
+
# resp.connectivity_type #=> String, one of "DEFAULT", "PUBLIC_INGRESS", "PUBLIC_EGRESS", "EXTERNAL_INBOUND"
|
|
2395
2506
|
# resp.link_id #=> String
|
|
2396
2507
|
#
|
|
2397
2508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/RejectLink AWS API Documentation
|
|
@@ -2506,6 +2617,9 @@ module Aws::RTBFabric
|
|
|
2506
2617
|
# @option params [Types::LinkLogSettings] :log_settings
|
|
2507
2618
|
# Settings for the application logs.
|
|
2508
2619
|
#
|
|
2620
|
+
# @option params [Integer] :timeout_in_millis
|
|
2621
|
+
# The timeout value in milliseconds.
|
|
2622
|
+
#
|
|
2509
2623
|
# @return [Types::UpdateLinkResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2510
2624
|
#
|
|
2511
2625
|
# * {Types::UpdateLinkResponse#link_id #link_id} => String
|
|
@@ -2548,6 +2662,7 @@ module Aws::RTBFabric
|
|
|
2548
2662
|
# },
|
|
2549
2663
|
# },
|
|
2550
2664
|
# },
|
|
2665
|
+
# timeout_in_millis: 1,
|
|
2551
2666
|
# })
|
|
2552
2667
|
#
|
|
2553
2668
|
# @example Response structure
|
|
@@ -2752,6 +2867,9 @@ module Aws::RTBFabric
|
|
|
2752
2867
|
# @option params [required, String] :protocol
|
|
2753
2868
|
# The networking protocol to use.
|
|
2754
2869
|
#
|
|
2870
|
+
# @option params [Types::ListenerConfig] :listener_config
|
|
2871
|
+
# The listener configuration for the responder gateway.
|
|
2872
|
+
#
|
|
2755
2873
|
# @option params [Types::TrustStoreConfiguration] :trust_store_configuration
|
|
2756
2874
|
# The configuration of the trust store.
|
|
2757
2875
|
#
|
|
@@ -2800,13 +2918,16 @@ module Aws::RTBFabric
|
|
|
2800
2918
|
# domain_name: "DomainName",
|
|
2801
2919
|
# port: 1, # required
|
|
2802
2920
|
# protocol: "HTTP", # required, accepts HTTP, HTTPS
|
|
2921
|
+
# listener_config: {
|
|
2922
|
+
# protocols: ["HTTP"], # required, accepts HTTP, HTTPS
|
|
2923
|
+
# },
|
|
2803
2924
|
# trust_store_configuration: {
|
|
2804
2925
|
# certificate_authority_certificates: ["Base64EncodedCertificateChain"], # required
|
|
2805
2926
|
# },
|
|
2806
2927
|
# managed_endpoint_configuration: {
|
|
2807
2928
|
# auto_scaling_groups: {
|
|
2808
2929
|
# auto_scaling_group_names: ["AutoScalingGroupName"], # required
|
|
2809
|
-
# role_arn: "
|
|
2930
|
+
# role_arn: "AutoScalingGroupsConfigurationRoleArnString", # required
|
|
2810
2931
|
# },
|
|
2811
2932
|
# eks_endpoints: {
|
|
2812
2933
|
# endpoints_resource_name: "KubernetesEndpointsResourceName", # required
|
|
@@ -2814,7 +2935,7 @@ module Aws::RTBFabric
|
|
|
2814
2935
|
# cluster_api_server_endpoint_uri: "URI", # required
|
|
2815
2936
|
# cluster_api_server_ca_certificate_chain: "Base64EncodedCertificateChain", # required
|
|
2816
2937
|
# cluster_name: "KubernetesClusterName", # required
|
|
2817
|
-
# role_arn: "
|
|
2938
|
+
# role_arn: "EksEndpointsConfigurationRoleArnString", # required
|
|
2818
2939
|
# },
|
|
2819
2940
|
# },
|
|
2820
2941
|
# client_token: "String", # required
|
|
@@ -2854,7 +2975,7 @@ module Aws::RTBFabric
|
|
|
2854
2975
|
tracer: tracer
|
|
2855
2976
|
)
|
|
2856
2977
|
context[:gem_name] = 'aws-sdk-rtbfabric'
|
|
2857
|
-
context[:gem_version] = '1.
|
|
2978
|
+
context[:gem_version] = '1.9.0'
|
|
2858
2979
|
Seahorse::Client::Request.new(handlers, context)
|
|
2859
2980
|
end
|
|
2860
2981
|
|
|
@@ -2920,16 +3041,19 @@ module Aws::RTBFabric
|
|
|
2920
3041
|
# The following table lists the valid waiter names, the operations they call,
|
|
2921
3042
|
# and the default `:delay` and `:max_attempts` values.
|
|
2922
3043
|
#
|
|
2923
|
-
# | waiter_name
|
|
2924
|
-
# |
|
|
2925
|
-
# | inbound_external_link_active
|
|
2926
|
-
# |
|
|
2927
|
-
# |
|
|
2928
|
-
# |
|
|
2929
|
-
# |
|
|
2930
|
-
# |
|
|
2931
|
-
# |
|
|
2932
|
-
# |
|
|
3044
|
+
# | waiter_name | params | :delay | :max_attempts |
|
|
3045
|
+
# | ------------------------------ | ----------------------------------- | -------- | ------------- |
|
|
3046
|
+
# | inbound_external_link_active | {Client#get_inbound_external_link} | 30 | 5 |
|
|
3047
|
+
# | inbound_external_link_deleted | {Client#get_inbound_external_link} | 30 | 5 |
|
|
3048
|
+
# | link_accepted | {Client#get_link} | 30 | 5 |
|
|
3049
|
+
# | link_active | {Client#get_link} | 30 | 5 |
|
|
3050
|
+
# | link_deleted | {Client#get_link} | 30 | 5 |
|
|
3051
|
+
# | outbound_external_link_active | {Client#get_outbound_external_link} | 30 | 5 |
|
|
3052
|
+
# | outbound_external_link_deleted | {Client#get_outbound_external_link} | 30 | 5 |
|
|
3053
|
+
# | requester_gateway_active | {Client#get_requester_gateway} | 30 | 5 |
|
|
3054
|
+
# | requester_gateway_deleted | {Client#get_requester_gateway} | 30 | 5 |
|
|
3055
|
+
# | responder_gateway_active | {Client#get_responder_gateway} | 30 | 5 |
|
|
3056
|
+
# | responder_gateway_deleted | {Client#get_responder_gateway} | 30 | 5 |
|
|
2933
3057
|
#
|
|
2934
3058
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
|
2935
3059
|
# because the waiter has entered a state that it will not transition
|
|
@@ -2981,9 +3105,12 @@ module Aws::RTBFabric
|
|
|
2981
3105
|
def waiters
|
|
2982
3106
|
{
|
|
2983
3107
|
inbound_external_link_active: Waiters::InboundExternalLinkActive,
|
|
3108
|
+
inbound_external_link_deleted: Waiters::InboundExternalLinkDeleted,
|
|
2984
3109
|
link_accepted: Waiters::LinkAccepted,
|
|
2985
3110
|
link_active: Waiters::LinkActive,
|
|
3111
|
+
link_deleted: Waiters::LinkDeleted,
|
|
2986
3112
|
outbound_external_link_active: Waiters::OutboundExternalLinkActive,
|
|
3113
|
+
outbound_external_link_deleted: Waiters::OutboundExternalLinkDeleted,
|
|
2987
3114
|
requester_gateway_active: Waiters::RequesterGatewayActive,
|
|
2988
3115
|
requester_gateway_deleted: Waiters::RequesterGatewayDeleted,
|
|
2989
3116
|
responder_gateway_active: Waiters::ResponderGatewayActive,
|