aws-sdk-finspacedata 1.45.0 → 1.47.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspacedata/client.rb +34 -11
- data/lib/aws-sdk-finspacedata/types.rb +15 -15
- data/lib/aws-sdk-finspacedata.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 916b148971eef9e70860af212c8506e9dbd56904b2d7f905cf47d9bac3ac90ee
|
4
|
+
data.tar.gz: ef59c85f9c5853a25ef369ddc9c087970450e7ee720b8e2f6e99d9bed092ba56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d653dd63faf7e40679cb91ddfae4565a25e45ac892e4d5db7837aeef294195b7f0b77f74a5d9d0763c70c3450adb28bcc134ff5f05dd5175d9a21c60a99943cc
|
7
|
+
data.tar.gz: ca94012722dd1da35d0beca6b0482cdd910569482f4255284b22c99e3ab3485801b807503b764e0567c14c7c8971ce9075408b713da5c8ea1aaa035764097f66
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.46.0 (2024-11-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.45.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
@@ -259,11 +259,34 @@ module Aws::FinSpaceData
|
|
259
259
|
# Used when loading credentials from the shared credentials file
|
260
260
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
261
261
|
#
|
262
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
263
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
264
|
+
#
|
265
|
+
# * `when_supported` - (default) When set, a checksum will be
|
266
|
+
# calculated for all request payloads of operations modeled with the
|
267
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
268
|
+
# `requestAlgorithmMember` is modeled.
|
269
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
270
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
271
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
272
|
+
# is modeled and supplied.
|
273
|
+
#
|
262
274
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
263
275
|
# The minimum size in bytes that triggers compression for request
|
264
276
|
# bodies. The value must be non-negative integer value between 0
|
265
277
|
# and 10485780 bytes inclusive.
|
266
278
|
#
|
279
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
280
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
281
|
+
#
|
282
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
283
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
284
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
285
|
+
# are supported.
|
286
|
+
# * `when_required` - When set, checksum validation is not performed on
|
287
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
288
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
289
|
+
#
|
267
290
|
# @option options [Proc] :retry_backoff
|
268
291
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
269
292
|
# This option is only used in the `legacy` retry mode.
|
@@ -521,9 +544,9 @@ module Aws::FinSpaceData
|
|
521
544
|
#
|
522
545
|
# Here is an example of how you could specify the `sourceParams`:
|
523
546
|
#
|
524
|
-
# ` "sourceParams":
|
547
|
+
# ` "sourceParams": { "s3SourcePath":
|
525
548
|
# "s3://finspace-landing-us-east-2-bk7gcfvitndqa6ebnvys4d/scratch/wr5hh8pwkpqqkxa4sxrmcw/ingestion/equity.csv",
|
526
|
-
# "sourceType": "S3"
|
549
|
+
# "sourceType": "S3" } `
|
527
550
|
#
|
528
551
|
# The S3 path that you specify must allow the FinSpace role access. To
|
529
552
|
# do that, you first need to configure the IAM policy on S3 bucket. For
|
@@ -552,13 +575,13 @@ module Aws::FinSpaceData
|
|
552
575
|
#
|
553
576
|
# Here is an example of how you could specify the `formatParams`:
|
554
577
|
#
|
555
|
-
# ` "formatParams":
|
556
|
-
# "separator": ",", "compression":"None"
|
578
|
+
# ` "formatParams": { "formatType": "CSV", "withHeader": "true",
|
579
|
+
# "separator": ",", "compression":"None" } `
|
557
580
|
#
|
558
581
|
# Note that if you only provide `formatType` as `CSV`, the rest of the
|
559
582
|
# attributes will automatically default to CSV values as following:
|
560
583
|
#
|
561
|
-
# `
|
584
|
+
# ` { "withHeader": "true", "separator": "," } `
|
562
585
|
#
|
563
586
|
# For more information about supported file formats, see [Supported Data
|
564
587
|
# Types and File Formats][1] in the FinSpace User Guide.
|
@@ -1875,9 +1898,9 @@ module Aws::FinSpaceData
|
|
1875
1898
|
#
|
1876
1899
|
# Here is an example of how you could specify the `sourceParams`:
|
1877
1900
|
#
|
1878
|
-
# ` "sourceParams":
|
1901
|
+
# ` "sourceParams": { "s3SourcePath":
|
1879
1902
|
# "s3://finspace-landing-us-east-2-bk7gcfvitndqa6ebnvys4d/scratch/wr5hh8pwkpqqkxa4sxrmcw/ingestion/equity.csv",
|
1880
|
-
# "sourceType": "S3"
|
1903
|
+
# "sourceType": "S3" } `
|
1881
1904
|
#
|
1882
1905
|
# The S3 path that you specify must allow the FinSpace role access. To
|
1883
1906
|
# do that, you first need to configure the IAM policy on S3 bucket. For
|
@@ -1906,13 +1929,13 @@ module Aws::FinSpaceData
|
|
1906
1929
|
#
|
1907
1930
|
# Here is an example of how you could specify the `formatParams`:
|
1908
1931
|
#
|
1909
|
-
# ` "formatParams":
|
1910
|
-
# "separator": ",", "compression":"None"
|
1932
|
+
# ` "formatParams": { "formatType": "CSV", "withHeader": "true",
|
1933
|
+
# "separator": ",", "compression":"None" } `
|
1911
1934
|
#
|
1912
1935
|
# Note that if you only provide `formatType` as `CSV`, the rest of the
|
1913
1936
|
# attributes will automatically default to CSV values as following:
|
1914
1937
|
#
|
1915
|
-
# `
|
1938
|
+
# ` { "withHeader": "true", "separator": "," } `
|
1916
1939
|
#
|
1917
1940
|
# For more information about supported file formats, see [Supported Data
|
1918
1941
|
# Types and File Formats][1] in the FinSpace User Guide.
|
@@ -2187,7 +2210,7 @@ module Aws::FinSpaceData
|
|
2187
2210
|
tracer: tracer
|
2188
2211
|
)
|
2189
2212
|
context[:gem_name] = 'aws-sdk-finspacedata'
|
2190
|
-
context[:gem_version] = '1.
|
2213
|
+
context[:gem_version] = '1.47.0'
|
2191
2214
|
Seahorse::Client::Request.new(handlers, context)
|
2192
2215
|
end
|
2193
2216
|
|
@@ -332,9 +332,9 @@ module Aws::FinSpaceData
|
|
332
332
|
#
|
333
333
|
# Here is an example of how you could specify the `sourceParams`:
|
334
334
|
#
|
335
|
-
# ` "sourceParams":
|
335
|
+
# ` "sourceParams": { "s3SourcePath":
|
336
336
|
# "s3://finspace-landing-us-east-2-bk7gcfvitndqa6ebnvys4d/scratch/wr5hh8pwkpqqkxa4sxrmcw/ingestion/equity.csv",
|
337
|
-
# "sourceType": "S3"
|
337
|
+
# "sourceType": "S3" } `
|
338
338
|
#
|
339
339
|
# The S3 path that you specify must allow the FinSpace role access. To
|
340
340
|
# do that, you first need to configure the IAM policy on S3 bucket.
|
@@ -365,13 +365,13 @@ module Aws::FinSpaceData
|
|
365
365
|
#
|
366
366
|
# Here is an example of how you could specify the `formatParams`:
|
367
367
|
#
|
368
|
-
# ` "formatParams":
|
369
|
-
# "separator": ",", "compression":"None"
|
368
|
+
# ` "formatParams": { "formatType": "CSV", "withHeader": "true",
|
369
|
+
# "separator": ",", "compression":"None" } `
|
370
370
|
#
|
371
371
|
# Note that if you only provide `formatType` as `CSV`, the rest of the
|
372
372
|
# attributes will automatically default to CSV values as following:
|
373
373
|
#
|
374
|
-
# `
|
374
|
+
# ` { "withHeader": "true", "separator": "," } `
|
375
375
|
#
|
376
376
|
# For more information about supported file formats, see [Supported
|
377
377
|
# Data Types and File Formats][1] in the FinSpace User Guide.
|
@@ -743,7 +743,7 @@ module Aws::FinSpaceData
|
|
743
743
|
# Here is an example of how you could specify the
|
744
744
|
# `s3DestinationExportFileFormatOptions`
|
745
745
|
#
|
746
|
-
# `
|
746
|
+
# ` { "header": "true", "delimiter": ",", "compression": "gzip" }`
|
747
747
|
# @return [Hash<String,String>]
|
748
748
|
#
|
749
749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/DataViewDestinationTypeParams AWS API Documentation
|
@@ -2139,10 +2139,10 @@ module Aws::FinSpaceData
|
|
2139
2139
|
# Here is an example of how you could specify the
|
2140
2140
|
# `PermissionGroupParams`:
|
2141
2141
|
#
|
2142
|
-
# `
|
2143
|
-
# "datasetPermissions": [
|
2144
|
-
#
|
2145
|
-
# "EditDatasetMetadata"
|
2142
|
+
# ` { "permissionGroupId": "0r6fCRtSTUk4XPfXQe3M0g",
|
2143
|
+
# "datasetPermissions": [ {"permission": "ViewDatasetDetails"},
|
2144
|
+
# {"permission": "AddDatasetData"}, {"permission":
|
2145
|
+
# "EditDatasetMetadata"}, {"permission": "DeleteDataset"} ] } `
|
2146
2146
|
#
|
2147
2147
|
# @!attribute [rw] permission_group_id
|
2148
2148
|
# The unique identifier for the `PermissionGroup`.
|
@@ -2342,9 +2342,9 @@ module Aws::FinSpaceData
|
|
2342
2342
|
#
|
2343
2343
|
# Here is an example of how you could specify the `sourceParams`:
|
2344
2344
|
#
|
2345
|
-
# ` "sourceParams":
|
2345
|
+
# ` "sourceParams": { "s3SourcePath":
|
2346
2346
|
# "s3://finspace-landing-us-east-2-bk7gcfvitndqa6ebnvys4d/scratch/wr5hh8pwkpqqkxa4sxrmcw/ingestion/equity.csv",
|
2347
|
-
# "sourceType": "S3"
|
2347
|
+
# "sourceType": "S3" } `
|
2348
2348
|
#
|
2349
2349
|
# The S3 path that you specify must allow the FinSpace role access. To
|
2350
2350
|
# do that, you first need to configure the IAM policy on S3 bucket.
|
@@ -2375,13 +2375,13 @@ module Aws::FinSpaceData
|
|
2375
2375
|
#
|
2376
2376
|
# Here is an example of how you could specify the `formatParams`:
|
2377
2377
|
#
|
2378
|
-
# ` "formatParams":
|
2379
|
-
# "separator": ",", "compression":"None"
|
2378
|
+
# ` "formatParams": { "formatType": "CSV", "withHeader": "true",
|
2379
|
+
# "separator": ",", "compression":"None" } `
|
2380
2380
|
#
|
2381
2381
|
# Note that if you only provide `formatType` as `CSV`, the rest of the
|
2382
2382
|
# attributes will automatically default to CSV values as following:
|
2383
2383
|
#
|
2384
|
-
# `
|
2384
|
+
# ` { "withHeader": "true", "separator": "," } `
|
2385
2385
|
#
|
2386
2386
|
# For more information about supported file formats, see [Supported
|
2387
2387
|
# Data Types and File Formats][1] in the FinSpace User Guide.
|
data/lib/aws-sdk-finspacedata.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-finspacedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.47.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|