aws-sdk-glue 1.210.0 → 1.211.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: ca0e8d48657188450a37cc06fd3bc3aba354a07204d5779e5efd5e7be3545412
4
- data.tar.gz: aba636c7ae20b5a9749aefacab2d1fa309ada3d46b3a7b85a2efe42958e83280
3
+ metadata.gz: d3003827ed285b9db5dfab5f0fab332280d2b1586b09f9611ecffd96aa6adb2e
4
+ data.tar.gz: 77e459ebde0eece31f2409a274ea4d2979105a6d3cd2035057fba23958ea88e9
5
5
  SHA512:
6
- metadata.gz: 66962d5b0e459389da49b3e156c6128e46ef642468e12177fb9704bb5a48a78c9670d18bf11945c0f303715d864e74af1365f567718553278c40e6b6d24bf420
7
- data.tar.gz: a3b1241adabaee9095bf77408f66fb679844995f2a1a406466cc9c4c0562e0d8b6494ab9216b02f30193da515ac0e108320af872c4003f277d994e26164e92c0
6
+ metadata.gz: 8449025fb5d5dd210c33b100b401ed4f8bd77d0e6f4c93aeb5990311f244e013864effe8de9a0620f3401aa7e5dec6b1ef8c7411205e2b159d7406334a79246d
7
+ data.tar.gz: 82bae1b31c601e96a11e192a63bde7da52255f11ecdf79340bb51ca53053fc0fcae9819cdb9fa32d0c649a211fce76ed0ac5e4b20461154625aea16741f467f2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.211.0 (2025-03-14)
5
+ ------------------
6
+
7
+ * Feature - This release added AllowFullTableExternalDataAccess to glue catalog resource.
8
+
4
9
  1.210.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.210.0
1
+ 1.211.0
@@ -2945,6 +2945,7 @@ module Aws::Glue
2945
2945
  # permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS
2946
2946
  # },
2947
2947
  # ],
2948
+ # allow_full_table_external_data_access: "True", # accepts True, False
2948
2949
  # },
2949
2950
  # tags: {
2950
2951
  # "TagKey" => "TagValue",
@@ -7155,6 +7156,7 @@ module Aws::Glue
7155
7156
  # resp.catalog.create_database_default_permissions[0].principal.data_lake_principal_identifier #=> String
7156
7157
  # resp.catalog.create_database_default_permissions[0].permissions #=> Array
7157
7158
  # resp.catalog.create_database_default_permissions[0].permissions[0] #=> String, one of "ALL", "SELECT", "ALTER", "DROP", "DELETE", "INSERT", "CREATE_DATABASE", "CREATE_TABLE", "DATA_LOCATION_ACCESS"
7159
+ # resp.catalog.allow_full_table_external_data_access #=> String, one of "True", "False"
7158
7160
  #
7159
7161
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCatalog AWS API Documentation
7160
7162
  #
@@ -7273,6 +7275,7 @@ module Aws::Glue
7273
7275
  # resp.catalog_list[0].create_database_default_permissions[0].principal.data_lake_principal_identifier #=> String
7274
7276
  # resp.catalog_list[0].create_database_default_permissions[0].permissions #=> Array
7275
7277
  # resp.catalog_list[0].create_database_default_permissions[0].permissions[0] #=> String, one of "ALL", "SELECT", "ALTER", "DROP", "DELETE", "INSERT", "CREATE_DATABASE", "CREATE_TABLE", "DATA_LOCATION_ACCESS"
7278
+ # resp.catalog_list[0].allow_full_table_external_data_access #=> String, one of "True", "False"
7276
7279
  # resp.next_token #=> String
7277
7280
  #
7278
7281
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCatalogs AWS API Documentation
@@ -18135,6 +18138,7 @@ module Aws::Glue
18135
18138
  # permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS
18136
18139
  # },
18137
18140
  # ],
18141
+ # allow_full_table_external_data_access: "True", # accepts True, False
18138
18142
  # },
18139
18143
  # })
18140
18144
  #
@@ -20081,7 +20085,7 @@ module Aws::Glue
20081
20085
  tracer: tracer
20082
20086
  )
20083
20087
  context[:gem_name] = 'aws-sdk-glue'
20084
- context[:gem_version] = '1.210.0'
20088
+ context[:gem_version] = '1.211.0'
20085
20089
  Seahorse::Client::Request.new(handlers, context)
20086
20090
  end
20087
20091
 
@@ -28,6 +28,7 @@ module Aws::Glue
28
28
  Aggregate = Shapes::StructureShape.new(name: 'Aggregate')
29
29
  AggregateOperation = Shapes::StructureShape.new(name: 'AggregateOperation')
30
30
  AggregateOperations = Shapes::ListShape.new(name: 'AggregateOperations')
31
+ AllowFullTableExternalDataAccessEnum = Shapes::StringShape.new(name: 'AllowFullTableExternalDataAccessEnum')
31
32
  AllowedValue = Shapes::StructureShape.new(name: 'AllowedValue')
32
33
  AllowedValueDescriptionString = Shapes::StringShape.new(name: 'AllowedValueDescriptionString')
33
34
  AllowedValueValueString = Shapes::StringShape.new(name: 'AllowedValueValueString')
@@ -2002,6 +2003,7 @@ module Aws::Glue
2002
2003
  Catalog.add_member(:catalog_properties, Shapes::ShapeRef.new(shape: CatalogPropertiesOutput, location_name: "CatalogProperties"))
2003
2004
  Catalog.add_member(:create_table_default_permissions, Shapes::ShapeRef.new(shape: PrincipalPermissionsList, location_name: "CreateTableDefaultPermissions"))
2004
2005
  Catalog.add_member(:create_database_default_permissions, Shapes::ShapeRef.new(shape: PrincipalPermissionsList, location_name: "CreateDatabaseDefaultPermissions"))
2006
+ Catalog.add_member(:allow_full_table_external_data_access, Shapes::ShapeRef.new(shape: AllowFullTableExternalDataAccessEnum, location_name: "AllowFullTableExternalDataAccess"))
2005
2007
  Catalog.struct_class = Types::Catalog
2006
2008
 
2007
2009
  CatalogDeltaSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
@@ -2036,6 +2038,7 @@ module Aws::Glue
2036
2038
  CatalogInput.add_member(:catalog_properties, Shapes::ShapeRef.new(shape: CatalogProperties, location_name: "CatalogProperties"))
2037
2039
  CatalogInput.add_member(:create_table_default_permissions, Shapes::ShapeRef.new(shape: PrincipalPermissionsList, location_name: "CreateTableDefaultPermissions"))
2038
2040
  CatalogInput.add_member(:create_database_default_permissions, Shapes::ShapeRef.new(shape: PrincipalPermissionsList, location_name: "CreateDatabaseDefaultPermissions"))
2041
+ CatalogInput.add_member(:allow_full_table_external_data_access, Shapes::ShapeRef.new(shape: AllowFullTableExternalDataAccessEnum, location_name: "AllowFullTableExternalDataAccess"))
2039
2042
  CatalogInput.struct_class = Types::CatalogInput
2040
2043
 
2041
2044
  CatalogKafkaSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
@@ -1991,6 +1991,11 @@ module Aws::Glue
1991
1991
  # operations.
1992
1992
  # @return [Array<Types::PrincipalPermissions>]
1993
1993
  #
1994
+ # @!attribute [rw] allow_full_table_external_data_access
1995
+ # Allows third-party engines to access data in Amazon S3 locations
1996
+ # that are registered with Lake Formation.
1997
+ # @return [String]
1998
+ #
1994
1999
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Catalog AWS API Documentation
1995
2000
  #
1996
2001
  class Catalog < Struct.new(
@@ -2005,7 +2010,8 @@ module Aws::Glue
2005
2010
  :federated_catalog,
2006
2011
  :catalog_properties,
2007
2012
  :create_table_default_permissions,
2008
- :create_database_default_permissions)
2013
+ :create_database_default_permissions,
2014
+ :allow_full_table_external_data_access)
2009
2015
  SENSITIVE = []
2010
2016
  include Aws::Structure
2011
2017
  end
@@ -2165,6 +2171,11 @@ module Aws::Glue
2165
2171
  # empty list.
2166
2172
  # @return [Array<Types::PrincipalPermissions>]
2167
2173
  #
2174
+ # @!attribute [rw] allow_full_table_external_data_access
2175
+ # Allows third-party engines to access data in Amazon S3 locations
2176
+ # that are registered with Lake Formation.
2177
+ # @return [String]
2178
+ #
2168
2179
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CatalogInput AWS API Documentation
2169
2180
  #
2170
2181
  class CatalogInput < Struct.new(
@@ -2174,7 +2185,8 @@ module Aws::Glue
2174
2185
  :target_redshift_catalog,
2175
2186
  :catalog_properties,
2176
2187
  :create_table_default_permissions,
2177
- :create_database_default_permissions)
2188
+ :create_database_default_permissions,
2189
+ :allow_full_table_external_data_access)
2178
2190
  SENSITIVE = []
2179
2191
  include Aws::Structure
2180
2192
  end
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.210.0'
57
+ GEM_VERSION = '1.211.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -526,7 +526,8 @@ module Aws
526
526
  }?,
527
527
  permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]?
528
528
  },
529
- ]?
529
+ ]?,
530
+ allow_full_table_external_data_access: ("True" | "False")?
530
531
  },
531
532
  ?tags: Hash[::String, ::String]
532
533
  ) -> _CreateCatalogResponseSuccess
@@ -5433,7 +5434,8 @@ module Aws
5433
5434
  }?,
5434
5435
  permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]?
5435
5436
  },
5436
- ]?
5437
+ ]?,
5438
+ allow_full_table_external_data_access: ("True" | "False")?
5437
5439
  }
5438
5440
  ) -> _UpdateCatalogResponseSuccess
5439
5441
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCatalogResponseSuccess
data/sig/types.rbs CHANGED
@@ -555,6 +555,7 @@ module Aws::Glue
555
555
  attr_accessor catalog_properties: Types::CatalogPropertiesOutput
556
556
  attr_accessor create_table_default_permissions: ::Array[Types::PrincipalPermissions]
557
557
  attr_accessor create_database_default_permissions: ::Array[Types::PrincipalPermissions]
558
+ attr_accessor allow_full_table_external_data_access: ("True" | "False")
558
559
  SENSITIVE: []
559
560
  end
560
561
 
@@ -597,6 +598,7 @@ module Aws::Glue
597
598
  attr_accessor catalog_properties: Types::CatalogProperties
598
599
  attr_accessor create_table_default_permissions: ::Array[Types::PrincipalPermissions]
599
600
  attr_accessor create_database_default_permissions: ::Array[Types::PrincipalPermissions]
601
+ attr_accessor allow_full_table_external_data_access: ("True" | "False")
600
602
  SENSITIVE: []
601
603
  end
602
604
 
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.210.0
4
+ version: 1.211.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core