aws-sdk-backup 1.65.0 → 1.67.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: e6e2dcae78f88e19ccff8fa12447c90f51f8c8d49c05f213b90d2345d8cfd42b
4
- data.tar.gz: 890c7980a942fde12dd99f1810e0f4267c498b12ac1f4b666627a37d7671fe95
3
+ metadata.gz: 20180b3427a7f986677135ecf996fa6b4bd248fefe68863569aa5c5058e75055
4
+ data.tar.gz: 86c974456aab7d08120fcc6c6f9b62faaa60a9b79cd04c52f661de8a1eb1cc90
5
5
  SHA512:
6
- metadata.gz: 4d79d5978e7df737d4bfd6ebd487313ceb3a1d0c0e89a743cf55f27f8cc929e7680b23f5720106d8d4714abf8001bc95ff9ea9b312ef5daba870518a47d86024
7
- data.tar.gz: 76df14aa9eb7be8c1b17572e8a71b02cd7d845225e3b4e190a0909c18f8c1490b318d45d4a8879c0eca99321a4bbf5dee464eccd1e6ed1c362e5ff1b3a39d8bc
6
+ metadata.gz: e727032ab1a91ea97779c8df8c087e66c2fe638a4fc042791dc02ea2e65bd66ed9b4de60054ff3f1ea227d8d401759412ac51b712cdf639268cf3ac3680fff85
7
+ data.tar.gz: 49e7e54abf68670448df0afefbbb80db4aec16a4e6ae4eb51a9ed6d3327c439231b06368fa2a0a105edafcfafc2850631a41ba88b0c0aede6e08440df4ac2277
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.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.66.0 (2024-03-15)
10
+ ------------------
11
+
12
+ * Feature - This release introduces a boolean attribute ManagedByAWSBackupOnly as part of ListRecoveryPointsByResource api to filter the recovery points based on ownership. This attribute can be used to filter out the recovery points protected by AWSBackup.
13
+
4
14
  1.65.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.67.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::Backup
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::Backup
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
@@ -337,50 +346,65 @@ module Aws::Backup
337
346
  # @option options [Aws::Backup::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Backup::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -2839,6 +2863,19 @@ module Aws::Backup
2839
2863
  # `AGGREGATE_ALL` aggregates job counts for all states and returns the
2840
2864
  # sum.
2841
2865
  #
2866
+ # `Completed with issues` is a status found only in the Backup console.
2867
+ # For API, this status refers to jobs with a state of `COMPLETED` and a
2868
+ # `MessageCategory` with a value other than `SUCCESS`; that is, the
2869
+ # status is completed but comes with a status message. To obtain the job
2870
+ # count for `Completed with issues`, run two GET requests, and subtract
2871
+ # the second, smaller number:
2872
+ #
2873
+ # GET
2874
+ # /audit/backup-job-summaries?AggregationPeriod=FOURTEEN\_DAYS&State=COMPLETED
2875
+ #
2876
+ # GET
2877
+ # /audit/backup-job-summaries?AggregationPeriod=FOURTEEN\_DAYS&MessageCategory=SUCCESS&State=COMPLETED
2878
+ #
2842
2879
  # @option params [String] :resource_type
2843
2880
  # Returns the job count for the specified resource type. Use request
2844
2881
  # `GetSupportedResourceTypes` to obtain strings for supported resource
@@ -2959,6 +2996,18 @@ module Aws::Backup
2959
2996
  # @option params [String] :by_state
2960
2997
  # Returns only backup jobs that are in the specified state.
2961
2998
  #
2999
+ # `Completed with issues` is a status found only in the Backup console.
3000
+ # For API, this status refers to jobs with a state of `COMPLETED` and a
3001
+ # `MessageCategory` with a value other than `SUCCESS`; that is, the
3002
+ # status is completed but comes with a status message.
3003
+ #
3004
+ # To obtain the job count for `Completed with issues`, run two GET
3005
+ # requests, and subtract the second, smaller number:
3006
+ #
3007
+ # GET /backup-jobs/?state=COMPLETED
3008
+ #
3009
+ # GET /backup-jobs/?messageCategory=SUCCESS&state=COMPLETED
3010
+ #
2962
3011
  # @option params [String] :by_backup_vault_name
2963
3012
  # Returns only backup jobs that will be stored in the specified backup
2964
3013
  # vault. Backup vaults are identified by names that are unique to the
@@ -4078,6 +4127,17 @@ module Aws::Backup
4078
4127
  #
4079
4128
  # </note>
4080
4129
  #
4130
+ # @option params [Boolean] :managed_by_aws_backup_only
4131
+ # This attribute filters recovery points based on ownership.
4132
+ #
4133
+ # If this is set to `TRUE`, the response will contain recovery points
4134
+ # associated with the selected resources that are managed by Backup.
4135
+ #
4136
+ # If this is set to `FALSE`, the response will contain all recovery
4137
+ # points associated with the selected resource.
4138
+ #
4139
+ # Type: Boolean
4140
+ #
4081
4141
  # @return [Types::ListRecoveryPointsByResourceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4082
4142
  #
4083
4143
  # * {Types::ListRecoveryPointsByResourceOutput#next_token #next_token} => String
@@ -4091,6 +4151,7 @@ module Aws::Backup
4091
4151
  # resource_arn: "ARN", # required
4092
4152
  # next_token: "string",
4093
4153
  # max_results: 1,
4154
+ # managed_by_aws_backup_only: false,
4094
4155
  # })
4095
4156
  #
4096
4157
  # @example Response structure
@@ -4107,6 +4168,7 @@ module Aws::Backup
4107
4168
  # resp.recovery_points[0].is_parent #=> Boolean
4108
4169
  # resp.recovery_points[0].parent_recovery_point_arn #=> String
4109
4170
  # resp.recovery_points[0].resource_name #=> String
4171
+ # resp.recovery_points[0].vault_type #=> String, one of "BACKUP_VAULT", "LOGICALLY_AIR_GAPPED_BACKUP_VAULT"
4110
4172
  #
4111
4173
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListRecoveryPointsByResource AWS API Documentation
4112
4174
  #
@@ -5336,9 +5398,9 @@ module Aws::Backup
5336
5398
  # Attempts to cancel a job to create a one-time backup of a resource.
5337
5399
  #
5338
5400
  # This action is not supported for the following services: Amazon FSx
5339
- # for Windows File Server, Amazon FSx for Lustre, FSx for ONTAP , Amazon
5340
- # FSx for OpenZFS, Amazon DocumentDB (with MongoDB compatibility),
5341
- # Amazon RDS, Amazon Aurora, and Amazon Neptune.
5401
+ # for Windows File Server, Amazon FSx for Lustre, Amazon FSx for NetApp
5402
+ # ONTAP , Amazon FSx for OpenZFS, Amazon DocumentDB (with MongoDB
5403
+ # compatibility), Amazon RDS, Amazon Aurora, and Amazon Neptune.
5342
5404
  #
5343
5405
  # @option params [required, String] :backup_job_id
5344
5406
  # Uniquely identifies a request to Backup to back up a resource.
@@ -5972,7 +6034,7 @@ module Aws::Backup
5972
6034
  params: params,
5973
6035
  config: config)
5974
6036
  context[:gem_name] = 'aws-sdk-backup'
5975
- context[:gem_version] = '1.65.0'
6037
+ context[:gem_version] = '1.67.0'
5976
6038
  Seahorse::Client::Request.new(handlers, context)
5977
6039
  end
5978
6040
 
@@ -1289,6 +1289,7 @@ module Aws::Backup
1289
1289
  ListRecoveryPointsByResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "resourceArn"))
1290
1290
  ListRecoveryPointsByResourceInput.add_member(:next_token, Shapes::ShapeRef.new(shape: string, location: "querystring", location_name: "nextToken"))
1291
1291
  ListRecoveryPointsByResourceInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
1292
+ ListRecoveryPointsByResourceInput.add_member(:managed_by_aws_backup_only, Shapes::ShapeRef.new(shape: boolean, location: "querystring", location_name: "managedByAWSBackupOnly"))
1292
1293
  ListRecoveryPointsByResourceInput.struct_class = Types::ListRecoveryPointsByResourceInput
1293
1294
 
1294
1295
  ListRecoveryPointsByResourceOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: string, location_name: "NextToken"))
@@ -1462,6 +1463,7 @@ module Aws::Backup
1462
1463
  RecoveryPointByResource.add_member(:is_parent, Shapes::ShapeRef.new(shape: boolean, location_name: "IsParent"))
1463
1464
  RecoveryPointByResource.add_member(:parent_recovery_point_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ParentRecoveryPointArn"))
1464
1465
  RecoveryPointByResource.add_member(:resource_name, Shapes::ShapeRef.new(shape: string, location_name: "ResourceName"))
1466
+ RecoveryPointByResource.add_member(:vault_type, Shapes::ShapeRef.new(shape: VaultType, location_name: "VaultType"))
1465
1467
  RecoveryPointByResource.struct_class = Types::RecoveryPointByResource
1466
1468
 
1467
1469
  RecoveryPointByResourceList.member = Shapes::ShapeRef.new(shape: RecoveryPointByResource)
@@ -3587,6 +3587,12 @@ module Aws::Backup
3587
3587
  # will evaluate. Three examples of control scopes are: a specific
3588
3588
  # backup plan, all backup plans with a specific tag, or all backup
3589
3589
  # plans.
3590
+ #
3591
+ # For more information, see [ `ControlScope`.][1]
3592
+ #
3593
+ #
3594
+ #
3595
+ # [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/API_ControlScope.html
3590
3596
  # @return [Types::ControlScope]
3591
3597
  #
3592
3598
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/FrameworkControl AWS API Documentation
@@ -4429,6 +4435,19 @@ module Aws::Backup
4429
4435
  #
4430
4436
  # `AGGREGATE_ALL` aggregates job counts for all states and returns the
4431
4437
  # sum.
4438
+ #
4439
+ # `Completed with issues` is a status found only in the Backup
4440
+ # console. For API, this status refers to jobs with a state of
4441
+ # `COMPLETED` and a `MessageCategory` with a value other than
4442
+ # `SUCCESS`; that is, the status is completed but comes with a status
4443
+ # message. To obtain the job count for `Completed with issues`, run
4444
+ # two GET requests, and subtract the second, smaller number:
4445
+ #
4446
+ # GET
4447
+ # /audit/backup-job-summaries?AggregationPeriod=FOURTEEN\_DAYS&amp;State=COMPLETED
4448
+ #
4449
+ # GET
4450
+ # /audit/backup-job-summaries?AggregationPeriod=FOURTEEN\_DAYS&amp;MessageCategory=SUCCESS&amp;State=COMPLETED
4432
4451
  # @return [String]
4433
4452
  #
4434
4453
  # @!attribute [rw] resource_type
@@ -4554,6 +4573,19 @@ module Aws::Backup
4554
4573
  #
4555
4574
  # @!attribute [rw] by_state
4556
4575
  # Returns only backup jobs that are in the specified state.
4576
+ #
4577
+ # `Completed with issues` is a status found only in the Backup
4578
+ # console. For API, this status refers to jobs with a state of
4579
+ # `COMPLETED` and a `MessageCategory` with a value other than
4580
+ # `SUCCESS`; that is, the status is completed but comes with a status
4581
+ # message.
4582
+ #
4583
+ # To obtain the job count for `Completed with issues`, run two GET
4584
+ # requests, and subtract the second, smaller number:
4585
+ #
4586
+ # GET /backup-jobs/?state=COMPLETED
4587
+ #
4588
+ # GET /backup-jobs/?messageCategory=SUCCESS&amp;state=COMPLETED
4557
4589
  # @return [String]
4558
4590
  #
4559
4591
  # @!attribute [rw] by_backup_vault_name
@@ -5567,12 +5599,25 @@ module Aws::Backup
5567
5599
  # </note>
5568
5600
  # @return [Integer]
5569
5601
  #
5602
+ # @!attribute [rw] managed_by_aws_backup_only
5603
+ # This attribute filters recovery points based on ownership.
5604
+ #
5605
+ # If this is set to `TRUE`, the response will contain recovery points
5606
+ # associated with the selected resources that are managed by Backup.
5607
+ #
5608
+ # If this is set to `FALSE`, the response will contain all recovery
5609
+ # points associated with the selected resource.
5610
+ #
5611
+ # Type: Boolean
5612
+ # @return [Boolean]
5613
+ #
5570
5614
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListRecoveryPointsByResourceInput AWS API Documentation
5571
5615
  #
5572
5616
  class ListRecoveryPointsByResourceInput < Struct.new(
5573
5617
  :resource_arn,
5574
5618
  :next_token,
5575
- :max_results)
5619
+ :max_results,
5620
+ :managed_by_aws_backup_only)
5576
5621
  SENSITIVE = []
5577
5622
  include Aws::Structure
5578
5623
  end
@@ -6663,6 +6708,11 @@ module Aws::Backup
6663
6708
  # specified backup.
6664
6709
  # @return [String]
6665
6710
  #
6711
+ # @!attribute [rw] vault_type
6712
+ # This is the type of vault in which the described recovery point is
6713
+ # stored.
6714
+ # @return [String]
6715
+ #
6666
6716
  # @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByResource AWS API Documentation
6667
6717
  #
6668
6718
  class RecoveryPointByResource < Struct.new(
@@ -6675,7 +6725,8 @@ module Aws::Backup
6675
6725
  :backup_vault_name,
6676
6726
  :is_parent,
6677
6727
  :parent_recovery_point_arn,
6678
- :resource_name)
6728
+ :resource_name,
6729
+ :vault_type)
6679
6730
  SENSITIVE = []
6680
6731
  include Aws::Structure
6681
6732
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-backup/customizations'
52
52
  # @!group service
53
53
  module Aws::Backup
54
54
 
55
- GEM_VERSION = '1.65.0'
55
+ GEM_VERSION = '1.67.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -1074,7 +1074,8 @@ module Aws
1074
1074
  def list_recovery_points_by_resource: (
1075
1075
  resource_arn: ::String,
1076
1076
  ?next_token: ::String,
1077
- ?max_results: ::Integer
1077
+ ?max_results: ::Integer,
1078
+ ?managed_by_aws_backup_only: bool
1078
1079
  ) -> _ListRecoveryPointsByResourceResponseSuccess
1079
1080
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecoveryPointsByResourceResponseSuccess
1080
1081
 
data/sig/types.rbs CHANGED
@@ -1180,6 +1180,7 @@ module Aws::Backup
1180
1180
  attr_accessor resource_arn: ::String
1181
1181
  attr_accessor next_token: ::String
1182
1182
  attr_accessor max_results: ::Integer
1183
+ attr_accessor managed_by_aws_backup_only: bool
1183
1184
  SENSITIVE: []
1184
1185
  end
1185
1186
 
@@ -1398,6 +1399,7 @@ module Aws::Backup
1398
1399
  attr_accessor is_parent: bool
1399
1400
  attr_accessor parent_recovery_point_arn: ::String
1400
1401
  attr_accessor resource_name: ::String
1402
+ attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
1401
1403
  SENSITIVE: []
1402
1404
  end
1403
1405
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-backup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.65.0
4
+ version: 1.67.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