aws-sdk-glue 1.241.0 → 1.242.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: 5c571088da7877e68c753ca2a14170e534b6fa2d2f6966a7ddcbb3347bdbb978
4
- data.tar.gz: c1444fef632df415a97723733fd5f9643a08647ef13d2ede8f434105ab37cf3c
3
+ metadata.gz: bacbd73aeef70b38bc88a79762264d775b1f945c4931bf17cd4129ef8c04efa3
4
+ data.tar.gz: 51b4728f80de9ca10eca64ce4206f8160ce0bdbbfb8c83078fe803f6f0362c28
5
5
  SHA512:
6
- metadata.gz: 30539120dd8a03f70bd17b54ae67bd9d65fc328e851f35723df3c16216e7c38d4847b815901862869411ef7f552facd89271ef67e0e6554f355a42b03fbacda0
7
- data.tar.gz: fe099c2b6d903bbd0bfd8292c8bf0ad73f950eab09c967ec437e3ff0d7a86d84036f7034a9be66f9cf4acde752699df4d1fd4d6564a815ce2395ef8862a57818
6
+ metadata.gz: a8e598e4140064b2d655e94b67cdbd843726c8999885892e9481f3cf0ad5ad1fad89f0a1fd6229a9603bd3aa8638866137789d29f6241edcf69e2a671508a12d
7
+ data.tar.gz: c5f5b11b464aba0318b2bcaf891e37dd72f31ca033c7570073198d7d3313b9bd017d6cc80e3dcc9ae3e22ca4e6807ffd9d29c6786855aec998b04d2e369f7b16
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.242.0 (2025-11-20)
5
+ ------------------
6
+
7
+ * Feature - Added FunctionType parameter to Glue GetuserDefinedFunctions.
8
+
4
9
  1.241.0 (2025-11-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.241.0
1
+ 1.242.0
@@ -4748,6 +4748,7 @@ module Aws::Glue
4748
4748
  # function_name: "NameString",
4749
4749
  # class_name: "NameString",
4750
4750
  # owner_name: "NameString",
4751
+ # function_type: "REGULAR_FUNCTION", # accepts REGULAR_FUNCTION, AGGREGATE_FUNCTION, STORED_PROCEDURE
4751
4752
  # owner_type: "USER", # accepts USER, ROLE, GROUP
4752
4753
  # resource_uris: [
4753
4754
  # {
@@ -11730,6 +11731,7 @@ module Aws::Glue
11730
11731
  # resp.user_defined_function.database_name #=> String
11731
11732
  # resp.user_defined_function.class_name #=> String
11732
11733
  # resp.user_defined_function.owner_name #=> String
11734
+ # resp.user_defined_function.function_type #=> String, one of "REGULAR_FUNCTION", "AGGREGATE_FUNCTION", "STORED_PROCEDURE"
11733
11735
  # resp.user_defined_function.owner_type #=> String, one of "USER", "ROLE", "GROUP"
11734
11736
  # resp.user_defined_function.create_time #=> Time
11735
11737
  # resp.user_defined_function.resource_uris #=> Array
@@ -11762,6 +11764,15 @@ module Aws::Glue
11762
11764
  # An optional function-name pattern string that filters the function
11763
11765
  # definitions returned.
11764
11766
  #
11767
+ # @option params [String] :function_type
11768
+ # An optional function-type pattern string that filters the function
11769
+ # definitions returned from Amazon Redshift Federated Permissions
11770
+ # Catalog.
11771
+ #
11772
+ # Specify a value of `REGULAR_FUNCTION` or `STORED_PROCEDURE`. The
11773
+ # `STORED_PROCEDURE` function type is only compatible with Amazon
11774
+ # Redshift Federated Permissions Catalog.
11775
+ #
11765
11776
  # @option params [String] :next_token
11766
11777
  # A continuation token, if this is a continuation call.
11767
11778
  #
@@ -11781,6 +11792,7 @@ module Aws::Glue
11781
11792
  # catalog_id: "CatalogIdString",
11782
11793
  # database_name: "NameString",
11783
11794
  # pattern: "NameString", # required
11795
+ # function_type: "REGULAR_FUNCTION", # accepts REGULAR_FUNCTION, AGGREGATE_FUNCTION, STORED_PROCEDURE
11784
11796
  # next_token: "Token",
11785
11797
  # max_results: 1,
11786
11798
  # })
@@ -11792,6 +11804,7 @@ module Aws::Glue
11792
11804
  # resp.user_defined_functions[0].database_name #=> String
11793
11805
  # resp.user_defined_functions[0].class_name #=> String
11794
11806
  # resp.user_defined_functions[0].owner_name #=> String
11807
+ # resp.user_defined_functions[0].function_type #=> String, one of "REGULAR_FUNCTION", "AGGREGATE_FUNCTION", "STORED_PROCEDURE"
11795
11808
  # resp.user_defined_functions[0].owner_type #=> String, one of "USER", "ROLE", "GROUP"
11796
11809
  # resp.user_defined_functions[0].create_time #=> Time
11797
11810
  # resp.user_defined_functions[0].resource_uris #=> Array
@@ -17963,6 +17976,7 @@ module Aws::Glue
17963
17976
  # function_name: "NameString",
17964
17977
  # class_name: "NameString",
17965
17978
  # owner_name: "NameString",
17979
+ # function_type: "REGULAR_FUNCTION", # accepts REGULAR_FUNCTION, AGGREGATE_FUNCTION, STORED_PROCEDURE
17966
17980
  # owner_type: "USER", # accepts USER, ROLE, GROUP
17967
17981
  # resource_uris: [
17968
17982
  # {
@@ -18052,7 +18066,7 @@ module Aws::Glue
18052
18066
  tracer: tracer
18053
18067
  )
18054
18068
  context[:gem_name] = 'aws-sdk-glue'
18055
- context[:gem_version] = '1.241.0'
18069
+ context[:gem_version] = '1.242.0'
18056
18070
  Seahorse::Client::Request.new(handlers, context)
18057
18071
  end
18058
18072
 
@@ -628,6 +628,7 @@ module Aws::Glue
628
628
  FindMatchesParameters = Shapes::StructureShape.new(name: 'FindMatchesParameters')
629
629
  FindMatchesTaskRunProperties = Shapes::StructureShape.new(name: 'FindMatchesTaskRunProperties')
630
630
  FormatString = Shapes::StringShape.new(name: 'FormatString')
631
+ FunctionType = Shapes::StringShape.new(name: 'FunctionType')
631
632
  Generic512CharString = Shapes::StringShape.new(name: 'Generic512CharString')
632
633
  GenericBoundedDouble = Shapes::FloatShape.new(name: 'GenericBoundedDouble')
633
634
  GenericLimitedString = Shapes::StringShape.new(name: 'GenericLimitedString')
@@ -4732,6 +4733,7 @@ module Aws::Glue
4732
4733
  GetUserDefinedFunctionsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
4733
4734
  GetUserDefinedFunctionsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, location_name: "DatabaseName"))
4734
4735
  GetUserDefinedFunctionsRequest.add_member(:pattern, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Pattern"))
4736
+ GetUserDefinedFunctionsRequest.add_member(:function_type, Shapes::ShapeRef.new(shape: FunctionType, location_name: "FunctionType"))
4735
4737
  GetUserDefinedFunctionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
4736
4738
  GetUserDefinedFunctionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
4737
4739
  GetUserDefinedFunctionsRequest.struct_class = Types::GetUserDefinedFunctionsRequest
@@ -7583,6 +7585,7 @@ module Aws::Glue
7583
7585
  UserDefinedFunction.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, location_name: "DatabaseName"))
7584
7586
  UserDefinedFunction.add_member(:class_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ClassName"))
7585
7587
  UserDefinedFunction.add_member(:owner_name, Shapes::ShapeRef.new(shape: NameString, location_name: "OwnerName"))
7588
+ UserDefinedFunction.add_member(:function_type, Shapes::ShapeRef.new(shape: FunctionType, location_name: "FunctionType"))
7586
7589
  UserDefinedFunction.add_member(:owner_type, Shapes::ShapeRef.new(shape: PrincipalType, location_name: "OwnerType"))
7587
7590
  UserDefinedFunction.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreateTime"))
7588
7591
  UserDefinedFunction.add_member(:resource_uris, Shapes::ShapeRef.new(shape: ResourceUriList, location_name: "ResourceUris"))
@@ -7592,6 +7595,7 @@ module Aws::Glue
7592
7595
  UserDefinedFunctionInput.add_member(:function_name, Shapes::ShapeRef.new(shape: NameString, location_name: "FunctionName"))
7593
7596
  UserDefinedFunctionInput.add_member(:class_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ClassName"))
7594
7597
  UserDefinedFunctionInput.add_member(:owner_name, Shapes::ShapeRef.new(shape: NameString, location_name: "OwnerName"))
7598
+ UserDefinedFunctionInput.add_member(:function_type, Shapes::ShapeRef.new(shape: FunctionType, location_name: "FunctionType"))
7595
7599
  UserDefinedFunctionInput.add_member(:owner_type, Shapes::ShapeRef.new(shape: PrincipalType, location_name: "OwnerType"))
7596
7600
  UserDefinedFunctionInput.add_member(:resource_uris, Shapes::ShapeRef.new(shape: ResourceUriList, location_name: "ResourceUris"))
7597
7601
  UserDefinedFunctionInput.struct_class = Types::UserDefinedFunctionInput
@@ -15531,6 +15531,16 @@ module Aws::Glue
15531
15531
  # definitions returned.
15532
15532
  # @return [String]
15533
15533
  #
15534
+ # @!attribute [rw] function_type
15535
+ # An optional function-type pattern string that filters the function
15536
+ # definitions returned from Amazon Redshift Federated Permissions
15537
+ # Catalog.
15538
+ #
15539
+ # Specify a value of `REGULAR_FUNCTION` or `STORED_PROCEDURE`. The
15540
+ # `STORED_PROCEDURE` function type is only compatible with Amazon
15541
+ # Redshift Federated Permissions Catalog.
15542
+ # @return [String]
15543
+ #
15534
15544
  # @!attribute [rw] next_token
15535
15545
  # A continuation token, if this is a continuation call.
15536
15546
  # @return [String]
@@ -15545,6 +15555,7 @@ module Aws::Glue
15545
15555
  :catalog_id,
15546
15556
  :database_name,
15547
15557
  :pattern,
15558
+ :function_type,
15548
15559
  :next_token,
15549
15560
  :max_results)
15550
15561
  SENSITIVE = []
@@ -29725,6 +29736,10 @@ module Aws::Glue
29725
29736
  # The owner of the function.
29726
29737
  # @return [String]
29727
29738
  #
29739
+ # @!attribute [rw] function_type
29740
+ # The type of the function.
29741
+ # @return [String]
29742
+ #
29728
29743
  # @!attribute [rw] owner_type
29729
29744
  # The owner type.
29730
29745
  # @return [String]
@@ -29748,6 +29763,7 @@ module Aws::Glue
29748
29763
  :database_name,
29749
29764
  :class_name,
29750
29765
  :owner_name,
29766
+ :function_type,
29751
29767
  :owner_type,
29752
29768
  :create_time,
29753
29769
  :resource_uris,
@@ -29770,6 +29786,10 @@ module Aws::Glue
29770
29786
  # The owner of the function.
29771
29787
  # @return [String]
29772
29788
  #
29789
+ # @!attribute [rw] function_type
29790
+ # The type of the function.
29791
+ # @return [String]
29792
+ #
29773
29793
  # @!attribute [rw] owner_type
29774
29794
  # The owner type.
29775
29795
  # @return [String]
@@ -29784,6 +29804,7 @@ module Aws::Glue
29784
29804
  :function_name,
29785
29805
  :class_name,
29786
29806
  :owner_name,
29807
+ :function_type,
29787
29808
  :owner_type,
29788
29809
  :resource_uris)
29789
29810
  SENSITIVE = []
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.241.0'
57
+ GEM_VERSION = '1.242.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -3060,6 +3060,7 @@ module Aws
3060
3060
  function_name: ::String?,
3061
3061
  class_name: ::String?,
3062
3062
  owner_name: ::String?,
3063
+ function_type: ("REGULAR_FUNCTION" | "AGGREGATE_FUNCTION" | "STORED_PROCEDURE")?,
3063
3064
  owner_type: ("USER" | "ROLE" | "GROUP")?,
3064
3065
  resource_uris: Array[
3065
3066
  {
@@ -4746,6 +4747,7 @@ module Aws
4746
4747
  ?catalog_id: ::String,
4747
4748
  ?database_name: ::String,
4748
4749
  pattern: ::String,
4750
+ ?function_type: ("REGULAR_FUNCTION" | "AGGREGATE_FUNCTION" | "STORED_PROCEDURE"),
4749
4751
  ?next_token: ::String,
4750
4752
  ?max_results: ::Integer
4751
4753
  ) -> _GetUserDefinedFunctionsResponseSuccess
@@ -8437,6 +8439,7 @@ module Aws
8437
8439
  function_name: ::String?,
8438
8440
  class_name: ::String?,
8439
8441
  owner_name: ::String?,
8442
+ function_type: ("REGULAR_FUNCTION" | "AGGREGATE_FUNCTION" | "STORED_PROCEDURE")?,
8440
8443
  owner_type: ("USER" | "ROLE" | "GROUP")?,
8441
8444
  resource_uris: Array[
8442
8445
  {
data/sig/types.rbs CHANGED
@@ -3841,6 +3841,7 @@ module Aws::Glue
3841
3841
  attr_accessor catalog_id: ::String
3842
3842
  attr_accessor database_name: ::String
3843
3843
  attr_accessor pattern: ::String
3844
+ attr_accessor function_type: ("REGULAR_FUNCTION" | "AGGREGATE_FUNCTION" | "STORED_PROCEDURE")
3844
3845
  attr_accessor next_token: ::String
3845
3846
  attr_accessor max_results: ::Integer
3846
3847
  SENSITIVE: []
@@ -7299,6 +7300,7 @@ module Aws::Glue
7299
7300
  attr_accessor database_name: ::String
7300
7301
  attr_accessor class_name: ::String
7301
7302
  attr_accessor owner_name: ::String
7303
+ attr_accessor function_type: ("REGULAR_FUNCTION" | "AGGREGATE_FUNCTION" | "STORED_PROCEDURE")
7302
7304
  attr_accessor owner_type: ("USER" | "ROLE" | "GROUP")
7303
7305
  attr_accessor create_time: ::Time
7304
7306
  attr_accessor resource_uris: ::Array[Types::ResourceUri]
@@ -7310,6 +7312,7 @@ module Aws::Glue
7310
7312
  attr_accessor function_name: ::String
7311
7313
  attr_accessor class_name: ::String
7312
7314
  attr_accessor owner_name: ::String
7315
+ attr_accessor function_type: ("REGULAR_FUNCTION" | "AGGREGATE_FUNCTION" | "STORED_PROCEDURE")
7313
7316
  attr_accessor owner_type: ("USER" | "ROLE" | "GROUP")
7314
7317
  attr_accessor resource_uris: ::Array[Types::ResourceUri]
7315
7318
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.241.0
4
+ version: 1.242.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services