aws-sdk-finspace 1.3.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1e82515a9362bf1018a64af623b4f38d11d15bd8b9045c81399dd43d5aeb871a
4
- data.tar.gz: acad3265922a5a221da680d4da0ace2f367a8c4210b49a1322cd7c28c0d08e4d
3
+ metadata.gz: 86b291eed670248022f5e5b518f735f2a01e6d89e6b3bdb2ddbe31759c9c0969
4
+ data.tar.gz: 196320d147f4175a18a8854b1e86cca3b5b314707ef824037ea51a0986563c43
5
5
  SHA512:
6
- metadata.gz: 87cbf899111276cef2200078d84ba9ccfbf71239c88017ab4c8832608774f917635e5bb5a531026f5203049e4ea5721990d187fa3bbc62436a55f132af0b6131
7
- data.tar.gz: 1a6eb29bf1d7d64a7f7dbc84022907d27f66e75305f43c6ba3c2c3c34cd929c3986412372de953f84ec053705aff2da9aa43316c2a8fa31f35637c62bd07efcb
6
+ metadata.gz: 14d4241c7667a7d19ed61b3843ef0ab1b58d892ff391dc711cc83cb8b65f36d3f9427052c1b3408177b3a6239fc73ba50e7e336b1394bada36d3d440c5010211
7
+ data.tar.gz: 7c9d0c665adb67bd7d19ba96eec389268c45816cf0852c8150ee6405b96539cf742911d8901ef53b98843f689b194f870dceacabd1d333c8251073ff0e14b66f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.6.0 (2021-11-03)
10
+ ------------------
11
+
12
+ * Feature - Adds superuser and data-bundle parameters to CreateEnvironment API
13
+
14
+ 1.5.0 (2021-09-01)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.4.0 (2021-07-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.3.0 (2021-07-28)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.7.0
@@ -277,6 +277,15 @@ module Aws::Finspace
277
277
  # ** Please note ** When response stubbing is enabled, no HTTP
278
278
  # requests are made, and retries are disabled.
279
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
280
289
  # @option options [Boolean] :validate_params (true)
281
290
  # When `true`, request parameters are validated before
282
291
  # sending the request.
@@ -355,6 +364,20 @@ module Aws::Finspace
355
364
  # @option params [Types::FederationParameters] :federation_parameters
356
365
  # Configuration information when authentication mode is FEDERATED.
357
366
  #
367
+ # @option params [Types::SuperuserParameters] :superuser_parameters
368
+ # Configuration information for the superuser.
369
+ #
370
+ # @option params [Array<String>] :data_bundles
371
+ # The list of Amazon Resource Names (ARN) of the data bundles to
372
+ # install. Currently supported data bundle ARNs:
373
+ #
374
+ # * `arn:aws:finspace:$\{Region\}::data-bundle/capital-markets-sample` -
375
+ # Contains sample Capital Markets datasets, categories and controlled
376
+ # vocabularies.
377
+ #
378
+ # * `arn:aws:finspace:$\{Region\}::data-bundle/taq` (default) - Contains
379
+ # trades and quotes data in addition to sample Capital Markets data.
380
+ #
358
381
  # @return [Types::CreateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
359
382
  #
360
383
  # * {Types::CreateEnvironmentResponse#environment_id #environment_id} => String
@@ -381,6 +404,12 @@ module Aws::Finspace
381
404
  # "FederationAttributeKey" => "url",
382
405
  # },
383
406
  # },
407
+ # superuser_parameters: {
408
+ # email_address: "EmailId", # required
409
+ # first_name: "NameString", # required
410
+ # last_name: "NameString", # required
411
+ # },
412
+ # data_bundles: ["DataBundleArn"],
384
413
  # })
385
414
  #
386
415
  # @example Response structure
@@ -693,7 +722,7 @@ module Aws::Finspace
693
722
  params: params,
694
723
  config: config)
695
724
  context[:gem_name] = 'aws-sdk-finspace'
696
- context[:gem_version] = '1.3.0'
725
+ context[:gem_version] = '1.7.0'
697
726
  Seahorse::Client::Request.new(handlers, context)
698
727
  end
699
728
 
@@ -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
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-finspace/customizations'
48
48
  # @!group service
49
49
  module Aws::Finspace
50
50
 
51
- GEM_VERSION = '1.3.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
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.3.0
4
+ version: 1.7.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-07-28 00:00:00.000000000 Z
11
+ date: 2021-11-04 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.118.0
22
+ version: 3.122.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.118.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - ">="
79
79
  - !ruby/object:Gem::Version
80
- version: '0'
80
+ version: '2.3'
81
81
  required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="