aws-sdk-rtbfabric 1.11.0 → 1.12.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e81489e37c25162d45f9271ac5740c9360b3ed996e0138f00a3a7db8940b481c
4
- data.tar.gz: ba23c72f373ce3554ff15703c2065c05f1f23a490ea9f13400a1a3ae622183bf
3
+ metadata.gz: '0298b0aafa1b3055bb72b0af9e29e026c3e78dcdbbb01b6bf5618009151faf71'
4
+ data.tar.gz: 5f8339fa869e5ab940043fe8ff149f91f43c48ae623a71c25110f324d5d31349
5
5
  SHA512:
6
- metadata.gz: 1fea4d340e42cad63eeb2950a13be1b95b27c6cbbc9396ece8788cf0bb92a77a8af51bd39b80e0d4a57ea4f2a2dc13d456bfd1400528cb9499d0718b344ad5b4
7
- data.tar.gz: bdaf7cb8dc7875ef0a4de3112b980dc434f98eaeeefc4d8082d509afb0f0d74d7bc0c61c3c54b32829eb7b9d7b0340efca38374da3eed65d7948e4d58d789e1c
6
+ metadata.gz: 2d34cbdf27712438538814ccf627c92b86ce42abce331c2ebb8f662103b0ba4c63b12815ad6fda7e494445cf5a804aea293222b7ac6a315579fd53aa25d5fa62
7
+ data.tar.gz: f3909dbc63066f2bd59a32f91024f4eaa1531a9022653c623d66db4b0c7b6e537e88e1bf07991719be0e38ea58230c021bd9a3aceb9b125f05d254f3b194b40b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - This release is to deprecate 'inboundLinksCount' field in GetResponderGateway response and introduce the new field 'linksRequestedCount' to replace it.
8
+
4
9
  1.11.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.12.0
@@ -2426,6 +2426,7 @@ module Aws::RTBFabric
2426
2426
  # * {Types::GetResponderGatewayResponse#active_links_count #active_links_count} => Integer
2427
2427
  # * {Types::GetResponderGatewayResponse#total_links_count #total_links_count} => Integer
2428
2428
  # * {Types::GetResponderGatewayResponse#inbound_links_count #inbound_links_count} => Integer
2429
+ # * {Types::GetResponderGatewayResponse#links_requested_count #links_requested_count} => Integer
2429
2430
  # * {Types::GetResponderGatewayResponse#gateway_type #gateway_type} => String
2430
2431
  # * {Types::GetResponderGatewayResponse#external_inbound_endpoint #external_inbound_endpoint} => String
2431
2432
  #
@@ -2445,6 +2446,7 @@ module Aws::RTBFabric
2445
2446
  # description: "My responder gateway",
2446
2447
  # gateway_id: "rtb-gw-12345678",
2447
2448
  # inbound_links_count: 3,
2449
+ # links_requested_count: 3,
2448
2450
  # port: 443,
2449
2451
  # protocol: "HTTPS",
2450
2452
  # security_group_ids: [
@@ -2507,6 +2509,7 @@ module Aws::RTBFabric
2507
2509
  # resp.active_links_count #=> Integer
2508
2510
  # resp.total_links_count #=> Integer
2509
2511
  # resp.inbound_links_count #=> Integer
2512
+ # resp.links_requested_count #=> Integer
2510
2513
  # resp.gateway_type #=> String, one of "EXTERNAL", "INTERNAL"
2511
2514
  # resp.external_inbound_endpoint #=> String
2512
2515
  #
@@ -3712,7 +3715,7 @@ module Aws::RTBFabric
3712
3715
  tracer: tracer
3713
3716
  )
3714
3717
  context[:gem_name] = 'aws-sdk-rtbfabric'
3715
- context[:gem_version] = '1.11.0'
3718
+ context[:gem_version] = '1.12.0'
3716
3719
  Seahorse::Client::Request.new(handlers, context)
3717
3720
  end
3718
3721
 
@@ -596,7 +596,8 @@ module Aws::RTBFabric
596
596
  GetResponderGatewayResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
597
597
  GetResponderGatewayResponse.add_member(:active_links_count, Shapes::ShapeRef.new(shape: Integer, location_name: "activeLinksCount"))
598
598
  GetResponderGatewayResponse.add_member(:total_links_count, Shapes::ShapeRef.new(shape: Integer, location_name: "totalLinksCount"))
599
- GetResponderGatewayResponse.add_member(:inbound_links_count, Shapes::ShapeRef.new(shape: Integer, location_name: "inboundLinksCount"))
599
+ GetResponderGatewayResponse.add_member(:inbound_links_count, Shapes::ShapeRef.new(shape: Integer, deprecated: true, location_name: "inboundLinksCount", metadata: {"deprecatedMessage" => "Use linksRequestedCount instead", "deprecatedSince" => "2026-05-11"}))
600
+ GetResponderGatewayResponse.add_member(:links_requested_count, Shapes::ShapeRef.new(shape: Integer, location_name: "linksRequestedCount"))
600
601
  GetResponderGatewayResponse.add_member(:gateway_type, Shapes::ShapeRef.new(shape: GatewayType, location_name: "gatewayType"))
601
602
  GetResponderGatewayResponse.add_member(:external_inbound_endpoint, Shapes::ShapeRef.new(shape: DomainName, location_name: "externalInboundEndpoint"))
602
603
  GetResponderGatewayResponse.struct_class = Types::GetResponderGatewayResponse
@@ -1641,7 +1641,12 @@ module Aws::RTBFabric
1641
1641
  # @return [Integer]
1642
1642
  #
1643
1643
  # @!attribute [rw] inbound_links_count
1644
- # The count of inbound links for the responder gateway.
1644
+ # Deprecated. Use 'linksRequestedCount' instead.
1645
+ # @return [Integer]
1646
+ #
1647
+ # @!attribute [rw] links_requested_count
1648
+ # The count of requested links waiting for the responder gateway to
1649
+ # accept or reject.
1645
1650
  # @return [Integer]
1646
1651
  #
1647
1652
  # @!attribute [rw] gateway_type
@@ -1673,6 +1678,7 @@ module Aws::RTBFabric
1673
1678
  :active_links_count,
1674
1679
  :total_links_count,
1675
1680
  :inbound_links_count,
1681
+ :links_requested_count,
1676
1682
  :gateway_type,
1677
1683
  :external_inbound_endpoint)
1678
1684
  SENSITIVE = []
@@ -1837,7 +1843,7 @@ module Aws::RTBFabric
1837
1843
  include Aws::Structure
1838
1844
  end
1839
1845
 
1840
- # Summary of a routing rule for list responses
1846
+ # A summary of a link routing rule.
1841
1847
  #
1842
1848
  # @!attribute [rw] rule_id
1843
1849
  # The unique identifier of the routing rule.
@@ -2418,14 +2424,17 @@ module Aws::RTBFabric
2418
2424
  include Aws::Structure
2419
2425
  end
2420
2426
 
2421
- # Key-value pair for query string matching
2427
+ # A key-value pair for query string matching in a routing rule
2428
+ # condition.
2422
2429
  #
2423
2430
  # @!attribute [rw] key
2424
- # RFC 3986 unreserved characters
2431
+ # The key of the query string parameter to match. Must contain only
2432
+ # RFC 3986 unreserved characters.
2425
2433
  # @return [String]
2426
2434
  #
2427
2435
  # @!attribute [rw] value
2428
- # RFC 3986 unreserved characters
2436
+ # The value of the query string parameter to match. Must contain only
2437
+ # RFC 3986 unreserved characters.
2429
2438
  # @return [String]
2430
2439
  #
2431
2440
  # @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/QueryStringKeyValuePair AWS API Documentation
@@ -2578,34 +2587,36 @@ module Aws::RTBFabric
2578
2587
  include Aws::Structure
2579
2588
  end
2580
2589
 
2581
- # Conditions bag for a routing rule. All non-null fields must match (AND
2582
- # logic). At least one field must be set (enforced by CP).
2590
+ # The conditions for a routing rule. All specified fields must match for
2591
+ # the rule to apply (AND logic). At least one condition field must be
2592
+ # set.
2583
2593
  #
2584
2594
  # @!attribute [rw] host_header
2585
- # Exact host match RFC 3986 unreserved characters
2595
+ # The exact host header value to match.
2586
2596
  # @return [String]
2587
2597
  #
2588
2598
  # @!attribute [rw] host_header_wildcard
2589
- # Wildcard host pattern (e.g., *.example.com) RFC 3986 unreserved
2590
- # plus *
2599
+ # A wildcard pattern for host header matching (for example,
2600
+ # `*.example.com`).
2591
2601
  # @return [String]
2592
2602
  #
2593
2603
  # @!attribute [rw] path_prefix
2594
- # Path prefix matching strict starts-with, no wildcard (preferred
2595
- # for new rules). Must start with /; RFC 3986 unreserved plus /
2604
+ # The path prefix to match. The request path must start with this
2605
+ # value. Must start with `/`.
2596
2606
  # @return [String]
2597
2607
  #
2598
2608
  # @!attribute [rw] path_exact
2599
- # Exact path match must start with /; RFC 3986 unreserved plus /
2609
+ # The exact path to match. Must start with `/`.
2600
2610
  # @return [String]
2601
2611
  #
2602
2612
  # @!attribute [rw] query_string_equals
2603
- # Query string key=value pair match (single pair)
2613
+ # A query string key-value pair that must be present and match
2614
+ # exactly.
2604
2615
  # @return [Types::QueryStringKeyValuePair]
2605
2616
  #
2606
2617
  # @!attribute [rw] query_string_exists
2607
- # Query string key presence check (any value accepted) — RFC 3986
2608
- # unreserved characters
2618
+ # A query string key that must be present in the request (any value is
2619
+ # accepted).
2609
2620
  # @return [String]
2610
2621
  #
2611
2622
  # @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/RuleCondition AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::RTBFabric
55
55
  autoload :EndpointProvider, 'aws-sdk-rtbfabric/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-rtbfabric/endpoints'
57
57
 
58
- GEM_VERSION = '1.11.0'
58
+ GEM_VERSION = '1.12.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -97,25 +97,8 @@ module Aws
97
97
  def accept_link: (
98
98
  gateway_id: ::String,
99
99
  link_id: ::String,
100
- ?attributes: {
101
- responder_error_masking: Array[
102
- {
103
- http_code: ::String,
104
- action: ("NO_BID" | "PASSTHROUGH"),
105
- logging_types: Array[("NONE" | "METRIC" | "RESPONSE")],
106
- response_logging_percentage: ::Float?
107
- },
108
- ]?,
109
- customer_provided_id: ::String?
110
- },
111
- log_settings: {
112
- application_logs: {
113
- sampling: {
114
- error_log: ::Float,
115
- filter_log: ::Float
116
- }
117
- }
118
- },
100
+ ?attributes: Params::link_attributes,
101
+ log_settings: Params::link_log_settings,
119
102
  ?timeout_in_millis: ::Integer
120
103
  ) -> _AcceptLinkResponseSuccess
121
104
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptLinkResponseSuccess
@@ -145,25 +128,8 @@ module Aws
145
128
  def create_inbound_external_link: (
146
129
  client_token: ::String,
147
130
  gateway_id: ::String,
148
- ?attributes: {
149
- responder_error_masking: Array[
150
- {
151
- http_code: ::String,
152
- action: ("NO_BID" | "PASSTHROUGH"),
153
- logging_types: Array[("NONE" | "METRIC" | "RESPONSE")],
154
- response_logging_percentage: ::Float?
155
- },
156
- ]?,
157
- customer_provided_id: ::String?
158
- },
159
- log_settings: {
160
- application_logs: {
161
- sampling: {
162
- error_log: ::Float,
163
- filter_log: ::Float
164
- }
165
- }
166
- },
131
+ ?attributes: Params::link_attributes,
132
+ log_settings: Params::link_log_settings,
167
133
  ?tags: Hash[::String, ::String]
168
134
  ) -> _CreateInboundExternalLinkResponseSuccess
169
135
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInboundExternalLinkResponseSuccess
@@ -188,27 +154,10 @@ module Aws
188
154
  def create_link: (
189
155
  gateway_id: ::String,
190
156
  peer_gateway_id: ::String,
191
- ?attributes: {
192
- responder_error_masking: Array[
193
- {
194
- http_code: ::String,
195
- action: ("NO_BID" | "PASSTHROUGH"),
196
- logging_types: Array[("NONE" | "METRIC" | "RESPONSE")],
197
- response_logging_percentage: ::Float?
198
- },
199
- ]?,
200
- customer_provided_id: ::String?
201
- },
157
+ ?attributes: Params::link_attributes,
202
158
  ?http_responder_allowed: bool,
203
159
  ?tags: Hash[::String, ::String],
204
- log_settings: {
205
- application_logs: {
206
- sampling: {
207
- error_log: ::Float,
208
- filter_log: ::Float
209
- }
210
- }
211
- },
160
+ log_settings: Params::link_log_settings,
212
161
  ?timeout_in_millis: ::Integer
213
162
  ) -> _CreateLinkResponseSuccess
214
163
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLinkResponseSuccess
@@ -225,17 +174,7 @@ module Aws
225
174
  gateway_id: ::String,
226
175
  link_id: ::String,
227
176
  priority: ::Integer,
228
- conditions: {
229
- host_header: ::String?,
230
- host_header_wildcard: ::String?,
231
- path_prefix: ::String?,
232
- path_exact: ::String?,
233
- query_string_equals: {
234
- key: ::String,
235
- value: ::String
236
- }?,
237
- query_string_exists: ::String?
238
- },
177
+ conditions: Params::rule_condition,
239
178
  ?tags: Hash[::String, ::String]
240
179
  ) -> _CreateLinkRoutingRuleResponseSuccess
241
180
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLinkRoutingRuleResponseSuccess
@@ -250,26 +189,9 @@ module Aws
250
189
  def create_outbound_external_link: (
251
190
  client_token: ::String,
252
191
  gateway_id: ::String,
253
- ?attributes: {
254
- responder_error_masking: Array[
255
- {
256
- http_code: ::String,
257
- action: ("NO_BID" | "PASSTHROUGH"),
258
- logging_types: Array[("NONE" | "METRIC" | "RESPONSE")],
259
- response_logging_percentage: ::Float?
260
- },
261
- ]?,
262
- customer_provided_id: ::String?
263
- },
192
+ ?attributes: Params::link_attributes,
264
193
  public_endpoint: ::String,
265
- log_settings: {
266
- application_logs: {
267
- sampling: {
268
- error_log: ::Float,
269
- filter_log: ::Float
270
- }
271
- }
272
- },
194
+ log_settings: Params::link_log_settings,
273
195
  ?tags: Hash[::String, ::String]
274
196
  ) -> _CreateOutboundExternalLinkResponseSuccess
275
197
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOutboundExternalLinkResponseSuccess
@@ -312,30 +234,7 @@ module Aws
312
234
  ?trust_store_configuration: {
313
235
  certificate_authority_certificates: Array[::String]
314
236
  },
315
- ?managed_endpoint_configuration: {
316
- auto_scaling_groups: {
317
- auto_scaling_group_names: Array[::String],
318
- role_arn: ::String,
319
- health_check_config: {
320
- port: ::Integer,
321
- path: ::String,
322
- protocol: ("HTTP" | "HTTPS")?,
323
- timeout_ms: ::Integer?,
324
- interval_seconds: ::Integer?,
325
- status_code_matcher: ::String?,
326
- healthy_threshold_count: ::Integer?,
327
- unhealthy_threshold_count: ::Integer?
328
- }?
329
- }?,
330
- eks_endpoints: {
331
- endpoints_resource_name: ::String,
332
- endpoints_resource_namespace: ::String,
333
- cluster_api_server_endpoint_uri: ::String,
334
- cluster_api_server_ca_certificate_chain: ::String,
335
- cluster_name: ::String,
336
- role_arn: ::String
337
- }?
338
- },
237
+ ?managed_endpoint_configuration: Params::managed_endpoint_configuration,
339
238
  client_token: ::String,
340
239
  ?description: ::String,
341
240
  ?tags: Hash[::String, ::String],
@@ -572,6 +471,7 @@ module Aws
572
471
  def active_links_count: () -> ::Integer
573
472
  def total_links_count: () -> ::Integer
574
473
  def inbound_links_count: () -> ::Integer
474
+ def links_requested_count: () -> ::Integer
575
475
  def gateway_type: () -> ("EXTERNAL" | "INTERNAL")
576
476
  def external_inbound_endpoint: () -> ::String
577
477
  end
@@ -706,14 +606,7 @@ module Aws
706
606
  def update_link: (
707
607
  gateway_id: ::String,
708
608
  link_id: ::String,
709
- ?log_settings: {
710
- application_logs: {
711
- sampling: {
712
- error_log: ::Float,
713
- filter_log: ::Float
714
- }
715
- }
716
- },
609
+ ?log_settings: Params::link_log_settings,
717
610
  ?timeout_in_millis: ::Integer
718
611
  ) -> _UpdateLinkResponseSuccess
719
612
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLinkResponseSuccess
@@ -748,9 +641,9 @@ module Aws
748
641
  {
749
642
  path: ::String,
750
643
  values: Array[::String]
751
- },
644
+ }
752
645
  ]
753
- },
646
+ }
754
647
  ],
755
648
  action: {
756
649
  no_bid: {
@@ -767,7 +660,7 @@ module Aws
767
660
  tps: ::Float?
768
661
  }?
769
662
  }?
770
- },
663
+ }
771
664
  ]
772
665
  ) -> _UpdateLinkModuleFlowResponseSuccess
773
666
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLinkModuleFlowResponseSuccess
@@ -784,17 +677,7 @@ module Aws
784
677
  link_id: ::String,
785
678
  rule_id: ::String,
786
679
  priority: ::Integer,
787
- conditions: {
788
- host_header: ::String?,
789
- host_header_wildcard: ::String?,
790
- path_prefix: ::String?,
791
- path_exact: ::String?,
792
- query_string_equals: {
793
- key: ::String,
794
- value: ::String
795
- }?,
796
- query_string_exists: ::String?
797
- }
680
+ conditions: Params::rule_condition
798
681
  ) -> _UpdateLinkRoutingRuleResponseSuccess
799
682
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLinkRoutingRuleResponseSuccess
800
683
 
@@ -827,30 +710,7 @@ module Aws
827
710
  ?trust_store_configuration: {
828
711
  certificate_authority_certificates: Array[::String]
829
712
  },
830
- ?managed_endpoint_configuration: {
831
- auto_scaling_groups: {
832
- auto_scaling_group_names: Array[::String],
833
- role_arn: ::String,
834
- health_check_config: {
835
- port: ::Integer,
836
- path: ::String,
837
- protocol: ("HTTP" | "HTTPS")?,
838
- timeout_ms: ::Integer?,
839
- interval_seconds: ::Integer?,
840
- status_code_matcher: ::String?,
841
- healthy_threshold_count: ::Integer?,
842
- unhealthy_threshold_count: ::Integer?
843
- }?
844
- }?,
845
- eks_endpoints: {
846
- endpoints_resource_name: ::String,
847
- endpoints_resource_namespace: ::String,
848
- cluster_api_server_endpoint_uri: ::String,
849
- cluster_api_server_ca_certificate_chain: ::String,
850
- cluster_name: ::String,
851
- role_arn: ::String
852
- }?
853
- },
713
+ ?managed_endpoint_configuration: Params::managed_endpoint_configuration,
854
714
  client_token: ::String,
855
715
  gateway_id: ::String,
856
716
  ?description: ::String
data/sig/params.rbs ADDED
@@ -0,0 +1,77 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module RTBFabric
10
+ module Params
11
+ type link_attributes = {
12
+ responder_error_masking: Array[
13
+ {
14
+ http_code: ::String,
15
+ action: ("NO_BID" | "PASSTHROUGH"),
16
+ logging_types: Array[("NONE" | "METRIC" | "RESPONSE")],
17
+ response_logging_percentage: ::Float?
18
+ }
19
+ ]?,
20
+ customer_provided_id: ::String?
21
+ }
22
+
23
+ type link_log_settings = {
24
+ application_logs: {
25
+ sampling: {
26
+ error_log: ::Float,
27
+ filter_log: ::Float
28
+ }
29
+ }
30
+ }
31
+
32
+ type rule_condition = {
33
+ host_header: ::String?,
34
+ host_header_wildcard: ::String?,
35
+ path_prefix: ::String?,
36
+ path_exact: ::String?,
37
+ query_string_equals: {
38
+ key: ::String,
39
+ value: ::String
40
+ }?,
41
+ query_string_exists: ::String?
42
+ }
43
+
44
+ type health_check_config = {
45
+ port: ::Integer,
46
+ path: ::String,
47
+ protocol: ("HTTP" | "HTTPS")?,
48
+ timeout_ms: ::Integer?,
49
+ interval_seconds: ::Integer?,
50
+ status_code_matcher: ::String?,
51
+ healthy_threshold_count: ::Integer?,
52
+ unhealthy_threshold_count: ::Integer?
53
+ }
54
+
55
+ type auto_scaling_groups_configuration = {
56
+ auto_scaling_group_names: Array[::String],
57
+ role_arn: ::String,
58
+ health_check_config: Params::health_check_config?
59
+ }
60
+
61
+ type eks_endpoints_configuration = {
62
+ endpoints_resource_name: ::String,
63
+ endpoints_resource_namespace: ::String,
64
+ cluster_api_server_endpoint_uri: ::String,
65
+ cluster_api_server_ca_certificate_chain: ::String,
66
+ cluster_name: ::String,
67
+ role_arn: ::String
68
+ }
69
+
70
+ type managed_endpoint_configuration = {
71
+ auto_scaling_groups: Params::auto_scaling_groups_configuration?,
72
+ eks_endpoints: Params::eks_endpoints_configuration?
73
+ }
74
+
75
+ end
76
+ end
77
+ end
data/sig/types.rbs CHANGED
@@ -461,6 +461,7 @@ module Aws::RTBFabric
461
461
  attr_accessor active_links_count: ::Integer
462
462
  attr_accessor total_links_count: ::Integer
463
463
  attr_accessor inbound_links_count: ::Integer
464
+ attr_accessor links_requested_count: ::Integer
464
465
  attr_accessor gateway_type: ("EXTERNAL" | "INTERNAL")
465
466
  attr_accessor external_inbound_endpoint: ::String
466
467
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rtbfabric
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-rtbfabric/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs