aws-sdk-glue 1.92.0 → 1.93.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: dafc8b20d54c386e5c39a6646545641dd14b644f4c767d025c6659d70b34b78f
4
- data.tar.gz: 1688eefcd084cf4a8d842f2cdd295154c35842f4e46357f056bc3eae252bebe8
3
+ metadata.gz: b19dff0cbd8219274788ddd57a4a5c2ef7c571e068b12d88dcb0004ed472294f
4
+ data.tar.gz: 4cc7e65fc4d1ffcacf0eec6ed9cb13f154de5d56e832d07246dba8f19a5d089c
5
5
  SHA512:
6
- metadata.gz: 6d693fe5ac302550fbf671e5ea27607f626a5b72a78e3b51505a108304872d7172b89cc80b4bebf3eef4de78b9ccff934006a4c2b9823a9f8a1753d2e0ad9ac4
7
- data.tar.gz: ba9866d01242386d5579a6e19b3110429d9bd64688670f7293f6fb132c347202a39ac54d0ace9458b64b8b0f13ca21c4140a333f0939166c31bd2ccd1ba8a784
6
+ metadata.gz: 799d54fc879768e2f88c335e7726f7ab073daca5c0f246ae53dfab250590ae11d6d2bb967aef0b7092b677c6f2899822fabcc4cf66c72741eb3d173236582bd6
7
+ data.tar.gz: 5334a81610f4040dd27724513cb8bac009df0726bb7b146577a5153429fa16be2553f6219127f9277182258690e06b7002d3932bce38576bf530004205263545
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2021-08-03)
5
+ ------------------
6
+
7
+ * Feature - Add ConcurrentModificationException to create-table, delete-table, create-database, update-database, delete-database
8
+
4
9
  1.92.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.92.0
1
+ 1.93.0
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.92.0'
51
+ GEM_VERSION = '1.93.0'
52
52
 
53
53
  end
@@ -8109,8 +8109,8 @@ module Aws::Glue
8109
8109
  #
8110
8110
  # * By directly updating the resource policy with `PutResourePolicy`
8111
8111
  #
8112
- # * By using the **Grant permissions** command on the Management
8113
- # Console.
8112
+ # * By using the **Grant permissions** command on the Amazon Web
8113
+ # Services Management Console.
8114
8114
  #
8115
8115
  # Must be set to `'TRUE'` if you have already used the Management
8116
8116
  # Console to grant cross-account access, otherwise the call fails.
@@ -10665,7 +10665,7 @@ module Aws::Glue
10665
10665
  params: params,
10666
10666
  config: config)
10667
10667
  context[:gem_name] = 'aws-sdk-glue'
10668
- context[:gem_version] = '1.92.0'
10668
+ context[:gem_version] = '1.93.0'
10669
10669
  Seahorse::Client::Request.new(handlers, context)
10670
10670
  end
10671
10671
 
@@ -3745,6 +3745,7 @@ module Aws::Glue
3745
3745
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3746
3746
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
3747
3747
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
3748
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
3748
3749
  end)
3749
3750
 
3750
3751
  api.add_operation(:create_dev_endpoint, Seahorse::Model::Operation.new.tap do |o|
@@ -3887,6 +3888,7 @@ module Aws::Glue
3887
3888
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3888
3889
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
3889
3890
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
3891
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
3890
3892
  end)
3891
3893
 
3892
3894
  api.add_operation(:create_trigger, Seahorse::Model::Operation.new.tap do |o|
@@ -4002,6 +4004,7 @@ module Aws::Glue
4002
4004
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
4003
4005
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4004
4006
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
4007
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4005
4008
  end)
4006
4009
 
4007
4010
  api.add_operation(:delete_dev_endpoint, Seahorse::Model::Operation.new.tap do |o|
@@ -4136,6 +4139,7 @@ module Aws::Glue
4136
4139
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
4137
4140
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4138
4141
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
4142
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4139
4143
  end)
4140
4144
 
4141
4145
  api.add_operation(:delete_table_version, Seahorse::Model::Operation.new.tap do |o|
@@ -5496,6 +5500,7 @@ module Aws::Glue
5496
5500
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
5497
5501
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
5498
5502
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
5503
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
5499
5504
  end)
5500
5505
 
5501
5506
  api.add_operation(:update_dev_endpoint, Seahorse::Model::Operation.new.tap do |o|
@@ -2100,8 +2100,9 @@ module Aws::Glue
2100
2100
  # within an Amazon Virtual Private Cloud environment (Amazon VPC).
2101
2101
  #
2102
2102
  # * `MARKETPLACE` - Uses configuration settings contained in a
2103
- # connector purchased from Marketplace to read from and write to
2104
- # data stores that are not natively supported by Glue.
2103
+ # connector purchased from Amazon Web Services Marketplace to read
2104
+ # from and write to data stores that are not natively supported by
2105
+ # Glue.
2105
2106
  #
2106
2107
  # * `CUSTOM` - Uses configuration settings contained in a custom
2107
2108
  # connector to read from and write to data stores that are not
@@ -12425,8 +12426,8 @@ module Aws::Glue
12425
12426
  #
12426
12427
  # * By directly updating the resource policy with `PutResourePolicy`
12427
12428
  #
12428
- # * By using the **Grant permissions** command on the Management
12429
- # Console.
12429
+ # * By using the **Grant permissions** command on the Amazon Web
12430
+ # Services Management Console.
12430
12431
  #
12431
12432
  # Must be set to `'TRUE'` if you have already used the Management
12432
12433
  # Console to grant cross-account access, otherwise the call fails.
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.92.0
4
+ version: 1.93.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-07-30 00:00:00.000000000 Z
11
+ date: 2021-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core