aws-sdk-glue 1.224.0 → 1.226.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: e029c9c762ebf1f287421f61206c832add7597be6c83ab7754e6fb3541f760c8
4
- data.tar.gz: 1acd198d202ed127e093364d4a502db4116052b900caa2a756b67491334454d1
3
+ metadata.gz: a47a65aeca8425926f09dd34c3c6cfc26930870f5fb553502ef72844e49ba815
4
+ data.tar.gz: 903ad914547f1ad60e1d859ce1dc858a46a42c8a27440299e536341d21757449
5
5
  SHA512:
6
- metadata.gz: 2a4d79c58f95ad264ac5ab215a56907d767862d92cab85795f6a2ce4ff73311ee37a1fa8146934d5fd6c8e2c34ca930ecef0058f43a5c81cb301fd03ae334086
7
- data.tar.gz: 8dc17094af367f28fadc22714914f8fceb765113aa3411a672741e407d7871c272537215125a9fa524223431a3be93c666a0ff22f9a4f35e1d9c9b72b96aa2b7
6
+ metadata.gz: b5aba125aa76f25e6f359984084012217ae629e1897e873e26188849e70dbeb872e3a417931488194038a6ffb7ec1479db5018e82b89a64b57e2a9600889586f
7
+ data.tar.gz: 1270dfcc9cf8dca85bc3b9fffbb0e119db819897306277a592e3a0f707b09811c3edb656541c3d4d8655c7fcbc0e9730e08b65b0a2e26f4f3875315d141af1b6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.226.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.225.0 (2025-07-16)
10
+ ------------------
11
+
12
+ * Feature - AWS Glue now supports schema, partition and sort management of Apache Iceberg tables using Glue SDK
13
+
4
14
  1.224.0 (2025-06-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.224.0
1
+ 1.226.0
@@ -95,7 +95,7 @@ module Aws::Glue
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::Glue
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::Glue
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::Glue
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -374,7 +384,7 @@ module Aws::Glue
374
384
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
385
  #
376
386
  # @option options [Aws::TokenProvider] :token_provider
377
- # A Bearer Token Provider. This can be an instance of any one of the
387
+ # Your Bearer token used for authentication. This can be an instance of any one of the
378
388
  # following classes:
379
389
  #
380
390
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -5153,7 +5163,7 @@ module Aws::Glue
5153
5163
  # The unique identifier for the table within the specified database that
5154
5164
  # will be created in the Glue Data Catalog.
5155
5165
  #
5156
- # @option params [required, Types::TableInput] :table_input
5166
+ # @option params [Types::TableInput] :table_input
5157
5167
  # The `TableInput` object that defines the metadata table to create in
5158
5168
  # the catalog.
5159
5169
  #
@@ -5176,7 +5186,7 @@ module Aws::Glue
5176
5186
  # catalog_id: "CatalogIdString",
5177
5187
  # database_name: "NameString", # required
5178
5188
  # name: "NameString",
5179
- # table_input: { # required
5189
+ # table_input: {
5180
5190
  # name: "NameString", # required
5181
5191
  # description: "DescriptionString",
5182
5192
  # owner: "NameString",
@@ -20457,7 +20467,7 @@ module Aws::Glue
20457
20467
  tracer: tracer
20458
20468
  )
20459
20469
  context[:gem_name] = 'aws-sdk-glue'
20460
- context[:gem_version] = '1.224.0'
20470
+ context[:gem_version] = '1.226.0'
20461
20471
  Seahorse::Client::Request.new(handlers, context)
20462
20472
  end
20463
20473
 
@@ -2951,7 +2951,7 @@ module Aws::Glue
2951
2951
  CreateTableRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
2952
2952
  CreateTableRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
2953
2953
  CreateTableRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
2954
- CreateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, required: true, location_name: "TableInput"))
2954
+ CreateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, location_name: "TableInput"))
2955
2955
  CreateTableRequest.add_member(:partition_indexes, Shapes::ShapeRef.new(shape: PartitionIndexList, location_name: "PartitionIndexes"))
2956
2956
  CreateTableRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
2957
2957
  CreateTableRequest.add_member(:open_table_format_input, Shapes::ShapeRef.new(shape: OpenTableFormatInput, location_name: "OpenTableFormatInput"))
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.224.0'
57
+ GEM_VERSION = '1.226.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -2524,7 +2525,7 @@ module Aws
2524
2525
  ?catalog_id: ::String,
2525
2526
  database_name: ::String,
2526
2527
  ?name: ::String,
2527
- table_input: {
2528
+ ?table_input: {
2528
2529
  name: ::String,
2529
2530
  description: ::String?,
2530
2531
  owner: ::String?,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
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.224.0
4
+ version: 1.226.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement