aws-sdk-glue 1.102.0 → 1.106.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: 5f0efc0870e138a039d2749913d5929109c64cbb9ebc41090932c08796d7335e
4
- data.tar.gz: bfd0b178f835efd80955b1e44a315e9939da3f2013c8848a2fc43b695915f053
3
+ metadata.gz: 3d3979808b560d25f3e967561e16037e5f09a6cd19eea40c71532f56797f7594
4
+ data.tar.gz: 159058f26d88d5adb62c804acb8a5242521e691f850fcc2aa355dac39eb9a553
5
5
  SHA512:
6
- metadata.gz: 8fbf1cd492536cb3d17af9d8617f1b9c5ff701abd1b4f064b727b5c3a1bc6767ad122de9a3120078ad7500321418c130e7c886d2ed1587147c26c5e4ba993fc0
7
- data.tar.gz: 2ee30b09ce0e8d636b85b09abf9d5e8956013178ad6b3e583e3cc52bf4084e90d2c3178561d47e5f99651513184a01df92aae72b1f1d55c41e6f417f3d398f38
6
+ metadata.gz: ed3ba845c28f5606250b5268464f7f00ab99c32a11aa5c792bf602e0d83e63d1a122d4863121b617bc09ec0241241a8625698957a276fc48c59e3c2cbdefdce9
7
+ data.tar.gz: e8b8c7326dadbfefaf4ba3ce76cdc443caf79dc04b6dbffaf2ddda5e0504d4deec819a7b9413218144800b884b2a29b76fcf9e637ecee93be170585db2d7b748
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.106.0 (2022-02-16)
5
+ ------------------
6
+
7
+ * Feature - Support for optimistic locking in UpdateTable
8
+
9
+ 1.105.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.104.0 (2022-02-02)
15
+ ------------------
16
+
17
+ * Feature - Launch Protobuf support for AWS Glue Schema Registry
18
+
19
+ 1.103.0 (2022-01-13)
20
+ ------------------
21
+
22
+ * Feature - This SDK release adds support to pass run properties when starting a workflow run
23
+
4
24
  1.102.0 (2022-01-05)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.106.0
@@ -28,6 +28,7 @@ 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
30
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
33
34
 
@@ -75,6 +76,7 @@ module Aws::Glue
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
77
78
  add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
78
80
  add_plugin(Aws::Plugins::SignatureV4)
79
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
80
82
 
@@ -1486,8 +1488,8 @@ module Aws::Glue
1486
1488
  # checks are performed.
1487
1489
  #
1488
1490
  # @option params [required, String] :data_format
1489
- # The data format of the schema definition. Currently `AVRO` and `JSON`
1490
- # are supported.
1491
+ # The data format of the schema definition. Currently `AVRO`, `JSON` and
1492
+ # `PROTOBUF` are supported.
1491
1493
  #
1492
1494
  # @option params [required, String] :schema_definition
1493
1495
  # The definition of the schema that has to be validated.
@@ -1500,7 +1502,7 @@ module Aws::Glue
1500
1502
  # @example Request syntax with placeholder values
1501
1503
  #
1502
1504
  # resp = client.check_schema_version_validity({
1503
- # data_format: "AVRO", # required, accepts AVRO, JSON
1505
+ # data_format: "AVRO", # required, accepts AVRO, JSON, PROTOBUF
1504
1506
  # schema_definition: "SchemaDefinitionString", # required
1505
1507
  # })
1506
1508
  #
@@ -2702,8 +2704,8 @@ module Aws::Glue
2702
2704
  # mark. No whitespace.
2703
2705
  #
2704
2706
  # @option params [required, String] :data_format
2705
- # The data format of the schema definition. Currently `AVRO` and `JSON`
2706
- # are supported.
2707
+ # The data format of the schema definition. Currently `AVRO`, `JSON` and
2708
+ # `PROTOBUF` are supported.
2707
2709
  #
2708
2710
  # @option params [String] :compatibility
2709
2711
  # The compatibility mode of the schema. The possible values are:
@@ -2788,7 +2790,7 @@ module Aws::Glue
2788
2790
  # registry_arn: "GlueResourceArn",
2789
2791
  # },
2790
2792
  # schema_name: "SchemaRegistryNameString", # required
