aws-sdk-glue 1.275.0 → 1.276.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: 63e5c932a88ac65d8ddd30320fe58bdf68fb0b6a7a14ec24d8d9c53fde66e9b2
4
- data.tar.gz: 36b8b4ec012d9c8de8faa4b8e825fccd68eee2ea36fd1333e66a94cc71310f20
3
+ metadata.gz: 4ce701eed9940c0336023d3af7f11fc4392fb4f7715c479aede0d655eb1a7daa
4
+ data.tar.gz: f3d6868fb5a00945ff942ed00dd9956a9d4b3b0689308a15679539b0b371971d
5
5
  SHA512:
6
- metadata.gz: 3b7e4f68874718675497ce742253f8d140046717927d58edb58a0bb5c05d58a0b78ed6bfeb857107d653018ca952fd0887d42e25dfe9c9bbc43f5e02adabb5ef
7
- data.tar.gz: c79a6c70fe100c90d5b9fe8800af9ea5965f0267e22549cb7fc2c5afd5bcee52fab8b5b901034a8917eb80415ad4b92ce7f90e9b55662db8b5958c342909405a
6
+ metadata.gz: f1beaafeabaf99d61aa3c1bb579e28eec3c0063eb0e7bf01a28f656e67d4d2e7bd0bea6c304925f1072759093fefaa293b4e2fb2afcb29711672a44e18bdcc98
7
+ data.tar.gz: a133c86042fa28a352e1dbcd46737432fc753440b2a25c361ef5e7373e68b55a5752edb28c48ecda72d9bc08f5cd80adaa4fbee94c92fbb378b7fc8f8296ee05
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.276.0 (2026-09-25)
5
+ ------------------
6
+
7
+ * Feature - add support for table level federation
8
+
4
9
  1.275.0 (2026-09-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.275.0
1
+ 1.276.0
@@ -4752,6 +4752,12 @@ module Aws::Glue
4752
4752
  # name: "NameString",
4753
4753
  # region: "NameString",
4754
4754
  # },
4755
+ # federated_table: {
4756
+ # identifier: "FederationIdentifier",
4757
+ # database_identifier: "FederationIdentifier",
4758
+ # connection_name: "NameString",
4759
+ # connection_type: "NameString",
4760
+ # },
4755
4761
  # view_definition: {
4756
4762
  # is_protected: false,
4757
4763
  # definer: "ArnString",
@@ -12134,6 +12140,16 @@ module Aws::Glue
12134
12140
  #
12135
12141
  # [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
12136
12142
  #
12143
+ # @option params [String] :resource_share_type
12144
+ # Specifies which tables the `GetTables` call returns. The allowable
12145
+ # values are `FEDERATED` or `ALL`.
12146
+ #
12147
+ # * If set to `FEDERATED`, returns only federated tables, which
12148
+ # reference an entity outside the Glue Data Catalog.
12149
+ #
12150
+ # * If set to `ALL`, returns all tables in the database, both federated
12151
+ # and non-federated.
12152
+ #
12137
12153
  # @option params [Boolean] :include_status_details
12138
12154
  # Specifies whether to include status details related to a request to
12139
12155
  # create or update an Glue Data Catalog view.
@@ -12171,6 +12187,7 @@ module Aws::Glue
12171
12187
  # requested_columns: ["ColumnNameString"],
12172
12188
  # all_columns_requested: false,
12173
12189
  # },
12190
+ # resource_share_type: "FEDERATED", # accepts FEDERATED, ALL
12174
12191
  # include_status_details: false,
12175
12192
  # attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE, DEFAULT, LATEST_ICEBERG_METADATA
12176
12193
  # })
@@ -20806,6 +20823,12 @@ module Aws::Glue
20806
20823
  # name: "NameString",
20807
20824
  # region: "NameString",
20808
20825
  # },
20826
+ # federated_table: {
20827
+ # identifier: "FederationIdentifier",
20828
+ # database_identifier: "FederationIdentifier",
20829
+ # connection_name: "NameString",
20830
+ # connection_type: "NameString",
20831
+ # },
20809
20832
  # view_definition: {
20810
20833
  # is_protected: false,
20811
20834
  # definer: "ArnString",
@@ -21254,7 +21277,7 @@ module Aws::Glue
21254
21277
  tracer: tracer
21255
21278
  )
21256
21279
  context[:gem_name] = 'aws-sdk-glue'
21257
- context[:gem_version] = '1.275.0'
21280
+ context[:gem_version] = '1.276.0'
21258
21281
  Seahorse::Client::Request.new(handlers, context)
21259
21282
  end
21260
21283
 
@@ -1686,6 +1686,7 @@ module Aws::Glue
1686
1686
  TableOptimizerType = Shapes::StringShape.new(name: 'TableOptimizerType')
1687
1687
  TableOptimizerVpcConfiguration = Shapes::UnionShape.new(name: 'TableOptimizerVpcConfiguration')
1688
1688
  TablePrefix = Shapes::StringShape.new(name: 'TablePrefix')
1689
+ TableResourceShareType = Shapes::StringShape.new(name: 'TableResourceShareType')
1689
1690
  TableStatus = Shapes::StructureShape.new(name: 'TableStatus')
1690
1691
  TableTypeString = Shapes::StringShape.new(name: 'TableTypeString')
1691
1692
  TableVersion = Shapes::StructureShape.new(name: 'TableVersion')
@@ -5287,6 +5288,7 @@ module Aws::Glue
5287
5288
  GetTablesRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
5288
5289
  GetTablesRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
5289
5290
  GetTablesRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
5291
+ GetTablesRequest.add_member(:resource_share_type, Shapes::ShapeRef.new(shape: TableResourceShareType, location_name: "ResourceShareType"))
5290
5292
  GetTablesRequest.add_member(:include_status_details, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "IncludeStatusDetails"))
5291
5293
  GetTablesRequest.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: TableAttributesList, location_name: "AttributesToGet"))
5292
5294
  GetTablesRequest.struct_class = Types::GetTablesRequest
@@ -8100,6 +8102,7 @@ module Aws::Glue
8100
8102
  TableInput.add_member(:table_type, Shapes::ShapeRef.new(shape: TableTypeString, location_name: "TableType"))
8101
8103
  TableInput.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "Parameters"))
8102
8104
  TableInput.add_member(:target_table, Shapes::ShapeRef.new(shape: TableIdentifier, location_name: "TargetTable"))
8105
+ TableInput.add_member(:federated_table, Shapes::ShapeRef.new(shape: FederatedTable, location_name: "FederatedTable"))
8103
8106
  TableInput.add_member(:view_definition, Shapes::ShapeRef.new(shape: ViewDefinitionInput, location_name: "ViewDefinition"))
8104
8107
  TableInput.struct_class = Types::TableInput
8105
8108
 
@@ -16702,6 +16702,17 @@ module Aws::Glue
16702
16702
  # [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
16703
16703
  # @return [Types::AuditContext]
16704
16704
  #
16705
+ # @!attribute [rw] resource_share_type
16706
+ # Specifies which tables the `GetTables` call returns. The allowable
16707
+ # values are `FEDERATED` or `ALL`.
16708
+ #
16709
+ # * If set to `FEDERATED`, returns only federated tables, which
16710
+ # reference an entity outside the Glue Data Catalog.
16711
+ #
16712
+ # * If set to `ALL`, returns all tables in the database, both
16713
+ # federated and non-federated.
16714
+ # @return [String]
16715
+ #
16705
16716
  # @!attribute [rw] include_status_details
16706
16717
  # Specifies whether to include status details related to a request to
16707
16718
  # create or update an Glue Data Catalog view.
@@ -16730,6 +16741,7 @@ module Aws::Glue
16730
16741
  :transaction_id,
16731
16742
  :query_as_of_time,
16732
16743
  :audit_context,
16744
+ :resource_share_type,
16733
16745
  :include_status_details,
16734
16746
  :attributes_to_get)
16735
16747
  SENSITIVE = []
@@ -30730,6 +30742,13 @@ module Aws::Glue
30730
30742
  # resource linking.
30731
30743
  # @return [Types::TableIdentifier]
30732
30744
  #
30745
+ # @!attribute [rw] federated_table
30746
+ # A `FederatedTable` structure that references an entity outside the
30747
+ # Glue Data Catalog. Specify this field to create a federated table,
30748
+ # which points to a table in an external metastore instead of
30749
+ # describing data managed in the Glue Data Catalog.
30750
+ # @return [Types::FederatedTable]
30751
+ #
30733
30752
  # @!attribute [rw] view_definition
30734
30753
  # A structure that contains all the information that defines the view,
30735
30754
  # including the dialect or dialects for the view, and the query.
@@ -30751,6 +30770,7 @@ module Aws::Glue
30751
30770
  :table_type,
30752
30771
  :parameters,
30753
30772
  :target_table,
30773
+ :federated_table,
30754
30774
  :view_definition)
30755
30775
  SENSITIVE = []
30756
30776
  include Aws::Structure
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.275.0'
57
+ GEM_VERSION = '1.276.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -2769,6 +2769,7 @@ module Aws
2769
2769
  requested_columns: Array[::String]?,
2770
2770
  all_columns_requested: bool?
2771
2771
  },
2772
+ ?resource_share_type: ("FEDERATED" | "ALL"),
2772
2773
  ?include_status_details: bool,
2773
2774
  ?attributes_to_get: Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
2774
2775
  ) -> _GetTablesResponseSuccess
data/sig/params.rbs CHANGED
@@ -1844,6 +1844,12 @@ module Aws
1844
1844
  name: ::String?,
1845
1845
  region: ::String?
1846
1846
  }?,
1847
+ federated_table: {
1848
+ identifier: ::String?,
1849
+ database_identifier: ::String?,
1850
+ connection_name: ::String?,
1851
+ connection_type: ::String?
1852
+ }?,
1847
1853
  view_definition: Params::view_definition_input?
1848
1854
  }
1849
1855
 
data/sig/types.rbs CHANGED
@@ -4205,6 +4205,7 @@ module Aws::Glue
4205
4205
  attr_accessor transaction_id: ::String
4206
4206
  attr_accessor query_as_of_time: ::Time
4207
4207
  attr_accessor audit_context: Types::AuditContext
4208
+ attr_accessor resource_share_type: ("FEDERATED" | "ALL")
4208
4209
  attr_accessor include_status_details: bool
4209
4210
  attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
4210
4211
  SENSITIVE: []
@@ -7611,6 +7612,7 @@ module Aws::Glue
7611
7612
  attr_accessor table_type: ::String
7612
7613
  attr_accessor parameters: ::Hash[::String, ::String]
7613
7614
  attr_accessor target_table: Types::TableIdentifier
7615
+ attr_accessor federated_table: Types::FederatedTable
7614
7616
  attr_accessor view_definition: Types::ViewDefinitionInput
7615
7617
  SENSITIVE: []
7616
7618
  end
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.275.0
4
+ version: 1.276.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services