aws-sdk-finspace 1.12.0 → 1.13.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 +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspace/client.rb +1 -1
- data/lib/aws-sdk-finspace/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-finspace/types.rb +0 -119
- 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: 490a3e7b933ef0dfd2fc01156d0c4342f50e211c5a9187c900d064973713e8bb
|
|
4
|
+
data.tar.gz: 7abc6b9379de85003be1b5102aa7407859c1d857f9dd42faa71169b72b5c8554
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed587733bb502269ab7c5f35a6ef15c1ae4071ca217500d56a05a19df6016dfd975f7c04043ba9a70e140ba22dde94fbdd1c82b073b83b0359236af21713f7cb
|
|
7
|
+
data.tar.gz: bd77e35d7fe94b5ddd0589781bb593477f49e3e8601a6adc42c633ce1c09c6562c40c54a344366b9a11550dbd797dc140f5670bb92a3f7e3dfa95f06832b0795
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.13.0 (2023-01-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
|
10
|
+
|
|
4
11
|
1.12.0 (2022-10-25)
|
|
5
12
|
------------------
|
|
6
13
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.13.0
|
|
@@ -9,103 +9,43 @@
|
|
|
9
9
|
|
|
10
10
|
module Aws::Finspace
|
|
11
11
|
class EndpointProvider
|
|
12
|
-
def
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
12
|
+
def resolve_endpoint(parameters)
|
|
13
|
+
region = parameters.region
|
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
|
15
|
+
use_fips = parameters.use_fips
|
|
16
|
+
endpoint = parameters.endpoint
|
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
|
+
end
|
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
24
|
+
end
|
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
26
|
+
end
|
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://finspace-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
30
|
+
end
|
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
32
|
+
end
|
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://finspace-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
36
|
+
end
|
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
38
|
+
end
|
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://finspace.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
42
|
+
end
|
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
44
|
+
end
|
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://finspace.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
21
46
|
end
|
|
22
|
-
|
|
23
|
-
end
|
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
|
24
48
|
|
|
25
|
-
def resolve_endpoint(parameters)
|
|
26
|
-
@provider.resolve_endpoint(parameters)
|
|
27
49
|
end
|
|
28
|
-
|
|
29
|
-
# @api private
|
|
30
|
-
RULES = <<-JSON
|
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2ZpbnNwYWNlLWZpcHMue1JlZ2lvbn0ue1Bh
|
|
77
|
-
cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
|
|
78
|
-
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
|
|
79
|
-
bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
|
|
80
|
-
ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
|
|
81
|
-
b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
|
|
82
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
|
83
|
-
UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
|
84
|
-
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
|
85
|
-
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
|
86
|
-
InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
|
87
|
-
Y29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
|
88
|
-
dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2ZpbnNwYWNl
|
|
89
|
-
LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9Iiwi
|
|
90
|
-
cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
|
|
91
|
-
In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFi
|
|
92
|
-
bGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMi
|
|
93
|
-
LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
|
94
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1
|
|
95
|
-
ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3si
|
|
96
|
-
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0
|
|
97
|
-
dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9y
|
|
98
|
-
dHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
|
|
99
|
-
bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2ZpbnNw
|
|
100
|
-
YWNlLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3Vm
|
|
101
|
-
Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
|
|
102
|
-
bmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3Rh
|
|
103
|
-
Y2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
|
|
104
|
-
cG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
|
|
105
|
-
cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZmluc3BhY2Uue1Jl
|
|
106
|
-
Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGll
|
|
107
|
-
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
|
108
|
-
|
|
109
|
-
JSON
|
|
110
50
|
end
|
|
111
51
|
end
|
|
@@ -16,35 +16,6 @@ module Aws::Finspace
|
|
|
16
16
|
#
|
|
17
17
|
class AccessDeniedException < Aws::EmptyStructure; end
|
|
18
18
|
|
|
19
|
-
# @note When making an API call, you may pass CreateEnvironmentRequest
|
|
20
|
-
# data as a hash:
|
|
21
|
-
#
|
|
22
|
-
# {
|
|
23
|
-
# name: "EnvironmentName", # required
|
|
24
|
-
# description: "Description",
|
|
25
|
-
# kms_key_id: "KmsKeyId",
|
|
26
|
-
# tags: {
|
|
27
|
-
# "TagKey" => "TagValue",
|
|
28
|
-
# },
|
|
29
|
-
# federation_mode: "FEDERATED", # accepts FEDERATED, LOCAL
|
|
30
|
-
# federation_parameters: {
|
|
31
|
-
# saml_metadata_document: "SamlMetadataDocument",
|
|
32
|
-
# saml_metadata_url: "url",
|
|
33
|
-
# application_call_back_url: "url",
|
|
34
|
-
# federation_urn: "urn",
|
|
35
|
-
# federation_provider_name: "FederationProviderName",
|
|
36
|
-
# attribute_map: {
|
|
37
|
-
# "FederationAttributeKey" => "url",
|
|
38
|
-
# },
|
|
39
|
-
# },
|
|
40
|
-
# superuser_parameters: {
|
|
41
|
-
# email_address: "EmailId", # required
|
|
42
|
-
# first_name: "NameString", # required
|
|
43
|
-
# last_name: "NameString", # required
|
|
44
|
-
# },
|
|
45
|
-
# data_bundles: ["DataBundleArn"],
|
|
46
|
-
# }
|
|
47
|
-
#
|
|
48
19
|
# @!attribute [rw] name
|
|
49
20
|
# The name of the FinSpace environment to be created.
|
|
50
21
|
# @return [String]
|
|
@@ -131,13 +102,6 @@ module Aws::Finspace
|
|
|
131
102
|
include Aws::Structure
|
|
132
103
|
end
|
|
133
104
|
|
|
134
|
-
# @note When making an API call, you may pass DeleteEnvironmentRequest
|
|
135
|
-
# data as a hash:
|
|
136
|
-
#
|
|
137
|
-
# {
|
|
138
|
-
# environment_id: "IdType", # required
|
|
139
|
-
# }
|
|
140
|
-
#
|
|
141
105
|
# @!attribute [rw] environment_id
|
|
142
106
|
# The identifier for the FinSpace environment.
|
|
143
107
|
# @return [String]
|
|
@@ -229,20 +193,6 @@ module Aws::Finspace
|
|
|
229
193
|
|
|
230
194
|
# Configuration information when authentication mode is FEDERATED.
|
|
231
195
|
#
|
|
232
|
-
# @note When making an API call, you may pass FederationParameters
|
|
233
|
-
# data as a hash:
|
|
234
|
-
#
|
|
235
|
-
# {
|
|
236
|
-
# saml_metadata_document: "SamlMetadataDocument",
|
|
237
|
-
# saml_metadata_url: "url",
|
|
238
|
-
# application_call_back_url: "url",
|
|
239
|
-
# federation_urn: "urn",
|
|
240
|
-
# federation_provider_name: "FederationProviderName",
|
|
241
|
-
# attribute_map: {
|
|
242
|
-
# "FederationAttributeKey" => "url",
|
|
243
|
-
# },
|
|
244
|
-
# }
|
|
245
|
-
#
|
|
246
196
|
# @!attribute [rw] saml_metadata_document
|
|
247
197
|
# SAML 2.0 Metadata document from identity provider (IdP).
|
|
248
198
|
# @return [String]
|
|
@@ -288,13 +238,6 @@ module Aws::Finspace
|
|
|
288
238
|
include Aws::Structure
|
|
289
239
|
end
|
|
290
240
|
|
|
291
|
-
# @note When making an API call, you may pass GetEnvironmentRequest
|
|
292
|
-
# data as a hash:
|
|
293
|
-
#
|
|
294
|
-
# {
|
|
295
|
-
# environment_id: "IdType", # required
|
|
296
|
-
# }
|
|
297
|
-
#
|
|
298
241
|
# @!attribute [rw] environment_id
|
|
299
242
|
# The identifier of the FinSpace environment.
|
|
300
243
|
# @return [String]
|
|
@@ -360,14 +303,6 @@ module Aws::Finspace
|
|
|
360
303
|
include Aws::Structure
|
|
361
304
|
end
|
|
362
305
|
|
|
363
|
-
# @note When making an API call, you may pass ListEnvironmentsRequest
|
|
364
|
-
# data as a hash:
|
|
365
|
-
#
|
|
366
|
-
# {
|
|
367
|
-
# next_token: "PaginationToken",
|
|
368
|
-
# max_results: 1,
|
|
369
|
-
# }
|
|
370
|
-
#
|
|
371
306
|
# @!attribute [rw] next_token
|
|
372
307
|
# A token generated by FinSpace that specifies where to continue
|
|
373
308
|
# pagination if a previous request was truncated. To get the next set
|
|
@@ -406,13 +341,6 @@ module Aws::Finspace
|
|
|
406
341
|
include Aws::Structure
|
|
407
342
|
end
|
|
408
343
|
|
|
409
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
|
410
|
-
# data as a hash:
|
|
411
|
-
#
|
|
412
|
-
# {
|
|
413
|
-
# resource_arn: "EnvironmentArn", # required
|
|
414
|
-
# }
|
|
415
|
-
#
|
|
416
344
|
# @!attribute [rw] resource_arn
|
|
417
345
|
# The Amazon Resource Name of the resource.
|
|
418
346
|
# @return [String]
|
|
@@ -467,15 +395,6 @@ module Aws::Finspace
|
|
|
467
395
|
|
|
468
396
|
# Configuration information for the superuser.
|
|
469
397
|
#
|
|
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
398
|
# @!attribute [rw] email_address
|
|
480
399
|
# The email address of the superuser.
|
|
481
400
|
# @return [String]
|
|
@@ -498,16 +417,6 @@ module Aws::Finspace
|
|
|
498
417
|
include Aws::Structure
|
|
499
418
|
end
|
|
500
419
|
|
|
501
|
-
# @note When making an API call, you may pass TagResourceRequest
|
|
502
|
-
# data as a hash:
|
|
503
|
-
#
|
|
504
|
-
# {
|
|
505
|
-
# resource_arn: "EnvironmentArn", # required
|
|
506
|
-
# tags: { # required
|
|
507
|
-
# "TagKey" => "TagValue",
|
|
508
|
-
# },
|
|
509
|
-
# }
|
|
510
|
-
#
|
|
511
420
|
# @!attribute [rw] resource_arn
|
|
512
421
|
# The Amazon Resource Name (ARN) for the resource.
|
|
513
422
|
# @return [String]
|
|
@@ -535,14 +444,6 @@ module Aws::Finspace
|
|
|
535
444
|
#
|
|
536
445
|
class ThrottlingException < Aws::EmptyStructure; end
|
|
537
446
|
|
|
538
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
|
539
|
-
# data as a hash:
|
|
540
|
-
#
|
|
541
|
-
# {
|
|
542
|
-
# resource_arn: "EnvironmentArn", # required
|
|
543
|
-
# tag_keys: ["TagKey"], # required
|
|
544
|
-
# }
|
|
545
|
-
#
|
|
546
447
|
# @!attribute [rw] resource_arn
|
|
547
448
|
# A FinSpace resource from which you want to remove a tag or tags. The
|
|
548
449
|
# value for this parameter is an Amazon Resource Name (ARN).
|
|
@@ -565,26 +466,6 @@ module Aws::Finspace
|
|
|
565
466
|
#
|
|
566
467
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
|
567
468
|
|
|
568
|
-
# @note When making an API call, you may pass UpdateEnvironmentRequest
|
|
569
|
-
# data as a hash:
|
|
570
|
-
#
|
|
571
|
-
# {
|
|
572
|
-
# environment_id: "IdType", # required
|
|
573
|
-
# name: "EnvironmentName",
|
|
574
|
-
# description: "Description",
|
|
575
|
-
# federation_mode: "FEDERATED", # accepts FEDERATED, LOCAL
|
|
576
|
-
# federation_parameters: {
|
|
577
|
-
# saml_metadata_document: "SamlMetadataDocument",
|
|
578
|
-
# saml_metadata_url: "url",
|
|
579
|
-
# application_call_back_url: "url",
|
|
580
|
-
# federation_urn: "urn",
|
|
581
|
-
# federation_provider_name: "FederationProviderName",
|
|
582
|
-
# attribute_map: {
|
|
583
|
-
# "FederationAttributeKey" => "url",
|
|
584
|
-
# },
|
|
585
|
-
# },
|
|
586
|
-
# }
|
|
587
|
-
#
|
|
588
469
|
# @!attribute [rw] environment_id
|
|
589
470
|
# The identifier of the FinSpace environment.
|
|
590
471
|
# @return [String]
|
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.13.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:
|
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|