aws-sdk-glue 1.52.0 → 1.53.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: 360d6908c835a6c0de35e4a62302d8e0f1154372d1f0194dfa0c7b9111fe071a
4
- data.tar.gz: 8393889bed6029a84633e87308a64eaedcb73e1e4e989226dd6fc4cef189323a
3
+ metadata.gz: 4a772773f64984923dc07bd82d0c4d9bc4b16e624e38e29c7327f6aa1169d06a
4
+ data.tar.gz: 2820b2ee1d470ba44b6071f521250acd60f3be8a13e9713533eb0ffae2b47896
5
5
  SHA512:
6
- metadata.gz: 9d086159224f9916c94a28f8fe382c6979f3a86124c2c1019c163d16cda33d43803ee700a668288309db6fa24b3578e3ac0eb425a9008eb026ad2af0175a8bd7
7
- data.tar.gz: 13e6c48a5d6f05e8848542b9fdf5ae0fc79b65fb173781201ae487c9642ada62a563f41eaa0d784d8d8722c783a6ad4ad11741e8e483cc47155342fe94731d9e
6
+ metadata.gz: 2f458426dc7304fee01264ad057ec6fd3fc700baa5b43cd421fc44150126775b4aad23e137e6cc47f5dbb31b64c630e4fc24cd81d11263394bc0f7f703a64ef1
7
+ data.tar.gz: ee0861465265d509c73ef29c32f1eb0bcec6adda21dc9c27c9b6f97abac09c47ff788075bfda2f94610da704a72955cca50c4136b4739960dac9e50d997744c9
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-glue/customizations'
45
45
  # @service
46
46
  module Aws::Glue
47
47
 
48
- GEM_VERSION = '1.52.0'
48
+ GEM_VERSION = '1.53.0'
49
49
 
50
50
  end
@@ -1292,7 +1292,7 @@ module Aws::Glue
1292
1292
  # connection_input: { # required
1293
1293
  # name: "NameString", # required
1294
1294
  # description: "DescriptionString",
1295
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
1295
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA
1296
1296
  # match_criteria: ["NameString"],
1297
1297
  # connection_properties: { # required
1298
1298
  # "HOST" => "ValueString",
@@ -3208,7 +3208,7 @@ module Aws::Glue
3208
3208
  #
3209
3209
  # resp.connection.name #=> String
3210
3210
  # resp.connection.description #=> String
3211
- # resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB"
3211
+ # resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA"
3212
3212
  # resp.connection.match_criteria #=> Array
3213
3213
  # resp.connection.match_criteria[0] #=> String
3214
3214
  # resp.connection.connection_properties #=> Hash
@@ -3266,7 +3266,7 @@ module Aws::Glue
3266
3266
  # catalog_id: "CatalogIdString",
3267
3267
  # filter: {
3268
3268
  # match_criteria: ["NameString"],
3269
- # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB
3269
+ # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA
3270
3270
  # },
3271
3271
  # hide_password: false,
3272
3272
  # next_token: "Token",
@@ -3278,7 +3278,7 @@ module Aws::Glue
3278
3278
  # resp.connection_list #=> Array
3279
3279
  # resp.connection_list[0].name #=> String
3280
3280
  # resp.connection_list[0].description #=> String
3281
- # resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB"
3281
+ # resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA"
3282
3282
  # resp.connection_list[0].match_criteria #=> Array
3283
3283
  # resp.connection_list[0].match_criteria[0] #=> String
3284
3284
  # resp.connection_list[0].connection_properties #=> Hash
@@ -7285,7 +7285,7 @@ module Aws::Glue
7285
7285
  # connection_input: { # required
7286
7286
  # name: "NameString", # required
7287
7287
  # description: "DescriptionString",
7288
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
7288
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA
7289
7289
  # match_criteria: ["NameString"],
7290
7290
  # connection_properties: { # required
7291
7291
  # "HOST" => "ValueString",
@@ -8127,7 +8127,7 @@ module Aws::Glue
8127
8127
  params: params,
8128
8128
  config: config)
8129
8129
  context[:gem_name] = 'aws-sdk-glue'
8130
- context[:gem_version] = '1.52.0'
8130
+ context[:gem_version] = '1.53.0'
8131
8131
  Seahorse::Client::Request.new(handlers, context)
8132
8132
  end
8133
8133
 
@@ -1274,6 +1274,11 @@ module Aws::Glue
1274
1274
  #
1275
1275
  # * `CONNECTION_URL` - The URL for connecting to a general (non-JDBC)
1276
1276
  # data source.
1277
+ #
1278
+ # * `KAFKA_BOOTSTRAP_SERVERS` - A comma-separated list of host and
1279
+ # port pairs that are the addresses of the Apache Kafka brokers in a
1280
+ # Kafka cluster to which a Kafka client will connect to and
1281
+ # bootstrap itself.
1277
1282
  # @return [Hash<String,String>]
1278
1283
  #
1279
1284
  # @!attribute [rw] physical_connection_requirements
@@ -1318,7 +1323,7 @@ module Aws::Glue
1318
1323
  # {
1319
1324
  # name: "NameString", # required
1320
1325
  # description: "DescriptionString",
1321
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
1326
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA
1322
1327
  # match_criteria: ["NameString"],
1323
1328
  # connection_properties: { # required
1324
1329
  # "HOST" => "ValueString",
@@ -1344,6 +1349,9 @@ module Aws::Glue
1344
1349
  # * `JDBC` - Designates a connection to a database through Java
1345
1350
  # Database Connectivity (JDBC).
1346
1351
  #
1352
+ # * `KAFKA` - Designates a connection to an Apache Kafka streaming
1353
+ # platform.
1354
+ #
1347
1355
  # * `MONGODB` - Designates a connection to a MongoDB document
1348
1356
  # database.
1349
1357
  #
@@ -1822,7 +1830,7 @@ module Aws::Glue
1822
1830
  # connection_input: { # required
1823
1831
  # name: "NameString", # required
1824
1832
  # description: "DescriptionString",
1825
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
1833
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA
1826
1834
  # match_criteria: ["NameString"],
1827
1835
  # connection_properties: { # required
1828
1836
  # "HOST" => "ValueString",
@@ -4944,7 +4952,7 @@ module Aws::Glue
4944
4952
  #
4945
4953
  # {
4946
4954
  # match_criteria: ["NameString"],
4947
- # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB
4955
+ # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA
4948
4956
  # }
4949
4957
  #
4950
4958
  # @!attribute [rw] match_criteria
@@ -4972,7 +4980,7 @@ module Aws::Glue
4972
4980
  # catalog_id: "CatalogIdString",
4973
4981
  # filter: {
4974
4982
  # match_criteria: ["NameString"],
4975
- # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB
4983
+ # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA
4976
4984
  # },
4977
4985
  # hide_password: false,
4978
4986
  # next_token: "Token",
@@ -11266,7 +11274,7 @@ module Aws::Glue
11266
11274
  # connection_input: { # required
11267
11275
  # name: "NameString", # required
11268
11276
  # description: "DescriptionString",
11269
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
11277
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA
11270
11278
  # match_criteria: ["NameString"],
11271
11279
  # connection_properties: { # required
11272
11280
  # "HOST" => "ValueString",
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.52.0
4
+ version: 1.53.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: 2020-04-16 00:00:00.000000000 Z
11
+ date: 2020-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core