2791
- # data_format: "AVRO", # required, accepts AVRO, JSON
2793
+ # data_format: "AVRO", # required, accepts AVRO, JSON, PROTOBUF
2792
2794
  # compatibility: "NONE", # accepts NONE, DISABLED, BACKWARD, BACKWARD_ALL, FORWARD, FORWARD_ALL, FULL, FULL_ALL
2793
2795
  # description: "DescriptionString",
2794
2796
  # tags: {
@@ -2804,7 +2806,7 @@ module Aws::Glue
2804
2806
  # resp.schema_name #=> String
2805
2807
  # resp.schema_arn #=> String
2806
2808
  # resp.description #=> String
2807
- # resp.data_format #=> String, one of "AVRO", "JSON"
2809
+ # resp.data_format #=> String, one of "AVRO", "JSON", "PROTOBUF"
2808
2810
  # resp.compatibility #=> String, one of "NONE", "DISABLED", "BACKWARD", "BACKWARD_ALL", "FORWARD", "FORWARD_ALL", "FULL", "FULL_ALL"
2809
2811
  # resp.schema_checkpoint #=> Integer
2810
2812
  # resp.latest_schema_version #=> Integer
@@ -6482,7 +6484,7 @@ module Aws::Glue
6482
6484
  # resp.schema_name #=> String
6483
6485
  # resp.schema_arn #=> String
6484
6486
  # resp.description #=> String
6485
- # resp.data_format #=> String, one of "AVRO", "JSON"
6487
+ # resp.data_format #=> String, one of "AVRO", "JSON", "PROTOBUF"
6486
6488
  # resp.compatibility #=> String, one of "NONE", "DISABLED", "BACKWARD", "BACKWARD_ALL", "FORWARD", "FORWARD_ALL", "FULL", "FULL_ALL"
6487
6489
  # resp.schema_checkpoint #=> Integer
6488
6490
  # resp.latest_schema_version #=> Integer
@@ -6543,7 +6545,7 @@ module Aws::Glue
6543
6545
  #
6544
6546
  # resp.schema_version_id #=> String
6545
6547
  # resp.schema_arn #=> String
6546
- # resp.data_format #=> String, one of "AVRO", "JSON"
6548
+ # resp.data_format #=> String, one of "AVRO", "JSON", "PROTOBUF"
6547
6549
  # resp.status #=> String, one of "AVAILABLE", "PENDING", "FAILURE", "DELETING"
6548
6550
  # resp.created_time #=> String
6549
6551
  #
@@ -6608,7 +6610,7 @@ module Aws::Glue
6608
6610
  #
6609
6611
  # resp.schema_version_id #=> String
6610
6612
  # resp.schema_definition #=> String
6611
- # resp.data_format #=> String, one of "AVRO", "JSON"
6613
+ # resp.data_format #=> String, one of "AVRO", "JSON", "PROTOBUF"
6612
6614
  # resp.schema_arn #=> String
6613
6615
  # resp.version_number #=> Integer
6614
6616
  # resp.status #=> String, one of "AVAILABLE", "PENDING", "FAILURE", "DELETING"
@@ -6866,6 +6868,7 @@ module Aws::Glue
6866
6868
  # resp.table.target_table.database_name #=> String
6867
6869
  # resp.table.target_table.name #=> String
6868
6870
  # resp.table.catalog_id #=> String
6871
+ # resp.table.version_id #=> String
6869
6872
  #
6870
6873
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTable AWS API Documentation
6871
6874
  #
@@ -6971,6 +6974,7 @@ module Aws::Glue
6971
6974
  # resp.table_version.table.target_table.database_name #=> String
6972
6975
  # resp.table_version.table.target_table.name #=> String
6973
6976
  # resp.table_version.table.catalog_id #=> String
6977
+ # resp.table_version.table.version_id #=> String
6974
6978
  # resp.table_version.version_id #=> String
6975
6979
  #
6976
6980
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTableVersion AWS API Documentation
@@ -7085,6 +7089,7 @@ module Aws::Glue
7085
7089
  # resp.table_versions[0].table.target_table.database_name #=> String
7086
7090
  # resp.table_versions[0].table.target_table.name #=> String
7087
7091
  # resp.table_versions[0].table.catalog_id #=> String
7092
+ # resp.table_versions[0].table.version_id #=> String
7088
7093
  # resp.table_versions[0].version_id #=> String
7089
7094
  # resp.next_token #=> String
7090
7095
  #
@@ -7210,6 +7215,7 @@ module Aws::Glue
7210
7215
  # resp.table_list[0].target_table.database_name #=> String
7211
7216
  # resp.table_list[0].target_table.name #=> String
7212
7217
  # resp.table_list[0].catalog_id #=> String
7218
+ # resp.table_list[0].version_id #=> String
7213
7219
  # resp.next_token #=> String
7214
7220
  #
7215
7221
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTables AWS API Documentation
@@ -7662,6 +7668,7 @@ module Aws::Glue
7662
7668
  # resp.table.target_table.database_name #=> String
7663
7669
  # resp.table.target_table.name #=> String
7664
7670
  # resp.table.catalog_id #=> String
7671
+ # resp.table.version_id #=> String
7665
7672
  # resp.authorized_columns #=> Array
7666
7673
  # resp.authorized_columns[0] #=> String
7667
7674
  # resp.is_registered_with_lake_formation #=> Boolean
@@ -9435,6 +9442,7 @@ module Aws::Glue
9435
9442
  # resp.table_list[0].target_table.database_name #=> String
9436
9443
  # resp.table_list[0].target_table.name #=> String
9437
9444
  # resp.table_list[0].catalog_id #=> String
9445
+ # resp.table_list[0].version_id #=> String
9438
9446
  #
9439
9447
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SearchTables AWS API Documentation
9440
9448
  #
@@ -9896,6 +9904,9 @@ module Aws::Glue
9896
9904
  # @option params [required, String] :name
9897
9905
  # The name of the workflow to start.
9898
9906
  #
9907
+ # @option params [Hash<String,String>] :run_properties
9908
+ # The workflow run properties for the new workflow run.
9909
+ #
9899
9910
  # @return [Types::StartWorkflowRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9900
9911
  #
9901
9912
  # * {Types::StartWorkflowRunResponse#run_id #run_id} => String
@@ -9904,6 +9915,9 @@ module Aws::Glue
9904
9915
  #
9905
9916
  # resp = client.start_workflow_run({
9906
9917
  # name: "NameString", # required
9918
+ # run_properties: {
9919
+ # "IdString" => "GenericString",
9920
+ # },
9907
9921
  # })
9908
9922
  #
9909
9923
  # @example Response structure
@@ -11219,6 +11233,8 @@ module Aws::Glue
11219
11233
  # @option params [String] :transaction_id
11220
11234
  # The transaction ID at which to update the table contents.
11221
11235
  #
11236
+ # @option params [String] :version_id
11237
+ #
11222
11238
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
11223
11239
  #
11224
11240
  # @example Request syntax with placeholder values
@@ -11309,6 +11325,7 @@ module Aws::Glue
11309
11325
  # },
11310
11326
  # skip_archive: false,
11311
11327
  # transaction_id: "TransactionIdString",
11328
+ # version_id: "VersionString",
11312
11329
  # })
11313
11330
  #
11314
11331
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateTable AWS API Documentation
@@ -11518,7 +11535,7 @@ module Aws::Glue
11518
11535
  params: params,
11519
11536
  config: config)
11520
11537
  context[:gem_name] = 'aws-sdk-glue'
11521
- context[:gem_version] = '1.102.0'
11538
+ context[:gem_version] = '1.106.0'
11522
11539
  Seahorse::Client::Request.new(handlers, context)
11523
11540
  end
11524
11541
 
@@ -3281,6 +3281,7 @@ module Aws::Glue
3281
3281
  StartTriggerResponse.struct_class = Types::StartTriggerResponse
3282
3282
 
3283
3283
  StartWorkflowRunRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
3284
+ StartWorkflowRunRequest.add_member(:run_properties, Shapes::ShapeRef.new(shape: WorkflowRunProperties, location_name: "RunProperties"))
3284
3285
  StartWorkflowRunRequest.struct_class = Types::StartWorkflowRunRequest
3285
3286
 
3286
3287
  StartWorkflowRunResponse.add_member(:run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "RunId"))
@@ -3355,6 +3356,7 @@ module Aws::Glue
3355
3356
  Table.add_member(:is_registered_with_lake_formation, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRegisteredWithLakeFormation"))
3356
3357
  Table.add_member(:target_table, Shapes::ShapeRef.new(shape: TableIdentifier, location_name: "TargetTable"))
3357
3358
  Table.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
3359
+ Table.add_member(:version_id, Shapes::ShapeRef.new(shape: VersionString, location_name: "VersionId"))
3358
3360
  Table.struct_class = Types::Table
3359
3361
 
3360
3362
  TableError.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TableName"))
@@ -3669,6 +3671,7 @@ module Aws::Glue
3669
3671
  UpdateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, required: true, location_name: "TableInput"))
3670
3672
  UpdateTableRequest.add_member(:skip_archive, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "SkipArchive"))
3671
3673
  UpdateTableRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
3674
+ UpdateTableRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: VersionString, location_name: "VersionId"))
3672
3675
  UpdateTableRequest.struct_class = Types::UpdateTableRequest
3673
3676
 
3674
3677
  UpdateTableResponse.struct_class = Types::UpdateTableResponse
@@ -4140,6 +4143,7 @@ module Aws::Glue
4140
4143
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
4141
4144
  o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
4142
4145
  o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
4146
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4143
4147
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4144
4148
  end)
4145
4149
 
@@ -4154,6 +4158,7 @@ module Aws::Glue
4154
4158
  o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
4155
4159
  o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
4156
4160
  o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
4161
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4157
4162
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4158
4163
  end)
4159
4164
 
@@ -1482,13 +1482,13 @@ module Aws::Glue
1482
1482
  # data as a hash:
1483
1483
  #
1484
1484
  # {
1485
- # data_format: "AVRO", # required, accepts AVRO, JSON
1485
+ # data_format: "AVRO", # required, accepts AVRO, JSON, PROTOBUF
1486
1486
  # schema_definition: "SchemaDefinitionString", # required
1487
1487
  # }
1488
1488
  #
1489
1489
  # @!attribute [rw] data_format
1490
- # The data format of the schema definition. Currently `AVRO` and
1491
- # `JSON` are supported.
1490
+ # The data format of the schema definition. Currently `AVRO`, `JSON`
1491
+ # and `PROTOBUF` are supported.
1492
1492
  # @return [String]
1493
1493
  #
1494
1494
  # @!attribute [rw] schema_definition
@@ -4378,7 +4378,7 @@ module Aws::Glue
4378
4378
  # registry_arn: "GlueResourceArn",
4379
4379
  # },
4380
4380
  # schema_name: "SchemaRegistryNameString", # required
4381
- # data_format: "AVRO", # required, accepts AVRO, JSON
4381
+ # data_format: "AVRO", # required, accepts AVRO, JSON, PROTOBUF
4382
4382
  # compatibility: "NONE", # accepts NONE, DISABLED, BACKWARD, BACKWARD_ALL, FORWARD, FORWARD_ALL, FULL, FULL_ALL
4383
4383
  # description: "DescriptionString",
4384
4384
  # tags: {
@@ -4401,8 +4401,8 @@ module Aws::Glue
4401
4401
  # @return [String]
4402
4402
  #
4403
4403
  # @!attribute [rw] data_format
4404
- # The data format of the schema definition. Currently `AVRO` and
4405
- # `JSON` are supported.
4404
+ # The data format of the schema definition. Currently `AVRO`, `JSON`
4405
+ # and `PROTOBUF` are supported.
4406
4406
  # @return [String]
4407
4407
  #
4408
4408
  # @!attribute [rw] compatibility
@@ -4505,8 +4505,8 @@ module Aws::Glue
4505
4505
  # @return [String]
4506
4506
  #
4507
4507
  # @!attribute [rw] data_format
4508
- # The data format of the schema definition. Currently `AVRO` and
4509
- # `JSON` are supported.
4508
+ # The data format of the schema definition. Currently `AVRO`, `JSON`
4509
+ # and `PROTOBUF` are supported.
4510
4510
  # @return [String]
4511
4511
  #
4512
4512
  # @!attribute [rw] compatibility
@@ -9230,8 +9230,8 @@ module Aws::Glue
9230
9230
  # @return [String]
9231
9231
  #
9232
9232
  # @!attribute [rw] data_format
9233
- # The data format of the schema definition. Currently only `AVRO` and
9234
- # `JSON` are supported.
9233
+ # The data format of the schema definition. Currently `AVRO`, `JSON`
9234
+ # and `PROTOBUF` are supported.
9235
9235
  # @return [String]
9236
9236
  #
9237
9237
  # @!attribute [rw] status
@@ -9306,8 +9306,8 @@ module Aws::Glue
9306
9306
  # @return [String]
9307
9307
  #
9308
9308
  # @!attribute [rw] data_format
9309
- # The data format of the schema definition. Currently `AVRO` and
9310
- # `JSON` are supported.
9309
+ # The data format of the schema definition. Currently `AVRO`, `JSON`
9310
+ # and `PROTOBUF` are supported.
9311
9311
  # @return [String]
9312
9312
  #
9313
9313
  # @!attribute [rw] compatibility
@@ -9418,8 +9418,8 @@ module Aws::Glue
9418
9418
  # @return [String]
9419
9419
  #
9420
9420
  # @!attribute [rw] data_format
9421
- # The data format of the schema definition. Currently `AVRO` and
9422
- # `JSON` are supported.
9421
+ # The data format of the schema definition. Currently `AVRO`, `JSON`
9422
+ # and `PROTOBUF` are supported.
9423
9423
  # @return [String]
9424
9424
  #
9425
9425
  # @!attribute [rw] schema_arn
@@ -15168,16 +15168,24 @@ module Aws::Glue
15168
15168
  #
15169
15169
  # {
15170
15170
  # name: "NameString", # required
15171
+ # run_properties: {
15172
+ # "IdString" => "GenericString",
15173
+ # },
15171
15174
  # }
15172
15175
  #
15173
15176
  # @!attribute [rw] name
15174
15177
  # The name of the workflow to start.
15175
15178
  # @return [String]
15176
15179
  #
15180
+ # @!attribute [rw] run_properties
15181
+ # The workflow run properties for the new workflow run.
15182
+ # @return [Hash<String,String>]
15183
+ #
15177
15184
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartWorkflowRunRequest AWS API Documentation
15178
15185
  #
15179
15186
  class StartWorkflowRunRequest < Struct.new(
15180
- :name)
15187
+ :name,
15188
+ :run_properties)
15181
15189
  SENSITIVE = []
15182
15190
  include Aws::Structure
15183
15191
  end
@@ -15599,6 +15607,9 @@ module Aws::Glue
15599
15607
  # The ID of the Data Catalog in which the table resides.
15600
15608
  # @return [String]
15601
15609
  #
15610
+ # @!attribute [rw] version_id
15611
+ # @return [String]
15612
+ #
15602
15613
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Table AWS API Documentation
15603
15614
  #
15604
15615
  class Table < Struct.new(
@@ -15620,7 +15631,8 @@ module Aws::Glue
15620
15631
  :created_by,
15621
15632
  :is_registered_with_lake_formation,
15622
15633
  :target_table,
15623
- :catalog_id)
15634
+ :catalog_id,
15635
+ :version_id)
15624
15636
  SENSITIVE = []
15625
15637
  include Aws::Structure
15626
15638
  end
@@ -17901,6 +17913,7 @@ module Aws::Glue
17901
17913
  # },
17902
17914
  # skip_archive: false,
17903
17915
  # transaction_id: "TransactionIdString",
17916
+ # version_id: "VersionString",
17904
17917
  # }
17905
17918
  #
17906
17919
  # @!attribute [rw] catalog_id
@@ -17928,6 +17941,9 @@ module Aws::Glue
17928
17941
  # The transaction ID at which to update the table contents.
17929
17942
  # @return [String]
17930
17943
  #
17944
+ # @!attribute [rw] version_id
17945
+ # @return [String]
17946
+ #
17931
17947
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateTableRequest AWS API Documentation
17932
17948
  #
17933
17949
  class UpdateTableRequest < Struct.new(
@@ -17935,7 +17951,8 @@ module Aws::Glue
17935
17951
  :database_name,
17936
17952
  :table_input,
17937
17953
  :skip_archive,
17938
- :transaction_id)
17954
+ :transaction_id,
17955
+ :version_id)
17939
17956
  SENSITIVE = []
17940
17957
  include Aws::Structure
17941
17958
  end
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.102.0'
51
+ GEM_VERSION = '1.106.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.102.0
4
+ version: 1.106.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: 2022-01-05 00:00:00.000000000 Z
11
+ date: 2022-02-16 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.125.0
22
+ version: 3.126.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.125.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement