aws-sdk-finspacedata 1.65.0 → 1.66.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: 15938e2ddc3cc1b9323773a355909dc872e7c3d8661201c78ffd808b2237062c
4
- data.tar.gz: e7928656b4855d3bd67d093cb67cebb4e8504cf62e5f5ef6d29f4b4db148d07a
3
+ metadata.gz: 1051e20c59fb17d95f4f49cb661700ff3e67e6eed894fc534495ffcd659e7275
4
+ data.tar.gz: 2de16a792ff6aa3f32510fd15fe6b0572b7164b292f2a42d2d889a03cc760cea
5
5
  SHA512:
6
- metadata.gz: 9ab2788332007191f65a43152d2d33e714fbabc86165920a9352b0698f5b2fd5e3dde681c84b32f77d630766932b90d3dbad6ac882c2c0510f57c25b2a06ccdf
7
- data.tar.gz: 844b608471d0eeb767ae7a6094192087ca0ef2b54e6af4eb129f2387dbbb6f0d6c3eff4f62682c875b49e98dd915cc1691e280a0d6589a5c0ac56969e88053ad
6
+ metadata.gz: 151157de5a993276571f2f10d54670469132f6bd326dea8187b778ed5c656ef6b2fb995f5208d2f25a6e3b0708b89030bee65e6e8502e1aa07e72aeb744e9710
7
+ data.tar.gz: 2e88c29ee9f051e8b488261304f7d81508783aca7bc95cca82ff23f7d3b488c9f205cdde9fa7848d58bfe2535e26607acd90092567b64be665956246f0890c12
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.65.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -2216,7 +2216,7 @@ module Aws::FinSpaceData
2216
2216
  tracer: tracer
2217
2217
  )
2218
2218
  context[:gem_name] = 'aws-sdk-finspacedata'
2219
- context[:gem_version] = '1.65.0'
2219
+ context[:gem_version] = '1.66.0'
2220
2220
  Seahorse::Client::Request.new(handlers, context)
2221
2221
  end
2222
2222
 
@@ -54,7 +54,7 @@ module Aws::FinSpaceData
54
54
  autoload :EndpointProvider, 'aws-sdk-finspacedata/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-finspacedata/endpoints'
56
56
 
57
- GEM_VERSION = '1.65.0'
57
+ GEM_VERSION = '1.66.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -146,22 +146,11 @@ module Aws
146
146
  dataset_permissions: Array[
147
147
  {
148
148
  permission: ::String?
149
- },
149
+ }
150
150
  ]?
151
151
  },
152
152
  ?alias: ::String,
153
- ?schema_definition: {
154
- tabular_schema_config: {
155
- columns: Array[
156
- {
157
- data_type: ("STRING" | "CHAR" | "INTEGER" | "TINYINT" | "SMALLINT" | "BIGINT" | "FLOAT" | "DOUBLE" | "DATE" | "DATETIME" | "BOOLEAN" | "BINARY")?,
158
- column_name: ::String?,
159
- column_description: ::String?
160
- },
161
- ]?,
162
- primary_key_columns: Array[::String]?
163
- }?
164
- }
153
+ ?schema_definition: Params::schema_union
165
154
  ) -> _CreateDatasetResponseSuccess
166
155
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetResponseSuccess
167
156
 
@@ -509,18 +498,7 @@ module Aws
509
498
  kind: ("TABULAR" | "NON_TABULAR"),
510
499
  ?dataset_description: ::String,
511
500
  ?alias: ::String,
512
- ?schema_definition: {
513
- tabular_schema_config: {
514
- columns: Array[
515
- {
516
- data_type: ("STRING" | "CHAR" | "INTEGER" | "TINYINT" | "SMALLINT" | "BIGINT" | "FLOAT" | "DOUBLE" | "DATE" | "DATETIME" | "BOOLEAN" | "BINARY")?,
517
- column_name: ::String?,
518
- column_description: ::String?
519
- },
520
- ]?,
521
- primary_key_columns: Array[::String]?
522
- }?
523
- }
501
+ ?schema_definition: Params::schema_union
524
502
  ) -> _UpdateDatasetResponseSuccess
525
503
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetResponseSuccess
526
504
 
data/sig/params.rbs ADDED
@@ -0,0 +1,28 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module FinSpaceData
10
+ module Params
11
+ type schema_definition = {
12
+ columns: Array[
13
+ {
14
+ data_type: ("STRING" | "CHAR" | "INTEGER" | "TINYINT" | "SMALLINT" | "BIGINT" | "FLOAT" | "DOUBLE" | "DATE" | "DATETIME" | "BOOLEAN" | "BINARY")?,
15
+ column_name: ::String?,
16
+ column_description: ::String?
17
+ }
18
+ ]?,
19
+ primary_key_columns: Array[::String]?
20
+ }
21
+
22
+ type schema_union = {
23
+ tabular_schema_config: Params::schema_definition?
24
+ }
25
+
26
+ end
27
+ end
28
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-finspacedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.65.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-finspacedata/types.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs