aws-sdk-glue 1.95.0 → 1.99.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: 21439f84821dfc43ad9dd6a894ebb99e4eb37b0e10d1eaffcaca90ce84c8d651
4
- data.tar.gz: 7c950efdc32663c16a76edeccd60dac60c6f488bea8e0c24e5022220ff22bd9b
3
+ metadata.gz: 9ba7bffdc47b70e89727b4d71345e1d813ef36e0c97342664b86f2f2416ddbb2
4
+ data.tar.gz: df89a9cee004534ba8dd9da98826a7e69ff4f0f9984a0ddfbadce381d47f723a
5
5
  SHA512:
6
- metadata.gz: 3a448a66923fb57c8e562ba85da406d29d88e38121acf04af9cbce838183c62cc2996875abd7cb563e87783e3e666105d462a9297f458888132ffd6032e967ef
7
- data.tar.gz: 7c43081ef222fa400de7ef8a33b5519ae4a096c947af24241507835caf59512f298f8c52ff4517319b734ccd2d2ebea87ac36c09aae03a91da27c4855d46b41e
6
+ metadata.gz: 330d56aa7967dda22ed03092548e7442f42e6269e630f6e3452e0f74cd0d11710eba2b0407a5fa6698459d51f605478af39bf853b411b93ac8f283e068821d24
7
+ data.tar.gz: 7b88d432191d064faafaac7c6a7c9c1738a1b35653ae910728a0267914798d5779774d6e953aa5f6a028f41e311ad913421e80f70e533a68f7e2d6a52f796998
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.98.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.97.0 (2021-10-15)
15
+ ------------------
16
+
17
+ * Feature - Enable S3 event base crawler API.
18
+
19
+ 1.96.0 (2021-10-05)
20
+ ------------------
21
+
22
+ * Feature - This release adds tag as an input of CreateConnection
23
+
4
24
  1.95.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.99.0
@@ -285,6 +285,15 @@ module Aws::Glue
285
285
  # ** Please note ** When response stubbing is enabled, no HTTP
286
286
  # requests are made, and retries are disabled.
287
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
+ #
288
297
  # @option options [Boolean] :validate_params (true)
289
298
  # When `true`, request parameters are validated before
290
299
  # sending the request.
@@ -723,6 +732,8 @@ module Aws::Glue
723
732
  # resp.crawlers[0].targets.s3_targets[0].exclusions[0] #=> String
724
733
  # resp.crawlers[0].targets.s3_targets[0].connection_name #=> String
725
734
  # resp.crawlers[0].targets.s3_targets[0].sample_size #=> Integer
735
+ # resp.crawlers[0].targets.s3_targets[0].event_queue_arn #=> String
736
+ # resp.crawlers[0].targets.s3_targets[0].dlq_event_queue_arn #=> String
726
737
  # resp.crawlers[0].targets.jdbc_targets #=> Array
727
738
  # resp.crawlers[0].targets.jdbc_targets[0].connection_name #=> String
728
739
  # resp.crawlers[0].targets.jdbc_targets[0].path #=> String
@@ -744,7 +755,7 @@ module Aws::Glue
744
755
  # resp.crawlers[0].description #=> String
745
756
  # resp.crawlers[0].classifiers #=> Array
746
757
  # resp.crawlers[0].classifiers[0] #=> String
747
- # resp.crawlers[0].recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
758
+ # resp.crawlers[0].recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY", "CRAWL_EVENT_MODE"
748
759
  # resp.crawlers[0].schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
749
760
  # resp.crawlers[0].schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
750
761
  # resp.crawlers[0].lineage_configuration.crawler_lineage_settings #=> String, one of "ENABLE", "DISABLE"
@@ -1587,6 +1598,9 @@ module Aws::Glue
1587
1598
  # @option params [required, Types::ConnectionInput] :connection_input
1588
1599
  # A `ConnectionInput` object defining the connection to create.
1589
1600
  #
1601
+ # @option params [Hash<String,String>] :tags
1602
+ # The tags you assign to the connection.
1603
+ #
1590
1604
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1591
1605
  #
1592
1606
  # @example Request syntax with placeholder values
@@ -1607,6 +1621,9 @@ module Aws::Glue
1607
1621
  # availability_zone: "NameString",
1608
1622
  # },
1609
1623
  # },
1624
+ # tags: {
1625
+ # "TagKey" => "TagValue",
1626
+ # },
1610
1627
  # })
1611
1628
  #
1612
1629
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnection AWS API Documentation
@@ -1706,6 +1723,8 @@ module Aws::Glue
1706
1723
  # exclusions: ["Path"],
1707
1724
  # connection_name: "ConnectionName",
