aws-sdk-globalaccelerator 1.56.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d01bf15bf32922350c29fdac0ff7f2f23e1b7941ea4688bf30f8f2d6f2115fa
4
- data.tar.gz: 16b68db376da3c5d0af3de4a045edb55915d2ff4e4cfc4c9ebff6008e24e7d1a
3
+ metadata.gz: 923ea37167dffed2bfb63c594ffb9490137ce5c5c40354e1dda5c1ce5592c267
4
+ data.tar.gz: 1fb4989e4be756fabd776dbf34c20eb90e3a621fd8553f7cbfa6a63c08166a67
5
5
  SHA512:
6
- metadata.gz: e61424573903669104d67d0aecea5720248355dc7af2a059418060222a52bf150498e421c9b6c10e32b6bfd0423344c6413b99e6afd1e061c537086c6a7eb47d
7
- data.tar.gz: 4b5ed1238f71d1c877f3001e07b3fa76d631d2b8322b959a1b9eaac789354c91925292ad7817372339f71d94d4137e07e98af301a42c01cb0e1978bbbdee1a16
6
+ metadata.gz: 1475091bfab492b490c2412d30ee112a6c010b87e3d7708be02eafd95cf855c01b33ffc2377e01b193c426f52027831c47cd3a1d1314d9ae567ff00e27db7763
7
+ data.tar.gz: 4aad85d61fff39e856855572d8a5baf3debaa0022fe7cf0404d175e70106ee0ce93903e36493be911d6da077027b26e9ce137156f90079c2bb7982d30719d89c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.57.0 (2024-03-25)
10
+ ------------------
11
+
12
+ * Feature - AWS Global Accelerator now supports cross-account sharing for bring your own IP addresses.
13
+
4
14
  1.56.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.58.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::GlobalAccelerator
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::GlobalAccelerator
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::GlobalAccelerator
347
356
  # @option options [Aws::GlobalAccelerator::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::GlobalAccelerator::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
375
- #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
378
409
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
382
412
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
388
415
  #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -552,6 +576,13 @@ module Aws::GlobalAccelerator
552
576
  # you provisioned. You can't advertise only a portion of the
553
577
  # provisioned range.
554
578
  #
579
+ # For more information, see [Bring your own IP addresses (BYOIP)][1] in
580
+ # the Global Accelerator Developer Guide.
581
+ #
582
+ #
583
+ #
584
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
585
+ #
555
586
  # @return [Types::AdvertiseByoipCidrResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
556
587
  #
557
588
  # * {Types::AdvertiseByoipCidrResponse#byoip_cidr #byoip_cidr} => Types::ByoipCidr
@@ -773,31 +804,49 @@ module Aws::GlobalAccelerator
773
804
 
774
805
  # Create a cross-account attachment in Global Accelerator. You create a
775
806
  # cross-account attachment to specify the *principals* who have
776
- # permission to add to accelerators in their own account the resources
777
- # in your account that you also list in the attachment.
807
+ # permission to work with *resources* in accelerators in their own
808
+ # account. You specify, in the same attachment, the resources that are
809
+ # shared.
778
810
  #
779
811
  # A principal can be an Amazon Web Services account number or the Amazon
780
812
  # Resource Name (ARN) for an accelerator. For account numbers that are
781
- # listed as principals, to add a resource listed in the attachment to an
782
- # accelerator, you must sign in to an account specified as a principal.
783
- # Then you can add the resources that are listed to any of your
813
+ # listed as principals, to work with a resource listed in the
814
+ # attachment, you must sign in to an account specified as a principal.
815
+ # Then, you can work with resources that are listed, with any of your
784
816
  # accelerators. If an accelerator ARN is listed in the cross-account
785
817
  # attachment as a principal, anyone with permission to make updates to
786
- # the accelerator can add as endpoints resources that are listed in the
818
+ # the accelerator can work with resources that are listed in the
787
819
  # attachment.
788
820
  #
821
+ # Specify each principal and resource separately. To specify two CIDR
822
+ # address pools, list them individually under `Resources`, and so on.
823
+ # For a command line operation, for example, you might use a statement
824
+ # like the following:
825
+ #
826
+ # ` "Resources": [\{"Cidr": "169.254.60.0/24"\},\{"Cidr":
827
+ # "169.254.59.0/24"\}]`
828
+ #
829
+ # For more information, see [ Working with cross-account attachments and
830
+ # resources in Global Accelerator][1] in the <i> Global Accelerator
831
+ # Developer Guide</i>.
832
+ #
833
+ #
834
+ #
835
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/cross-account-resources.html
836
+ #
789
837
  # @option params [required, String] :name
790
838
  # The name of the cross-account attachment.
791
839
  #
792
840
  # @option params [Array<String>] :principals
793
- # The principals to list in the cross-account attachment. A principal
841
+ # The principals to include in the cross-account attachment. A principal
794
842
  # can be an Amazon Web Services account number or the Amazon Resource
795
843
  # Name (ARN) for an accelerator.
796
844
  #
797
845
  # @option params [Array<Types::Resource>] :resources
798
- # The Amazon Resource Names (ARNs) for the resources to list in the
846
+ # The Amazon Resource Names (ARNs) for the resources to include in the
799
847
  # cross-account attachment. A resource can be any supported Amazon Web
800
- # Services resource type for Global Accelerator.
848
+ # Services resource type for Global Accelerator or a CIDR range for a
849
+ # bring your own IP address (BYOIP) address pool.
801
850
  #
802
851
  # @option params [required, String] :idempotency_token
803
852
  # A unique, case-sensitive identifier that you provide to ensure the
@@ -807,7 +856,7 @@ module Aws::GlobalAccelerator
807
856
  # not need to pass this option.**
808
857
  #
809
858
  # @option params [Array<Types::Tag>] :tags
810
- # Create tags for cross-account attachment.
859
+ # Add tags for a cross-account attachment.
811
860
  #
812
861
  # For more information, see [Tagging in Global Accelerator][1] in the
813
862
  # *Global Accelerator Developer Guide*.
@@ -827,7 +876,8 @@ module Aws::GlobalAccelerator
827
876
  # principals: ["Principal"],
828
877
  # resources: [
829
878
  # {
830
- # endpoint_id: "GenericString", # required
879
+ # endpoint_id: "GenericString",
880
+ # cidr: "GenericString",
831
881
  # region: "GenericString",
832
882
  # },
833
883
  # ],
@@ -848,6 +898,7 @@ module Aws::GlobalAccelerator
848
898
  # resp.cross_account_attachment.principals[0] #=> String
849
899
  # resp.cross_account_attachment.resources #=> Array
850
900
  # resp.cross_account_attachment.resources[0].endpoint_id #=> String
901
+ # resp.cross_account_attachment.resources[0].cidr #=> String
851
902
  # resp.cross_account_attachment.resources[0].region #=> String
852
903
  # resp.cross_account_attachment.last_modified_time #=> Time
853
904
  # resp.cross_account_attachment.created_time #=> Time
@@ -1381,23 +1432,15 @@ module Aws::GlobalAccelerator
1381
1432
  # Delete a cross-account attachment. When you delete an attachment,
1382
1433
  # Global Accelerator revokes the permission to use the resources in the
1383
1434
  # attachment from all principals in the list of principals. Global
1384
- # Accelerator revokes the permission for specific resources by doing the
1385
- # following:
1435
+ # Accelerator revokes the permission for specific resources.
1436
+ #
1437
+ # For more information, see [ Working with cross-account attachments and
1438
+ # resources in Global Accelerator][1] in the <i> Global Accelerator
1439
+ # Developer Guide</i>.
1386
1440
  #
1387
- # * If the principal is an account ID, Global Accelerator reviews every
1388
- # accelerator in the account and removes cross-account endpoints from
1389
- # all accelerators.
1390
1441
  #
1391
- # * If the principal is an accelerator, Global Accelerator reviews just
1392
- # that accelerator and removes cross-account endpoints from it.
1393
1442
  #
1394
- # If there are overlapping permissions provided by multiple
1395
- # cross-account attachments, Global Accelerator only removes endpoints
1396
- # if there are no current cross-account attachments that provide access
1397
- # permission. For example, if you delete a cross-account attachment that
1398
- # lists an accelerator as a principal, but another cross-account
1399
- # attachment includes the account ID that owns that accelerator,
1400
- # endpoints will not be removed from the accelerator.
1443
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/cross-account-resources.html
1401
1444
  #
1402
1445
  # @option params [required, String] :attachment_arn
1403
1446
  # The Amazon Resource Name (ARN) for the cross-account attachment to
@@ -1639,6 +1682,13 @@ module Aws::GlobalAccelerator
1639
1682
  # The address range, in CIDR notation. The prefix must be the same
1640
1683
  # prefix that you specified when you provisioned the address range.
1641
1684
  #
1685
+ # For more information, see [Bring your own IP addresses (BYOIP)][1] in
1686
+ # the Global Accelerator Developer Guide.
1687
+ #
1688
+ #
1689
+ #
1690
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
1691
+ #
1642
1692
  # @return [Types::DeprovisionByoipCidrResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1643
1693
  #
1644
1694
  # * {Types::DeprovisionByoipCidrResponse#byoip_cidr #byoip_cidr} => Types::ByoipCidr
@@ -1765,6 +1815,7 @@ module Aws::GlobalAccelerator
1765
1815
  # resp.cross_account_attachment.principals[0] #=> String
1766
1816
  # resp.cross_account_attachment.resources #=> Array
1767
1817
  # resp.cross_account_attachment.resources[0].endpoint_id #=> String
1818
+ # resp.cross_account_attachment.resources[0].cidr #=> String
1768
1819
  # resp.cross_account_attachment.resources[0].region #=> String
1769
1820
  # resp.cross_account_attachment.last_modified_time #=> Time
1770
1821
  # resp.cross_account_attachment.created_time #=> Time
@@ -2131,6 +2182,7 @@ module Aws::GlobalAccelerator
2131
2182
  # resp.cross_account_attachments[0].principals[0] #=> String
2132
2183
  # resp.cross_account_attachments[0].resources #=> Array
2133
2184
  # resp.cross_account_attachments[0].resources[0].endpoint_id #=> String
2185
+ # resp.cross_account_attachments[0].resources[0].cidr #=> String
2134
2186
  # resp.cross_account_attachments[0].resources[0].region #=> String
2135
2187
  # resp.cross_account_attachments[0].last_modified_time #=> Time
2136
2188
  # resp.cross_account_attachments[0].created_time #=> Time
@@ -2145,7 +2197,15 @@ module Aws::GlobalAccelerator
2145
2197
  req.send_request(options)
2146
2198
  end
2147
2199
 
2148
- # List the accounts that have cross-account endpoints.
2200
+ # List the accounts that have cross-account resources.
2201
+ #
2202
+ # For more information, see [ Working with cross-account attachments and
2203
+ # resources in Global Accelerator][1] in the <i> Global Accelerator
2204
+ # Developer Guide</i>.
2205
+ #
2206
+ #
2207
+ #
2208
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/cross-account-resources.html
2149
2209
  #
2150
2210
  # @return [Types::ListCrossAccountResourceAccountsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2151
2211
  #
@@ -2165,7 +2225,7 @@ module Aws::GlobalAccelerator
2165
2225
  req.send_request(options)
2166
2226
  end
2167
2227
 
2168
- # List the cross-account endpoints available to add to an accelerator.
2228
+ # List the cross-account resources available to work with.
2169
2229
  #
2170
2230
  # @option params [String] :accelerator_arn
2171
2231
  # The Amazon Resource Name (ARN) of an accelerator in a cross-account
@@ -2175,7 +2235,7 @@ module Aws::GlobalAccelerator
2175
2235
  # The account ID of a resource owner in a cross-account attachment.
2176
2236
  #
2177
2237
  # @option params [Integer] :max_results
2178
- # The number of cross-account endpoints objects that you want to return
2238
+ # The number of cross-account resource objects that you want to return
2179
2239
  # with this call. The default value is 10.
2180
2240
  #
2181
2241
  # @option params [String] :next_token
@@ -2202,6 +2262,7 @@ module Aws::GlobalAccelerator
2202
2262
  #
2203
2263
  # resp.cross_account_resources #=> Array
2204
2264
  # resp.cross_account_resources[0].endpoint_id #=> String
2265
+ # resp.cross_account_resources[0].cidr #=> String
2205
2266
  # resp.cross_account_resources[0].attachment_arn #=> String
2206
2267
  # resp.next_token #=> String
2207
2268
  #
@@ -2663,8 +2724,15 @@ module Aws::GlobalAccelerator
2663
2724
  # @option params [required, String] :cidr
2664
2725
  # The public IPv4 address range, in CIDR notation. The most specific IP
2665
2726
  # prefix that you can specify is /24. The address range cannot overlap
2666
- # with another address range that you've brought to this or another
2667
- # Region.
2727
+ # with another address range that you've brought to this Amazon Web
2728
+ # Services Region or another Region.
2729
+ #
2730
+ # For more information, see [Bring your own IP addresses (BYOIP)][1] in
2731
+ # the Global Accelerator Developer Guide.
2732
+ #
2733
+ #
2734
+ #
2735
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
2668
2736
  #
2669
2737
  # @option params [required, Types::CidrAuthorizationContext] :cidr_authorization_context
2670
2738
  # A signed document that proves that you are authorized to bring the
@@ -3007,22 +3075,15 @@ module Aws::GlobalAccelerator
3007
3075
  # Update a cross-account attachment to add or remove principals or
3008
3076
  # resources. When you update an attachment to remove a principal
3009
3077
  # (account ID or accelerator) or a resource, Global Accelerator revokes
3010
- # the permission for specific resources by doing the following:
3078
+ # the permission for specific resources.
3079
+ #
3080
+ # For more information, see [ Working with cross-account attachments and
3081
+ # resources in Global Accelerator][1] in the <i> Global Accelerator
3082
+ # Developer Guide</i>.
3011
3083
  #
3012
- # * If the principal is an account ID, Global Accelerator reviews every
3013
- # accelerator in the account and removes cross-account endpoints from
3014
- # all accelerators.
3015
3084
  #
3016
- # * If the principal is an accelerator, Global Accelerator reviews just
3017
- # that accelerator and removes cross-account endpoints from it.
3018
3085
  #
3019
- # If there are overlapping permissions provided by multiple
3020
- # cross-account attachments, Global Accelerator only removes endpoints
3021
- # if there are no current cross-account attachments that provide access
3022
- # permission. For example, if you delete a cross-account attachment that
3023
- # lists an accelerator as a principal, but another cross-account
3024
- # attachment includes the account ID that owns that accelerator,
3025
- # endpoints will not be removed from the accelerator.
3086
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/cross-account-resources.html
3026
3087
  #
3027
3088
  # @option params [required, String] :attachment_arn
3028
3089
  # The Amazon Resource Name (ARN) of the cross-account attachment to
@@ -3034,8 +3095,8 @@ module Aws::GlobalAccelerator
3034
3095
  # @option params [Array<String>] :add_principals
3035
3096
  # The principals to add to the cross-account attachment. A principal is
3036
3097
  # an account or the Amazon Resource Name (ARN) of an accelerator that
3037
- # the attachment gives permission to add the resources from another
3038
- # account, listed in the attachment.
3098
+ # the attachment gives permission to work with resources from another
3099
+ # account. The resources are also listed in the attachment.
3039
3100
  #
3040
3101
  # To add more than one principal, separate the account numbers or
3041
3102
  # accelerator ARNs, or both, with commas.
@@ -3043,23 +3104,24 @@ module Aws::GlobalAccelerator
3043
3104
  # @option params [Array<String>] :remove_principals
3044
3105
  # The principals to remove from the cross-account attachment. A
3045
3106
  # principal is an account or the Amazon Resource Name (ARN) of an
3046
- # accelerator that is given permission to add the resources from another
3047
- # account, listed in the cross-account attachment.
3107
+ # accelerator that the attachment gives permission to work with
3108
+ # resources from another account. The resources are also listed in the
3109
+ # attachment.
3048
3110
  #
3049
3111
  # To remove more than one principal, separate the account numbers or
3050
3112
  # accelerator ARNs, or both, with commas.
3051
3113
  #
3052
3114
  # @option params [Array<Types::Resource>] :add_resources
3053
3115
  # The resources to add to the cross-account attachment. A resource
3054
- # listed in a cross-account attachment can be added to an accelerator by
3055
- # the principals that are listed in the attachment.
3116
+ # listed in a cross-account attachment can be used with an accelerator
3117
+ # by the principals that are listed in the attachment.
3056
3118
  #
3057
3119
  # To add more than one resource, separate the resource ARNs with commas.
3058
3120
  #
3059
3121
  # @option params [Array<Types::Resource>] :remove_resources
3060
3122
  # The resources to remove from the cross-account attachment. A resource
3061
- # listed in a cross-account attachment can be added to an accelerator fy
3062
- # principals that are listed in the cross-account attachment.
3123
+ # listed in a cross-account attachment can be used with an accelerator
3124
+ # by the principals that are listed in the attachment.
3063
3125
  #
3064
3126
  # To remove more than one resource, separate the resource ARNs with
3065
3127
  # commas.
@@ -3077,13 +3139,15 @@ module Aws::GlobalAccelerator
3077
3139
  # remove_principals: ["Principal"],
3078
3140
  # add_resources: [
3079
3141
  # {
3080
- # endpoint_id: "GenericString", # required
3142
+ # endpoint_id: "GenericString",
3143
+ # cidr: "GenericString",
3081
3144
  # region: "GenericString",
3082
3145
  # },
3083
3146
  # ],
3084
3147
  # remove_resources: [
3085
3148
  # {
3086
- # endpoint_id: "GenericString", # required
3149
+ # endpoint_id: "GenericString",
3150
+ # cidr: "GenericString",
3087
3151
  # region: "GenericString",
3088
3152
  # },
3089
3153
  # ],
@@ -3097,6 +3161,7 @@ module Aws::GlobalAccelerator
3097
3161
  # resp.cross_account_attachment.principals[0] #=> String
3098
3162
  # resp.cross_account_attachment.resources #=> Array
3099
3163
  # resp.cross_account_attachment.resources[0].endpoint_id #=> String
3164
+ # resp.cross_account_attachment.resources[0].cidr #=> String
3100
3165
  # resp.cross_account_attachment.resources[0].region #=> String
3101
3166
  # resp.cross_account_attachment.last_modified_time #=> Time
3102
3167
  # resp.cross_account_attachment.created_time #=> Time
@@ -3491,6 +3556,13 @@ module Aws::GlobalAccelerator
3491
3556
  # @option params [required, String] :cidr
3492
3557
  # The address range, in CIDR notation.
3493
3558
  #
3559
+ # For more information, see [Bring your own IP addresses (BYOIP)][1] in
3560
+ # the Global Accelerator Developer Guide.
3561
+ #
3562
+ #
3563
+ #
3564
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
3565
+ #
3494
3566
  # @return [Types::WithdrawByoipCidrResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3495
3567
  #
3496
3568
  # * {Types::WithdrawByoipCidrResponse#byoip_cidr #byoip_cidr} => Types::ByoipCidr
@@ -3531,7 +3603,7 @@ module Aws::GlobalAccelerator
3531
3603
  params: params,
3532
3604
  config: config)
3533
3605
  context[:gem_name] = 'aws-sdk-globalaccelerator'
3534
- context[:gem_version] = '1.56.0'
3606
+ context[:gem_version] = '1.58.0'
3535
3607
  Seahorse::Client::Request.new(handlers, context)
3536
3608
  end
3537
3609
 
@@ -415,6 +415,7 @@ module Aws::GlobalAccelerator
415
415
  CreateListenerResponse.struct_class = Types::CreateListenerResponse
416
416
 
417
417
  CrossAccountResource.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "EndpointId"))
418
+ CrossAccountResource.add_member(:cidr, Shapes::ShapeRef.new(shape: GenericString, location_name: "Cidr"))
418
419
  CrossAccountResource.add_member(:attachment_arn, Shapes::ShapeRef.new(shape: GenericString, location_name: "AttachmentArn"))
419
420
  CrossAccountResource.struct_class = Types::CrossAccountResource
420
421
 
@@ -822,7 +823,8 @@ module Aws::GlobalAccelerator
822
823
  RemoveEndpointsRequest.add_member(:endpoint_group_arn, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "EndpointGroupArn"))
823
824
  RemoveEndpointsRequest.struct_class = Types::RemoveEndpointsRequest
824
825
 
825
- Resource.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "EndpointId"))
826
+ Resource.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "EndpointId"))
827
+ Resource.add_member(:cidr, Shapes::ShapeRef.new(shape: GenericString, location_name: "Cidr"))
826
828
  Resource.add_member(:region, Shapes::ShapeRef.new(shape: GenericString, location_name: "Region"))
827
829
  Resource.struct_class = Types::Resource
828
830
 
@@ -303,6 +303,13 @@ module Aws::GlobalAccelerator
303
303
  # The address range, in CIDR notation. This must be the exact range
304
304
  # that you provisioned. You can't advertise only a portion of the
305
305
  # provisioned range.
306
+ #
307
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
308
+ # in the Global Accelerator Developer Guide.
309
+ #
310
+ #
311
+ #
312
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
306
313
  # @return [String]
307
314
  #
308
315
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/AdvertiseByoipCidrRequest AWS API Documentation
@@ -410,9 +417,8 @@ module Aws::GlobalAccelerator
410
417
  end
411
418
 
412
419
  # A cross-account attachment in Global Accelerator. A cross-account
413
- # attachment specifies the *principals* who have permission to add to
414
- # accelerators in their own account the resources in your account that
415
- # you also list in the attachment.
420
+ # attachment specifies the *principals* who have permission to work with
421
+ # *resources* in your account, which you also list in the attachment.
416
422
  #
417
423
  # @!attribute [rw] attachment_arn
418
424
  # The Amazon Resource Name (ARN) of the cross-account attachment.
@@ -523,6 +529,13 @@ module Aws::GlobalAccelerator
523
529
  #
524
530
  # @!attribute [rw] cidr
525
531
  # The address range, in CIDR notation.
532
+ #
533
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
534
+ # in the Global Accelerator Developer Guide.
535
+ #
536
+ #
537
+ #
538
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
526
539
  # @return [String]
527
540
  #
528
541
  # @!attribute [rw] state
@@ -723,15 +736,16 @@ module Aws::GlobalAccelerator
723
736
  # @return [String]
724
737
  #
725
738
  # @!attribute [rw] principals
726
- # The principals to list in the cross-account attachment. A principal
727
- # can be an Amazon Web Services account number or the Amazon Resource
728
- # Name (ARN) for an accelerator.
739
+ # The principals to include in the cross-account attachment. A
740
+ # principal can be an Amazon Web Services account number or the Amazon
741
+ # Resource Name (ARN) for an accelerator.
729
742
  # @return [Array<String>]
730
743
  #
731
744
  # @!attribute [rw] resources
732
- # The Amazon Resource Names (ARNs) for the resources to list in the
745
+ # The Amazon Resource Names (ARNs) for the resources to include in the
733
746
  # cross-account attachment. A resource can be any supported Amazon Web
734
- # Services resource type for Global Accelerator.
747
+ # Services resource type for Global Accelerator or a CIDR range for a
748
+ # bring your own IP address (BYOIP) address pool.
735
749
  # @return [Array<Types::Resource>]
736
750
  #
737
751
  # @!attribute [rw] idempotency_token
@@ -743,7 +757,7 @@ module Aws::GlobalAccelerator
743
757
  # @return [String]
744
758
  #
745
759
  # @!attribute [rw] tags
746
- # Create tags for cross-account attachment.
760
+ # Add tags for a cross-account attachment.
747
761
  #
748
762
  # For more information, see [Tagging in Global Accelerator][1] in the
749
763
  # *Global Accelerator Developer Guide*.
@@ -1147,9 +1161,18 @@ module Aws::GlobalAccelerator
1147
1161
  include Aws::Structure
1148
1162
  end
1149
1163
 
1150
- # An endpoint (Amazon Web Services resource) that is listed in a
1151
- # cross-account attachment and can be added to an accelerator by
1152
- # specified principals, that are also listed in the attachment.
1164
+ # An endpoint (Amazon Web Services resource) or an IP address range, in
1165
+ # CIDR format, that is listed in a cross-account attachment. A
1166
+ # cross-account resource can be added to an accelerator by specified
1167
+ # principals, which are also listed in the attachment.
1168
+ #
1169
+ # For more information, see [ Working with cross-account attachments and
1170
+ # resources in Global Accelerator][1] in the <i> Global Accelerator
1171
+ # Developer Guide</i>.
1172
+ #
1173
+ #
1174
+ #
1175
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/cross-account-resources.html
1153
1176
  #
1154
1177
  # @!attribute [rw] endpoint_id
1155
1178
  # The endpoint ID for the endpoint that is listed in a cross-account
@@ -1157,17 +1180,31 @@ module Aws::GlobalAccelerator
1157
1180
  # principals.
1158
1181
  # @return [String]
1159
1182
  #
1183
+ # @!attribute [rw] cidr
1184
+ # An IP address range, in CIDR format, that is specified as an Amazon
1185
+ # Web Services resource. The address must be provisioned and
1186
+ # advertised in Global Accelerator by following the bring your own IP
1187
+ # address (BYOIP) process for Global Accelerator.
1188
+ #
1189
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
1190
+ # in the Global Accelerator Developer Guide.
1191
+ #
1192
+ #
1193
+ #
1194
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
1195
+ # @return [String]
1196
+ #
1160
1197
  # @!attribute [rw] attachment_arn
1161
1198
  # The Amazon Resource Name (ARN) of the cross-account attachment that
1162
- # specifies the endpoints (resources) that can be added to
1163
- # accelerators and principals that have permission to add the
1164
- # endpoints to accelerators.
1199
+ # specifies the resources (endpoints or CIDR range) that can be added
1200
+ # to accelerators and principals that have permission to add them.
1165
1201
  # @return [String]
1166
1202
  #
1167
1203
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/CrossAccountResource AWS API Documentation
1168
1204
  #
1169
1205
  class CrossAccountResource < Struct.new(
1170
1206
  :endpoint_id,
1207
+ :cidr,
1171
1208
  :attachment_arn)
1172
1209
  SENSITIVE = []
1173
1210
  include Aws::Structure
@@ -1367,7 +1404,7 @@ module Aws::GlobalAccelerator
1367
1404
  # The Amazon Resource Name (ARN) of the cross-account attachment that
1368
1405
  # specifies the endpoints (resources) that can be added to
1369
1406
  # accelerators and principals that have permission to add the
1370
- # endpoints to accelerators.
1407
+ # endpoints.
1371
1408
  # @return [String]
1372
1409
  #
1373
1410
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/CustomRoutingEndpointConfiguration AWS API Documentation
@@ -1598,6 +1635,13 @@ module Aws::GlobalAccelerator
1598
1635
  # @!attribute [rw] cidr
1599
1636
  # The address range, in CIDR notation. The prefix must be the same
1600
1637
  # prefix that you specified when you provisioned the address range.
1638
+ #
1639
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
1640
+ # in the Global Accelerator Developer Guide.
1641
+ #
1642
+ #
1643
+ #
1644
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
1601
1645
  # @return [String]
1602
1646
  #
1603
1647
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/DeprovisionByoipCidrRequest AWS API Documentation
@@ -1919,8 +1963,7 @@ module Aws::GlobalAccelerator
1919
1963
  # is the EC2 instance ID. A resource must be valid and active when you
1920
1964
  # add it as an endpoint.
1921
1965
  #
1922
- # An Application Load Balancer can be either internal or
1923
- # internet-facing.
1966
+ # For cross-account endpoints, this must be the ARN of the resource.
1924
1967
  # @return [String]
1925
1968
  #
1926
1969
  # @!attribute [rw] weight
@@ -1965,7 +2008,7 @@ module Aws::GlobalAccelerator
1965
2008
  # The Amazon Resource Name (ARN) of the cross-account attachment that
1966
2009
  # specifies the endpoints (resources) that can be added to
1967
2010
  # accelerators and principals that have permission to add the
1968
- # endpoints to accelerators.
2011
+ # endpoints.
1969
2012
  # @return [String]
1970
2013
  #
1971
2014
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/EndpointConfiguration AWS API Documentation
@@ -2431,7 +2474,7 @@ module Aws::GlobalAccelerator
2431
2474
 
2432
2475
  # @!attribute [rw] resource_owner_aws_account_ids
2433
2476
  # The account IDs of principals (resource owners) in a cross-account
2434
- # attachment who can add endpoints (resources) listed in the same
2477
+ # attachment who can work with resources listed in the same
2435
2478
  # attachment.
2436
2479
  # @return [Array<String>]
2437
2480
  #
@@ -2453,8 +2496,8 @@ module Aws::GlobalAccelerator
2453
2496
  # @return [String]
2454
2497
  #
2455
2498
  # @!attribute [rw] max_results
2456
- # The number of cross-account endpoints objects that you want to
2457
- # return with this call. The default value is 10.
2499
+ # The number of cross-account resource objects that you want to return
2500
+ # with this call. The default value is 10.
2458
2501
  # @return [Integer]
2459
2502
  #
2460
2503
  # @!attribute [rw] next_token
@@ -2474,8 +2517,7 @@ module Aws::GlobalAccelerator
2474
2517
  end
2475
2518
 
2476
2519
  # @!attribute [rw] cross_account_resources
2477
- # The endpoints attached to an accelerator in a cross-account
2478
- # attachment.
2520
+ # The cross-account resources used with an accelerator.
2479
2521
  # @return [Array<Types::CrossAccountResource>]
2480
2522
  #
2481
2523
  # @!attribute [rw] next_token
@@ -2992,8 +3034,15 @@ module Aws::GlobalAccelerator
2992
3034
  # @!attribute [rw] cidr
2993
3035
  # The public IPv4 address range, in CIDR notation. The most specific
2994
3036
  # IP prefix that you can specify is /24. The address range cannot
2995
- # overlap with another address range that you've brought to this or
2996
- # another Region.
3037
+ # overlap with another address range that you've brought to this
3038
+ # Amazon Web Services Region or another Region.
3039
+ #
3040
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
3041
+ # in the Global Accelerator Developer Guide.
3042
+ #
3043
+ #
3044
+ #
3045
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
2997
3046
  # @return [String]
2998
3047
  #
2999
3048
  # @!attribute [rw] cidr_authorization_context
@@ -3058,21 +3107,44 @@ module Aws::GlobalAccelerator
3058
3107
  include Aws::Structure
3059
3108
  end
3060
3109
 
3061
- # An Amazon Web Services resource that is supported by Global
3062
- # Accelerator and can be added as an endpoint for an accelerator.
3110
+ # A resource is one of the following: the ARN for an Amazon Web Services
3111
+ # resource that is supported by Global Accelerator to be added as an
3112
+ # endpoint, or a CIDR range that specifies a bring your own IP (BYOIP)
3113
+ # address pool.
3063
3114
  #
3064
3115
  # @!attribute [rw] endpoint_id
3065
- # The endpoint ID for the endpoint (Amazon Web Services resource).
3116
+ # The endpoint ID for the endpoint that is specified as a Amazon Web
3117
+ # Services resource.
3118
+ #
3119
+ # An endpoint ID for the cross-account feature is the ARN of an Amazon
3120
+ # Web Services resource, such as a Network Load Balancer, that Global
3121
+ # Accelerator supports as an endpoint for an accelerator.
3122
+ # @return [String]
3123
+ #
3124
+ # @!attribute [rw] cidr
3125
+ # An IP address range, in CIDR format, that is specified as resource.
3126
+ # The address must be provisioned and advertised in Global Accelerator
3127
+ # by following the bring your own IP address (BYOIP) process for
3128
+ # Global Accelerator
3129
+ #
3130
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
3131
+ # in the Global Accelerator Developer Guide.
3132
+ #
3133
+ #
3134
+ #
3135
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
3066
3136
  # @return [String]
3067
3137
  #
3068
3138
  # @!attribute [rw] region
3069
- # The Amazon Web Services Region where a resource is located.
3139
+ # The Amazon Web Services Region where a shared endpoint resource is
3140
+ # located.
3070
3141
  # @return [String]
3071
3142
  #
3072
3143
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/Resource AWS API Documentation
3073
3144
  #
3074
3145
  class Resource < Struct.new(
3075
3146
  :endpoint_id,
3147
+ :cidr,
3076
3148
  :region)
3077
3149
  SENSITIVE = []
3078
3150
  include Aws::Structure
@@ -3293,8 +3365,8 @@ module Aws::GlobalAccelerator
3293
3365
  # @!attribute [rw] add_principals
3294
3366
  # The principals to add to the cross-account attachment. A principal
3295
3367
  # is an account or the Amazon Resource Name (ARN) of an accelerator
3296
- # that the attachment gives permission to add the resources from
3297
- # another account, listed in the attachment.
3368
+ # that the attachment gives permission to work with resources from
3369
+ # another account. The resources are also listed in the attachment.
3298
3370
  #
3299
3371
  # To add more than one principal, separate the account numbers or
3300
3372
  # accelerator ARNs, or both, with commas.
@@ -3303,8 +3375,9 @@ module Aws::GlobalAccelerator
3303
3375
  # @!attribute [rw] remove_principals
3304
3376
  # The principals to remove from the cross-account attachment. A
3305
3377
  # principal is an account or the Amazon Resource Name (ARN) of an
3306
- # accelerator that is given permission to add the resources from
3307
- # another account, listed in the cross-account attachment.
3378
+ # accelerator that the attachment gives permission to work with
3379
+ # resources from another account. The resources are also listed in the
3380
+ # attachment.
3308
3381
  #
3309
3382
  # To remove more than one principal, separate the account numbers or
3310
3383
  # accelerator ARNs, or both, with commas.
@@ -3312,7 +3385,7 @@ module Aws::GlobalAccelerator
3312
3385
  #
3313
3386
  # @!attribute [rw] add_resources
3314
3387
  # The resources to add to the cross-account attachment. A resource
3315
- # listed in a cross-account attachment can be added to an accelerator
3388
+ # listed in a cross-account attachment can be used with an accelerator
3316
3389
  # by the principals that are listed in the attachment.
3317
3390
  #
3318
3391
  # To add more than one resource, separate the resource ARNs with
@@ -3321,9 +3394,8 @@ module Aws::GlobalAccelerator
3321
3394
  #
3322
3395
  # @!attribute [rw] remove_resources
3323
3396
  # The resources to remove from the cross-account attachment. A
3324
- # resource listed in a cross-account attachment can be added to an
3325
- # accelerator fy principals that are listed in the cross-account
3326
- # attachment.
3397
+ # resource listed in a cross-account attachment can be used with an
3398
+ # accelerator by the principals that are listed in the attachment.
3327
3399
  #
3328
3400
  # To remove more than one resource, separate the resource ARNs with
3329
3401
  # commas.
@@ -3660,6 +3732,13 @@ module Aws::GlobalAccelerator
3660
3732
 
3661
3733
  # @!attribute [rw] cidr
3662
3734
  # The address range, in CIDR notation.
3735
+ #
3736
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
3737
+ # in the Global Accelerator Developer Guide.
3738
+ #
3739
+ #
3740
+ #
3741
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
3663
3742
  # @return [String]
3664
3743
  #
3665
3744
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/WithdrawByoipCidrRequest AWS API Documentation
@@ -3671,7 +3750,7 @@ module Aws::GlobalAccelerator
3671
3750
  end
3672
3751
 
3673
3752
  # @!attribute [rw] byoip_cidr
3674
- # Information about the address pool.
3753
+ # Information about the BYOIP address pool.
3675
3754
  # @return [Types::ByoipCidr]
3676
3755
  #
3677
3756
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/WithdrawByoipCidrResponse AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-globalaccelerator/customizations'
52
52
  # @!group service
53
53
  module Aws::GlobalAccelerator
54
54
 
55
- GEM_VERSION = '1.56.0'
55
+ GEM_VERSION = '1.58.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -159,7 +159,8 @@ module Aws
159
159
  ?principals: Array[::String],
160
160
  ?resources: Array[
161
161
  {
162
- endpoint_id: ::String,
162
+ endpoint_id: ::String?,
163
+ cidr: ::String?,
163
164
  region: ::String?
164
165
  },
165
166
  ],
@@ -689,13 +690,15 @@ module Aws
689
690
  ?remove_principals: Array[::String],
690
691
  ?add_resources: Array[
691
692
  {
692
- endpoint_id: ::String,
693
+ endpoint_id: ::String?,
694
+ cidr: ::String?,
693
695
  region: ::String?
694
696
  },
695
697
  ],
696
698
  ?remove_resources: Array[
697
699
  {
698
- endpoint_id: ::String,
700
+ endpoint_id: ::String?,
701
+ cidr: ::String?,
699
702
  region: ::String?
700
703
  },
701
704
  ]
data/sig/types.rbs CHANGED
@@ -253,6 +253,7 @@ module Aws::GlobalAccelerator
253
253
 
254
254
  class CrossAccountResource
255
255
  attr_accessor endpoint_id: ::String
256
+ attr_accessor cidr: ::String
256
257
  attr_accessor attachment_arn: ::String
257
258
  SENSITIVE: []
258
259
  end
@@ -786,6 +787,7 @@ module Aws::GlobalAccelerator
786
787
 
787
788
  class Resource
788
789
  attr_accessor endpoint_id: ::String
790
+ attr_accessor cidr: ::String
789
791
  attr_accessor region: ::String
790
792
  SENSITIVE: []
791
793
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-globalaccelerator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.58.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement