aws-sdk-neptune 1.39.0 → 1.43.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: d944c7082daa1fc10831fe713f8723431b6f94a63cf61b33417ba94058215d4e
4
- data.tar.gz: e58e0145e1bf60e9778386eb0a12197d552e2926a9fc0b2499a3509843c88e70
3
+ metadata.gz: eceeffc0584c61afdfa73e5b6cf743ccf793031c9b8db89fcbf2b1affaab7240
4
+ data.tar.gz: 1bb7ae472a55fdce132dfd53e5e0341d4cb6cce8b9d880961608d8cdbbc2a546
5
5
  SHA512:
6
- metadata.gz: f6ccc461d8668d0e863d236497c5e54b07533fbeefa0acc78a36c27dea23aaea311f463c67f8bd0ea91e9002f11f90c8ad3335b80c12d1f094cfa4cd3dd8eb80
7
- data.tar.gz: 35fdd4682785f74c2d63c12d55502631cc8f2288de7d5145d38845cd31eb38ee14e6fbcfde019cd149dcd517a3a7ce6dbe0d613faa5dd989097daa5035b6e32c
6
+ metadata.gz: bcb8007a3f14458e33aabf8527f6c756952181b4bcc70acb590867907cd00fb0c2869a6e211da8472bca8c57a5b0ca6f640ba0383e7d4b2a8582ea3d1a10b864
7
+ data.tar.gz: 1f316e8db791d4c46ef437d1263692cd6e187892ed1f8df97a2a84f8b6493b05d9c2c935c367da3a5c29d9ec0d78f879457a697cd270aff5dbb0b16a653d8237
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.42.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.41.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.40.0 (2021-11-01)
20
+ ------------------
21
+
22
+ * Feature - Adds support for major version upgrades to ModifyDbCluster API
23
+
4
24
  1.39.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.43.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/query.rb'
32
33
  require 'aws-sdk-neptune/plugins/cross_region_copying.rb'
@@ -74,6 +75,7 @@ module Aws::Neptune
74
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
77
79
  add_plugin(Aws::Plugins::SignatureV4)
78
80
  add_plugin(Aws::Plugins::Protocols::Query)
79
81
  add_plugin(Aws::Neptune::Plugins::CrossRegionCopying)
@@ -121,7 +123,9 @@ module Aws::Neptune
121
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
124
  # are very aggressive. Construct and pass an instance of
123
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
125
129
  #
126
130
  # @option options [required, String] :region
127
131
  # The AWS region to connect to. The configured `:region` is
@@ -175,6 +179,10 @@ module Aws::Neptune
175
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
180
  # a clock skew correction and retry requests with skewed client clocks.
177
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
178
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
187
  # Set to true to disable SDK automatically adding host prefix
180
188
  # to default service endpoint when available.
@@ -277,6 +285,15 @@ module Aws::Neptune
277
285
  # ** Please note ** When response stubbing is enabled, no HTTP
278
286
  # requests are made, and retries are disabled.
279
287
  #
288
+ # @option options [Boolean] :use_dualstack_endpoint
289
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
290
+ # will be used if available.
291
+ #
292
+ # @option options [Boolean] :use_fips_endpoint
293
+ # When set to `true`, fips compatible endpoints will be used if available.
294
+ # When a `fips` region is used, the region is normalized and this config
295
+ # is set to `true`.
296
+ #
280
297
  # @option options [Boolean] :validate_params (true)
281
298
  # When `true`, request parameters are validated before
282
299
  # sending the request.
@@ -288,7 +305,7 @@ module Aws::Neptune
288
305
  # seconds to wait when opening a HTTP session before raising a
289
306
  # `Timeout::Error`.
290
307
  #
291
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
292
309
  # number of seconds to wait for response data. This value can
293
310
  # safely be set per-request on the session.
294
311
  #
@@ -304,6 +321,9 @@ module Aws::Neptune
304
321
  # disables this behaviour. This value can safely be set per
305
322
  # request on the session.
306
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
307
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
308
328
  # HTTP debug output will be sent to the `:logger`.
309
329
  #
@@ -329,7 +349,7 @@ module Aws::Neptune
329
349
 
330
350
  # @!group API Operations
331
351
 
332
- # Associates an Identity and Access Management (IAM) role from an
352
+ # Associates an Identity and Access Management (IAM) role with an
333
353
  # Neptune DB cluster.
334
354
  #
335
355
  # @option params [required, String] :db_cluster_identifier
@@ -343,7 +363,7 @@ module Aws::Neptune
343
363
  # @option params [String] :feature_name
344
364
  # The name of the feature for the Neptune DB cluster that the IAM role
345
365
  # is to be associated with. For the list of supported feature names, see
346
- # DBEngineVersion.
366
+ # [DBEngineVersion](neptune/latest/userguide/api-other-apis.html#DBEngineVersion).
347
367
  #
348
368
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
349
369
  #
@@ -2971,7 +2991,7 @@ module Aws::Neptune
2971
2991
  # automatically taken by Amazon Neptune for my Amazon account.
2972
2992
  #
2973
2993
  # * `manual` - Return all DB cluster snapshots that have been taken by
2974
- # my AWS account.
2994
+ # my Amazon account.
2975
2995
  #
2976
2996
  # * `shared` - Return all manual DB cluster snapshots that have been
2977
2997
  # shared to my Amazon account.
@@ -3012,7 +3032,7 @@ module Aws::Neptune
3012
3032
  #
3013
3033
  # @option params [Boolean] :include_shared
3014
3034
  # True to include shared manual DB cluster snapshots from other Amazon
3015
- # accounts that this AWS account has been given permission to copy or
3035
+ # accounts that this Amazon account has been given permission to copy or
3016
3036
  # restore, and otherwise false. The default is `false`.
3017
3037
  #
3018
3038
  # You can give an Amazon account permission to restore a manual DB
@@ -4654,6 +4674,34 @@ module Aws::Neptune
4654
4674
  # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases.html
4655
4675
  # [2]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
4656
4676
  #
4677
+ # @option params [Boolean] :allow_major_version_upgrade
4678
+ # A value that indicates whether upgrades between different major
4679
+ # versions are allowed.
4680
+ #
4681
+ # Constraints: You must set the allow-major-version-upgrade flag when
4682
+ # providing an `EngineVersion` parameter that uses a different major
4683
+ # version than the DB cluster's current version.
4684
+ #
4685
+ # @option params [String] :db_instance_parameter_group_name
4686
+ # The name of the DB parameter group to apply to all instances of the DB
4687
+ # cluster.
4688
+ #
4689
+ # <note markdown="1"> When you apply a parameter group using `DBInstanceParameterGroupName`,
4690
+ # parameter changes aren't applied during the next maintenance window
4691
+ # but instead are applied immediately.
4692
+ #
4693
+ # </note>
4694
+ #
4695
+ # Default: The existing name setting
4696
+ #
4697
+ # Constraints:
4698
+ #
4699
+ # * The DB parameter group must be in the same DB parameter group family
4700
+ # as the target DB cluster version.
4701
+ #
4702
+ # * The `DBInstanceParameterGroupName` parameter is only valid in
4703
+ # combination with the `AllowMajorVersionUpgrade` parameter.
4704
+ #
4657
4705
  # @option params [Boolean] :deletion_protection
4658
4706
  # A value that indicates whether the DB cluster has deletion protection
4659
4707
  # enabled. The database can't be deleted when deletion protection is
@@ -4687,6 +4735,8 @@ module Aws::Neptune
4687
4735
  # disable_log_types: ["String"],
4688
4736
  # },
4689
4737
  # engine_version: "String",
4738
+ # allow_major_version_upgrade: false,
4739
+ # db_instance_parameter_group_name: "String",
4690
4740
  # deletion_protection: false,
4691
4741
  # copy_tags_to_snapshot: false,
4692
4742
  # })
@@ -4927,7 +4977,7 @@ module Aws::Neptune
4927
4977
  # IDs, or `all` to make the manual DB cluster snapshot restorable by any
4928
4978
  # Amazon account. Do not add the `all` value for any manual DB cluster
4929
4979
  # snapshots that contain private information that you don't want
4930
- # available to all AWS accounts.
4980
+ # available to all Amazon accounts.
4931
4981
  #
4932
4982
  # @option params [Array<String>] :values_to_remove
4933
4983
  # A list of DB cluster snapshot attributes to remove from the attribute
@@ -4992,7 +5042,7 @@ module Aws::Neptune
4992
5042
  #
4993
5043
  # @option params [String] :db_instance_class
4994
5044
  # The new compute and memory capacity of the DB instance, for example,
4995
- # `db.m4.large`. Not all DB instance classes are available in all AWS
5045
+ # `db.m4.large`. Not all DB instance classes are available in all Amazon
4996
5046
  # Regions.
4997
5047
  #
4998
5048
  # If you modify the DB instance class, an outage occurs during the
@@ -5875,7 +5925,11 @@ module Aws::Neptune
5875
5925
  # @option params [String] :feature_name
5876
5926
  # The name of the feature for the DB cluster that the IAM role is to be
5877
5927
  # disassociated from. For the list of supported feature names, see
5878
- # DBEngineVersion.
5928
+ # [DescribeDBEngineVersions][1].
5929
+ #
5930
+ #
5931
+ #
5932
+ # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
5879
5933
  #
5880
5934
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5881
5935
  #
@@ -6587,7 +6641,7 @@ module Aws::Neptune
6587
6641
  req.send_request(options)
6588
6642
  end
6589
6643
 
6590
- # Starts an Amazon Neptune DB cluster that was stopped using the AWS
6644
+ # Starts an Amazon Neptune DB cluster that was stopped using the Amazon
6591
6645
  # console, the Amazon CLI stop-db-cluster command, or the StopDBCluster
6592
6646
  # API.
6593
6647
  #
@@ -6771,7 +6825,7 @@ module Aws::Neptune
6771
6825
  params: params,
6772
6826
  config: config)
6773
6827
  context[:gem_name] = 'aws-sdk-neptune'
6774
- context[:gem_version] = '1.39.0'
6828
+ context[:gem_version] = '1.43.0'
6775
6829
  Seahorse::Client::Request.new(handlers, context)
6776
6830
  end
6777
6831
 
@@ -1201,6 +1201,8 @@ module Aws::Neptune
1201
1201
  ModifyDBClusterMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
1202
1202
  ModifyDBClusterMessage.add_member(:cloudwatch_logs_export_configuration, Shapes::ShapeRef.new(shape: CloudwatchLogsExportConfiguration, location_name: "CloudwatchLogsExportConfiguration"))
1203
1203
  ModifyDBClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
1204
+ ModifyDBClusterMessage.add_member(:allow_major_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowMajorVersionUpgrade"))
1205
+ ModifyDBClusterMessage.add_member(:db_instance_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceParameterGroupName"))
1204
1206
  ModifyDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
1205
1207
  ModifyDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
1206
1208
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
@@ -42,7 +42,11 @@ module Aws
42
42
  credentials_provider: context.config.credentials
43
43
  )
44
44
  url = Aws::Partitions::EndpointProvider.resolve(
45
- signer.region, 'rds'
45
+ signer.region, 'rds', 'regional',
46
+ {
47
+ dualstack: context.config.use_dualstack_endpoint,
48
+ fips: context.config.use_fips_endpoint
49
+ }
46
50
  )
47
51
  url += "?#{param_list}"
48
52
  signer.presign_url(
@@ -32,7 +32,8 @@ module Aws::Neptune
32
32
  # @!attribute [rw] feature_name
33
33
  # The name of the feature for the Neptune DB cluster that the IAM role
34
34
  # is to be associated with. For the list of supported feature names,
35
- # see DBEngineVersion.
35
+ # see
36
+ # [DBEngineVersion](neptune/latest/userguide/api-other-apis.html#DBEngineVersion).
36
37
  # @return [String]
37
38
  #
38
39
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/AddRoleToDBClusterMessage AWS API Documentation
@@ -2441,7 +2442,11 @@ module Aws::Neptune
2441
2442
  # @!attribute [rw] feature_name
2442
2443
  # The name of the feature associated with the Amazon Identity and
2443
2444
  # Access Management (IAM) role. For the list of supported feature
2444
- # names, see DBEngineVersion.
2445
+ # names, see [DescribeDBEngineVersions][1].
2446
+ #
2447
+ #
2448
+ #
2449
+ # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
2445
2450
  # @return [String]
2446
2451
  #
2447
2452
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRole AWS API Documentation
@@ -4168,7 +4173,7 @@ module Aws::Neptune
4168
4173
  # automatically taken by Amazon Neptune for my Amazon account.
4169
4174
  #
4170
4175
  # * `manual` - Return all DB cluster snapshots that have been taken by
4171
- # my AWS account.
4176
+ # my Amazon account.
4172
4177
  #
4173
4178
  # * `shared` - Return all manual DB cluster snapshots that have been
4174
4179
  # shared to my Amazon account.
@@ -4214,8 +4219,8 @@ module Aws::Neptune
4214
4219
  #
4215
4220
  # @!attribute [rw] include_shared
4216
4221
  # True to include shared manual DB cluster snapshots from other Amazon
4217
- # accounts that this AWS account has been given permission to copy or
4218
- # restore, and otherwise false. The default is `false`.
4222
+ # accounts that this Amazon account has been given permission to copy
4223
+ # or restore, and otherwise false. The default is `false`.
4219
4224
  #
4220
4225
  # You can give an Amazon account permission to restore a manual DB
4221
4226
  # cluster snapshot from another Amazon account by the
@@ -5865,6 +5870,8 @@ module Aws::Neptune
5865
5870
  # disable_log_types: ["String"],
5866
5871
  # },
5867
5872
  # engine_version: "String",
5873
+ # allow_major_version_upgrade: false,
5874
+ # db_instance_parameter_group_name: "String",
5868
5875
  # deletion_protection: false,
5869
5876
  # copy_tags_to_snapshot: false,
5870
5877
  # }
@@ -6011,6 +6018,37 @@ module Aws::Neptune
6011
6018
  # [2]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
6012
6019
  # @return [String]
6013
6020
  #
6021
+ # @!attribute [rw] allow_major_version_upgrade
6022
+ # A value that indicates whether upgrades between different major
6023
+ # versions are allowed.
6024
+ #
6025
+ # Constraints: You must set the allow-major-version-upgrade flag when
6026
+ # providing an `EngineVersion` parameter that uses a different major
6027
+ # version than the DB cluster's current version.
6028
+ # @return [Boolean]
6029
+ #
6030
+ # @!attribute [rw] db_instance_parameter_group_name
6031
+ # The name of the DB parameter group to apply to all instances of the
6032
+ # DB cluster.
6033
+ #
6034
+ # <note markdown="1"> When you apply a parameter group using
6035
+ # `DBInstanceParameterGroupName`, parameter changes aren't applied
6036
+ # during the next maintenance window but instead are applied
6037
+ # immediately.
6038
+ #
6039
+ # </note>
6040
+ #
6041
+ # Default: The existing name setting
6042
+ #
6043
+ # Constraints:
6044
+ #
6045
+ # * The DB parameter group must be in the same DB parameter group
6046
+ # family as the target DB cluster version.
6047
+ #
6048
+ # * The `DBInstanceParameterGroupName` parameter is only valid in
6049
+ # combination with the `AllowMajorVersionUpgrade` parameter.
6050
+ # @return [String]
6051
+ #
6014
6052
  # @!attribute [rw] deletion_protection
6015
6053
  # A value that indicates whether the DB cluster has deletion
6016
6054
  # protection enabled. The database can't be deleted when deletion
@@ -6039,6 +6077,8 @@ module Aws::Neptune
6039
6077
  :enable_iam_database_authentication,
6040
6078
  :cloudwatch_logs_export_configuration,
6041
6079
  :engine_version,
6080
+ :allow_major_version_upgrade,
6081
+ :db_instance_parameter_group_name,
6042
6082
  :deletion_protection,
6043
6083
  :copy_tags_to_snapshot)
6044
6084
  SENSITIVE = []
@@ -6129,7 +6169,7 @@ module Aws::Neptune
6129
6169
  # account IDs, or `all` to make the manual DB cluster snapshot
6130
6170
  # restorable by any Amazon account. Do not add the `all` value for any
6131
6171
  # manual DB cluster snapshots that contain private information that
6132
- # you don't want available to all AWS accounts.
6172
+ # you don't want available to all Amazon accounts.
6133
6173
  # @return [Array<String>]
6134
6174
  #
6135
6175
  # @!attribute [rw] values_to_remove
@@ -6237,8 +6277,8 @@ module Aws::Neptune
6237
6277
  #
6238
6278
  # @!attribute [rw] db_instance_class
6239
6279
  # The new compute and memory capacity of the DB instance, for example,
6240
- # `db.m4.large`. Not all DB instance classes are available in all AWS
6241
- # Regions.
6280
+ # `db.m4.large`. Not all DB instance classes are available in all
6281
+ # Amazon Regions.
6242
6282
  #
6243
6283
  # If you modify the DB instance class, an outage occurs during the
6244
6284
  # change. The change is applied during the next maintenance window,
@@ -7347,7 +7387,11 @@ module Aws::Neptune
7347
7387
  # @!attribute [rw] feature_name
7348
7388
  # The name of the feature for the DB cluster that the IAM role is to
7349
7389
  # be disassociated from. For the list of supported feature names, see
7350
- # DBEngineVersion.
7390
+ # [DescribeDBEngineVersions][1].
7391
+ #
7392
+ #
7393
+ #
7394
+ # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
7351
7395
  # @return [String]
7352
7396
  #
7353
7397
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RemoveRoleFromDBClusterMessage AWS API Documentation
@@ -8175,18 +8219,18 @@ module Aws::Neptune
8175
8219
  # @!attribute [rw] key
8176
8220
  # A key is the required name of the tag. The string value can be from
8177
8221
  # 1 to 128 Unicode characters in length and can't be prefixed with
8178
- # "aws:" or "rds:". The string can only contain only the set of
8179
- # Unicode letters, digits, white-space, '\_', '.', '/', '=',
8180
- # '+', '-' (Java regex:
8222
+ # `aws:` or `rds:`. The string can only contain the set of Unicode
8223
+ # letters, digits, white-space, '\_', '.', '/', '=', '+',
8224
+ # '-' (Java regex:
8181
8225
  # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
8182
8226
  # @return [String]
8183
8227
  #
8184
8228
  # @!attribute [rw] value
8185
8229
  # A value is the optional value of the tag. The string value can be
8186
8230
  # from 1 to 256 Unicode characters in length and can't be prefixed
8187
- # with "aws:" or "rds:". The string can only contain only the set
8188
- # of Unicode letters, digits, white-space, '\_', '.', '/',
8189
- # '=', '+', '-' (Java regex:
8231
+ # with `aws:` or `rds:`. The string can only contain the set of
8232
+ # Unicode letters, digits, white-space, '\_', '.', '/', '=',
8233
+ # '+', '-' (Java regex:
8190
8234
  # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
8191
8235
  # @return [String]
8192
8236
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-neptune/customizations'
49
49
  # @!group service
50
50
  module Aws::Neptune
51
51
 
52
- GEM_VERSION = '1.39.0'
52
+ GEM_VERSION = '1.43.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-neptune
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.39.0
4
+ version: 1.43.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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.121.2
22
+ version: 3.125.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.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement