aws-sdk-finspace 1.5.0 → 1.9.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspace/client.rb +43 -3
- data/lib/aws-sdk-finspace/client_api.rb +14 -0
- data/lib/aws-sdk-finspace/types.rb +59 -1
- data/lib/aws-sdk-finspace.rb +1 -1
- 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: 0cd1c041209aa12ff628cc93b3340cad0eef2d87e5d845af86ecdb97f10979e1
|
4
|
+
data.tar.gz: 7be2b33a689e90e94b3d736c520054dfdad423f9e3f57390271dda9bbde1560e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 372815c3f57afcbc3753d0875085868d1cc8abe5211dd7011c7f8e4c4a46f3abacf7c374f450da8850fb5bd300d092c7723f72e1b9be55e8a292fb34bbb63892
|
7
|
+
data.tar.gz: 1891710ef16d4ec8a820c7670fb9c5f13885340cc79b4a91efca54a912344ceba06f9e77e4c2ad06f86d00f9df25cb2120a9a4109f99ba15785af8a06789ca5b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.9.0 (2021-12-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.8.0 (2021-11-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.7.0 (2021-11-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.6.0 (2021-11-03)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Adds superuser and data-bundle parameters to CreateEnvironment API
|
23
|
+
|
4
24
|
1.5.0 (2021-09-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
require 'aws-sdk-finspace/plugins/content_type.rb'
|
@@ -74,6 +75,7 @@ module Aws::Finspace
|
|
74
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
77
79
|
add_plugin(Aws::Plugins::SignatureV4)
|
78
80
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
79
81
|
add_plugin(Aws::Finspace::Plugins::ContentType)
|
@@ -121,7 +123,9 @@ module Aws::Finspace
|
|
121
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
122
124
|
# are very aggressive. Construct and pass an instance of
|
123
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
124
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
125
129
|
#
|
126
130
|
# @option options [required, String] :region
|
127
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -175,6 +179,10 @@ module Aws::Finspace
|
|
175
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
178
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
187
|
# Set to true to disable SDK automatically adding host prefix
|
180
188
|
# to default service endpoint when available.
|
@@ -277,6 +285,15 @@ module Aws::Finspace
|
|
277
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
278
286
|
# requests are made, and retries are disabled.
|
279
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
280
297
|
# @option options [Boolean] :validate_params (true)
|
281
298
|
# When `true`, request parameters are validated before
|
282
299
|
# sending the request.
|
@@ -288,7 +305,7 @@ module Aws::Finspace
|
|
288
305
|
# seconds to wait when opening a HTTP session before raising a
|
289
306
|
# `Timeout::Error`.
|
290
307
|
#
|
291
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
292
309
|
# number of seconds to wait for response data. This value can
|
293
310
|
# safely be set per-request on the session.
|
294
311
|
#
|
@@ -304,6 +321,9 @@ module Aws::Finspace
|
|
304
321
|
# disables this behaviour. This value can safely be set per
|
305
322
|
# request on the session.
|
306
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
307
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
308
328
|
# HTTP debug output will be sent to the `:logger`.
|
309
329
|
#
|
@@ -355,6 +375,20 @@ module Aws::Finspace
|
|
355
375
|
# @option params [Types::FederationParameters] :federation_parameters
|
356
376
|
# Configuration information when authentication mode is FEDERATED.
|
357
377
|
#
|
378
|
+
# @option params [Types::SuperuserParameters] :superuser_parameters
|
379
|
+
# Configuration information for the superuser.
|
380
|
+
#
|
381
|
+
# @option params [Array<String>] :data_bundles
|
382
|
+
# The list of Amazon Resource Names (ARN) of the data bundles to
|
383
|
+
# install. Currently supported data bundle ARNs:
|
384
|
+
#
|
385
|
+
# * `arn:aws:finspace:$\{Region\}::data-bundle/capital-markets-sample` -
|
386
|
+
# Contains sample Capital Markets datasets, categories and controlled
|
387
|
+
# vocabularies.
|
388
|
+
#
|
389
|
+
# * `arn:aws:finspace:$\{Region\}::data-bundle/taq` (default) - Contains
|
390
|
+
# trades and quotes data in addition to sample Capital Markets data.
|
391
|
+
#
|
358
392
|
# @return [Types::CreateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
359
393
|
#
|
360
394
|
# * {Types::CreateEnvironmentResponse#environment_id #environment_id} => String
|
@@ -381,6 +415,12 @@ module Aws::Finspace
|
|
381
415
|
# "FederationAttributeKey" => "url",
|
382
416
|
# },
|
383
417
|
# },
|
418
|
+
# superuser_parameters: {
|
419
|
+
# email_address: "EmailId", # required
|
420
|
+
# first_name: "NameString", # required
|
421
|
+
# last_name: "NameString", # required
|
422
|
+
# },
|
423
|
+
# data_bundles: ["DataBundleArn"],
|
384
424
|
# })
|
385
425
|
#
|
386
426
|
# @example Response structure
|
@@ -693,7 +733,7 @@ module Aws::Finspace
|
|
693
733
|
params: params,
|
694
734
|
config: config)
|
695
735
|
context[:gem_name] = 'aws-sdk-finspace'
|
696
|
-
context[:gem_version] = '1.
|
736
|
+
context[:gem_version] = '1.9.0'
|
697
737
|
Seahorse::Client::Request.new(handlers, context)
|
698
738
|
end
|
699
739
|
|
@@ -17,9 +17,12 @@ module Aws::Finspace
|
|
17
17
|
AttributeMap = Shapes::MapShape.new(name: 'AttributeMap')
|
18
18
|
CreateEnvironmentRequest = Shapes::StructureShape.new(name: 'CreateEnvironmentRequest')
|
19
19
|
CreateEnvironmentResponse = Shapes::StructureShape.new(name: 'CreateEnvironmentResponse')
|
20
|
+
DataBundleArn = Shapes::StringShape.new(name: 'DataBundleArn')
|
21
|
+
DataBundleArns = Shapes::ListShape.new(name: 'DataBundleArns')
|
20
22
|
DeleteEnvironmentRequest = Shapes::StructureShape.new(name: 'DeleteEnvironmentRequest')
|
21
23
|
DeleteEnvironmentResponse = Shapes::StructureShape.new(name: 'DeleteEnvironmentResponse')
|
22
24
|
Description = Shapes::StringShape.new(name: 'Description')
|
25
|
+
EmailId = Shapes::StringShape.new(name: 'EmailId')
|
23
26
|
Environment = Shapes::StructureShape.new(name: 'Environment')
|
24
27
|
EnvironmentArn = Shapes::StringShape.new(name: 'EnvironmentArn')
|
25
28
|
EnvironmentList = Shapes::ListShape.new(name: 'EnvironmentList')
|
@@ -40,12 +43,14 @@ module Aws::Finspace
|
|
40
43
|
ListEnvironmentsResponse = Shapes::StructureShape.new(name: 'ListEnvironmentsResponse')
|
41
44
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
42
45
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
46
|
+
NameString = Shapes::StringShape.new(name: 'NameString')
|
43
47
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
44
48
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
45
49
|
ResultLimit = Shapes::IntegerShape.new(name: 'ResultLimit')
|
46
50
|
SamlMetadataDocument = Shapes::StringShape.new(name: 'SamlMetadataDocument')
|
47
51
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
48
52
|
SmsDomainUrl = Shapes::StringShape.new(name: 'SmsDomainUrl')
|
53
|
+
SuperuserParameters = Shapes::StructureShape.new(name: 'SuperuserParameters')
|
49
54
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
50
55
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
51
56
|
TagMap = Shapes::MapShape.new(name: 'TagMap')
|
@@ -73,6 +78,8 @@ module Aws::Finspace
|
|
73
78
|
CreateEnvironmentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
74
79
|
CreateEnvironmentRequest.add_member(:federation_mode, Shapes::ShapeRef.new(shape: FederationMode, location_name: "federationMode"))
|
75
80
|
CreateEnvironmentRequest.add_member(:federation_parameters, Shapes::ShapeRef.new(shape: FederationParameters, location_name: "federationParameters"))
|
81
|
+
CreateEnvironmentRequest.add_member(:superuser_parameters, Shapes::ShapeRef.new(shape: SuperuserParameters, location_name: "superuserParameters"))
|
82
|
+
CreateEnvironmentRequest.add_member(:data_bundles, Shapes::ShapeRef.new(shape: DataBundleArns, location_name: "dataBundles"))
|
76
83
|
CreateEnvironmentRequest.struct_class = Types::CreateEnvironmentRequest
|
77
84
|
|
78
85
|
CreateEnvironmentResponse.add_member(:environment_id, Shapes::ShapeRef.new(shape: IdType, location_name: "environmentId"))
|
@@ -80,6 +87,8 @@ module Aws::Finspace
|
|
80
87
|
CreateEnvironmentResponse.add_member(:environment_url, Shapes::ShapeRef.new(shape: url, location_name: "environmentUrl"))
|
81
88
|
CreateEnvironmentResponse.struct_class = Types::CreateEnvironmentResponse
|
82
89
|
|
90
|
+
DataBundleArns.member = Shapes::ShapeRef.new(shape: DataBundleArn)
|
91
|
+
|
83
92
|
DeleteEnvironmentRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: IdType, required: true, location: "uri", location_name: "environmentId"))
|
84
93
|
DeleteEnvironmentRequest.struct_class = Types::DeleteEnvironmentRequest
|
85
94
|
|
@@ -144,6 +153,11 @@ module Aws::Finspace
|
|
144
153
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
145
154
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
146
155
|
|
156
|
+
SuperuserParameters.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailId, required: true, location_name: "emailAddress"))
|
157
|
+
SuperuserParameters.add_member(:first_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "firstName"))
|
158
|
+
SuperuserParameters.add_member(:last_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "lastName"))
|
159
|
+
SuperuserParameters.struct_class = Types::SuperuserParameters
|
160
|
+
|
147
161
|
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
148
162
|
|
149
163
|
TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
@@ -37,6 +37,12 @@ module Aws::Finspace
|
|
37
37
|
# "FederationAttributeKey" => "url",
|
38
38
|
# },
|
39
39
|
# },
|
40
|
+
# superuser_parameters: {
|
41
|
+
# email_address: "EmailId", # required
|
42
|
+
# first_name: "NameString", # required
|
43
|
+
# last_name: "NameString", # required
|
44
|
+
# },
|
45
|
+
# data_bundles: ["DataBundleArn"],
|
40
46
|
# }
|
41
47
|
#
|
42
48
|
# @!attribute [rw] name
|
@@ -69,6 +75,23 @@ module Aws::Finspace
|
|
69
75
|
# Configuration information when authentication mode is FEDERATED.
|
70
76
|
# @return [Types::FederationParameters]
|
71
77
|
#
|
78
|
+
# @!attribute [rw] superuser_parameters
|
79
|
+
# Configuration information for the superuser.
|
80
|
+
# @return [Types::SuperuserParameters]
|
81
|
+
#
|
82
|
+
# @!attribute [rw] data_bundles
|
83
|
+
# The list of Amazon Resource Names (ARN) of the data bundles to
|
84
|
+
# install. Currently supported data bundle ARNs:
|
85
|
+
#
|
86
|
+
# * `arn:aws:finspace:$\{Region\}::data-bundle/capital-markets-sample`
|
87
|
+
# - Contains sample Capital Markets datasets, categories and
|
88
|
+
# controlled vocabularies.
|
89
|
+
#
|
90
|
+
# * `arn:aws:finspace:$\{Region\}::data-bundle/taq` (default) -
|
91
|
+
# Contains trades and quotes data in addition to sample Capital
|
92
|
+
# Markets data.
|
93
|
+
# @return [Array<String>]
|
94
|
+
#
|
72
95
|
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/CreateEnvironmentRequest AWS API Documentation
|
73
96
|
#
|
74
97
|
class CreateEnvironmentRequest < Struct.new(
|
@@ -77,7 +100,9 @@ module Aws::Finspace
|
|
77
100
|
:kms_key_id,
|
78
101
|
:tags,
|
79
102
|
:federation_mode,
|
80
|
-
:federation_parameters
|
103
|
+
:federation_parameters,
|
104
|
+
:superuser_parameters,
|
105
|
+
:data_bundles)
|
81
106
|
SENSITIVE = []
|
82
107
|
include Aws::Structure
|
83
108
|
end
|
@@ -440,6 +465,39 @@ module Aws::Finspace
|
|
440
465
|
include Aws::Structure
|
441
466
|
end
|
442
467
|
|
468
|
+
# Configuration information for the superuser.
|
469
|
+
#
|
470
|
+
# @note When making an API call, you may pass SuperuserParameters
|
471
|
+
# data as a hash:
|
472
|
+
#
|
473
|
+
# {
|
474
|
+
# email_address: "EmailId", # required
|
475
|
+
# first_name: "NameString", # required
|
476
|
+
# last_name: "NameString", # required
|
477
|
+
# }
|
478
|
+
#
|
479
|
+
# @!attribute [rw] email_address
|
480
|
+
# The email address of the superuser.
|
481
|
+
# @return [String]
|
482
|
+
#
|
483
|
+
# @!attribute [rw] first_name
|
484
|
+
# The first name of the superuser.
|
485
|
+
# @return [String]
|
486
|
+
#
|
487
|
+
# @!attribute [rw] last_name
|
488
|
+
# The last name of the superuser.
|
489
|
+
# @return [String]
|
490
|
+
#
|
491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/SuperuserParameters AWS API Documentation
|
492
|
+
#
|
493
|
+
class SuperuserParameters < Struct.new(
|
494
|
+
:email_address,
|
495
|
+
:first_name,
|
496
|
+
:last_name)
|
497
|
+
SENSITIVE = [:email_address]
|
498
|
+
include Aws::Structure
|
499
|
+
end
|
500
|
+
|
443
501
|
# @note When making an API call, you may pass TagResourceRequest
|
444
502
|
# data as a hash:
|
445
503
|
#
|
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.9.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: 2021-
|
11
|
+
date: 2021-12-21 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.125.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.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|