aws-sdk-glue 1.237.0 → 1.238.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: '0797d1bab00fbc312926f27d9987773eb7e9ddb72fe548551f7874aa7f68f19b'
4
- data.tar.gz: e57c962c23fde0fd0de72e04aa8f35a66556d5ad2178927b547403e9e79b0fec
3
+ metadata.gz: e9629878e34caf7d0a073efac867a825f5b7a882731e984df6a1323e9a13895b
4
+ data.tar.gz: 7bc3e5add15bbcf6be3baa69988bc22d1d6f0bc8077b89e6e6f23ac303a1109e
5
5
  SHA512:
6
- metadata.gz: 052ef41f6bcf6c8594f7d4362e906fb9e6e0870e39d4cef7a44022cae2237f66ab9788a47c8eb0af9273cd5278087570a9323ec515151991468f2091ff7585bf
7
- data.tar.gz: f7e9fe7d68626d5207f839ea6e90a66756832d9a98ebf2012e4c17ff1cbdca6f84b61f0af174cfdbaf3cfc815cd2555d5c46fffe7bcc089c3ef1a8dbf4c57535
6
+ metadata.gz: f64934fd4220b7572da5ef25a0b45038c00a551d03c2db7bea68c31398072439e5ef35bee43fa318ffc41c39cc8228cc49eb82a758907ca4db4f2f3a4bb3958d
7
+ data.tar.gz: 075f9a193d205d72124b21dddd40e01c98e32ff5e8a9b5ec1c408f9e146f71b09331daae90db7e42074148dfb178a3465522e326aa352a203ce2c5b2f199b7c3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.238.0 (2025-10-10)
5
+ ------------------
6
+
7
+ * Feature - Addition of AuditContext in GetTable/GetTables Request
8
+
4
9
  1.237.0 (2025-10-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.237.0
1
+ 1.238.0
@@ -10155,6 +10155,13 @@ module Aws::Glue
10155
10155
  # recent transaction commit time will be used. Cannot be specified along
10156
10156
  # with `TransactionId`.
10157
10157
  #
10158
+ # @option params [Types::AuditContext] :audit_context
10159
+ # A structure containing the Lake Formation [audit context][1].
10160
+ #
10161
+ #
10162
+ #
10163
+ # [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
10164
+ #
10158
10165
  # @option params [Boolean] :include_status_details
10159
10166
  # Specifies whether to include status details related to a request to
10160
10167
  # create or update an Glue Data Catalog view.
@@ -10171,6 +10178,11 @@ module Aws::Glue
10171
10178
  # name: "NameString", # required
10172
10179
  # transaction_id: "TransactionIdString",
10173
10180
  # query_as_of_time: Time.now,
10181
+ # audit_context: {
10182
+ # additional_audit_context: "AuditContextString",
10183
+ # requested_columns: ["ColumnNameString"],
10184
+ # all_columns_requested: false,
10185
+ # },
10174
10186
  # include_status_details: false,
10175
10187
  # })
10176
10188
  #
@@ -10688,6 +10700,13 @@ module Aws::Glue
10688
10700
  # recent transaction commit time will be used. Cannot be specified along
10689
10701
  # with `TransactionId`.
10690
10702
  #
10703
+ # @option params [Types::AuditContext] :audit_context
10704
+ # A structure containing the Lake Formation [audit context][1].
10705
+ #
10706
+ #
10707
+ #
10708
+ # [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
10709
+ #
10691
10710
  # @option params [Boolean] :include_status_details
10692
10711
  # Specifies whether to include status details related to a request to
10693
10712
  # create or update an Glue Data Catalog view.
@@ -10720,6 +10739,11 @@ module Aws::Glue
10720
10739
  # max_results: 1,
10721
10740
  # transaction_id: "TransactionIdString",
10722
10741
  # query_as_of_time: Time.now,
10742
+ # audit_context: {
10743
+ # additional_audit_context: "AuditContextString",
10744
+ # requested_columns: ["ColumnNameString"],
10745
+ # all_columns_requested: false,
10746
+ # },
10723
10747
  # include_status_details: false,
10724
10748
  # attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE
10725
10749
  # })
@@ -17924,7 +17948,7 @@ module Aws::Glue
17924
17948
  tracer: tracer
17925
17949
  )
17926
17950
  context[:gem_name] = 'aws-sdk-glue'
17927
- context[:gem_version] = '1.237.0'
17951
+ context[:gem_version] = '1.238.0'
17928
17952
  Seahorse::Client::Request.new(handlers, context)
17929
17953
  end
17930
17954
 
@@ -4567,6 +4567,7 @@ module Aws::Glue
4567
4567
  GetTableRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
4568
4568
  GetTableRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
4569
4569
  GetTableRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
4570
+ GetTableRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
4570
4571
  GetTableRequest.add_member(:include_status_details, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "IncludeStatusDetails"))
4571
4572
  GetTableRequest.struct_class = Types::GetTableRequest
4572
4573
 
@@ -4602,6 +4603,7 @@ module Aws::Glue
4602
4603
  GetTablesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
4603
4604
  GetTablesRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
4604
4605
  GetTablesRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
4606
+ GetTablesRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
4605
4607
  GetTablesRequest.add_member(:include_status_details, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "IncludeStatusDetails"))
4606
4608
  GetTablesRequest.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: TableAttributesList, location_name: "AttributesToGet"))
4607
4609
  GetTablesRequest.struct_class = Types::GetTablesRequest
@@ -13,22 +13,22 @@ module Aws::Glue
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -14644,6 +14644,14 @@ module Aws::Glue
14644
14644
  # along with `TransactionId`.
14645
14645
  # @return [Time]
14646
14646
  #
14647
+ # @!attribute [rw] audit_context
14648
+ # A structure containing the Lake Formation [audit context][1].
14649
+ #
14650
+ #
14651
+ #
14652
+ # [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
14653
+ # @return [Types::AuditContext]
14654
+ #
14647
14655
  # @!attribute [rw] include_status_details
14648
14656
  # Specifies whether to include status details related to a request to
14649
14657
  # create or update an Glue Data Catalog view.
@@ -14657,6 +14665,7 @@ module Aws::Glue
14657
14665
  :name,
14658
14666
  :transaction_id,
14659
14667
  :query_as_of_time,
14668
+ :audit_context,
14660
14669
  :include_status_details)
14661
14670
  SENSITIVE = []
14662
14671
  include Aws::Structure
@@ -14805,6 +14814,14 @@ module Aws::Glue
14805
14814
  # along with `TransactionId`.
14806
14815
  # @return [Time]
14807
14816
  #
14817
+ # @!attribute [rw] audit_context
14818
+ # A structure containing the Lake Formation [audit context][1].
14819
+ #
14820
+ #
14821
+ #
14822
+ # [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
14823
+ # @return [Types::AuditContext]
14824
+ #
14808
14825
  # @!attribute [rw] include_status_details
14809
14826
  # Specifies whether to include status details related to a request to
14810
14827
  # create or update an Glue Data Catalog view.
@@ -14832,6 +14849,7 @@ module Aws::Glue
14832
14849
  :max_results,
14833
14850
  :transaction_id,
14834
14851
  :query_as_of_time,
14852
+ :audit_context,
14835
14853
  :include_status_details,
14836
14854
  :attributes_to_get)
14837
14855
  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.237.0'
57
+ GEM_VERSION = '1.238.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -4476,6 +4476,11 @@ module Aws
4476
4476
  name: ::String,
4477
4477
  ?transaction_id: ::String,
4478
4478
  ?query_as_of_time: ::Time,
4479
+ ?audit_context: {
4480
+ additional_audit_context: ::String?,
4481
+ requested_columns: Array[::String]?,
4482
+ all_columns_requested: bool?
4483
+ },
4479
4484
  ?include_status_details: bool
4480
4485
  ) -> _GetTableResponseSuccess
4481
4486
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableResponseSuccess
@@ -4538,6 +4543,11 @@ module Aws
4538
4543
  ?max_results: ::Integer,
4539
4544
  ?transaction_id: ::String,
4540
4545
  ?query_as_of_time: ::Time,
4546
+ ?audit_context: {
4547
+ additional_audit_context: ::String?,
4548
+ requested_columns: Array[::String]?,
4549
+ all_columns_requested: bool?
4550
+ },
4541
4551
  ?include_status_details: bool,
4542
4552
  ?attributes_to_get: Array[("NAME" | "TABLE_TYPE")]
4543
4553
  ) -> _GetTablesResponseSuccess
data/sig/types.rbs CHANGED
@@ -3638,6 +3638,7 @@ module Aws::Glue
3638
3638
  attr_accessor name: ::String
3639
3639
  attr_accessor transaction_id: ::String
3640
3640
  attr_accessor query_as_of_time: ::Time
3641
+ attr_accessor audit_context: Types::AuditContext
3641
3642
  attr_accessor include_status_details: bool
3642
3643
  SENSITIVE: []
3643
3644
  end
@@ -3683,6 +3684,7 @@ module Aws::Glue
3683
3684
  attr_accessor max_results: ::Integer
3684
3685
  attr_accessor transaction_id: ::String
3685
3686
  attr_accessor query_as_of_time: ::Time
3687
+ attr_accessor audit_context: Types::AuditContext
3686
3688
  attr_accessor include_status_details: bool
3687
3689
  attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE")]
3688
3690
  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.237.0
4
+ version: 1.238.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services