aws-sdk-glue 1.169.0 → 1.170.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: 6ea91f2ebbbdac9e0b3cb3143b659311ae3cff9d7c141c292d57a6dc12b0d808
4
- data.tar.gz: 6739829c9a011811b6ee5556527c55d0550a63c742b1c69cf9afa1225c2b4914
3
+ metadata.gz: 99e40064401700d88dbc4ef06c8e912d49c93454c600631373ae867ca47fd68b
4
+ data.tar.gz: 45c5acccff36198cefbb69ecb11b4ea97dfdb07ba2fb516747db8718b79714b1
5
5
  SHA512:
6
- metadata.gz: 3dfb262f466b36b57c4caf8b05acb48afbb564689deeb1f90a248bd202fdd164fd7f44fcf8797c7897117d26729ab66f1c43a36199043b66a5763e9db4bacb4a
7
- data.tar.gz: 553eb5698719bdae71113afd982d9add5fc4f896df188081d8d151cd880d130d63e03180a39a8399b008620ae7ca17f12f9ed8a99da1ba07a748ead8a6c2beb9
6
+ metadata.gz: f14e38199d0586de50a930a426d3790cf01c7541476da2bdeb6a6ce337cf5af1270ac5f0be1ea7c79eca14ed2e1aa5b09ccd5aec794a5edcfa0f59e2233575db
7
+ data.tar.gz: d3e1261064990a71394172998b37a1f62c9002887e6c8b9aed4c3a5da377d5c8d30776ae8099bf85d2dacb77a1f3dc37611662ab92ef2082538991223d1d8ebb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.170.0 (2024-04-12)
5
+ ------------------
6
+
7
+ * Feature - Modifying request for GetUnfilteredTableMetadata for view-related fields.
8
+
4
9
  1.169.0 (2024-04-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.169.0
1
+ 1.170.0
@@ -11801,8 +11801,8 @@ module Aws::Glue
11801
11801
  req.send_request(options)
11802
11802
  end
11803
11803
 
11804
- # Retrieves table metadata from the Data Catalog that contains
11805
- # unfiltered metadata.
11804
+ # Allows a third-party analytical engine to retrieve unfiltered table
11805
+ # metadata from the Data Catalog.
11806
11806
  #
11807
11807
  # For IAM authorization, the public IAM action associated with this API
11808
11808
  # is `glue:GetTable`.
@@ -11825,7 +11825,46 @@ module Aws::Glue
11825
11825
  # A structure containing Lake Formation audit context information.
11826
11826
  #
11827
11827
  # @option params [required, Array<String>] :supported_permission_types
11828
- # (Required) A list of supported permission types.
11828
+ # Indicates the level of filtering a third-party analytical engine is
11829
+ # capable of enforcing when calling the `GetUnfilteredTableMetadata` API
11830
+ # operation. Accepted values are:
11831
+ #
11832
+ # * `COLUMN_PERMISSION` - Column permissions ensure that users can
11833
+ # access only specific columns in the table. If there are particular
11834
+ # columns contain sensitive data, data lake administrators can define
11835
+ # column filters that exclude access to specific columns.
11836
+ #
11837
+ # * `CELL_FILTER_PERMISSION` - Cell-level filtering combines column
11838
+ # filtering (include or exclude columns) and row filter expressions to
11839
+ # restrict access to individual elements in the table.
11840
+ #
11841
+ # * `NESTED_PERMISSION` - Nested permissions combines cell-level
11842
+ # filtering and nested column filtering to restrict access to columns
11843
+ # and/or nested columns in specific rows based on row filter
11844
+ # expressions.
11845
+ #
11846
+ # * `NESTED_CELL_PERMISSION` - Nested cell permissions combines nested
11847
+ # permission with nested cell-level filtering. This allows different
11848
+ # subsets of nested columns to be restricted based on an array of row
11849
+ # filter expressions.
11850
+ #
11851
+ # Note: Each of these permission types follows a hierarchical order
11852
+ # where each subsequent permission type includes all permission of the
11853
+ # previous type.
11854
+ #
11855
+ # Important: If you provide a supported permission type that doesn't
11856
+ # match the user's level of permissions on the table, then Lake
11857
+ # Formation raises an exception. For example, if the third-party engine
11858
+ # calling the `GetUnfilteredTableMetadata` operation can enforce only
11859
+ # column-level filtering, and the user has nested cell filtering applied
11860
+ # on the table, Lake Formation throws an exception, and will not return
11861
+ # unfiltered table metadata and data access credentials.
11862
+ #
11863
+ # @option params [String] :parent_resource_arn
11864
+ # The resource ARN of the view.
11865
+ #
11866
+ # @option params [String] :root_resource_arn
11867
+ # The resource ARN of the root view in a chain of nested views.
11829
11868
  #
11830
11869
  # @option params [Types::SupportedDialect] :supported_dialect
11831
11870
  # A structure specifying the dialect and dialect version used by the
@@ -11866,6 +11905,8 @@ module Aws::Glue
11866
11905
  # all_columns_requested: false,
11867
11906
  # },
11868
11907
  # supported_permission_types: ["COLUMN_PERMISSION"], # required, accepts COLUMN_PERMISSION, CELL_FILTER_PERMISSION, NESTED_PERMISSION, NESTED_CELL_PERMISSION
11908
+ # parent_resource_arn: "ArnString",
11909
+ # root_resource_arn: "ArnString",
11869
11910
  # supported_dialect: {
11870
11911
  # dialect: "REDSHIFT", # accepts REDSHIFT, ATHENA, SPARK
11871
11912
  # dialect_version: "ViewDialectVersionString",
@@ -17078,7 +17119,7 @@ module Aws::Glue
17078
17119
  params: params,
17079
17120
  config: config)
17080
17121
  context[:gem_name] = 'aws-sdk-glue'
17081
- context[:gem_version] = '1.169.0'
17122
+ context[:gem_version] = '1.170.0'
17082
17123
  Seahorse::Client::Request.new(handlers, context)
17083
17124
  end
17084
17125
 
@@ -3675,6 +3675,8 @@ module Aws::Glue
3675
3675
  GetUnfilteredTableMetadataRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
3676
3676
  GetUnfilteredTableMetadataRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
3677
3677
  GetUnfilteredTableMetadataRequest.add_member(:supported_permission_types, Shapes::ShapeRef.new(shape: PermissionTypeList, required: true, location_name: "SupportedPermissionTypes"))
3678
+ GetUnfilteredTableMetadataRequest.add_member(:parent_resource_arn, Shapes::ShapeRef.new(shape: ArnString, location_name: "ParentResourceArn"))
3679
+ GetUnfilteredTableMetadataRequest.add_member(:root_resource_arn, Shapes::ShapeRef.new(shape: ArnString, location_name: "RootResourceArn"))
3678
3680
  GetUnfilteredTableMetadataRequest.add_member(:supported_dialect, Shapes::ShapeRef.new(shape: SupportedDialect, location_name: "SupportedDialect"))
3679
3681
  GetUnfilteredTableMetadataRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionList, location_name: "Permissions"))
3680
3682
  GetUnfilteredTableMetadataRequest.add_member(:query_session_context, Shapes::ShapeRef.new(shape: QuerySessionContext, location_name: "QuerySessionContext"))
@@ -12103,9 +12103,51 @@ module Aws::Glue
12103
12103
  # @return [Types::AuditContext]
12104
12104
  #
12105
12105
  # @!attribute [rw] supported_permission_types
12106
- # (Required) A list of supported permission types.
12106
+ # Indicates the level of filtering a third-party analytical engine is
12107
+ # capable of enforcing when calling the `GetUnfilteredTableMetadata`
12108
+ # API operation. Accepted values are:
12109
+ #
12110
+ # * `COLUMN_PERMISSION` - Column permissions ensure that users can
12111
+ # access only specific columns in the table. If there are particular
12112
+ # columns contain sensitive data, data lake administrators can
12113
+ # define column filters that exclude access to specific columns.
12114
+ #
12115
+ # * `CELL_FILTER_PERMISSION` - Cell-level filtering combines column
12116
+ # filtering (include or exclude columns) and row filter expressions
12117
+ # to restrict access to individual elements in the table.
12118
+ #
12119
+ # * `NESTED_PERMISSION` - Nested permissions combines cell-level
12120
+ # filtering and nested column filtering to restrict access to
12121
+ # columns and/or nested columns in specific rows based on row filter
12122
+ # expressions.
12123
+ #
12124
+ # * `NESTED_CELL_PERMISSION` - Nested cell permissions combines nested
12125
+ # permission with nested cell-level filtering. This allows different
12126
+ # subsets of nested columns to be restricted based on an array of
12127
+ # row filter expressions.
12128
+ #
12129
+ # Note: Each of these permission types follows a hierarchical order
12130
+ # where each subsequent permission type includes all permission of the
12131
+ # previous type.
12132
+ #
12133
+ # Important: If you provide a supported permission type that doesn't
12134
+ # match the user's level of permissions on the table, then Lake
12135
+ # Formation raises an exception. For example, if the third-party
12136
+ # engine calling the `GetUnfilteredTableMetadata` operation can
12137
+ # enforce only column-level filtering, and the user has nested cell
12138
+ # filtering applied on the table, Lake Formation throws an exception,
12139
+ # and will not return unfiltered table metadata and data access
12140
+ # credentials.
12107
12141
  # @return [Array<String>]
12108
12142
  #
12143
+ # @!attribute [rw] parent_resource_arn
12144
+ # The resource ARN of the view.
12145
+ # @return [String]
12146
+ #
12147
+ # @!attribute [rw] root_resource_arn
12148
+ # The resource ARN of the root view in a chain of nested views.
12149
+ # @return [String]
12150
+ #
12109
12151
  # @!attribute [rw] supported_dialect
12110
12152
  # A structure specifying the dialect and dialect version used by the
12111
12153
  # query engine.
@@ -12132,6 +12174,8 @@ module Aws::Glue
12132
12174
  :name,
12133
12175
  :audit_context,
12134
12176
  :supported_permission_types,
12177
+ :parent_resource_arn,
12178
+ :root_resource_arn,
12135
12179
  :supported_dialect,
12136
12180
  :permissions,
12137
12181
  :query_session_context)
@@ -14366,14 +14410,19 @@ module Aws::Glue
14366
14410
  # @return [String]
14367
14411
  #
14368
14412
  # @!attribute [rw] max_fetch_time_in_ms
14369
- # The maximum time spent in the job executor to fetch a record from
14370
- # the Kinesis data stream per shard, specified in milliseconds (ms).
14371
- # The default value is `1000`.
14413
+ # The maximum time spent for the job executor to read records for the
14414
+ # current batch from the Kinesis data stream, specified in
14415
+ # milliseconds (ms). Multiple `GetRecords` API calls may be made
14416
+ # within this time. The default value is `1000`.
14372
14417
  # @return [Integer]
14373
14418
  #
14374
14419
  # @!attribute [rw] max_fetch_records_per_shard
14375
14420
  # The maximum number of records to fetch per shard in the Kinesis data
14376
- # stream. The default value is `100000`.
14421
+ # stream per microbatch. Note: The client can exceed this limit if the
14422
+ # streaming job has already read extra records from Kinesis (in the
14423
+ # same get-records call). If `MaxFetchRecordsPerShard` needs to be
14424
+ # strict then it needs to be a multiple of `MaxRecordPerRead`. The
14425
+ # default value is `100000`.
14377
14426
  # @return [Integer]
14378
14427
  #
14379
14428
  # @!attribute [rw] max_record_per_read
data/lib/aws-sdk-glue.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.169.0'
55
+ GEM_VERSION = '1.170.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -3726,6 +3726,8 @@ module Aws
3726
3726
  all_columns_requested: bool?
3727
3727
  },
3728
3728
  supported_permission_types: Array[("COLUMN_PERMISSION" | "CELL_FILTER_PERMISSION" | "NESTED_PERMISSION" | "NESTED_CELL_PERMISSION")],
3729
+ ?parent_resource_arn: ::String,
3730
+ ?root_resource_arn: ::String,
3729
3731
  ?supported_dialect: {
3730
3732
  dialect: ("REDSHIFT" | "ATHENA" | "SPARK")?,
3731
3733
  dialect_version: ::String?
data/sig/types.rbs CHANGED
@@ -3036,6 +3036,8 @@ module Aws::Glue
3036
3036
  attr_accessor name: ::String
3037
3037
  attr_accessor audit_context: Types::AuditContext
3038
3038
  attr_accessor supported_permission_types: ::Array[("COLUMN_PERMISSION" | "CELL_FILTER_PERMISSION" | "NESTED_PERMISSION" | "NESTED_CELL_PERMISSION")]
3039
+ attr_accessor parent_resource_arn: ::String
3040
+ attr_accessor root_resource_arn: ::String
3039
3041
  attr_accessor supported_dialect: Types::SupportedDialect
3040
3042
  attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]
3041
3043
  attr_accessor query_session_context: Types::QuerySessionContext
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.169.0
4
+ version: 1.170.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-02 00:00:00.000000000 Z
11
+ date: 2024-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core