aws-sdk-glue 1.103.0 → 1.104.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: a86917e6fa41137ca6f02737cae38c8a36d9ffa0854cf6e358c574d001df82c1
4
- data.tar.gz: 3e35383527e44631cba950d0a63c9c24dda9cf4bb4c3e9ab882d512cb2529dec
3
+ metadata.gz: a2b1a595be0a673e9be4131e4778843159ce99f390bc1a237681df414141ac2b
4
+ data.tar.gz: 759f80e76103a24a22837a627dd401c9833e328e7ddc6e2ffc6274ae3f9bbf10
5
5
  SHA512:
6
- metadata.gz: d3789e50542ed1cce527ad26c05bf907f1b0d08757a35fe189f3aa0bb74ac55857340d77c9fbcf562d756952f333e12de853557bbc938e4bea7e628d2407c775
7
- data.tar.gz: ba862eb28af3866d695e3cc411bc5c48f316b9e5fad7d1906a9af5b5f3d7fb36bdbb41091175ebe6db87d6cbaadce46487d04286ec6c4fdfc0bb3d854b7c7f6c
6
+ metadata.gz: 36e8a26ec7fefd246d941713d29a39dfdc684524fa2f06a0e1ce172e30df6af018646b91894436f258a33407a84b616efd53acbd4c01e102cc7efda20b48d16d
7
+ data.tar.gz: cf68f0c7ebe9a31e3386aaad09130288e7e546dff85c4cdeed04db19c5b05747c1b31628a443922c8932cdf4d2189ba95bf5e446aae6eccb324f87a440ddef59
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.104.0 (2022-02-02)
5
+ ------------------
6
+
7
+ * Feature - Launch Protobuf support for AWS Glue Schema Registry
8
+
4
9
  1.103.0 (2022-01-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.103.0
1
+ 1.104.0
@@ -1486,8 +1486,8 @@ module Aws::Glue
1486
1486
  # checks are performed.
1487
1487
  #
1488
1488
  # @option params [required, String] :data_format
1489
- # The data format of the schema definition. Currently `AVRO` and `JSON`
1490
- # are supported.
1489
+ # The data format of the schema definition. Currently `AVRO`, `JSON` and
1490
+ # `PROTOBUF` are supported.
1491
1491
  #
1492
1492
  # @option params [required, String] :schema_definition
1493
1493
  # The definition of the schema that has to be validated.
@@ -1500,7 +1500,7 @@ module Aws::Glue
1500
1500
  # @example Request syntax with placeholder values
1501
1501
  #
1502
1502
  # resp = client.check_schema_version_validity({
1503
- # data_format: "AVRO", # required, accepts AVRO, JSON
1503
+ # data_format: "AVRO", # required, accepts AVRO, JSON, PROTOBUF
1504
1504
  # schema_definition: "SchemaDefinitionString", # required
1505
1505
  # })
1506
1506
  #
@@ -2702,8 +2702,8 @@ module Aws::Glue
2702
2702
  # mark. No whitespace.
2703
2703
  #
2704
2704
  # @option params [required, String] :data_format
2705
- # The data format of the schema definition. Currently `AVRO` and `JSON`
2706
- # are supported.
2705
+ # The data format of the schema definition. Currently `AVRO`, `JSON` and
2706
+ # `PROTOBUF` are supported.
2707
2707
  #
2708
2708
  # @option params [String] :compatibility
2709
2709
  # The compatibility mode of the schema. The possible values are:
@@ -2788,7 +2788,7 @@ module Aws::Glue
2788
2788
  # registry_arn: "GlueResourceArn",
2789
2789
  # },
2790
2790
  # schema_name: "SchemaRegistryNameString", # required
2791
- # data_format: "AVRO", # required, accepts AVRO, JSON
2791
+ # data_format: "AVRO", # required, accepts AVRO, JSON, PROTOBUF
2792
2792
  # compatibility: "NONE", # accepts NONE, DISABLED, BACKWARD, BACKWARD_ALL, FORWARD, FORWARD_ALL, FULL, FULL_ALL
2793
2793
  # description: "DescriptionString",
2794
2794
  # tags: {
@@ -2804,7 +2804,7 @@ module Aws::Glue
2804
2804
  # resp.schema_name #=> String
2805
2805
  # resp.schema_arn #=> String
2806
2806
  # resp.description #=> String
2807
- # resp.data_format #=> String, one of "AVRO", "JSON"
2807
+ # resp.data_format #=> String, one of "AVRO", "JSON", "PROTOBUF"
2808
2808
  # resp.compatibility #=> String, one of "NONE", "DISABLED", "BACKWARD", "BACKWARD_ALL", "FORWARD", "FORWARD_ALL", "FULL", "FULL_ALL"
2809
2809
  # resp.schema_checkpoint #=> Integer
2810
2810
  # resp.latest_schema_version #=> Integer
@@ -6482,7 +6482,7 @@ module Aws::Glue
6482
6482
  # resp.schema_name #=> String
6483
6483
  # resp.schema_arn #=> String
6484
6484
  # resp.description #=> String
6485
- # resp.data_format #=> String, one of "AVRO", "JSON"
6485
+ # resp.data_format #=> String, one of "AVRO", "JSON", "PROTOBUF"
6486
6486
  # resp.compatibility #=> String, one of "NONE", "DISABLED", "BACKWARD", "BACKWARD_ALL", "FORWARD", "FORWARD_ALL", "FULL", "FULL_ALL"
6487
6487
  # resp.schema_checkpoint #=> Integer
6488
6488
  # resp.latest_schema_version #=> Integer
@@ -6543,7 +6543,7 @@ module Aws::Glue
6543
6543
  #
6544
6544
  # resp.schema_version_id #=> String
6545
6545
  # resp.schema_arn #=> String
6546
- # resp.data_format #=> String, one of "AVRO", "JSON"
6546
+ # resp.data_format #=> String, one of "AVRO", "JSON", "PROTOBUF"
6547
6547
  # resp.status #=> String, one of "AVAILABLE", "PENDING", "FAILURE", "DELETING"
6548
6548
  # resp.created_time #=> String
6549
6549
  #
@@ -6608,7 +6608,7 @@ module Aws::Glue
6608
6608
  #
6609
6609
  # resp.schema_version_id #=> String
6610
6610
  # resp.schema_definition #=> String
6611
- # resp.data_format #=> String, one of "AVRO", "JSON"
6611
+ # resp.data_format #=> String, one of "AVRO", "JSON", "PROTOBUF"
6612
6612
  # resp.schema_arn #=> String
6613
6613
  # resp.version_number #=> Integer
6614
6614
  # resp.status #=> String, one of "AVAILABLE", "PENDING", "FAILURE", "DELETING"
@@ -11524,7 +11524,7 @@ module Aws::Glue
11524
11524
  params: params,
11525
11525
  config: config)
11526
11526
  context[:gem_name] = 'aws-sdk-glue'
11527
- context[:gem_version] = '1.103.0'
11527
+ context[:gem_version] = '1.104.0'
11528
11528
  Seahorse::Client::Request.new(handlers, context)
11529
11529
  end
11530
11530
 
@@ -4141,6 +4141,7 @@ module Aws::Glue
4141
4141
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
4142
4142
  o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
4143
4143
  o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
4144
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4144
4145
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4145
4146
  end)
4146
4147
 
@@ -4155,6 +4156,7 @@ module Aws::Glue
4155
4156
  o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
4156
4157
  o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
4157
4158
  o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
4159
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4158
4160
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4159
4161
  end)
4160
4162
 
@@ -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
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.103.0'
51
+ GEM_VERSION = '1.104.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.103.0
4
+ version: 1.104.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-13 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core