aws-sdk-glue 1.50.0 → 1.51.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 +4 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/lib/aws-sdk-glue/client.rb +74 -23
- data/lib/aws-sdk-glue/resource.rb +1 -7
- data/lib/aws-sdk-glue/types.rb +19 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f84355ce253965cbd6e09202f7909a987e2031b8
|
4
|
+
data.tar.gz: 97c275578e0b01f895d580b2d6e03c2d064ae510
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c8e2051214e43aca7b4e2fb3725f9203c8cbb8ccb78da016e41dfd1e8bdf1ff11049f1f7bc172a35a9dc7cee826a9cf221d59017791e36c5c55d506b971136d
|
7
|
+
data.tar.gz: 254f450ce37ead8b6d3a9cbe08a50ca4d4bbd4b86691974ed8c0fb5c72bf9cb7f021b68e0bdc4381a4bbb86d893637c89899351fda078ccc849e219a5ee34de3
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:glue)
|
|
32
32
|
module Aws::Glue
|
33
33
|
# An API client for Glue. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::Glue::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::Glue
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -275,8 +279,7 @@ module Aws::Glue
|
|
275
279
|
#
|
276
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
281
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
282
|
+
# safely be set per-request on the session.
|
280
283
|
#
|
281
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
285
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +291,7 @@ module Aws::Glue
|
|
288
291
|
# request body. This option has no effect unless the request has
|
289
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
293
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
294
|
+
# request on the session.
|
292
295
|
#
|
293
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1289,7 +1292,7 @@ module Aws::Glue
|
|
1289
1292
|
# connection_input: { # required
|
1290
1293
|
# name: "NameString", # required
|
1291
1294
|
# description: "DescriptionString",
|
1292
|
-
# connection_type: "JDBC", # required, accepts JDBC, SFTP
|
1295
|
+
# connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
|
1293
1296
|
# match_criteria: ["NameString"],
|
1294
1297
|
# connection_properties: { # required
|
1295
1298
|
# "HOST" => "ValueString",
|
@@ -3120,6 +3123,8 @@ module Aws::Glue
|
|
3120
3123
|
# * {Types::GetClassifiersResponse#classifiers #classifiers} => Array<Types::Classifier>
|
3121
3124
|
# * {Types::GetClassifiersResponse#next_token #next_token} => String
|
3122
3125
|
#
|
3126
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3127
|
+
#
|
3123
3128
|
# @example Request syntax with placeholder values
|
3124
3129
|
#
|
3125
3130
|
# resp = client.get_classifiers({
|
@@ -3203,7 +3208,7 @@ module Aws::Glue
|
|
3203
3208
|
#
|
3204
3209
|
# resp.connection.name #=> String
|
3205
3210
|
# resp.connection.description #=> String
|
3206
|
-
# resp.connection.connection_type #=> String, one of "JDBC", "SFTP"
|
3211
|
+
# resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB"
|
3207
3212
|
# resp.connection.match_criteria #=> Array
|
3208
3213
|
# resp.connection.match_criteria[0] #=> String
|
3209
3214
|
# resp.connection.connection_properties #=> Hash
|
@@ -3253,13 +3258,15 @@ module Aws::Glue
|
|
3253
3258
|
# * {Types::GetConnectionsResponse#connection_list #connection_list} => Array<Types::Connection>
|
3254
3259
|
# * {Types::GetConnectionsResponse#next_token #next_token} => String
|
3255
3260
|
#
|
3261
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3262
|
+
#
|
3256
3263
|
# @example Request syntax with placeholder values
|
3257
3264
|
#
|
3258
3265
|
# resp = client.get_connections({
|
3259
3266
|
# catalog_id: "CatalogIdString",
|
3260
3267
|
# filter: {
|
3261
3268
|
# match_criteria: ["NameString"],
|
3262
|
-
# connection_type: "JDBC", # accepts JDBC, SFTP
|
3269
|
+
# connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB
|
3263
3270
|
# },
|
3264
3271
|
# hide_password: false,
|
3265
3272
|
# next_token: "Token",
|
@@ -3271,7 +3278,7 @@ module Aws::Glue
|
|
3271
3278
|
# resp.connection_list #=> Array
|
3272
3279
|
# resp.connection_list[0].name #=> String
|
3273
3280
|
# resp.connection_list[0].description #=> String
|
3274
|
-
# resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP"
|
3281
|
+
# resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB"
|
3275
3282
|
# resp.connection_list[0].match_criteria #=> Array
|
3276
3283
|
# resp.connection_list[0].match_criteria[0] #=> String
|
3277
3284
|
# resp.connection_list[0].connection_properties #=> Hash
|
@@ -3376,6 +3383,8 @@ module Aws::Glue
|
|
3376
3383
|
# * {Types::GetCrawlerMetricsResponse#crawler_metrics_list #crawler_metrics_list} => Array<Types::CrawlerMetrics>
|
3377
3384
|
# * {Types::GetCrawlerMetricsResponse#next_token #next_token} => String
|
3378
3385
|
#
|
3386
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3387
|
+
#
|
3379
3388
|
# @example Request syntax with placeholder values
|
3380
3389
|
#
|
3381
3390
|
# resp = client.get_crawler_metrics({
|
@@ -3419,6 +3428,8 @@ module Aws::Glue
|
|
3419
3428
|
# * {Types::GetCrawlersResponse#crawlers #crawlers} => Array<Types::Crawler>
|
3420
3429
|
# * {Types::GetCrawlersResponse#next_token #next_token} => String
|
3421
3430
|
#
|
3431
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3432
|
+
#
|
3422
3433
|
# @example Request syntax with placeholder values
|
3423
3434
|
#
|
3424
3435
|
# resp = client.get_crawlers({
|
@@ -3571,6 +3582,8 @@ module Aws::Glue
|
|
3571
3582
|
# * {Types::GetDatabasesResponse#database_list #database_list} => Array<Types::Database>
|
3572
3583
|
# * {Types::GetDatabasesResponse#next_token #next_token} => String
|
3573
3584
|
#
|
3585
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3586
|
+
#
|
3574
3587
|
# @example Request syntax with placeholder values
|
3575
3588
|
#
|
3576
3589
|
# resp = client.get_databases({
|
@@ -3725,6 +3738,8 @@ module Aws::Glue
|
|
3725
3738
|
# * {Types::GetDevEndpointsResponse#dev_endpoints #dev_endpoints} => Array<Types::DevEndpoint>
|
3726
3739
|
# * {Types::GetDevEndpointsResponse#next_token #next_token} => String
|
3727
3740
|
#
|
3741
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3742
|
+
#
|
3728
3743
|
# @example Request syntax with placeholder values
|
3729
3744
|
#
|
3730
3745
|
# resp = client.get_dev_endpoints({
|
@@ -3940,6 +3955,8 @@ module Aws::Glue
|
|
3940
3955
|
# * {Types::GetJobRunsResponse#job_runs #job_runs} => Array<Types::JobRun>
|
3941
3956
|
# * {Types::GetJobRunsResponse#next_token #next_token} => String
|
3942
3957
|
#
|
3958
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3959
|
+
#
|
3943
3960
|
# @example Request syntax with placeholder values
|
3944
3961
|
#
|
3945
3962
|
# resp = client.get_job_runs({
|
@@ -4000,6 +4017,8 @@ module Aws::Glue
|
|
4000
4017
|
# * {Types::GetJobsResponse#jobs #jobs} => Array<Types::Job>
|
4001
4018
|
# * {Types::GetJobsResponse#next_token #next_token} => String
|
4002
4019
|
#
|
4020
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4021
|
+
#
|
4003
4022
|
# @example Request syntax with placeholder values
|
4004
4023
|
#
|
4005
4024
|
# resp = client.get_jobs({
|
@@ -4138,6 +4157,8 @@ module Aws::Glue
|
|
4138
4157
|
# * {Types::GetMLTaskRunsResponse#task_runs #task_runs} => Array<Types::TaskRun>
|
4139
4158
|
# * {Types::GetMLTaskRunsResponse#next_token #next_token} => String
|
4140
4159
|
#
|
4160
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4161
|
+
#
|
4141
4162
|
# @example Request syntax with placeholder values
|
4142
4163
|
#
|
4143
4164
|
# resp = client.get_ml_task_runs({
|
@@ -4297,6 +4318,8 @@ module Aws::Glue
|
|
4297
4318
|
# * {Types::GetMLTransformsResponse#transforms #transforms} => Array<Types::MLTransform>
|
4298
4319
|
# * {Types::GetMLTransformsResponse#next_token #next_token} => String
|
4299
4320
|
#
|
4321
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4322
|
+
#
|
4300
4323
|
# @example Request syntax with placeholder values
|
4301
4324
|
#
|
4302
4325
|
# resp = client.get_ml_transforms({
|
@@ -4644,6 +4667,8 @@ module Aws::Glue
|
|
4644
4667
|
# * {Types::GetPartitionsResponse#partitions #partitions} => Array<Types::Partition>
|
4645
4668
|
# * {Types::GetPartitionsResponse#next_token #next_token} => String
|
4646
4669
|
#
|
4670
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4671
|
+
#
|
4647
4672
|
# @example Request syntax with placeholder values
|
4648
4673
|
#
|
4649
4674
|
# resp = client.get_partitions({
|
@@ -4870,6 +4895,8 @@ module Aws::Glue
|
|
4870
4895
|
# * {Types::GetSecurityConfigurationsResponse#security_configurations #security_configurations} => Array<Types::SecurityConfiguration>
|
4871
4896
|
# * {Types::GetSecurityConfigurationsResponse#next_token #next_token} => String
|
4872
4897
|
#
|
4898
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4899
|
+
#
|
4873
4900
|
# @example Request syntax with placeholder values
|
4874
4901
|
#
|
4875
4902
|
# resp = client.get_security_configurations({
|
@@ -5111,6 +5138,8 @@ module Aws::Glue
|
|
5111
5138
|
# * {Types::GetTableVersionsResponse#table_versions #table_versions} => Array<Types::TableVersion>
|
5112
5139
|
# * {Types::GetTableVersionsResponse#next_token #next_token} => String
|
5113
5140
|
#
|
5141
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5142
|
+
#
|
5114
5143
|
# @example Request syntax with placeholder values
|
5115
5144
|
#
|
5116
5145
|
# resp = client.get_table_versions({
|
@@ -5213,6 +5242,8 @@ module Aws::Glue
|
|
5213
5242
|
# * {Types::GetTablesResponse#table_list #table_list} => Array<Types::Table>
|
5214
5243
|
# * {Types::GetTablesResponse#next_token #next_token} => String
|
5215
5244
|
#
|
5245
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5246
|
+
#
|
5216
5247
|
# @example Request syntax with placeholder values
|
5217
5248
|
#
|
5218
5249
|
# resp = client.get_tables({
|
@@ -5385,6 +5416,8 @@ module Aws::Glue
|
|
5385
5416
|
# * {Types::GetTriggersResponse#triggers #triggers} => Array<Types::Trigger>
|
5386
5417
|
# * {Types::GetTriggersResponse#next_token #next_token} => String
|
5387
5418
|
#
|
5419
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5420
|
+
#
|
5388
5421
|
# @example Request syntax with placeholder values
|
5389
5422
|
#
|
5390
5423
|
# resp = client.get_triggers({
|
@@ -5497,6 +5530,8 @@ module Aws::Glue
|
|
5497
5530
|
# * {Types::GetUserDefinedFunctionsResponse#user_defined_functions #user_defined_functions} => Array<Types::UserDefinedFunction>
|
5498
5531
|
# * {Types::GetUserDefinedFunctionsResponse#next_token #next_token} => String
|
5499
5532
|
#
|
5533
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5534
|
+
#
|
5500
5535
|
# @example Request syntax with placeholder values
|
5501
5536
|
#
|
5502
5537
|
# resp = client.get_user_defined_functions({
|
@@ -5866,6 +5901,8 @@ module Aws::Glue
|
|
5866
5901
|
# * {Types::GetWorkflowRunsResponse#runs #runs} => Array<Types::WorkflowRun>
|
5867
5902
|
# * {Types::GetWorkflowRunsResponse#next_token #next_token} => String
|
5868
5903
|
#
|
5904
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5905
|
+
#
|
5869
5906
|
# @example Request syntax with placeholder values
|
5870
5907
|
#
|
5871
5908
|
# resp = client.get_workflow_runs({
|
@@ -6010,6 +6047,8 @@ module Aws::Glue
|
|
6010
6047
|
# * {Types::ListCrawlersResponse#crawler_names #crawler_names} => Array<String>
|
6011
6048
|
# * {Types::ListCrawlersResponse#next_token #next_token} => String
|
6012
6049
|
#
|
6050
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6051
|
+
#
|
6013
6052
|
# @example Request syntax with placeholder values
|
6014
6053
|
#
|
6015
6054
|
# resp = client.list_crawlers({
|
@@ -6059,6 +6098,8 @@ module Aws::Glue
|
|
6059
6098
|
# * {Types::ListDevEndpointsResponse#dev_endpoint_names #dev_endpoint_names} => Array<String>
|
6060
6099
|
# * {Types::ListDevEndpointsResponse#next_token #next_token} => String
|
6061
6100
|
#
|
6101
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6102
|
+
#
|
6062
6103
|
# @example Request syntax with placeholder values
|
6063
6104
|
#
|
6064
6105
|
# resp = client.list_dev_endpoints({
|
@@ -6107,6 +6148,8 @@ module Aws::Glue
|
|
6107
6148
|
# * {Types::ListJobsResponse#job_names #job_names} => Array<String>
|
6108
6149
|
# * {Types::ListJobsResponse#next_token #next_token} => String
|
6109
6150
|
#
|
6151
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6152
|
+
#
|
6110
6153
|
# @example Request syntax with placeholder values
|
6111
6154
|
#
|
6112
6155
|
# resp = client.list_jobs({
|
@@ -6161,6 +6204,8 @@ module Aws::Glue
|
|
6161
6204
|
# * {Types::ListMLTransformsResponse#transform_ids #transform_ids} => Array<String>
|
6162
6205
|
# * {Types::ListMLTransformsResponse#next_token #next_token} => String
|
6163
6206
|
#
|
6207
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6208
|
+
#
|
6164
6209
|
# @example Request syntax with placeholder values
|
6165
6210
|
#
|
6166
6211
|
# resp = client.list_ml_transforms({
|
@@ -6234,6 +6279,8 @@ module Aws::Glue
|
|
6234
6279
|
# * {Types::ListTriggersResponse#trigger_names #trigger_names} => Array<String>
|
6235
6280
|
# * {Types::ListTriggersResponse#next_token #next_token} => String
|
6236
6281
|
#
|
6282
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6283
|
+
#
|
6237
6284
|
# @example Request syntax with placeholder values
|
6238
6285
|
#
|
6239
6286
|
# resp = client.list_triggers({
|
@@ -6273,6 +6320,8 @@ module Aws::Glue
|
|
6273
6320
|
# * {Types::ListWorkflowsResponse#workflows #workflows} => Array<String>
|
6274
6321
|
# * {Types::ListWorkflowsResponse#next_token #next_token} => String
|
6275
6322
|
#
|
6323
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6324
|
+
#
|
6276
6325
|
# @example Request syntax with placeholder values
|
6277
6326
|
#
|
6278
6327
|
# resp = client.list_workflows({
|
@@ -6489,6 +6538,8 @@ module Aws::Glue
|
|
6489
6538
|
# * {Types::SearchTablesResponse#next_token #next_token} => String
|
6490
6539
|
# * {Types::SearchTablesResponse#table_list #table_list} => Array<Types::Table>
|
6491
6540
|
#
|
6541
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6542
|
+
#
|
6492
6543
|
# @example Request syntax with placeholder values
|
6493
6544
|
#
|
6494
6545
|
# resp = client.search_tables({
|
@@ -7234,7 +7285,7 @@ module Aws::Glue
|
|
7234
7285
|
# connection_input: { # required
|
7235
7286
|
# name: "NameString", # required
|
7236
7287
|
# description: "DescriptionString",
|
7237
|
-
# connection_type: "JDBC", # required, accepts JDBC, SFTP
|
7288
|
+
# connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
|
7238
7289
|
# match_criteria: ["NameString"],
|
7239
7290
|
# connection_properties: { # required
|
7240
7291
|
# "HOST" => "ValueString",
|
@@ -8076,7 +8127,7 @@ module Aws::Glue
|
|
8076
8127
|
params: params,
|
8077
8128
|
config: config)
|
8078
8129
|
context[:gem_name] = 'aws-sdk-glue'
|
8079
|
-
context[:gem_version] = '1.
|
8130
|
+
context[:gem_version] = '1.51.0'
|
8080
8131
|
Seahorse::Client::Request.new(handlers, context)
|
8081
8132
|
end
|
8082
8133
|
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::Glue
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Glue::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Glue::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Glue::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -1242,7 +1242,8 @@ module Aws::Glue
|
|
1242
1242
|
#
|
1243
1243
|
# * `INSTANCE_ID` - The instance ID to use.
|
1244
1244
|
#
|
1245
|
-
# * `JDBC_CONNECTION_URL` - The URL for
|
1245
|
+
# * `JDBC_CONNECTION_URL` - The URL for connecting to a JDBC data
|
1246
|
+
# source.
|
1246
1247
|
#
|
1247
1248
|
# * `JDBC_ENFORCE_SSL` - A Boolean string (true, false) specifying
|
1248
1249
|
# whether Secure Sockets Layer (SSL) with hostname matching is
|
@@ -1270,6 +1271,9 @@ module Aws::Glue
|
|
1270
1271
|
# man-in-the-middle attack. In Oracle database, this is used as the
|
1271
1272
|
# `SSL_SERVER_CERT_DN`; in Microsoft SQL Server, this is used as the
|
1272
1273
|
# `hostNameInCertificate`.
|
1274
|
+
#
|
1275
|
+
# * `CONNECTION_URL` - The URL for connecting to a general (non-JDBC)
|
1276
|
+
# data source.
|
1273
1277
|
# @return [Hash<String,String>]
|
1274
1278
|
#
|
1275
1279
|
# @!attribute [rw] physical_connection_requirements
|
@@ -1314,7 +1318,7 @@ module Aws::Glue
|
|
1314
1318
|
# {
|
1315
1319
|
# name: "NameString", # required
|
1316
1320
|
# description: "DescriptionString",
|
1317
|
-
# connection_type: "JDBC", # required, accepts JDBC, SFTP
|
1321
|
+
# connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
|
1318
1322
|
# match_criteria: ["NameString"],
|
1319
1323
|
# connection_properties: { # required
|
1320
1324
|
# "HOST" => "ValueString",
|
@@ -1335,8 +1339,15 @@ module Aws::Glue
|
|
1335
1339
|
# @return [String]
|
1336
1340
|
#
|
1337
1341
|
# @!attribute [rw] connection_type
|
1338
|
-
# The type of the connection. Currently,
|
1339
|
-
#
|
1342
|
+
# The type of the connection. Currently, these types are supported:
|
1343
|
+
#
|
1344
|
+
# * `JDBC` - Designates a connection to a database through Java
|
1345
|
+
# Database Connectivity (JDBC).
|
1346
|
+
#
|
1347
|
+
# * `MONGODB` - Designates a connection to a MongoDB document
|
1348
|
+
# database.
|
1349
|
+
#
|
1350
|
+
# SFTP is not supported.
|
1340
1351
|
# @return [String]
|
1341
1352
|
#
|
1342
1353
|
# @!attribute [rw] match_criteria
|
@@ -1811,7 +1822,7 @@ module Aws::Glue
|
|
1811
1822
|
# connection_input: { # required
|
1812
1823
|
# name: "NameString", # required
|
1813
1824
|
# description: "DescriptionString",
|
1814
|
-
# connection_type: "JDBC", # required, accepts JDBC, SFTP
|
1825
|
+
# connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
|
1815
1826
|
# match_criteria: ["NameString"],
|
1816
1827
|
# connection_properties: { # required
|
1817
1828
|
# "HOST" => "ValueString",
|
@@ -4933,7 +4944,7 @@ module Aws::Glue
|
|
4933
4944
|
#
|
4934
4945
|
# {
|
4935
4946
|
# match_criteria: ["NameString"],
|
4936
|
-
# connection_type: "JDBC", # accepts JDBC, SFTP
|
4947
|
+
# connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB
|
4937
4948
|
# }
|
4938
4949
|
#
|
4939
4950
|
# @!attribute [rw] match_criteria
|
@@ -4961,7 +4972,7 @@ module Aws::Glue
|
|
4961
4972
|
# catalog_id: "CatalogIdString",
|
4962
4973
|
# filter: {
|
4963
4974
|
# match_criteria: ["NameString"],
|
4964
|
-
# connection_type: "JDBC", # accepts JDBC, SFTP
|
4975
|
+
# connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB
|
4965
4976
|
# },
|
4966
4977
|
# hide_password: false,
|
4967
4978
|
# next_token: "Token",
|
@@ -11255,7 +11266,7 @@ module Aws::Glue
|
|
11255
11266
|
# connection_input: { # required
|
11256
11267
|
# name: "NameString", # required
|
11257
11268
|
# description: "DescriptionString",
|
11258
|
-
# connection_type: "JDBC", # required, accepts JDBC, SFTP
|
11269
|
+
# connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB
|
11259
11270
|
# match_criteria: ["NameString"],
|
11260
11271
|
# connection_properties: { # required
|
11261
11272
|
# "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.
|
4
|
+
version: 1.51.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-03-
|
11
|
+
date: 2020-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|