aws-sdk-glue 1.105.0 → 1.106.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39f7f7cee03a4c9c27d2226c5527559b7288479f8e800d0cf89ee61f815f029d
4
- data.tar.gz: 9655549459765cb5a243f9b1c653669f9e3ab72f465dbf3e1452cd883661dcb7
3
+ metadata.gz: 3d3979808b560d25f3e967561e16037e5f09a6cd19eea40c71532f56797f7594
4
+ data.tar.gz: 159058f26d88d5adb62c804acb8a5242521e691f850fcc2aa355dac39eb9a553
5
5
  SHA512:
6
- metadata.gz: 142928fc9587f32055a9c2b93d57efdd394ea2f1bba848111cf922e65e16223eb01a5e08db4616868e291f1861835f97e8b88b19c4af0cd434d92790eb0f13e1
7
- data.tar.gz: 664a7e86702b48428de7ef9409abf93264eae1d9d978e69971ac07079b4f68c16040470bb19beabd136843d832ea8d04c177e33bab90ab585e3a457c1c0434b8
6
+ metadata.gz: ed3ba845c28f5606250b5268464f7f00ab99c32a11aa5c792bf602e0d83e63d1a122d4863121b617bc09ec0241241a8625698957a276fc48c59e3c2cbdefdce9
7
+ data.tar.gz: e8b8c7326dadbfefaf4ba3ce76cdc443caf79dc04b6dbffaf2ddda5e0504d4deec819a7b9413218144800b884b2a29b76fcf9e637ecee93be170585db2d7b748
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.105.0 (2022-02-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.105.0
1
+ 1.106.0
@@ -6868,6 +6868,7 @@ module Aws::Glue
6868
6868
  # resp.table.target_table.database_name #=> String
6869
6869
  # resp.table.target_table.name #=> String
6870
6870
  # resp.table.catalog_id #=> String
6871
+ # resp.table.version_id #=> String
6871
6872
  #
6872
6873
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTable AWS API Documentation
6873
6874
  #
@@ -6973,6 +6974,7 @@ module Aws::Glue
6973
6974
  # resp.table_version.table.target_table.database_name #=> String
6974
6975
  # resp.table_version.table.target_table.name #=> String
6975
6976
  # resp.table_version.table.catalog_id #=> String
6977
+ # resp.table_version.table.version_id #=> String
6976
6978
  # resp.table_version.version_id #=> String
6977
6979
  #
6978
6980
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTableVersion AWS API Documentation
@@ -7087,6 +7089,7 @@ module Aws::Glue
7087
7089
  # resp.table_versions[0].table.target_table.database_name #=> String
7088
7090
  # resp.table_versions[0].table.target_table.name #=> String
7089
7091
  # resp.table_versions[0].table.catalog_id #=> String
7092
+ # resp.table_versions[0].table.version_id #=> String
7090
7093
  # resp.table_versions[0].version_id #=> String
7091
7094
  # resp.next_token #=> String
7092
7095
  #
@@ -7212,6 +7215,7 @@ module Aws::Glue
7212
7215
  # resp.table_list[0].target_table.database_name #=> String
7213
7216
  # resp.table_list[0].target_table.name #=> String
7214
7217
  # resp.table_list[0].catalog_id #=> String
7218
+ # resp.table_list[0].version_id #=> String
7215
7219
  # resp.next_token #=> String
7216
7220
  #
7217
7221
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTables AWS API Documentation
@@ -7664,6 +7668,7 @@ module Aws::Glue
7664
7668
  # resp.table.target_table.database_name #=> String
7665
7669
  # resp.table.target_table.name #=> String
7666
7670
  # resp.table.catalog_id #=> String
7671
+ # resp.table.version_id #=> String
7667
7672
  # resp.authorized_columns #=> Array
7668
7673
  # resp.authorized_columns[0] #=> String
7669
7674
  # resp.is_registered_with_lake_formation #=> Boolean
@@ -9437,6 +9442,7 @@ module Aws::Glue
9437
9442
  # resp.table_list[0].target_table.database_name #=> String
9438
9443
  # resp.table_list[0].target_table.name #=> String
9439
9444
  # resp.table_list[0].catalog_id #=> String
9445
+ # resp.table_list[0].version_id #=> String
9440
9446
  #
9441
9447
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SearchTables AWS API Documentation
9442
9448
  #
@@ -11227,6 +11233,8 @@ module Aws::Glue
11227
11233
  # @option params [String] :transaction_id
11228
11234
  # The transaction ID at which to update the table contents.
11229
11235
  #
11236
+ # @option params [String] :version_id
11237
+ #
11230
11238
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
11231
11239
  #
11232
11240
  # @example Request syntax with placeholder values
@@ -11317,6 +11325,7 @@ module Aws::Glue
11317
11325
  # },
11318
11326
  # skip_archive: false,
11319
11327
  # transaction_id: "TransactionIdString",
11328
+ # version_id: "VersionString",
11320
11329
  # })
11321
11330
  #
11322
11331
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateTable AWS API Documentation
@@ -11526,7 +11535,7 @@ module Aws::Glue
11526
11535
  params: params,
11527
11536
  config: config)
11528
11537
  context[:gem_name] = 'aws-sdk-glue'
11529
- context[:gem_version] = '1.105.0'
11538
+ context[:gem_version] = '1.106.0'
11530
11539
  Seahorse::Client::Request.new(handlers, context)
11531
11540
  end
11532
11541
 
@@ -3356,6 +3356,7 @@ module Aws::Glue
3356
3356
  Table.add_member(:is_registered_with_lake_formation, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRegisteredWithLakeFormation"))
3357
3357
  Table.add_member(:target_table, Shapes::ShapeRef.new(shape: TableIdentifier, location_name: "TargetTable"))
3358
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"))
3359
3360
  Table.struct_class = Types::Table
3360
3361
 
3361
3362
  TableError.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TableName"))
@@ -3670,6 +3671,7 @@ module Aws::Glue
3670
3671
  UpdateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, required: true, location_name: "TableInput"))
3671
3672
  UpdateTableRequest.add_member(:skip_archive, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "SkipArchive"))
3672
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"))
3673
3675
  UpdateTableRequest.struct_class = Types::UpdateTableRequest
3674
3676
 
3675
3677
  UpdateTableResponse.struct_class = Types::UpdateTableResponse
@@ -15607,6 +15607,9 @@ module Aws::Glue
15607
15607
  # The ID of the Data Catalog in which the table resides.
15608
15608
  # @return [String]
15609
15609
  #
15610
+ # @!attribute [rw] version_id
15611
+ # @return [String]
15612
+ #
15610
15613
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Table AWS API Documentation
15611
15614
  #
15612
15615
  class Table < Struct.new(
@@ -15628,7 +15631,8 @@ module Aws::Glue
15628
15631
  :created_by,
15629
15632
  :is_registered_with_lake_formation,
15630
15633
  :target_table,
15631
- :catalog_id)
15634
+ :catalog_id,
15635
+ :version_id)
15632
15636
  SENSITIVE = []
15633
15637
  include Aws::Structure
15634
15638
  end
@@ -17909,6 +17913,7 @@ module Aws::Glue
17909
17913
  # },
17910
17914
  # skip_archive: false,
17911
17915
  # transaction_id: "TransactionIdString",
17916
+ # version_id: "VersionString",
17912
17917
  # }
17913
17918
  #
17914
17919
  # @!attribute [rw] catalog_id
@@ -17936,6 +17941,9 @@ module Aws::Glue
17936
17941
  # The transaction ID at which to update the table contents.
17937
17942
  # @return [String]
17938
17943
  #
17944
+ # @!attribute [rw] version_id
17945
+ # @return [String]
17946
+ #
17939
17947
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateTableRequest AWS API Documentation
17940
17948
  #
17941
17949
  class UpdateTableRequest < Struct.new(
@@ -17943,7 +17951,8 @@ module Aws::Glue
17943
17951
  :database_name,
17944
17952
  :table_input,
17945
17953
  :skip_archive,
17946
- :transaction_id)
17954
+ :transaction_id,
17955
+ :version_id)
17947
17956
  SENSITIVE = []
17948
17957
  include Aws::Structure
17949
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.105.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.105.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-02-03 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