aws-sdk-glue 1.56.0 → 1.57.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/lib/aws-sdk-glue/client.rb +6 -2
- data/lib/aws-sdk-glue/client_api.rb +1 -0
- data/lib/aws-sdk-glue/types.rb +8 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8089a559fb60c829c8699299fee0d4617d17cff80769a4aa948e728d1612636e
|
4
|
+
data.tar.gz: cc6166fea0ae6dfc2a4798ed6f4281be597505df12c6c804931dddd4eb75c6ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8411332085a8fe5291ee3260b43d6ee7e5d4e89ead26e9cef3de1def8a22e9a32c6644ff66d4bac43b5531f1c004a86747002d260f546a9e896c5ec4ab6a1445
|
7
|
+
data.tar.gz: 870cb6ec1afa3005f326e33f61d135c124f2e96e63d8b3361b7a5260b98c3402ef498ac95fe24a2e1557e2a3cf8217ebc73bf5abd0734b87a8425e260521f821
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -5489,6 +5489,7 @@ module Aws::Glue
|
|
5489
5489
|
# @example Response structure
|
5490
5490
|
#
|
5491
5491
|
# resp.user_defined_function.function_name #=> String
|
5492
|
+
# resp.user_defined_function.database_name #=> String
|
5492
5493
|
# resp.user_defined_function.class_name #=> String
|
5493
5494
|
# resp.user_defined_function.owner_name #=> String
|
5494
5495
|
# resp.user_defined_function.owner_type #=> String, one of "USER", "ROLE", "GROUP"
|
@@ -5513,7 +5514,9 @@ module Aws::Glue
|
|
5513
5514
|
# located. If none is provided, the AWS account ID is used by default.
|
5514
5515
|
#
|
5515
5516
|
# @option params [String] :database_name
|
5516
|
-
# The name of the catalog database where the functions are located.
|
5517
|
+
# The name of the catalog database where the functions are located. If
|
5518
|
+
# none is provided, functions from all the databases across the catalog
|
5519
|
+
# will be returned.
|
5517
5520
|
#
|
5518
5521
|
# @option params [required, String] :pattern
|
5519
5522
|
# An optional function-name pattern string that filters the function
|
@@ -5546,6 +5549,7 @@ module Aws::Glue
|
|
5546
5549
|
#
|
5547
5550
|
# resp.user_defined_functions #=> Array
|
5548
5551
|
# resp.user_defined_functions[0].function_name #=> String
|
5552
|
+
# resp.user_defined_functions[0].database_name #=> String
|
5549
5553
|
# resp.user_defined_functions[0].class_name #=> String
|
5550
5554
|
# resp.user_defined_functions[0].owner_name #=> String
|
5551
5555
|
# resp.user_defined_functions[0].owner_type #=> String, one of "USER", "ROLE", "GROUP"
|
@@ -8153,7 +8157,7 @@ module Aws::Glue
|
|
8153
8157
|
params: params,
|
8154
8158
|
config: config)
|
8155
8159
|
context[:gem_name] = 'aws-sdk-glue'
|
8156
|
-
context[:gem_version] = '1.
|
8160
|
+
context[:gem_version] = '1.57.0'
|
8157
8161
|
Seahorse::Client::Request.new(handlers, context)
|
8158
8162
|
end
|
8159
8163
|
|
@@ -2618,6 +2618,7 @@ module Aws::Glue
|
|
2618
2618
|
UpdateXMLClassifierRequest.struct_class = Types::UpdateXMLClassifierRequest
|
2619
2619
|
|
2620
2620
|
UserDefinedFunction.add_member(:function_name, Shapes::ShapeRef.new(shape: NameString, location_name: "FunctionName"))
|
2621
|
+
UserDefinedFunction.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, location_name: "DatabaseName"))
|
2621
2622
|
UserDefinedFunction.add_member(:class_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ClassName"))
|
2622
2623
|
UserDefinedFunction.add_member(:owner_name, Shapes::ShapeRef.new(shape: NameString, location_name: "OwnerName"))
|
2623
2624
|
UserDefinedFunction.add_member(:owner_type, Shapes::ShapeRef.new(shape: PrincipalType, location_name: "OwnerType"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -6821,7 +6821,9 @@ module Aws::Glue
|
|
6821
6821
|
# @return [String]
|
6822
6822
|
#
|
6823
6823
|
# @!attribute [rw] database_name
|
6824
|
-
# The name of the catalog database where the functions are located.
|
6824
|
+
# The name of the catalog database where the functions are located. If
|
6825
|
+
# none is provided, functions from all the databases across the
|
6826
|
+
# catalog will be returned.
|
6825
6827
|
# @return [String]
|
6826
6828
|
#
|
6827
6829
|
# @!attribute [rw] pattern
|
@@ -12412,6 +12414,10 @@ module Aws::Glue
|
|
12412
12414
|
# The name of the function.
|
12413
12415
|
# @return [String]
|
12414
12416
|
#
|
12417
|
+
# @!attribute [rw] database_name
|
12418
|
+
# The name of the database where the function resides.
|
12419
|
+
# @return [String]
|
12420
|
+
#
|
12415
12421
|
# @!attribute [rw] class_name
|
12416
12422
|
# The Java class that contains the function code.
|
12417
12423
|
# @return [String]
|
@@ -12436,6 +12442,7 @@ module Aws::Glue
|
|
12436
12442
|
#
|
12437
12443
|
class UserDefinedFunction < Struct.new(
|
12438
12444
|
:function_name,
|
12445
|
+
:database_name,
|
12439
12446
|
:class_name,
|
12440
12447
|
:owner_name,
|
12441
12448
|
:owner_type,
|
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.57.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-
|
11
|
+
date: 2020-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|