1708
1725
  # sample_size: 1,
1726
+ # event_queue_arn: "EventQueueArn",
1727
+ # dlq_event_queue_arn: "EventQueueArn",
1709
1728
  # },
1710
1729
  # ],
1711
1730
  # jdbc_targets: [
@@ -1744,7 +1763,7 @@ module Aws::Glue
1744
1763
  # delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
1745
1764
  # },
1746
1765
  # recrawl_policy: {
1747
- # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
1766
+ # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY, CRAWL_EVENT_MODE
1748
1767
  # },
1749
1768
  # lineage_configuration: {
1750
1769
  # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
@@ -4566,6 +4585,8 @@ module Aws::Glue
4566
4585
  # resp.crawler.targets.s3_targets[0].exclusions[0] #=> String
4567
4586
  # resp.crawler.targets.s3_targets[0].connection_name #=> String
4568
4587
  # resp.crawler.targets.s3_targets[0].sample_size #=> Integer
4588
+ # resp.crawler.targets.s3_targets[0].event_queue_arn #=> String
4589
+ # resp.crawler.targets.s3_targets[0].dlq_event_queue_arn #=> String
4569
4590
  # resp.crawler.targets.jdbc_targets #=> Array
4570
4591
  # resp.crawler.targets.jdbc_targets[0].connection_name #=> String
4571
4592
  # resp.crawler.targets.jdbc_targets[0].path #=> String
@@ -4587,7 +4608,7 @@ module Aws::Glue
4587
4608
  # resp.crawler.description #=> String
4588
4609
  # resp.crawler.classifiers #=> Array
4589
4610
  # resp.crawler.classifiers[0] #=> String
4590
- # resp.crawler.recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
4611
+ # resp.crawler.recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY", "CRAWL_EVENT_MODE"
4591
4612
  # resp.crawler.schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
4592
4613
  # resp.crawler.schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
4593
4614
  # resp.crawler.lineage_configuration.crawler_lineage_settings #=> String, one of "ENABLE", "DISABLE"
@@ -4698,6 +4719,8 @@ module Aws::Glue
4698
4719
  # resp.crawlers[0].targets.s3_targets[0].exclusions[0] #=> String
4699
4720
  # resp.crawlers[0].targets.s3_targets[0].connection_name #=> String
4700
4721
  # resp.crawlers[0].targets.s3_targets[0].sample_size #=> Integer
4722
+ # resp.crawlers[0].targets.s3_targets[0].event_queue_arn #=> String
4723
+ # resp.crawlers[0].targets.s3_targets[0].dlq_event_queue_arn #=> String
4701
4724
  # resp.crawlers[0].targets.jdbc_targets #=> Array
4702
4725
  # resp.crawlers[0].targets.jdbc_targets[0].connection_name #=> String
4703
4726
  # resp.crawlers[0].targets.jdbc_targets[0].path #=> String
@@ -4719,7 +4742,7 @@ module Aws::Glue
4719
4742
  # resp.crawlers[0].description #=> String
4720
4743
  # resp.crawlers[0].classifiers #=> Array
4721
4744
  # resp.crawlers[0].classifiers[0] #=> String
4722
- # resp.crawlers[0].recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
4745
+ # resp.crawlers[0].recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY", "CRAWL_EVENT_MODE"
4723
4746
  # resp.crawlers[0].schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
4724
4747
  # resp.crawlers[0].schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
4725
4748
  # resp.crawlers[0].lineage_configuration.crawler_lineage_settings #=> String, one of "ENABLE", "DISABLE"
@@ -6018,6 +6041,10 @@ module Aws::Glue
6018
6041
  # The maximum number of partitions to return in a single response.
6019
6042
  #
6020
6043
  # @option params [Boolean] :exclude_column_schema
6044
+ # When true, specifies not returning the partition column schema. Useful
6045
+ # when you are interested only in other partition attributes such as
6046
+ # partition values or location. This approach avoids the problem of a
6047
+ # large response by not returning duplicate data.
6021
6048
  #
6022
6049
  # @return [Types::GetPartitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6023
6050
  #
@@ -10123,6 +10150,8 @@ module Aws::Glue
10123
10150
  # exclusions: ["Path"],
10124
10151
  # connection_name: "ConnectionName",
10125
10152
  # sample_size: 1,
10153
+ # event_queue_arn: "EventQueueArn",
10154
+ # dlq_event_queue_arn: "EventQueueArn",
10126
10155
  # },
10127
10156
  # ],
10128
10157
  # jdbc_targets: [
@@ -10161,7 +10190,7 @@ module Aws::Glue
10161
10190
  # delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
10162
10191
  # },
10163
10192
  # recrawl_policy: {
10164
- # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
10193
+ # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY, CRAWL_EVENT_MODE
10165
10194
  # },
10166
10195
  # lineage_configuration: {
10167
10196
  # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
@@ -11048,7 +11077,7 @@ module Aws::Glue
11048
11077
  params: params,
11049
11078
  config: config)
11050
11079
  context[:gem_name] = 'aws-sdk-glue'
11051
- context[:gem_version] = '1.95.0'
11080
+ context[:gem_version] = '1.99.0'
11052
11081
  Seahorse::Client::Request.new(handlers, context)
11053
11082
  end
11054
11083
 
@@ -296,6 +296,7 @@ module Aws::Glue
296
296
  ErrorString = Shapes::StringShape.new(name: 'ErrorString')
297
297
  EvaluationMetrics = Shapes::StructureShape.new(name: 'EvaluationMetrics')
298
298
  EventBatchingCondition = Shapes::StructureShape.new(name: 'EventBatchingCondition')
299
+ EventQueueArn = Shapes::StringShape.new(name: 'EventQueueArn')
299
300
  ExecutionProperty = Shapes::StructureShape.new(name: 'ExecutionProperty')
300
301
  ExecutionTime = Shapes::IntegerShape.new(name: 'ExecutionTime')
301
302
  ExistCondition = Shapes::StringShape.new(name: 'ExistCondition')
@@ -1303,6 +1304,7 @@ module Aws::Glue
1303
1304
 
1304
1305
  CreateConnectionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1305
1306
  CreateConnectionRequest.add_member(:connection_input, Shapes::ShapeRef.new(shape: ConnectionInput, required: true, location_name: "ConnectionInput"))
1307
+ CreateConnectionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
1306
1308
  CreateConnectionRequest.struct_class = Types::CreateConnectionRequest
1307
1309
 
1308
1310
  CreateConnectionResponse.struct_class = Types::CreateConnectionResponse
@@ -2990,6 +2992,8 @@ module Aws::Glue
2990
2992
  S3Target.add_member(:exclusions, Shapes::ShapeRef.new(shape: PathList, location_name: "Exclusions"))
2991
2993
  S3Target.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
2992
2994
  S3Target.add_member(:sample_size, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "SampleSize"))
2995
+ S3Target.add_member(:event_queue_arn, Shapes::ShapeRef.new(shape: EventQueueArn, location_name: "EventQueueArn"))
2996
+ S3Target.add_member(:dlq_event_queue_arn, Shapes::ShapeRef.new(shape: EventQueueArn, location_name: "DlqEventQueueArn"))
2993
2997
  S3Target.struct_class = Types::S3Target
2994
2998
 
2995
2999
  S3TargetList.member = Shapes::ShapeRef.new(shape: S3Target)
@@ -2706,6 +2706,8 @@ module Aws::Glue
2706
2706
  # exclusions: ["Path"],
2707
2707
  # connection_name: "ConnectionName",
2708
2708
  # sample_size: 1,
2709
+ # event_queue_arn: "EventQueueArn",
2710
+ # dlq_event_queue_arn: "EventQueueArn",
2709
2711
  # },
2710
2712
  # ],
2711
2713
  # jdbc_targets: [
@@ -2900,6 +2902,9 @@ module Aws::Glue
2900
2902
  # availability_zone: "NameString",
2901
2903
  # },
2902
2904
  # },
2905
+ # tags: {
2906
+ # "TagKey" => "TagValue",
2907
+ # },
2903
2908
  # }
2904
2909
  #
2905
2910
  # @!attribute [rw] catalog_id
@@ -2912,11 +2917,16 @@ module Aws::Glue
2912
2917
  # A `ConnectionInput` object defining the connection to create.
2913
2918
  # @return [Types::ConnectionInput]
2914
2919
  #
2920
+ # @!attribute [rw] tags
2921
+ # The tags you assign to the connection.
2922
+ # @return [Hash<String,String>]
2923
+ #
2915
2924
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnectionRequest AWS API Documentation
2916
2925
  #
2917
2926
  class CreateConnectionRequest < Struct.new(
2918
2927
  :catalog_id,
2919
- :connection_input)
2928
+ :connection_input,
2929
+ :tags)
2920
2930
  SENSITIVE = []
2921
2931
  include Aws::Structure
2922
2932
  end
@@ -2940,6 +2950,8 @@ module Aws::Glue
2940
2950
  # exclusions: ["Path"],
2941
2951
  # connection_name: "ConnectionName",
2942
2952
  # sample_size: 1,
2953
+ # event_queue_arn: "EventQueueArn",
2954
+ # dlq_event_queue_arn: "EventQueueArn",
2943
2955
  # },
2944
2956
  # ],
2945
2957
  # jdbc_targets: [
@@ -2978,7 +2990,7 @@ module Aws::Glue
2978
2990
  # delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
2979
2991
  # },
2980
2992
  # recrawl_policy: {
2981
- # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
2993
+ # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY, CRAWL_EVENT_MODE
2982
2994
  # },
2983
2995
  # lineage_configuration: {
2984
2996
  # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
@@ -8714,6 +8726,10 @@ module Aws::Glue
8714
8726
  # @return [Integer]
8715
8727
  #
8716
8728
  # @!attribute [rw] exclude_column_schema
8729
+ # When true, specifies not returning the partition column schema.
8730
+ # Useful when you are interested only in other partition attributes
8731
+ # such as partition values or location. This approach avoids the
8732
+ # problem of a large response by not returning duplicate data.
8717
8733
  # @return [Boolean]
8718
8734
  #
8719
8735
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPartitionsRequest AWS API Documentation
@@ -13217,7 +13233,7 @@ module Aws::Glue
13217
13233
  # data as a hash:
13218
13234
  #
13219
13235
  # {
13220
- # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
13236
+ # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY, CRAWL_EVENT_MODE
13221
13237
  # }
13222
13238
  #
13223
13239
  # @!attribute [rw] recrawl_behavior
@@ -13229,6 +13245,9 @@ module Aws::Glue
13229
13245
  #
13230
13246
  # A value of `CRAWL_NEW_FOLDERS_ONLY` specifies crawling only folders
13231
13247
  # that were added since the last crawler run.
13248
+ #
13249
+ # A value of `CRAWL_EVENT_MODE` specifies crawling only the changes
13250
+ # identified by Amazon S3 events.
13232
13251
  # @return [String]
13233
13252
  #
13234
13253
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/RecrawlPolicy AWS API Documentation
@@ -13632,6 +13651,8 @@ module Aws::Glue
13632
13651
  # exclusions: ["Path"],
13633
13652
  # connection_name: "ConnectionName",
13634
13653
  # sample_size: 1,
13654
+ # event_queue_arn: "EventQueueArn",
13655
+ # dlq_event_queue_arn: "EventQueueArn",
13635
13656
  # }
13636
13657
  #
13637
13658
  # @!attribute [rw] path
@@ -13659,13 +13680,25 @@ module Aws::Glue
13659
13680
  # crawled. A valid value is an integer between 1 and 249.
13660
13681
  # @return [Integer]
13661
13682
  #
13683
+ # @!attribute [rw] event_queue_arn
13684
+ # A valid Amazon SQS ARN. For example,
13685
+ # `arn:aws:sqs:region:account:sqs`.
13686
+ # @return [String]
13687
+ #
13688
+ # @!attribute [rw] dlq_event_queue_arn
13689
+ # A valid Amazon dead-letter SQS ARN. For example,
13690
+ # `arn:aws:sqs:region:account:deadLetterQueue`.
13691
+ # @return [String]
13692
+ #
13662
13693
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/S3Target AWS API Documentation
13663
13694
  #
13664
13695
  class S3Target < Struct.new(
13665
13696
  :path,
13666
13697
  :exclusions,
13667
13698
  :connection_name,
13668
- :sample_size)
13699
+ :sample_size,
13700
+ :event_queue_arn,
13701
+ :dlq_event_queue_arn)
13669
13702
  SENSITIVE = []
13670
13703
  include Aws::Structure
13671
13704
  end
@@ -16394,6 +16427,8 @@ module Aws::Glue
16394
16427
  # exclusions: ["Path"],
16395
16428
  # connection_name: "ConnectionName",
16396
16429
  # sample_size: 1,
16430
+ # event_queue_arn: "EventQueueArn",
16431
+ # dlq_event_queue_arn: "EventQueueArn",
16397
16432
  # },
16398
16433
  # ],
16399
16434
  # jdbc_targets: [
@@ -16432,7 +16467,7 @@ module Aws::Glue
16432
16467
  # delete_behavior: "LOG", # accepts LOG, DELETE_FROM_DATABASE, DEPRECATE_IN_DATABASE
16433
16468
  # },
16434
16469
  # recrawl_policy: {
16435
- # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
16470
+ # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY, CRAWL_EVENT_MODE
16436
16471
  # },
16437
16472
  # lineage_configuration: {
16438
16473
  # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
data/lib/aws-sdk-glue.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.95.0'
51
+ GEM_VERSION = '1.99.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.95.0
4
+ version: 1.99.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-04 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.120.0
22
+ version: 3.122.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement