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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '06287ffedabd78f519575ac084836ddb1aa4fb21c469e2a9c3a4b20b037eb43b'
4
- data.tar.gz: fbd6013f8bdb4b7cb697cf7d78cc55447db3eb41104188de66fa174bf48a7125
3
+ metadata.gz: 916b148971eef9e70860af212c8506e9dbd56904b2d7f905cf47d9bac3ac90ee
4
+ data.tar.gz: ef59c85f9c5853a25ef369ddc9c087970450e7ee720b8e2f6e99d9bed092ba56
5
5
  SHA512:
6
- metadata.gz: 28626a73a96acdcdb4a5ee85de2cae0d6fd031b46f437a3df1af0419369a54f0f8ccbdf9ee4bbc4dcc66b726a401217a88d9d6fd49100c63ecdbba61d749cd62
7
- data.tar.gz: b9f4dc7db45dbd694dbbe199a9ec2e2488f21cc188235134ff530c3fb1a116b58c993e118feaf109a28c5abee0f7c8fbe2c147ab412dcd7912ef8fd0953376d3
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.45.0
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": \{ "s3SourcePath":
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": \{ "formatType": "CSV", "withHeader": "true",
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
- # ` \{ "withHeader": "true", "separator": "," \} `
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": \{ "s3SourcePath":
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": \{ "formatType": "CSV", "withHeader": "true",
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
- # ` \{ "withHeader": "true", "separator": "," \} `
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.45.0'
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": \{ "s3SourcePath":
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": \{ "formatType": "CSV", "withHeader": "true",
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
- # ` \{ "withHeader": "true", "separator": "," \} `
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
- # ` \{ "header": "true", "delimiter": ",", "compression": "gzip" \}`
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
- # ` \{ "permissionGroupId": "0r6fCRtSTUk4XPfXQe3M0g",
2143
- # "datasetPermissions": [ \{"permission": "ViewDatasetDetails"\},
2144
- # \{"permission": "AddDatasetData"\}, \{"permission":
2145
- # "EditDatasetMetadata"\}, \{"permission": "DeleteDataset"\} ] \} `
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": \{ "s3SourcePath":
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": \{ "formatType": "CSV", "withHeader": "true",
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
- # ` \{ "withHeader": "true", "separator": "," \} `
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.
@@ -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.45.0'
57
+ GEM_VERSION = '1.47.0'
58
58
 
59
59
  end
60
60
 
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.45.0
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: 2024-10-18 00:00:00.000000000 Z
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.210.0
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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement