aws-sdk-finspace 1.46.0 → 1.48.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 +4 -4
- data/CHANGELOG.md +10 -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: e1074773d65b7fe55079bdfe05e9f521be232813b6948d8a52d26dbf121414ea
|
4
|
+
data.tar.gz: 886cf798a0c1587eff5fd4ecff9b8780df1e9627f1d5f4f63e6050f48745b0be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c919c7b6bc82381193e7c6105101e4d6ac37858ab91cec5acbc907b7888673c070f1cb53e9e16ea4f8f5bf401d8204a9bc0b96409d2e3eb224294699a934f1fa
|
7
|
+
data.tar.gz: 6f545d101d97073f7712e5f113f07f4b6dbaeacdda5c7b1b274ba352386b2bf8a44ca182ec5ab2d42e08e12c168b822f2203a4266e7d08339fc83bd96d743074
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.48.0 (2024-12-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Update KxCommandLineArgument value parameter regex to allow for spaces and semicolons
|
8
|
+
|
9
|
+
1.47.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.46.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.48.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.48.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.48.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
|
11
|
+
date: 2024-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|