aws-sdk-glue 1.170.0 → 1.171.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +3 -1
- data/lib/aws-sdk-glue/client_api.rb +1 -0
- data/lib/aws-sdk-glue/types.rb +9 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +1 -0
- 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: 94f7fce50a8ebf0798baf21c67ed4f6c26d61a51703feb4b575f2a2edb5f3900
|
4
|
+
data.tar.gz: f55d99a2d34db183a588e3f555f5a3019d9a4222adad32db215c43923bc4663f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae621e9c38d53ca2685cd0a9bcdaac261b6cbf4021e3ed9b902e719ea7d45f252f44e8082bb9c3dc8c16a4091da336b91d361ed34035164f5f7a605c7f3c7e39
|
7
|
+
data.tar.gz: 71fbed515f5e4991afce52946613e4d219c23c443b33fb31138b75b5c1184fb793a2005d5258419279edcc690ea422ab048ea060520b907c849eda0268014f38
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.171.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -11891,6 +11891,7 @@ module Aws::Glue
|
|
11891
11891
|
# * {Types::GetUnfilteredTableMetadataResponse#resource_arn #resource_arn} => String
|
11892
11892
|
# * {Types::GetUnfilteredTableMetadataResponse#is_protected #is_protected} => Boolean
|
11893
11893
|
# * {Types::GetUnfilteredTableMetadataResponse#permissions #permissions} => Array<String>
|
11894
|
+
# * {Types::GetUnfilteredTableMetadataResponse#row_filter #row_filter} => String
|
11894
11895
|
#
|
11895
11896
|
# @example Request syntax with placeholder values
|
11896
11897
|
#
|
@@ -12015,6 +12016,7 @@ module Aws::Glue
|
|
12015
12016
|
# resp.is_protected #=> Boolean
|
12016
12017
|
# resp.permissions #=> Array
|
12017
12018
|
# resp.permissions[0] #=> String, one of "ALL", "SELECT", "ALTER", "DROP", "DELETE", "INSERT", "CREATE_DATABASE", "CREATE_TABLE", "DATA_LOCATION_ACCESS"
|
12019
|
+
# resp.row_filter #=> String
|
12018
12020
|
#
|
12019
12021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetUnfilteredTableMetadata AWS API Documentation
|
12020
12022
|
#
|
@@ -17119,7 +17121,7 @@ module Aws::Glue
|
|
17119
17121
|
params: params,
|
17120
17122
|
config: config)
|
17121
17123
|
context[:gem_name] = 'aws-sdk-glue'
|
17122
|
-
context[:gem_version] = '1.
|
17124
|
+
context[:gem_version] = '1.171.0'
|
17123
17125
|
Seahorse::Client::Request.new(handlers, context)
|
17124
17126
|
end
|
17125
17127
|
|
@@ -3691,6 +3691,7 @@ module Aws::Glue
|
|
3691
3691
|
GetUnfilteredTableMetadataResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ArnString, location_name: "ResourceArn"))
|
3692
3692
|
GetUnfilteredTableMetadataResponse.add_member(:is_protected, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsProtected"))
|
3693
3693
|
GetUnfilteredTableMetadataResponse.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
|
3694
|
+
GetUnfilteredTableMetadataResponse.add_member(:row_filter, Shapes::ShapeRef.new(shape: PredicateString, location_name: "RowFilter"))
|
3694
3695
|
GetUnfilteredTableMetadataResponse.struct_class = Types::GetUnfilteredTableMetadataResponse
|
3695
3696
|
|
3696
3697
|
GetUserDefinedFunctionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -12227,6 +12227,13 @@ module Aws::Glue
|
|
12227
12227
|
# to authorize the call when no view context is found.
|
12228
12228
|
# @return [Array<String>]
|
12229
12229
|
#
|
12230
|
+
# @!attribute [rw] row_filter
|
12231
|
+
# The filter that applies to the table. For example when applying the
|
12232
|
+
# filter in SQL, it would go in the `WHERE` clause and can be
|
12233
|
+
# evaluated by using an `AND` operator with any other predicates
|
12234
|
+
# applied by the user querying the table.
|
12235
|
+
# @return [String]
|
12236
|
+
#
|
12230
12237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetUnfilteredTableMetadataResponse AWS API Documentation
|
12231
12238
|
#
|
12232
12239
|
class GetUnfilteredTableMetadataResponse < Struct.new(
|
@@ -12238,7 +12245,8 @@ module Aws::Glue
|
|
12238
12245
|
:is_multi_dialect_view,
|
12239
12246
|
:resource_arn,
|
12240
12247
|
:is_protected,
|
12241
|
-
:permissions
|
12248
|
+
:permissions,
|
12249
|
+
:row_filter)
|
12242
12250
|
SENSITIVE = []
|
12243
12251
|
include Aws::Structure
|
12244
12252
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -3713,6 +3713,7 @@ module Aws
|
|
3713
3713
|
def resource_arn: () -> ::String
|
3714
3714
|
def is_protected: () -> bool
|
3715
3715
|
def permissions: () -> ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]
|
3716
|
+
def row_filter: () -> ::String
|
3716
3717
|
end
|
3717
3718
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_unfiltered_table_metadata-instance_method
|
3718
3719
|
def get_unfiltered_table_metadata: (
|
data/sig/types.rbs
CHANGED
@@ -3054,6 +3054,7 @@ module Aws::Glue
|
|
3054
3054
|
attr_accessor resource_arn: ::String
|
3055
3055
|
attr_accessor is_protected: bool
|
3056
3056
|
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]
|
3057
|
+
attr_accessor row_filter: ::String
|
3057
3058
|
SENSITIVE: []
|
3058
3059
|
end
|
3059
3060
|
|
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.171.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: 2024-04-
|
11
|
+
date: 2024-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|