aws-sdk-finspace 1.46.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspace/client.rb +13 -13
- data/lib/aws-sdk-finspace/types.rb +14 -16
- data/lib/aws-sdk-finspace.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03ca9b94305c3479790effe2ee22cf7edbcc97f1cb9909ebe4827ba27613fdd6
|
4
|
+
data.tar.gz: 810bba2bed90208c70e3fc31d13968e5097daeb8b32f2568fe12c08d7e081dc5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3503cc7a50e2b382b956b12c2033c661565256c209ec1eb57fe54bddbcde2ee4318b2a284f038e77ea6b1be1efd233f67b7eb64f7d4040764a7265c1a7c4cf94
|
7
|
+
data.tar.gz: 730ca43f065cbce419b46684710e1f4a6ef3baee22afb262ed1a9626cc5bb58e0c7b71bade8f59d9ec3827928e01afa301b448f016bc95f7b6dd94bd2ac5e7ac
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
@@ -482,11 +482,11 @@ module Aws::Finspace
|
|
482
482
|
# The list of Amazon Resource Names (ARN) of the data bundles to
|
483
483
|
# install. Currently supported data bundle ARNs:
|
484
484
|
#
|
485
|
-
# * `arn:aws:finspace
|
485
|
+
# * `arn:aws:finspace:${Region}::data-bundle/capital-markets-sample` -
|
486
486
|
# Contains sample Capital Markets datasets, categories and controlled
|
487
487
|
# vocabularies.
|
488
488
|
#
|
489
|
-
# * `arn:aws:finspace
|
489
|
+
# * `arn:aws:finspace:${Region}::data-bundle/taq` (default) - Contains
|
490
490
|
# trades and quotes data in addition to sample Capital Markets data.
|
491
491
|
#
|
492
492
|
# @return [Types::CreateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -567,33 +567,33 @@ module Aws::Finspace
|
|
567
567
|
#
|
568
568
|
# 1. This request adds a single sym file at database root location.
|
569
569
|
#
|
570
|
-
#
|
571
|
-
# "dbPath":"/"
|
570
|
+
# `{ "changeType": "PUT", "s3Path":"s3://bucket/db/sym",
|
571
|
+
# "dbPath":"/"}`
|
572
572
|
#
|
573
573
|
# 2. This request adds files in the given `s3Path` under the 2020.01.02
|
574
574
|
# partition of the database.
|
575
575
|
#
|
576
|
-
#
|
577
|
-
# "dbPath":"/2020.01.02/"
|
576
|
+
# `{ "changeType": "PUT", "s3Path":"s3://bucket/db/2020.01.02/",
|
577
|
+
# "dbPath":"/2020.01.02/"}`
|
578
578
|
#
|
579
579
|
# 3. This request adds files in the given `s3Path` under the *taq*
|
580
580
|
# table partition of the database.
|
581
581
|
#
|
582
|
-
# `[
|
582
|
+
# `[ { "changeType": "PUT",
|
583
583
|
# "s3Path":"s3://bucket/db/2020.01.02/taq/",
|
584
|
-
# "dbPath":"/2020.01.02/taq/"
|
584
|
+
# "dbPath":"/2020.01.02/taq/"}]`
|
585
585
|
#
|
586
586
|
# 4. This request deletes the 2020.01.02 partition of the database.
|
587
587
|
#
|
588
|
-
# `[
|
588
|
+
# `[{ "changeType": "DELETE", "dbPath": "/2020.01.02/"} ]`
|
589
589
|
#
|
590
590
|
# 5. The *DELETE* request allows you to delete the existing files under
|
591
591
|
# the 2020.01.02 partition of the database, and the *PUT* request
|
592
592
|
# adds a new taq table under it.
|
593
593
|
#
|
594
|
-
# `[
|
595
|
-
#
|
596
|
-
# "dbPath":"/2020.01.02/taq/"
|
594
|
+
# `[ {"changeType": "DELETE", "dbPath":"/2020.01.02/"},
|
595
|
+
# {"changeType": "PUT", "s3Path":"s3://bucket/db/2020.01.02/taq/",
|
596
|
+
# "dbPath":"/2020.01.02/taq/"}]`
|
597
597
|
#
|
598
598
|
# @option params [required, String] :client_token
|
599
599
|
# A token that ensures idempotency. This token expires in 10 minutes.
|
@@ -3795,7 +3795,7 @@ module Aws::Finspace
|
|
3795
3795
|
tracer: tracer
|
3796
3796
|
)
|
3797
3797
|
context[:gem_name] = 'aws-sdk-finspace'
|
3798
|
-
context[:gem_version] = '1.
|
3798
|
+
context[:gem_version] = '1.47.0'
|
3799
3799
|
Seahorse::Client::Request.new(handlers, context)
|
3800
3800
|
end
|
3801
3801
|
|
@@ -234,13 +234,12 @@ module Aws::Finspace
|
|
234
234
|
# The list of Amazon Resource Names (ARN) of the data bundles to
|
235
235
|
# install. Currently supported data bundle ARNs:
|
236
236
|
#
|
237
|
-
# * `arn:aws:finspace
|
238
|
-
#
|
237
|
+
# * `arn:aws:finspace:${Region}::data-bundle/capital-markets-sample` -
|
238
|
+
# Contains sample Capital Markets datasets, categories and
|
239
239
|
# controlled vocabularies.
|
240
240
|
#
|
241
|
-
# * `arn:aws:finspace
|
242
|
-
#
|
243
|
-
# Markets data.
|
241
|
+
# * `arn:aws:finspace:${Region}::data-bundle/taq` (default) - Contains
|
242
|
+
# trades and quotes data in addition to sample Capital Markets data.
|
244
243
|
# @return [Array<String>]
|
245
244
|
#
|
246
245
|
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/CreateEnvironmentRequest AWS API Documentation
|
@@ -310,34 +309,33 @@ module Aws::Finspace
|
|
310
309
|
#
|
311
310
|
# 1. This request adds a single sym file at database root location.
|
312
311
|
#
|
313
|
-
#
|
314
|
-
# "dbPath":"/"
|
312
|
+
# `{ "changeType": "PUT", "s3Path":"s3://bucket/db/sym",
|
313
|
+
# "dbPath":"/"}`
|
315
314
|
#
|
316
315
|
# 2. This request adds files in the given `s3Path` under the
|
317
316
|
# 2020.01.02 partition of the database.
|
318
317
|
#
|
319
|
-
#
|
320
|
-
# "dbPath":"/2020.01.02/"
|
318
|
+
# `{ "changeType": "PUT", "s3Path":"s3://bucket/db/2020.01.02/",
|
319
|
+
# "dbPath":"/2020.01.02/"}`
|
321
320
|
#
|
322
321
|
# 3. This request adds files in the given `s3Path` under the *taq*
|
323
322
|
# table partition of the database.
|
324
323
|
#
|
325
|
-
# `[
|
324
|
+
# `[ { "changeType": "PUT",
|
326
325
|
# "s3Path":"s3://bucket/db/2020.01.02/taq/",
|
327
|
-
# "dbPath":"/2020.01.02/taq/"
|
326
|
+
# "dbPath":"/2020.01.02/taq/"}]`
|
328
327
|
#
|
329
328
|
# 4. This request deletes the 2020.01.02 partition of the database.
|
330
329
|
#
|
331
|
-
# `[
|
330
|
+
# `[{ "changeType": "DELETE", "dbPath": "/2020.01.02/"} ]`
|
332
331
|
#
|
333
332
|
# 5. The *DELETE* request allows you to delete the existing files
|
334
333
|
# under the 2020.01.02 partition of the database, and the *PUT*
|
335
334
|
# request adds a new taq table under it.
|
336
335
|
#
|
337
|
-
# `[
|
338
|
-
#
|
339
|
-
# "
|
340
|
-
# "dbPath":"/2020.01.02/taq/"\}]`
|
336
|
+
# `[ {"changeType": "DELETE", "dbPath":"/2020.01.02/"},
|
337
|
+
# {"changeType": "PUT", "s3Path":"s3://bucket/db/2020.01.02/taq/",
|
338
|
+
# "dbPath":"/2020.01.02/taq/"}]`
|
341
339
|
# @return [Array<Types::ChangeRequest>]
|
342
340
|
#
|
343
341
|
# @!attribute [rw] client_token
|
data/lib/aws-sdk-finspace.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-finspace
|
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: 2024-
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|