aws-sdk-rtbfabric 1.1.0 → 1.3.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 +80 -21
- data/lib/aws-sdk-rtbfabric/client_api.rb +5 -0
- data/lib/aws-sdk-rtbfabric/types.rb +27 -2
- data/lib/aws-sdk-rtbfabric.rb +1 -1
- data/sig/client.rbs +29 -0
- data/sig/types.rbs +5 -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: d2fe7a94cd5dc87d542335bcf04176365753d8681556f91ff5f77c5b22a6a36b
|
|
4
|
+
data.tar.gz: 402b24959d4f97450766f8ad8997f2deada0590ee028b6df57cf406b6ecc8854
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0644d563f5beb02f0c3b3bef7945acc5d5f90cc91ba4ac1daff512587d1b739be2cbfca49fd1572b493ed4feeaebbcc3c7d1a4867edb72f103759f18a1eb2340
|
|
7
|
+
data.tar.gz: 5cb6884d8103d48aa792eca7c61eca59581aa103607be62c5580b458ac047d6f982ac81991f512d4943f3f0062db0e60fcdb085289ac8a25529e433cf4f6169d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.3.0 (2025-11-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added LogSettings and LinkAttribute fields to external links
|
|
8
|
+
|
|
9
|
+
1.2.0 (2025-10-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - RTB Fabric documentation update.
|
|
13
|
+
|
|
4
14
|
1.1.0 (2025-10-24)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.3.0
|
|
@@ -476,11 +476,11 @@ module Aws::RTBFabric
|
|
|
476
476
|
|
|
477
477
|
# @!group API Operations
|
|
478
478
|
|
|
479
|
-
# Accepts a link request between
|
|
479
|
+
# Accepts a link request between gateways.
|
|
480
480
|
#
|
|
481
|
-
# When a requester
|
|
482
|
-
#
|
|
483
|
-
#
|
|
481
|
+
# When a requester gateway requests to link with a responder gateway,
|
|
482
|
+
# the responder can use this operation to accept the link request and
|
|
483
|
+
# establish the connection.
|
|
484
484
|
#
|
|
485
485
|
# @option params [required, String] :gateway_id
|
|
486
486
|
# The unique identifier of the gateway.
|
|
@@ -639,6 +639,9 @@ module Aws::RTBFabric
|
|
|
639
639
|
# @option params [Types::LinkAttributes] :attributes
|
|
640
640
|
# Attributes of the link.
|
|
641
641
|
#
|
|
642
|
+
# @option params [required, Types::LinkLogSettings] :log_settings
|
|
643
|
+
# Describes the settings for a link log.
|
|
644
|
+
#
|
|
642
645
|
# @option params [Hash<String,String>] :tags
|
|
643
646
|
# A map of the key-value pairs of the tag or tags to assign to the
|
|
644
647
|
# resource.
|
|
@@ -658,6 +661,14 @@ module Aws::RTBFabric
|
|
|
658
661
|
# resp = client.create_inbound_external_link({
|
|
659
662
|
# client_token: "randomClientToken",
|
|
660
663
|
# gateway_id: "rtb-gw-12345678",
|
|
664
|
+
# log_settings: {
|
|
665
|
+
# application_logs: {
|
|
666
|
+
# sampling: {
|
|
667
|
+
# error_log: 100.0,
|
|
668
|
+
# filter_log: 0.0,
|
|
669
|
+
# },
|
|
670
|
+
# },
|
|
671
|
+
# },
|
|
661
672
|
# })
|
|
662
673
|
#
|
|
663
674
|
# resp.to_h outputs the following:
|
|
@@ -684,6 +695,14 @@ module Aws::RTBFabric
|
|
|
684
695
|
# ],
|
|
685
696
|
# customer_provided_id: "CustomerProvidedId",
|
|
686
697
|
# },
|
|
698
|
+
# log_settings: { # required
|
|
699
|
+
# application_logs: { # required
|
|
700
|
+
# sampling: { # required
|
|
701
|
+
# error_log: 1.0, # required
|
|
702
|
+
# filter_log: 1.0, # required
|
|
703
|
+
# },
|
|
704
|
+
# },
|
|
705
|
+
# },
|
|
687
706
|
# tags: {
|
|
688
707
|
# "TagKey" => "TagValue",
|
|
689
708
|
# },
|
|
@@ -705,10 +724,10 @@ module Aws::RTBFabric
|
|
|
705
724
|
req.send_request(options)
|
|
706
725
|
end
|
|
707
726
|
|
|
708
|
-
# Creates a new link between
|
|
727
|
+
# Creates a new link between gateways.
|
|
709
728
|
#
|
|
710
|
-
# Establishes a connection that allows
|
|
711
|
-
#
|
|
729
|
+
# Establishes a connection that allows gateways to communicate and
|
|
730
|
+
# exchange bid requests and responses.
|
|
712
731
|
#
|
|
713
732
|
# @option params [required, String] :gateway_id
|
|
714
733
|
# The unique identifier of the gateway.
|
|
@@ -877,9 +896,15 @@ module Aws::RTBFabric
|
|
|
877
896
|
# @option params [required, String] :gateway_id
|
|
878
897
|
# The unique identifier of the gateway.
|
|
879
898
|
#
|
|
899
|
+
# @option params [Types::LinkAttributes] :attributes
|
|
900
|
+
# Describes the attributes of a link.
|
|
901
|
+
#
|
|
880
902
|
# @option params [required, String] :public_endpoint
|
|
881
903
|
# The public endpoint of the link.
|
|
882
904
|
#
|
|
905
|
+
# @option params [required, Types::LinkLogSettings] :log_settings
|
|
906
|
+
# Describes the settings for a link log.
|
|
907
|
+
#
|
|
883
908
|
# @option params [Hash<String,String>] :tags
|
|
884
909
|
# A map of the key-value pairs of the tag or tags to assign to the
|
|
885
910
|
# resource.
|
|
@@ -898,6 +923,14 @@ module Aws::RTBFabric
|
|
|
898
923
|
# resp = client.create_outbound_external_link({
|
|
899
924
|
# client_token: "12345678-1234-1234-1234-123456789012",
|
|
900
925
|
# gateway_id: "rtb-gw-12345678",
|
|
926
|
+
# log_settings: {
|
|
927
|
+
# application_logs: {
|
|
928
|
+
# sampling: {
|
|
929
|
+
# error_log: 100.0,
|
|
930
|
+
# filter_log: 0.0,
|
|
931
|
+
# },
|
|
932
|
+
# },
|
|
933
|
+
# },
|
|
901
934
|
# public_endpoint: "https://external-responder.example.com",
|
|
902
935
|
# })
|
|
903
936
|
#
|
|
@@ -913,7 +946,26 @@ module Aws::RTBFabric
|
|
|
913
946
|
# resp = client.create_outbound_external_link({
|
|
914
947
|
# client_token: "String", # required
|
|
915
948
|
# gateway_id: "GatewayId", # required
|
|
949
|
+
# attributes: {
|
|
950
|
+
# responder_error_masking: [
|
|
951
|
+
# {
|
|
952
|
+
# http_code: "ResponderErrorMaskingForHttpCodeHttpCodeString", # required
|
|
953
|
+
# action: "NO_BID", # required, accepts NO_BID, PASSTHROUGH
|
|
954
|
+
# logging_types: ["NONE"], # required, accepts NONE, METRIC, RESPONSE
|
|
955
|
+
# response_logging_percentage: 1.0,
|
|
956
|
+
# },
|
|
957
|
+
# ],
|
|
958
|
+
# customer_provided_id: "CustomerProvidedId",
|
|
959
|
+
# },
|
|
916
960
|
# public_endpoint: "URL", # required
|
|
961
|
+
# log_settings: { # required
|
|
962
|
+
# application_logs: { # required
|
|
963
|
+
# sampling: { # required
|
|
964
|
+
# error_log: 1.0, # required
|
|
965
|
+
# filter_log: 1.0, # required
|
|
966
|
+
# },
|
|
967
|
+
# },
|
|
968
|
+
# },
|
|
917
969
|
# tags: {
|
|
918
970
|
# "TagKey" => "TagValue",
|
|
919
971
|
# },
|
|
@@ -1019,6 +1071,8 @@ module Aws::RTBFabric
|
|
|
1019
1071
|
|
|
1020
1072
|
# Creates a responder gateway.
|
|
1021
1073
|
#
|
|
1074
|
+
# A domain name or managed endpoint is required.
|
|
1075
|
+
#
|
|
1022
1076
|
# @option params [required, String] :vpc_id
|
|
1023
1077
|
# The unique identifier of the Virtual Private Cloud (VPC).
|
|
1024
1078
|
#
|
|
@@ -1184,10 +1238,10 @@ module Aws::RTBFabric
|
|
|
1184
1238
|
req.send_request(options)
|
|
1185
1239
|
end
|
|
1186
1240
|
|
|
1187
|
-
# Deletes a link between
|
|
1241
|
+
# Deletes a link between gateways.
|
|
1188
1242
|
#
|
|
1189
|
-
# Permanently removes the connection between
|
|
1190
|
-
#
|
|
1243
|
+
# Permanently removes the connection between gateways. This action
|
|
1244
|
+
# cannot be undone.
|
|
1191
1245
|
#
|
|
1192
1246
|
# @option params [required, String] :gateway_id
|
|
1193
1247
|
# The unique identifier of the gateway.
|
|
@@ -1397,6 +1451,7 @@ module Aws::RTBFabric
|
|
|
1397
1451
|
# * {Types::GetInboundExternalLinkResponse#created_at #created_at} => Time
|
|
1398
1452
|
# * {Types::GetInboundExternalLinkResponse#updated_at #updated_at} => Time
|
|
1399
1453
|
# * {Types::GetInboundExternalLinkResponse#tags #tags} => Hash<String,String>
|
|
1454
|
+
# * {Types::GetInboundExternalLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
1400
1455
|
#
|
|
1401
1456
|
#
|
|
1402
1457
|
# @example Example: Get inbound external link details
|
|
@@ -1480,6 +1535,8 @@ module Aws::RTBFabric
|
|
|
1480
1535
|
# resp.updated_at #=> Time
|
|
1481
1536
|
# resp.tags #=> Hash
|
|
1482
1537
|
# resp.tags["TagKey"] #=> String
|
|
1538
|
+
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
1539
|
+
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
1483
1540
|
#
|
|
1484
1541
|
#
|
|
1485
1542
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -1495,10 +1552,10 @@ module Aws::RTBFabric
|
|
|
1495
1552
|
req.send_request(options)
|
|
1496
1553
|
end
|
|
1497
1554
|
|
|
1498
|
-
# Retrieves information about a link between
|
|
1555
|
+
# Retrieves information about a link between gateways.
|
|
1499
1556
|
#
|
|
1500
1557
|
# Returns detailed information about the link configuration, status, and
|
|
1501
|
-
# associated
|
|
1558
|
+
# associated gateways.
|
|
1502
1559
|
#
|
|
1503
1560
|
# @option params [required, String] :gateway_id
|
|
1504
1561
|
# The unique identifier of the gateway.
|
|
@@ -1639,6 +1696,7 @@ module Aws::RTBFabric
|
|
|
1639
1696
|
# * {Types::GetOutboundExternalLinkResponse#created_at #created_at} => Time
|
|
1640
1697
|
# * {Types::GetOutboundExternalLinkResponse#updated_at #updated_at} => Time
|
|
1641
1698
|
# * {Types::GetOutboundExternalLinkResponse#tags #tags} => Hash<String,String>
|
|
1699
|
+
# * {Types::GetOutboundExternalLinkResponse#log_settings #log_settings} => Types::LinkLogSettings
|
|
1642
1700
|
#
|
|
1643
1701
|
#
|
|
1644
1702
|
# @example Example: Get outbound external link details
|
|
@@ -1677,6 +1735,8 @@ module Aws::RTBFabric
|
|
|
1677
1735
|
# resp.updated_at #=> Time
|
|
1678
1736
|
# resp.tags #=> Hash
|
|
1679
1737
|
# resp.tags["TagKey"] #=> String
|
|
1738
|
+
# resp.log_settings.application_logs.sampling.error_log #=> Float
|
|
1739
|
+
# resp.log_settings.application_logs.sampling.filter_log #=> Float
|
|
1680
1740
|
#
|
|
1681
1741
|
#
|
|
1682
1742
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -1889,10 +1949,10 @@ module Aws::RTBFabric
|
|
|
1889
1949
|
req.send_request(options)
|
|
1890
1950
|
end
|
|
1891
1951
|
|
|
1892
|
-
# Lists links associated with
|
|
1952
|
+
# Lists links associated with gateways.
|
|
1893
1953
|
#
|
|
1894
|
-
# Returns a list of all links for the specified
|
|
1895
|
-
#
|
|
1954
|
+
# Returns a list of all links for the specified gateways, including
|
|
1955
|
+
# their status and configuration details.
|
|
1896
1956
|
#
|
|
1897
1957
|
# @option params [required, String] :gateway_id
|
|
1898
1958
|
# The unique identifier of the gateway.
|
|
@@ -2228,11 +2288,10 @@ module Aws::RTBFabric
|
|
|
2228
2288
|
req.send_request(options)
|
|
2229
2289
|
end
|
|
2230
2290
|
|
|
2231
|
-
# Rejects a link request between
|
|
2291
|
+
# Rejects a link request between gateways.
|
|
2232
2292
|
#
|
|
2233
|
-
# When a requester
|
|
2234
|
-
#
|
|
2235
|
-
# request.
|
|
2293
|
+
# When a requester gateway requests to link with a responder gateway,
|
|
2294
|
+
# the responder can use this operation to decline the link request.
|
|
2236
2295
|
#
|
|
2237
2296
|
# @option params [required, String] :gateway_id
|
|
2238
2297
|
# The unique identifier of the gateway.
|
|
@@ -2434,7 +2493,7 @@ module Aws::RTBFabric
|
|
|
2434
2493
|
req.send_request(options)
|
|
2435
2494
|
end
|
|
2436
2495
|
|
|
2437
|
-
# Updates the configuration of a link between
|
|
2496
|
+
# Updates the configuration of a link between gateways.
|
|
2438
2497
|
#
|
|
2439
2498
|
# Allows you to modify settings and parameters for an existing link.
|
|
2440
2499
|
#
|
|
@@ -2795,7 +2854,7 @@ module Aws::RTBFabric
|
|
|
2795
2854
|
tracer: tracer
|
|
2796
2855
|
)
|
|
2797
2856
|
context[:gem_name] = 'aws-sdk-rtbfabric'
|
|
2798
|
-
context[:gem_version] = '1.
|
|
2857
|
+
context[:gem_version] = '1.3.0'
|
|
2799
2858
|
Seahorse::Client::Request.new(handlers, context)
|
|
2800
2859
|
end
|
|
2801
2860
|
|
|
@@ -213,6 +213,7 @@ module Aws::RTBFabric
|
|
|
213
213
|
CreateInboundExternalLinkRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
214
214
|
CreateInboundExternalLinkRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: GatewayId, required: true, location: "uri", location_name: "gatewayId"))
|
|
215
215
|
CreateInboundExternalLinkRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: LinkAttributes, location_name: "attributes"))
|
|
216
|
+
CreateInboundExternalLinkRequest.add_member(:log_settings, Shapes::ShapeRef.new(shape: LinkLogSettings, required: true, location_name: "logSettings"))
|
|
216
217
|
CreateInboundExternalLinkRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
217
218
|
CreateInboundExternalLinkRequest.struct_class = Types::CreateInboundExternalLinkRequest
|
|
218
219
|
|
|
@@ -245,7 +246,9 @@ module Aws::RTBFabric
|
|
|
245
246
|
|
|
246
247
|
CreateOutboundExternalLinkRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
247
248
|
CreateOutboundExternalLinkRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: GatewayId, required: true, location: "uri", location_name: "gatewayId"))
|
|
249
|
+
CreateOutboundExternalLinkRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: LinkAttributes, location_name: "attributes"))
|
|
248
250
|
CreateOutboundExternalLinkRequest.add_member(:public_endpoint, Shapes::ShapeRef.new(shape: URL, required: true, location_name: "publicEndpoint"))
|
|
251
|
+
CreateOutboundExternalLinkRequest.add_member(:log_settings, Shapes::ShapeRef.new(shape: LinkLogSettings, required: true, location_name: "logSettings"))
|
|
249
252
|
CreateOutboundExternalLinkRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
250
253
|
CreateOutboundExternalLinkRequest.struct_class = Types::CreateOutboundExternalLinkRequest
|
|
251
254
|
|
|
@@ -369,6 +372,7 @@ module Aws::RTBFabric
|
|
|
369
372
|
GetInboundExternalLinkResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
370
373
|
GetInboundExternalLinkResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
|
371
374
|
GetInboundExternalLinkResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
375
|
+
GetInboundExternalLinkResponse.add_member(:log_settings, Shapes::ShapeRef.new(shape: LinkLogSettings, location_name: "logSettings"))
|
|
372
376
|
GetInboundExternalLinkResponse.struct_class = Types::GetInboundExternalLinkResponse
|
|
373
377
|
|
|
374
378
|
GetLinkRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: GatewayId, required: true, location: "uri", location_name: "gatewayId"))
|
|
@@ -400,6 +404,7 @@ module Aws::RTBFabric
|
|
|
400
404
|
GetOutboundExternalLinkResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
401
405
|
GetOutboundExternalLinkResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
|
402
406
|
GetOutboundExternalLinkResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
407
|
+
GetOutboundExternalLinkResponse.add_member(:log_settings, Shapes::ShapeRef.new(shape: LinkLogSettings, location_name: "logSettings"))
|
|
403
408
|
GetOutboundExternalLinkResponse.struct_class = Types::GetOutboundExternalLinkResponse
|
|
404
409
|
|
|
405
410
|
GetRequesterGatewayRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: GatewayId, required: true, location: "uri", location_name: "gatewayId"))
|
|
@@ -185,6 +185,10 @@ module Aws::RTBFabric
|
|
|
185
185
|
# Attributes of the link.
|
|
186
186
|
# @return [Types::LinkAttributes]
|
|
187
187
|
#
|
|
188
|
+
# @!attribute [rw] log_settings
|
|
189
|
+
# Describes the settings for a link log.
|
|
190
|
+
# @return [Types::LinkLogSettings]
|
|
191
|
+
#
|
|
188
192
|
# @!attribute [rw] tags
|
|
189
193
|
# A map of the key-value pairs of the tag or tags to assign to the
|
|
190
194
|
# resource.
|
|
@@ -196,6 +200,7 @@ module Aws::RTBFabric
|
|
|
196
200
|
:client_token,
|
|
197
201
|
:gateway_id,
|
|
198
202
|
:attributes,
|
|
203
|
+
:log_settings,
|
|
199
204
|
:tags)
|
|
200
205
|
SENSITIVE = []
|
|
201
206
|
include Aws::Structure
|
|
@@ -339,10 +344,18 @@ module Aws::RTBFabric
|
|
|
339
344
|
# The unique identifier of the gateway.
|
|
340
345
|
# @return [String]
|
|
341
346
|
#
|
|
347
|
+
# @!attribute [rw] attributes
|
|
348
|
+
# Describes the attributes of a link.
|
|
349
|
+
# @return [Types::LinkAttributes]
|
|
350
|
+
#
|
|
342
351
|
# @!attribute [rw] public_endpoint
|
|
343
352
|
# The public endpoint of the link.
|
|
344
353
|
# @return [String]
|
|
345
354
|
#
|
|
355
|
+
# @!attribute [rw] log_settings
|
|
356
|
+
# Describes the settings for a link log.
|
|
357
|
+
# @return [Types::LinkLogSettings]
|
|
358
|
+
#
|
|
346
359
|
# @!attribute [rw] tags
|
|
347
360
|
# A map of the key-value pairs of the tag or tags to assign to the
|
|
348
361
|
# resource.
|
|
@@ -353,7 +366,9 @@ module Aws::RTBFabric
|
|
|
353
366
|
class CreateOutboundExternalLinkRequest < Struct.new(
|
|
354
367
|
:client_token,
|
|
355
368
|
:gateway_id,
|
|
369
|
+
:attributes,
|
|
356
370
|
:public_endpoint,
|
|
371
|
+
:log_settings,
|
|
357
372
|
:tags)
|
|
358
373
|
SENSITIVE = []
|
|
359
374
|
include Aws::Structure
|
|
@@ -818,6 +833,10 @@ module Aws::RTBFabric
|
|
|
818
833
|
# specified resource.
|
|
819
834
|
# @return [Hash<String,String>]
|
|
820
835
|
#
|
|
836
|
+
# @!attribute [rw] log_settings
|
|
837
|
+
# Describes the settings for a link log.
|
|
838
|
+
# @return [Types::LinkLogSettings]
|
|
839
|
+
#
|
|
821
840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/GetInboundExternalLinkResponse AWS API Documentation
|
|
822
841
|
#
|
|
823
842
|
class GetInboundExternalLinkResponse < Struct.new(
|
|
@@ -830,7 +849,8 @@ module Aws::RTBFabric
|
|
|
830
849
|
:attributes,
|
|
831
850
|
:created_at,
|
|
832
851
|
:updated_at,
|
|
833
|
-
:tags
|
|
852
|
+
:tags,
|
|
853
|
+
:log_settings)
|
|
834
854
|
SENSITIVE = []
|
|
835
855
|
include Aws::Structure
|
|
836
856
|
end
|
|
@@ -966,6 +986,10 @@ module Aws::RTBFabric
|
|
|
966
986
|
# specified resource.
|
|
967
987
|
# @return [Hash<String,String>]
|
|
968
988
|
#
|
|
989
|
+
# @!attribute [rw] log_settings
|
|
990
|
+
# Describes the settings for a link log.
|
|
991
|
+
# @return [Types::LinkLogSettings]
|
|
992
|
+
#
|
|
969
993
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/GetOutboundExternalLinkResponse AWS API Documentation
|
|
970
994
|
#
|
|
971
995
|
class GetOutboundExternalLinkResponse < Struct.new(
|
|
@@ -975,7 +999,8 @@ module Aws::RTBFabric
|
|
|
975
999
|
:public_endpoint,
|
|
976
1000
|
:created_at,
|
|
977
1001
|
:updated_at,
|
|
978
|
-
:tags
|
|
1002
|
+
:tags,
|
|
1003
|
+
:log_settings)
|
|
979
1004
|
SENSITIVE = []
|
|
980
1005
|
include Aws::Structure
|
|
981
1006
|
end
|
data/lib/aws-sdk-rtbfabric.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -139,6 +139,14 @@ module Aws
|
|
|
139
139
|
]?,
|
|
140
140
|
customer_provided_id: ::String?
|
|
141
141
|
},
|
|
142
|
+
log_settings: {
|
|
143
|
+
application_logs: {
|
|
144
|
+
sampling: {
|
|
145
|
+
error_log: ::Float,
|
|
146
|
+
filter_log: ::Float
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
142
150
|
?tags: Hash[::String, ::String]
|
|
143
151
|
) -> _CreateInboundExternalLinkResponseSuccess
|
|
144
152
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInboundExternalLinkResponseSuccess
|
|
@@ -195,7 +203,26 @@ module Aws
|
|
|
195
203
|
def create_outbound_external_link: (
|
|
196
204
|
client_token: ::String,
|
|
197
205
|
gateway_id: ::String,
|
|
206
|
+
?attributes: {
|
|
207
|
+
responder_error_masking: Array[
|
|
208
|
+
{
|
|
209
|
+
http_code: ::String,
|
|
210
|
+
action: ("NO_BID" | "PASSTHROUGH"),
|
|
211
|
+
logging_types: Array[("NONE" | "METRIC" | "RESPONSE")],
|
|
212
|
+
response_logging_percentage: ::Float?
|
|
213
|
+
},
|
|
214
|
+
]?,
|
|
215
|
+
customer_provided_id: ::String?
|
|
216
|
+
},
|
|
198
217
|
public_endpoint: ::String,
|
|
218
|
+
log_settings: {
|
|
219
|
+
application_logs: {
|
|
220
|
+
sampling: {
|
|
221
|
+
error_log: ::Float,
|
|
222
|
+
filter_log: ::Float
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
},
|
|
199
226
|
?tags: Hash[::String, ::String]
|
|
200
227
|
) -> _CreateOutboundExternalLinkResponseSuccess
|
|
201
228
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOutboundExternalLinkResponseSuccess
|
|
@@ -323,6 +350,7 @@ module Aws
|
|
|
323
350
|
def created_at: () -> ::Time
|
|
324
351
|
def updated_at: () -> ::Time
|
|
325
352
|
def tags: () -> ::Hash[::String, ::String]
|
|
353
|
+
def log_settings: () -> Types::LinkLogSettings
|
|
326
354
|
end
|
|
327
355
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RTBFabric/Client.html#get_inbound_external_link-instance_method
|
|
328
356
|
def get_inbound_external_link: (
|
|
@@ -362,6 +390,7 @@ module Aws
|
|
|
362
390
|
def created_at: () -> ::Time
|
|
363
391
|
def updated_at: () -> ::Time
|
|
364
392
|
def tags: () -> ::Hash[::String, ::String]
|
|
393
|
+
def log_settings: () -> Types::LinkLogSettings
|
|
365
394
|
end
|
|
366
395
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RTBFabric/Client.html#get_outbound_external_link-instance_method
|
|
367
396
|
def get_outbound_external_link: (
|
data/sig/types.rbs
CHANGED
|
@@ -64,6 +64,7 @@ module Aws::RTBFabric
|
|
|
64
64
|
attr_accessor client_token: ::String
|
|
65
65
|
attr_accessor gateway_id: ::String
|
|
66
66
|
attr_accessor attributes: Types::LinkAttributes
|
|
67
|
+
attr_accessor log_settings: Types::LinkLogSettings
|
|
67
68
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
68
69
|
SENSITIVE: []
|
|
69
70
|
end
|
|
@@ -104,7 +105,9 @@ module Aws::RTBFabric
|
|
|
104
105
|
class CreateOutboundExternalLinkRequest
|
|
105
106
|
attr_accessor client_token: ::String
|
|
106
107
|
attr_accessor gateway_id: ::String
|
|
108
|
+
attr_accessor attributes: Types::LinkAttributes
|
|
107
109
|
attr_accessor public_endpoint: ::String
|
|
110
|
+
attr_accessor log_settings: Types::LinkLogSettings
|
|
108
111
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
109
112
|
SENSITIVE: []
|
|
110
113
|
end
|
|
@@ -250,6 +253,7 @@ module Aws::RTBFabric
|
|
|
250
253
|
attr_accessor created_at: ::Time
|
|
251
254
|
attr_accessor updated_at: ::Time
|
|
252
255
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
256
|
+
attr_accessor log_settings: Types::LinkLogSettings
|
|
253
257
|
SENSITIVE: []
|
|
254
258
|
end
|
|
255
259
|
|
|
@@ -289,6 +293,7 @@ module Aws::RTBFabric
|
|
|
289
293
|
attr_accessor created_at: ::Time
|
|
290
294
|
attr_accessor updated_at: ::Time
|
|
291
295
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
296
|
+
attr_accessor log_settings: Types::LinkLogSettings
|
|
292
297
|
SENSITIVE: []
|
|
293
298
|
end
|
|
294
299
|
|