aws-sdk-glue 1.104.0 → 1.107.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: a2b1a595be0a673e9be4131e4778843159ce99f390bc1a237681df414141ac2b
4
- data.tar.gz: 759f80e76103a24a22837a627dd401c9833e328e7ddc6e2ffc6274ae3f9bbf10
3
+ metadata.gz: 6a8699d5ce9ba82ac56ad4727cd3c936e3f2e30668c2097a7bfceb73af38e28c
4
+ data.tar.gz: 2b88e7e0d6dd74403e3ab157953651bfb20f401c1440522d465d3c7070f6efc1
5
5
  SHA512:
6
- metadata.gz: 36e8a26ec7fefd246d941713d29a39dfdc684524fa2f06a0e1ce172e30df6af018646b91894436f258a33407a84b616efd53acbd4c01e102cc7efda20b48d16d
7
- data.tar.gz: cf68f0c7ebe9a31e3386aaad09130288e7e546dff85c4cdeed04db19c5b05747c1b31628a443922c8932cdf4d2189ba95bf5e446aae6eccb324f87a440ddef59
6
+ metadata.gz: 2f25fb7a0cd418b201aea38318aec459bfffa11a2070a7183da04b89fb6133eedfac5e7b1cc62a01384e5e0c0777bb0f68492d1b9baa2b5faf0e655e610e098f
7
+ data.tar.gz: 2b30709083a40e286f61b8a6568654a1b4d2b192f223df054dfe83dfd3733b96d933a64699bef4c87534a5452ecbac5fff0fb437113ac998633dfa20577d1b7f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.107.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.106.0 (2022-02-16)
10
+ ------------------
11
+
12
+ * Feature - Support for optimistic locking in UpdateTable
13
+
14
+ 1.105.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.104.0 (2022-02-02)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.104.0
1
+ 1.107.0
@@ -27,7 +27,9 @@ 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/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::Glue
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
80
84
 
@@ -6866,6 +6870,7 @@ module Aws::Glue
6866
6870
  # resp.table.target_table.database_name #=> String
6867
6871
  # resp.table.target_table.name #=> String
6868
6872
  # resp.table.catalog_id #=> String
6873
+ # resp.table.version_id #=> String
6869
6874
  #
6870
6875
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTable AWS API Documentation
6871
6876
  #
@@ -6971,6 +6976,7 @@ module Aws::Glue
6971
6976
  # resp.table_version.table.target_table.database_name #=> String
6972
6977
  # resp.table_version.table.target_table.name #=> String
6973
6978
  # resp.table_version.table.catalog_id #=> String
6979
+ # resp.table_version.table.version_id #=> String
6974
6980
  # resp.table_version.version_id #=> String
6975
6981
  #
6976
6982
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTableVersion AWS API Documentation
@@ -7085,6 +7091,7 @@ module Aws::Glue
7085
7091
  # resp.table_versions[0].table.target_table.database_name #=> String
7086
7092
  # resp.table_versions[0].table.target_table.name #=> String
7087
7093
  # resp.table_versions[0].table.catalog_id #=> String
7094
+ # resp.table_versions[0].table.version_id #=> String
7088
7095
  # resp.table_versions[0].version_id #=> String
7089
7096
  # resp.next_token #=> String
7090
7097
  #
@@ -7210,6 +7217,7 @@ module Aws::Glue
7210
7217
  # resp.table_list[0].target_table.database_name #=> String
7211
7218
  # resp.table_list[0].target_table.name #=> String
7212
7219
  # resp.table_list[0].catalog_id #=> String
7220
+ # resp.table_list[0].version_id #=> String
7213
7221
  # resp.next_token #=> String
7214
7222
  #
7215
7223
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTables AWS API Documentation
@@ -7662,6 +7670,7 @@ module Aws::Glue
7662
7670
  # resp.table.target_table.database_name #=> String
7663
7671
  # resp.table.target_table.name #=> String
7664
7672
  # resp.table.catalog_id #=> String
7673
+ # resp.table.version_id #=> String
7665
7674
  # resp.authorized_columns #=> Array
7666
7675
  # resp.authorized_columns[0] #=> String
7667
7676
  # resp.is_registered_with_lake_formation #=> Boolean
@@ -9435,6 +9444,7 @@ module Aws::Glue
9435
9444
  # resp.table_list[0].target_table.database_name #=> String
9436
9445
  # resp.table_list[0].target_table.name #=> String
9437
9446
  # resp.table_list[0].catalog_id #=> String
9447
+ # resp.table_list[0].version_id #=> String
9438
9448
  #
9439
9449
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SearchTables AWS API Documentation
9440
9450
  #
@@ -11225,6 +11235,8 @@ module Aws::Glue
11225
11235
  # @option params [String] :transaction_id
11226
11236
  # The transaction ID at which to update the table contents.
11227
11237
  #
11238
+ # @option params [String] :version_id
11239
+ #
11228
11240
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
11229
11241
  #
11230
11242
  # @example Request syntax with placeholder values
@@ -11315,6 +11327,7 @@ module Aws::Glue
11315
11327
  # },
11316
11328
  # skip_archive: false,
11317
11329
  # transaction_id: "TransactionIdString",
11330
+ # version_id: "VersionString",
11318
11331
  # })
11319
11332
  #
11320
11333
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateTable AWS API Documentation
@@ -11524,7 +11537,7 @@ module Aws::Glue
11524
11537
  params: params,
11525
11538
  config: config)
11526
11539
  context[:gem_name] = 'aws-sdk-glue'
11527
- context[:gem_version] = '1.104.0'
11540
+ context[:gem_version] = '1.107.0'
11528
11541
  Seahorse::Client::Request.new(handlers, context)
11529
11542
  end
11530
11543
 
@@ -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.104.0'
51
+ GEM_VERSION = '1.107.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.104.0
4
+ version: 1.107.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-02 00:00:00.000000000 Z
11
+ date: 2022-02-24 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.127.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.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement