aws-sdk-finspace 1.27.0 → 1.29.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 +1 -1
- data/lib/aws-sdk-finspace/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-finspace.rb +1 -1
- data/sig/client.rbs +1106 -0
- data/sig/errors.rbs +47 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1239 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,1106 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Finspace
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _CreateEnvironmentResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentResponse]
|
77
|
+
def environment_id: () -> ::String
|
78
|
+
def environment_arn: () -> ::String
|
79
|
+
def environment_url: () -> ::String
|
80
|
+
end
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_environment-instance_method
|
82
|
+
def create_environment: (
|
83
|
+
name: ::String,
|
84
|
+
?description: ::String,
|
85
|
+
?kms_key_id: ::String,
|
86
|
+
?tags: Hash[::String, ::String],
|
87
|
+
?federation_mode: ("FEDERATED" | "LOCAL"),
|
88
|
+
?federation_parameters: {
|
89
|
+
saml_metadata_document: ::String?,
|
90
|
+
saml_metadata_url: ::String?,
|
91
|
+
application_call_back_url: ::String?,
|
92
|
+
federation_urn: ::String?,
|
93
|
+
federation_provider_name: ::String?,
|
94
|
+
attribute_map: Hash[::String, ::String]?
|
95
|
+
},
|
96
|
+
?superuser_parameters: {
|
97
|
+
email_address: ::String,
|
98
|
+
first_name: ::String,
|
99
|
+
last_name: ::String
|
100
|
+
},
|
101
|
+
?data_bundles: Array[::String]
|
102
|
+
) -> _CreateEnvironmentResponseSuccess
|
103
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
|
104
|
+
|
105
|
+
interface _CreateKxChangesetResponseSuccess
|
106
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateKxChangesetResponse]
|
107
|
+
def changeset_id: () -> ::String
|
108
|
+
def database_name: () -> ::String
|
109
|
+
def environment_id: () -> ::String
|
110
|
+
def change_requests: () -> ::Array[Types::ChangeRequest]
|
111
|
+
def created_timestamp: () -> ::Time
|
112
|
+
def last_modified_timestamp: () -> ::Time
|
113
|
+
def status: () -> ("PENDING" | "PROCESSING" | "FAILED" | "COMPLETED")
|
114
|
+
def error_info: () -> Types::ErrorInfo
|
115
|
+
end
|
116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_kx_changeset-instance_method
|
117
|
+
def create_kx_changeset: (
|
118
|
+
environment_id: ::String,
|
119
|
+
database_name: ::String,
|
120
|
+
change_requests: Array[
|
121
|
+
{
|
122
|
+
change_type: ("PUT" | "DELETE"),
|
123
|
+
s3_path: ::String?,
|
124
|
+
db_path: ::String
|
125
|
+
},
|
126
|
+
],
|
127
|
+
client_token: ::String
|
128
|
+
) -> _CreateKxChangesetResponseSuccess
|
129
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKxChangesetResponseSuccess
|
130
|
+
|
131
|
+
interface _CreateKxClusterResponseSuccess
|
132
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateKxClusterResponse]
|
133
|
+
def environment_id: () -> ::String
|
134
|
+
def status: () -> ("PENDING" | "CREATING" | "CREATE_FAILED" | "RUNNING" | "UPDATING" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
135
|
+
def status_reason: () -> ::String
|
136
|
+
def cluster_name: () -> ::String
|
137
|
+
def cluster_type: () -> ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT")
|
138
|
+
def tickerplant_log_configuration: () -> Types::TickerplantLogConfiguration
|
139
|
+
def volumes: () -> ::Array[Types::Volume]
|
140
|
+
def databases: () -> ::Array[Types::KxDatabaseConfiguration]
|
141
|
+
def cache_storage_configurations: () -> ::Array[Types::KxCacheStorageConfiguration]
|
142
|
+
def auto_scaling_configuration: () -> Types::AutoScalingConfiguration
|
143
|
+
def cluster_description: () -> ::String
|
144
|
+
def capacity_configuration: () -> Types::CapacityConfiguration
|
145
|
+
def release_label: () -> ::String
|
146
|
+
def vpc_configuration: () -> Types::VpcConfiguration
|
147
|
+
def initialization_script: () -> ::String
|
148
|
+
def command_line_arguments: () -> ::Array[Types::KxCommandLineArgument]
|
149
|
+
def code: () -> Types::CodeConfiguration
|
150
|
+
def execution_role: () -> ::String
|
151
|
+
def last_modified_timestamp: () -> ::Time
|
152
|
+
def savedown_storage_configuration: () -> Types::KxSavedownStorageConfiguration
|
153
|
+
def az_mode: () -> ("SINGLE" | "MULTI")
|
154
|
+
def availability_zone_id: () -> ::String
|
155
|
+
def created_timestamp: () -> ::Time
|
156
|
+
def scaling_group_configuration: () -> Types::KxScalingGroupConfiguration
|
157
|
+
end
|
158
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_kx_cluster-instance_method
|
159
|
+
def create_kx_cluster: (
|
160
|
+
?client_token: ::String,
|
161
|
+
environment_id: ::String,
|
162
|
+
cluster_name: ::String,
|
163
|
+
cluster_type: ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT"),
|
164
|
+
?tickerplant_log_configuration: {
|
165
|
+
tickerplant_log_volumes: Array[::String]?
|
166
|
+
},
|
167
|
+
?databases: Array[
|
168
|
+
{
|
169
|
+
database_name: ::String,
|
170
|
+
cache_configurations: Array[
|
171
|
+
{
|
172
|
+
cache_type: ::String,
|
173
|
+
db_paths: Array[::String],
|
174
|
+
dataview_name: ::String?
|
175
|
+
},
|
176
|
+
]?,
|
177
|
+
changeset_id: ::String?,
|
178
|
+
dataview_name: ::String?,
|
179
|
+
dataview_configuration: {
|
180
|
+
dataview_name: ::String?,
|
181
|
+
dataview_version_id: ::String?,
|
182
|
+
changeset_id: ::String?,
|
183
|
+
segment_configurations: Array[
|
184
|
+
{
|
185
|
+
db_paths: Array[::String],
|
186
|
+
volume_name: ::String
|
187
|
+
},
|
188
|
+
]?
|
189
|
+
}?
|
190
|
+
},
|
191
|
+
],
|
192
|
+
?cache_storage_configurations: Array[
|
193
|
+
{
|
194
|
+
type: ::String,
|
195
|
+
size: ::Integer
|
196
|
+
},
|
197
|
+
],
|
198
|
+
?auto_scaling_configuration: {
|
199
|
+
min_node_count: ::Integer?,
|
200
|
+
max_node_count: ::Integer?,
|
201
|
+
auto_scaling_metric: ("CPU_UTILIZATION_PERCENTAGE")?,
|
202
|
+
metric_target: ::Float?,
|
203
|
+
scale_in_cooldown_seconds: ::Float?,
|
204
|
+
scale_out_cooldown_seconds: ::Float?
|
205
|
+
},
|
206
|
+
?cluster_description: ::String,
|
207
|
+
?capacity_configuration: {
|
208
|
+
node_type: ::String?,
|
209
|
+
node_count: ::Integer?
|
210
|
+
},
|
211
|
+
release_label: ::String,
|
212
|
+
vpc_configuration: {
|
213
|
+
vpc_id: ::String?,
|
214
|
+
security_group_ids: Array[::String]?,
|
215
|
+
subnet_ids: Array[::String]?,
|
216
|
+
ip_address_type: ("IP_V4")?
|
217
|
+
},
|
218
|
+
?initialization_script: ::String,
|
219
|
+
?command_line_arguments: Array[
|
220
|
+
{
|
221
|
+
key: ::String?,
|
222
|
+
value: ::String?
|
223
|
+
},
|
224
|
+
],
|
225
|
+
?code: {
|
226
|
+
s3_bucket: ::String?,
|
227
|
+
s3_key: ::String?,
|
228
|
+
s3_object_version: ::String?
|
229
|
+
},
|
230
|
+
?execution_role: ::String,
|
231
|
+
?savedown_storage_configuration: {
|
232
|
+
type: ("SDS01")?,
|
233
|
+
size: ::Integer?,
|
234
|
+
volume_name: ::String?
|
235
|
+
},
|
236
|
+
az_mode: ("SINGLE" | "MULTI"),
|
237
|
+
?availability_zone_id: ::String,
|
238
|
+
?tags: Hash[::String, ::String],
|
239
|
+
?scaling_group_configuration: {
|
240
|
+
scaling_group_name: ::String,
|
241
|
+
memory_limit: ::Integer?,
|
242
|
+
memory_reservation: ::Integer,
|
243
|
+
node_count: ::Integer,
|
244
|
+
cpu: ::Float?
|
245
|
+
}
|
246
|
+
) -> _CreateKxClusterResponseSuccess
|
247
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKxClusterResponseSuccess
|
248
|
+
|
249
|
+
interface _CreateKxDatabaseResponseSuccess
|
250
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateKxDatabaseResponse]
|
251
|
+
def database_name: () -> ::String
|
252
|
+
def database_arn: () -> ::String
|
253
|
+
def environment_id: () -> ::String
|
254
|
+
def description: () -> ::String
|
255
|
+
def created_timestamp: () -> ::Time
|
256
|
+
def last_modified_timestamp: () -> ::Time
|
257
|
+
end
|
258
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_kx_database-instance_method
|
259
|
+
def create_kx_database: (
|
260
|
+
environment_id: ::String,
|
261
|
+
database_name: ::String,
|
262
|
+
?description: ::String,
|
263
|
+
?tags: Hash[::String, ::String],
|
264
|
+
client_token: ::String
|
265
|
+
) -> _CreateKxDatabaseResponseSuccess
|
266
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKxDatabaseResponseSuccess
|
267
|
+
|
268
|
+
interface _CreateKxDataviewResponseSuccess
|
269
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateKxDataviewResponse]
|
270
|
+
def dataview_name: () -> ::String
|
271
|
+
def database_name: () -> ::String
|
272
|
+
def environment_id: () -> ::String
|
273
|
+
def az_mode: () -> ("SINGLE" | "MULTI")
|
274
|
+
def availability_zone_id: () -> ::String
|
275
|
+
def changeset_id: () -> ::String
|
276
|
+
def segment_configurations: () -> ::Array[Types::KxDataviewSegmentConfiguration]
|
277
|
+
def description: () -> ::String
|
278
|
+
def auto_update: () -> bool
|
279
|
+
def created_timestamp: () -> ::Time
|
280
|
+
def last_modified_timestamp: () -> ::Time
|
281
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
|
282
|
+
end
|
283
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_kx_dataview-instance_method
|
284
|
+
def create_kx_dataview: (
|
285
|
+
environment_id: ::String,
|
286
|
+
database_name: ::String,
|
287
|
+
dataview_name: ::String,
|
288
|
+
az_mode: ("SINGLE" | "MULTI"),
|
289
|
+
?availability_zone_id: ::String,
|
290
|
+
?changeset_id: ::String,
|
291
|
+
?segment_configurations: Array[
|
292
|
+
{
|
293
|
+
db_paths: Array[::String],
|
294
|
+
volume_name: ::String
|
295
|
+
},
|
296
|
+
],
|
297
|
+
?auto_update: bool,
|
298
|
+
?description: ::String,
|
299
|
+
?tags: Hash[::String, ::String],
|
300
|
+
client_token: ::String
|
301
|
+
) -> _CreateKxDataviewResponseSuccess
|
302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKxDataviewResponseSuccess
|
303
|
+
|
304
|
+
interface _CreateKxEnvironmentResponseSuccess
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateKxEnvironmentResponse]
|
306
|
+
def name: () -> ::String
|
307
|
+
def status: () -> ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
308
|
+
def environment_id: () -> ::String
|
309
|
+
def description: () -> ::String
|
310
|
+
def environment_arn: () -> ::String
|
311
|
+
def kms_key_id: () -> ::String
|
312
|
+
def creation_timestamp: () -> ::Time
|
313
|
+
end
|
314
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_kx_environment-instance_method
|
315
|
+
def create_kx_environment: (
|
316
|
+
name: ::String,
|
317
|
+
?description: ::String,
|
318
|
+
kms_key_id: ::String,
|
319
|
+
?tags: Hash[::String, ::String],
|
320
|
+
?client_token: ::String
|
321
|
+
) -> _CreateKxEnvironmentResponseSuccess
|
322
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKxEnvironmentResponseSuccess
|
323
|
+
|
324
|
+
interface _CreateKxScalingGroupResponseSuccess
|
325
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateKxScalingGroupResponse]
|
326
|
+
def environment_id: () -> ::String
|
327
|
+
def scaling_group_name: () -> ::String
|
328
|
+
def host_type: () -> ::String
|
329
|
+
def availability_zone_id: () -> ::String
|
330
|
+
def status: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
331
|
+
def last_modified_timestamp: () -> ::Time
|
332
|
+
def created_timestamp: () -> ::Time
|
333
|
+
end
|
334
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_kx_scaling_group-instance_method
|
335
|
+
def create_kx_scaling_group: (
|
336
|
+
client_token: ::String,
|
337
|
+
environment_id: ::String,
|
338
|
+
scaling_group_name: ::String,
|
339
|
+
host_type: ::String,
|
340
|
+
availability_zone_id: ::String,
|
341
|
+
?tags: Hash[::String, ::String]
|
342
|
+
) -> _CreateKxScalingGroupResponseSuccess
|
343
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKxScalingGroupResponseSuccess
|
344
|
+
|
345
|
+
interface _CreateKxUserResponseSuccess
|
346
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateKxUserResponse]
|
347
|
+
def user_name: () -> ::String
|
348
|
+
def user_arn: () -> ::String
|
349
|
+
def environment_id: () -> ::String
|
350
|
+
def iam_role: () -> ::String
|
351
|
+
end
|
352
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_kx_user-instance_method
|
353
|
+
def create_kx_user: (
|
354
|
+
environment_id: ::String,
|
355
|
+
user_name: ::String,
|
356
|
+
iam_role: ::String,
|
357
|
+
?tags: Hash[::String, ::String],
|
358
|
+
?client_token: ::String
|
359
|
+
) -> _CreateKxUserResponseSuccess
|
360
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKxUserResponseSuccess
|
361
|
+
|
362
|
+
interface _CreateKxVolumeResponseSuccess
|
363
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateKxVolumeResponse]
|
364
|
+
def environment_id: () -> ::String
|
365
|
+
def volume_name: () -> ::String
|
366
|
+
def volume_type: () -> ("NAS_1")
|
367
|
+
def volume_arn: () -> ::String
|
368
|
+
def nas1_configuration: () -> Types::KxNAS1Configuration
|
369
|
+
def status: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
370
|
+
def status_reason: () -> ::String
|
371
|
+
def az_mode: () -> ("SINGLE" | "MULTI")
|
372
|
+
def description: () -> ::String
|
373
|
+
def availability_zone_ids: () -> ::Array[::String]
|
374
|
+
def created_timestamp: () -> ::Time
|
375
|
+
end
|
376
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#create_kx_volume-instance_method
|
377
|
+
def create_kx_volume: (
|
378
|
+
?client_token: ::String,
|
379
|
+
environment_id: ::String,
|
380
|
+
volume_type: ("NAS_1"),
|
381
|
+
volume_name: ::String,
|
382
|
+
?description: ::String,
|
383
|
+
?nas1_configuration: {
|
384
|
+
type: ("SSD_1000" | "SSD_250" | "HDD_12")?,
|
385
|
+
size: ::Integer?
|
386
|
+
},
|
387
|
+
az_mode: ("SINGLE" | "MULTI"),
|
388
|
+
availability_zone_ids: Array[::String],
|
389
|
+
?tags: Hash[::String, ::String]
|
390
|
+
) -> _CreateKxVolumeResponseSuccess
|
391
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateKxVolumeResponseSuccess
|
392
|
+
|
393
|
+
interface _DeleteEnvironmentResponseSuccess
|
394
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEnvironmentResponse]
|
395
|
+
end
|
396
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_environment-instance_method
|
397
|
+
def delete_environment: (
|
398
|
+
environment_id: ::String
|
399
|
+
) -> _DeleteEnvironmentResponseSuccess
|
400
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEnvironmentResponseSuccess
|
401
|
+
|
402
|
+
interface _DeleteKxClusterResponseSuccess
|
403
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxClusterResponse]
|
404
|
+
end
|
405
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_kx_cluster-instance_method
|
406
|
+
def delete_kx_cluster: (
|
407
|
+
environment_id: ::String,
|
408
|
+
cluster_name: ::String,
|
409
|
+
?client_token: ::String
|
410
|
+
) -> _DeleteKxClusterResponseSuccess
|
411
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxClusterResponseSuccess
|
412
|
+
|
413
|
+
interface _DeleteKxDatabaseResponseSuccess
|
414
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxDatabaseResponse]
|
415
|
+
end
|
416
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_kx_database-instance_method
|
417
|
+
def delete_kx_database: (
|
418
|
+
environment_id: ::String,
|
419
|
+
database_name: ::String,
|
420
|
+
client_token: ::String
|
421
|
+
) -> _DeleteKxDatabaseResponseSuccess
|
422
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxDatabaseResponseSuccess
|
423
|
+
|
424
|
+
interface _DeleteKxDataviewResponseSuccess
|
425
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxDataviewResponse]
|
426
|
+
end
|
427
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_kx_dataview-instance_method
|
428
|
+
def delete_kx_dataview: (
|
429
|
+
environment_id: ::String,
|
430
|
+
database_name: ::String,
|
431
|
+
dataview_name: ::String,
|
432
|
+
client_token: ::String
|
433
|
+
) -> _DeleteKxDataviewResponseSuccess
|
434
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxDataviewResponseSuccess
|
435
|
+
|
436
|
+
interface _DeleteKxEnvironmentResponseSuccess
|
437
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxEnvironmentResponse]
|
438
|
+
end
|
439
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_kx_environment-instance_method
|
440
|
+
def delete_kx_environment: (
|
441
|
+
environment_id: ::String,
|
442
|
+
?client_token: ::String
|
443
|
+
) -> _DeleteKxEnvironmentResponseSuccess
|
444
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxEnvironmentResponseSuccess
|
445
|
+
|
446
|
+
interface _DeleteKxScalingGroupResponseSuccess
|
447
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxScalingGroupResponse]
|
448
|
+
end
|
449
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_kx_scaling_group-instance_method
|
450
|
+
def delete_kx_scaling_group: (
|
451
|
+
environment_id: ::String,
|
452
|
+
scaling_group_name: ::String,
|
453
|
+
?client_token: ::String
|
454
|
+
) -> _DeleteKxScalingGroupResponseSuccess
|
455
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxScalingGroupResponseSuccess
|
456
|
+
|
457
|
+
interface _DeleteKxUserResponseSuccess
|
458
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxUserResponse]
|
459
|
+
end
|
460
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_kx_user-instance_method
|
461
|
+
def delete_kx_user: (
|
462
|
+
user_name: ::String,
|
463
|
+
environment_id: ::String,
|
464
|
+
?client_token: ::String
|
465
|
+
) -> _DeleteKxUserResponseSuccess
|
466
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxUserResponseSuccess
|
467
|
+
|
468
|
+
interface _DeleteKxVolumeResponseSuccess
|
469
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxVolumeResponse]
|
470
|
+
end
|
471
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_kx_volume-instance_method
|
472
|
+
def delete_kx_volume: (
|
473
|
+
environment_id: ::String,
|
474
|
+
volume_name: ::String,
|
475
|
+
?client_token: ::String
|
476
|
+
) -> _DeleteKxVolumeResponseSuccess
|
477
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxVolumeResponseSuccess
|
478
|
+
|
479
|
+
interface _GetEnvironmentResponseSuccess
|
480
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentResponse]
|
481
|
+
def environment: () -> Types::Environment
|
482
|
+
end
|
483
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_environment-instance_method
|
484
|
+
def get_environment: (
|
485
|
+
environment_id: ::String
|
486
|
+
) -> _GetEnvironmentResponseSuccess
|
487
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentResponseSuccess
|
488
|
+
|
489
|
+
interface _GetKxChangesetResponseSuccess
|
490
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxChangesetResponse]
|
491
|
+
def changeset_id: () -> ::String
|
492
|
+
def database_name: () -> ::String
|
493
|
+
def environment_id: () -> ::String
|
494
|
+
def change_requests: () -> ::Array[Types::ChangeRequest]
|
495
|
+
def created_timestamp: () -> ::Time
|
496
|
+
def active_from_timestamp: () -> ::Time
|
497
|
+
def last_modified_timestamp: () -> ::Time
|
498
|
+
def status: () -> ("PENDING" | "PROCESSING" | "FAILED" | "COMPLETED")
|
499
|
+
def error_info: () -> Types::ErrorInfo
|
500
|
+
end
|
501
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_changeset-instance_method
|
502
|
+
def get_kx_changeset: (
|
503
|
+
environment_id: ::String,
|
504
|
+
database_name: ::String,
|
505
|
+
changeset_id: ::String
|
506
|
+
) -> _GetKxChangesetResponseSuccess
|
507
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxChangesetResponseSuccess
|
508
|
+
|
509
|
+
interface _GetKxClusterResponseSuccess
|
510
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxClusterResponse]
|
511
|
+
def status: () -> ("PENDING" | "CREATING" | "CREATE_FAILED" | "RUNNING" | "UPDATING" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
512
|
+
def status_reason: () -> ::String
|
513
|
+
def cluster_name: () -> ::String
|
514
|
+
def cluster_type: () -> ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT")
|
515
|
+
def tickerplant_log_configuration: () -> Types::TickerplantLogConfiguration
|
516
|
+
def volumes: () -> ::Array[Types::Volume]
|
517
|
+
def databases: () -> ::Array[Types::KxDatabaseConfiguration]
|
518
|
+
def cache_storage_configurations: () -> ::Array[Types::KxCacheStorageConfiguration]
|
519
|
+
def auto_scaling_configuration: () -> Types::AutoScalingConfiguration
|
520
|
+
def cluster_description: () -> ::String
|
521
|
+
def capacity_configuration: () -> Types::CapacityConfiguration
|
522
|
+
def release_label: () -> ::String
|
523
|
+
def vpc_configuration: () -> Types::VpcConfiguration
|
524
|
+
def initialization_script: () -> ::String
|
525
|
+
def command_line_arguments: () -> ::Array[Types::KxCommandLineArgument]
|
526
|
+
def code: () -> Types::CodeConfiguration
|
527
|
+
def execution_role: () -> ::String
|
528
|
+
def last_modified_timestamp: () -> ::Time
|
529
|
+
def savedown_storage_configuration: () -> Types::KxSavedownStorageConfiguration
|
530
|
+
def az_mode: () -> ("SINGLE" | "MULTI")
|
531
|
+
def availability_zone_id: () -> ::String
|
532
|
+
def created_timestamp: () -> ::Time
|
533
|
+
def scaling_group_configuration: () -> Types::KxScalingGroupConfiguration
|
534
|
+
end
|
535
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_cluster-instance_method
|
536
|
+
def get_kx_cluster: (
|
537
|
+
environment_id: ::String,
|
538
|
+
cluster_name: ::String
|
539
|
+
) -> _GetKxClusterResponseSuccess
|
540
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxClusterResponseSuccess
|
541
|
+
|
542
|
+
interface _GetKxConnectionStringResponseSuccess
|
543
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxConnectionStringResponse]
|
544
|
+
def signed_connection_string: () -> ::String
|
545
|
+
end
|
546
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_connection_string-instance_method
|
547
|
+
def get_kx_connection_string: (
|
548
|
+
user_arn: ::String,
|
549
|
+
environment_id: ::String,
|
550
|
+
cluster_name: ::String
|
551
|
+
) -> _GetKxConnectionStringResponseSuccess
|
552
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxConnectionStringResponseSuccess
|
553
|
+
|
554
|
+
interface _GetKxDatabaseResponseSuccess
|
555
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxDatabaseResponse]
|
556
|
+
def database_name: () -> ::String
|
557
|
+
def database_arn: () -> ::String
|
558
|
+
def environment_id: () -> ::String
|
559
|
+
def description: () -> ::String
|
560
|
+
def created_timestamp: () -> ::Time
|
561
|
+
def last_modified_timestamp: () -> ::Time
|
562
|
+
def last_completed_changeset_id: () -> ::String
|
563
|
+
def num_bytes: () -> ::Integer
|
564
|
+
def num_changesets: () -> ::Integer
|
565
|
+
def num_files: () -> ::Integer
|
566
|
+
end
|
567
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_database-instance_method
|
568
|
+
def get_kx_database: (
|
569
|
+
environment_id: ::String,
|
570
|
+
database_name: ::String
|
571
|
+
) -> _GetKxDatabaseResponseSuccess
|
572
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxDatabaseResponseSuccess
|
573
|
+
|
574
|
+
interface _GetKxDataviewResponseSuccess
|
575
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxDataviewResponse]
|
576
|
+
def database_name: () -> ::String
|
577
|
+
def dataview_name: () -> ::String
|
578
|
+
def az_mode: () -> ("SINGLE" | "MULTI")
|
579
|
+
def availability_zone_id: () -> ::String
|
580
|
+
def changeset_id: () -> ::String
|
581
|
+
def segment_configurations: () -> ::Array[Types::KxDataviewSegmentConfiguration]
|
582
|
+
def active_versions: () -> ::Array[Types::KxDataviewActiveVersion]
|
583
|
+
def description: () -> ::String
|
584
|
+
def auto_update: () -> bool
|
585
|
+
def environment_id: () -> ::String
|
586
|
+
def created_timestamp: () -> ::Time
|
587
|
+
def last_modified_timestamp: () -> ::Time
|
588
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
|
589
|
+
def status_reason: () -> ::String
|
590
|
+
end
|
591
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_dataview-instance_method
|
592
|
+
def get_kx_dataview: (
|
593
|
+
environment_id: ::String,
|
594
|
+
database_name: ::String,
|
595
|
+
dataview_name: ::String
|
596
|
+
) -> _GetKxDataviewResponseSuccess
|
597
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxDataviewResponseSuccess
|
598
|
+
|
599
|
+
interface _GetKxEnvironmentResponseSuccess
|
600
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxEnvironmentResponse]
|
601
|
+
def name: () -> ::String
|
602
|
+
def environment_id: () -> ::String
|
603
|
+
def aws_account_id: () -> ::String
|
604
|
+
def status: () -> ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
605
|
+
def tgw_status: () -> ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
606
|
+
def dns_status: () -> ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
607
|
+
def error_message: () -> ::String
|
608
|
+
def description: () -> ::String
|
609
|
+
def environment_arn: () -> ::String
|
610
|
+
def kms_key_id: () -> ::String
|
611
|
+
def dedicated_service_account_id: () -> ::String
|
612
|
+
def transit_gateway_configuration: () -> Types::TransitGatewayConfiguration
|
613
|
+
def custom_dns_configuration: () -> ::Array[Types::CustomDNSServer]
|
614
|
+
def creation_timestamp: () -> ::Time
|
615
|
+
def update_timestamp: () -> ::Time
|
616
|
+
def availability_zone_ids: () -> ::Array[::String]
|
617
|
+
def certificate_authority_arn: () -> ::String
|
618
|
+
end
|
619
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_environment-instance_method
|
620
|
+
def get_kx_environment: (
|
621
|
+
environment_id: ::String
|
622
|
+
) -> _GetKxEnvironmentResponseSuccess
|
623
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxEnvironmentResponseSuccess
|
624
|
+
|
625
|
+
interface _GetKxScalingGroupResponseSuccess
|
626
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxScalingGroupResponse]
|
627
|
+
def scaling_group_name: () -> ::String
|
628
|
+
def scaling_group_arn: () -> ::String
|
629
|
+
def host_type: () -> ::String
|
630
|
+
def clusters: () -> ::Array[::String]
|
631
|
+
def availability_zone_id: () -> ::String
|
632
|
+
def status: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
633
|
+
def status_reason: () -> ::String
|
634
|
+
def last_modified_timestamp: () -> ::Time
|
635
|
+
def created_timestamp: () -> ::Time
|
636
|
+
end
|
637
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_scaling_group-instance_method
|
638
|
+
def get_kx_scaling_group: (
|
639
|
+
environment_id: ::String,
|
640
|
+
scaling_group_name: ::String
|
641
|
+
) -> _GetKxScalingGroupResponseSuccess
|
642
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxScalingGroupResponseSuccess
|
643
|
+
|
644
|
+
interface _GetKxUserResponseSuccess
|
645
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxUserResponse]
|
646
|
+
def user_name: () -> ::String
|
647
|
+
def user_arn: () -> ::String
|
648
|
+
def environment_id: () -> ::String
|
649
|
+
def iam_role: () -> ::String
|
650
|
+
end
|
651
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_user-instance_method
|
652
|
+
def get_kx_user: (
|
653
|
+
user_name: ::String,
|
654
|
+
environment_id: ::String
|
655
|
+
) -> _GetKxUserResponseSuccess
|
656
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxUserResponseSuccess
|
657
|
+
|
658
|
+
interface _GetKxVolumeResponseSuccess
|
659
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetKxVolumeResponse]
|
660
|
+
def environment_id: () -> ::String
|
661
|
+
def volume_name: () -> ::String
|
662
|
+
def volume_type: () -> ("NAS_1")
|
663
|
+
def volume_arn: () -> ::String
|
664
|
+
def nas1_configuration: () -> Types::KxNAS1Configuration
|
665
|
+
def status: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
666
|
+
def status_reason: () -> ::String
|
667
|
+
def created_timestamp: () -> ::Time
|
668
|
+
def description: () -> ::String
|
669
|
+
def az_mode: () -> ("SINGLE" | "MULTI")
|
670
|
+
def availability_zone_ids: () -> ::Array[::String]
|
671
|
+
def last_modified_timestamp: () -> ::Time
|
672
|
+
def attached_clusters: () -> ::Array[Types::KxAttachedCluster]
|
673
|
+
end
|
674
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#get_kx_volume-instance_method
|
675
|
+
def get_kx_volume: (
|
676
|
+
environment_id: ::String,
|
677
|
+
volume_name: ::String
|
678
|
+
) -> _GetKxVolumeResponseSuccess
|
679
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKxVolumeResponseSuccess
|
680
|
+
|
681
|
+
interface _ListEnvironmentsResponseSuccess
|
682
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentsResponse]
|
683
|
+
def environments: () -> ::Array[Types::Environment]
|
684
|
+
def next_token: () -> ::String
|
685
|
+
end
|
686
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_environments-instance_method
|
687
|
+
def list_environments: (
|
688
|
+
?next_token: ::String,
|
689
|
+
?max_results: ::Integer
|
690
|
+
) -> _ListEnvironmentsResponseSuccess
|
691
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
|
692
|
+
|
693
|
+
interface _ListKxChangesetsResponseSuccess
|
694
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxChangesetsResponse]
|
695
|
+
def kx_changesets: () -> ::Array[Types::KxChangesetListEntry]
|
696
|
+
def next_token: () -> ::String
|
697
|
+
end
|
698
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_changesets-instance_method
|
699
|
+
def list_kx_changesets: (
|
700
|
+
environment_id: ::String,
|
701
|
+
database_name: ::String,
|
702
|
+
?next_token: ::String,
|
703
|
+
?max_results: ::Integer
|
704
|
+
) -> _ListKxChangesetsResponseSuccess
|
705
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxChangesetsResponseSuccess
|
706
|
+
|
707
|
+
interface _ListKxClusterNodesResponseSuccess
|
708
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxClusterNodesResponse]
|
709
|
+
def nodes: () -> ::Array[Types::KxNode]
|
710
|
+
def next_token: () -> ::String
|
711
|
+
end
|
712
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_cluster_nodes-instance_method
|
713
|
+
def list_kx_cluster_nodes: (
|
714
|
+
environment_id: ::String,
|
715
|
+
cluster_name: ::String,
|
716
|
+
?next_token: ::String,
|
717
|
+
?max_results: ::Integer
|
718
|
+
) -> _ListKxClusterNodesResponseSuccess
|
719
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxClusterNodesResponseSuccess
|
720
|
+
|
721
|
+
interface _ListKxClustersResponseSuccess
|
722
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxClustersResponse]
|
723
|
+
def kx_cluster_summaries: () -> ::Array[Types::KxCluster]
|
724
|
+
def next_token: () -> ::String
|
725
|
+
end
|
726
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_clusters-instance_method
|
727
|
+
def list_kx_clusters: (
|
728
|
+
environment_id: ::String,
|
729
|
+
?cluster_type: ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT"),
|
730
|
+
?max_results: ::Integer,
|
731
|
+
?next_token: ::String
|
732
|
+
) -> _ListKxClustersResponseSuccess
|
733
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxClustersResponseSuccess
|
734
|
+
|
735
|
+
interface _ListKxDatabasesResponseSuccess
|
736
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxDatabasesResponse]
|
737
|
+
def kx_databases: () -> ::Array[Types::KxDatabaseListEntry]
|
738
|
+
def next_token: () -> ::String
|
739
|
+
end
|
740
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_databases-instance_method
|
741
|
+
def list_kx_databases: (
|
742
|
+
environment_id: ::String,
|
743
|
+
?next_token: ::String,
|
744
|
+
?max_results: ::Integer
|
745
|
+
) -> _ListKxDatabasesResponseSuccess
|
746
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxDatabasesResponseSuccess
|
747
|
+
|
748
|
+
interface _ListKxDataviewsResponseSuccess
|
749
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxDataviewsResponse]
|
750
|
+
def kx_dataviews: () -> ::Array[Types::KxDataviewListEntry]
|
751
|
+
def next_token: () -> ::String
|
752
|
+
end
|
753
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_dataviews-instance_method
|
754
|
+
def list_kx_dataviews: (
|
755
|
+
environment_id: ::String,
|
756
|
+
database_name: ::String,
|
757
|
+
?next_token: ::String,
|
758
|
+
?max_results: ::Integer
|
759
|
+
) -> _ListKxDataviewsResponseSuccess
|
760
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxDataviewsResponseSuccess
|
761
|
+
|
762
|
+
interface _ListKxEnvironmentsResponseSuccess
|
763
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxEnvironmentsResponse]
|
764
|
+
def environments: () -> ::Array[Types::KxEnvironment]
|
765
|
+
def next_token: () -> ::String
|
766
|
+
end
|
767
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_environments-instance_method
|
768
|
+
def list_kx_environments: (
|
769
|
+
?next_token: ::String,
|
770
|
+
?max_results: ::Integer
|
771
|
+
) -> _ListKxEnvironmentsResponseSuccess
|
772
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxEnvironmentsResponseSuccess
|
773
|
+
|
774
|
+
interface _ListKxScalingGroupsResponseSuccess
|
775
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxScalingGroupsResponse]
|
776
|
+
def scaling_groups: () -> ::Array[Types::KxScalingGroup]
|
777
|
+
def next_token: () -> ::String
|
778
|
+
end
|
779
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_scaling_groups-instance_method
|
780
|
+
def list_kx_scaling_groups: (
|
781
|
+
environment_id: ::String,
|
782
|
+
?max_results: ::Integer,
|
783
|
+
?next_token: ::String
|
784
|
+
) -> _ListKxScalingGroupsResponseSuccess
|
785
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxScalingGroupsResponseSuccess
|
786
|
+
|
787
|
+
interface _ListKxUsersResponseSuccess
|
788
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxUsersResponse]
|
789
|
+
def users: () -> ::Array[Types::KxUser]
|
790
|
+
def next_token: () -> ::String
|
791
|
+
end
|
792
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_users-instance_method
|
793
|
+
def list_kx_users: (
|
794
|
+
environment_id: ::String,
|
795
|
+
?next_token: ::String,
|
796
|
+
?max_results: ::Integer
|
797
|
+
) -> _ListKxUsersResponseSuccess
|
798
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxUsersResponseSuccess
|
799
|
+
|
800
|
+
interface _ListKxVolumesResponseSuccess
|
801
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListKxVolumesResponse]
|
802
|
+
def kx_volume_summaries: () -> ::Array[Types::KxVolume]
|
803
|
+
def next_token: () -> ::String
|
804
|
+
end
|
805
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_kx_volumes-instance_method
|
806
|
+
def list_kx_volumes: (
|
807
|
+
environment_id: ::String,
|
808
|
+
?max_results: ::Integer,
|
809
|
+
?next_token: ::String,
|
810
|
+
?volume_type: ("NAS_1")
|
811
|
+
) -> _ListKxVolumesResponseSuccess
|
812
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKxVolumesResponseSuccess
|
813
|
+
|
814
|
+
interface _ListTagsForResourceResponseSuccess
|
815
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
816
|
+
def tags: () -> ::Hash[::String, ::String]
|
817
|
+
end
|
818
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#list_tags_for_resource-instance_method
|
819
|
+
def list_tags_for_resource: (
|
820
|
+
resource_arn: ::String
|
821
|
+
) -> _ListTagsForResourceResponseSuccess
|
822
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
823
|
+
|
824
|
+
interface _TagResourceResponseSuccess
|
825
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
826
|
+
end
|
827
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#tag_resource-instance_method
|
828
|
+
def tag_resource: (
|
829
|
+
resource_arn: ::String,
|
830
|
+
tags: Hash[::String, ::String]
|
831
|
+
) -> _TagResourceResponseSuccess
|
832
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
833
|
+
|
834
|
+
interface _UntagResourceResponseSuccess
|
835
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
836
|
+
end
|
837
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#untag_resource-instance_method
|
838
|
+
def untag_resource: (
|
839
|
+
resource_arn: ::String,
|
840
|
+
tag_keys: Array[::String]
|
841
|
+
) -> _UntagResourceResponseSuccess
|
842
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
843
|
+
|
844
|
+
interface _UpdateEnvironmentResponseSuccess
|
845
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentResponse]
|
846
|
+
def environment: () -> Types::Environment
|
847
|
+
end
|
848
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_environment-instance_method
|
849
|
+
def update_environment: (
|
850
|
+
environment_id: ::String,
|
851
|
+
?name: ::String,
|
852
|
+
?description: ::String,
|
853
|
+
?federation_mode: ("FEDERATED" | "LOCAL"),
|
854
|
+
?federation_parameters: {
|
855
|
+
saml_metadata_document: ::String?,
|
856
|
+
saml_metadata_url: ::String?,
|
857
|
+
application_call_back_url: ::String?,
|
858
|
+
federation_urn: ::String?,
|
859
|
+
federation_provider_name: ::String?,
|
860
|
+
attribute_map: Hash[::String, ::String]?
|
861
|
+
}
|
862
|
+
) -> _UpdateEnvironmentResponseSuccess
|
863
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
|
864
|
+
|
865
|
+
interface _UpdateKxClusterCodeConfigurationResponseSuccess
|
866
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKxClusterCodeConfigurationResponse]
|
867
|
+
end
|
868
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_kx_cluster_code_configuration-instance_method
|
869
|
+
def update_kx_cluster_code_configuration: (
|
870
|
+
environment_id: ::String,
|
871
|
+
cluster_name: ::String,
|
872
|
+
?client_token: ::String,
|
873
|
+
code: {
|
874
|
+
s3_bucket: ::String?,
|
875
|
+
s3_key: ::String?,
|
876
|
+
s3_object_version: ::String?
|
877
|
+
},
|
878
|
+
?initialization_script: ::String,
|
879
|
+
?command_line_arguments: Array[
|
880
|
+
{
|
881
|
+
key: ::String?,
|
882
|
+
value: ::String?
|
883
|
+
},
|
884
|
+
],
|
885
|
+
?deployment_configuration: {
|
886
|
+
deployment_strategy: ("NO_RESTART" | "ROLLING" | "FORCE")
|
887
|
+
}
|
888
|
+
) -> _UpdateKxClusterCodeConfigurationResponseSuccess
|
889
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKxClusterCodeConfigurationResponseSuccess
|
890
|
+
|
891
|
+
interface _UpdateKxClusterDatabasesResponseSuccess
|
892
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKxClusterDatabasesResponse]
|
893
|
+
end
|
894
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_kx_cluster_databases-instance_method
|
895
|
+
def update_kx_cluster_databases: (
|
896
|
+
environment_id: ::String,
|
897
|
+
cluster_name: ::String,
|
898
|
+
?client_token: ::String,
|
899
|
+
databases: Array[
|
900
|
+
{
|
901
|
+
database_name: ::String,
|
902
|
+
cache_configurations: Array[
|
903
|
+
{
|
904
|
+
cache_type: ::String,
|
905
|
+
db_paths: Array[::String],
|
906
|
+
dataview_name: ::String?
|
907
|
+
},
|
908
|
+
]?,
|
909
|
+
changeset_id: ::String?,
|
910
|
+
dataview_name: ::String?,
|
911
|
+
dataview_configuration: {
|
912
|
+
dataview_name: ::String?,
|
913
|
+
dataview_version_id: ::String?,
|
914
|
+
changeset_id: ::String?,
|
915
|
+
segment_configurations: Array[
|
916
|
+
{
|
917
|
+
db_paths: Array[::String],
|
918
|
+
volume_name: ::String
|
919
|
+
},
|
920
|
+
]?
|
921
|
+
}?
|
922
|
+
},
|
923
|
+
],
|
924
|
+
?deployment_configuration: {
|
925
|
+
deployment_strategy: ("NO_RESTART" | "ROLLING")
|
926
|
+
}
|
927
|
+
) -> _UpdateKxClusterDatabasesResponseSuccess
|
928
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKxClusterDatabasesResponseSuccess
|
929
|
+
|
930
|
+
interface _UpdateKxDatabaseResponseSuccess
|
931
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKxDatabaseResponse]
|
932
|
+
def database_name: () -> ::String
|
933
|
+
def environment_id: () -> ::String
|
934
|
+
def description: () -> ::String
|
935
|
+
def last_modified_timestamp: () -> ::Time
|
936
|
+
end
|
937
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_kx_database-instance_method
|
938
|
+
def update_kx_database: (
|
939
|
+
environment_id: ::String,
|
940
|
+
database_name: ::String,
|
941
|
+
?description: ::String,
|
942
|
+
client_token: ::String
|
943
|
+
) -> _UpdateKxDatabaseResponseSuccess
|
944
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKxDatabaseResponseSuccess
|
945
|
+
|
946
|
+
interface _UpdateKxDataviewResponseSuccess
|
947
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKxDataviewResponse]
|
948
|
+
def environment_id: () -> ::String
|
949
|
+
def database_name: () -> ::String
|
950
|
+
def dataview_name: () -> ::String
|
951
|
+
def az_mode: () -> ("SINGLE" | "MULTI")
|
952
|
+
def availability_zone_id: () -> ::String
|
953
|
+
def changeset_id: () -> ::String
|
954
|
+
def segment_configurations: () -> ::Array[Types::KxDataviewSegmentConfiguration]
|
955
|
+
def active_versions: () -> ::Array[Types::KxDataviewActiveVersion]
|
956
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
|
957
|
+
def auto_update: () -> bool
|
958
|
+
def description: () -> ::String
|
959
|
+
def created_timestamp: () -> ::Time
|
960
|
+
def last_modified_timestamp: () -> ::Time
|
961
|
+
end
|
962
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_kx_dataview-instance_method
|
963
|
+
def update_kx_dataview: (
|
964
|
+
environment_id: ::String,
|
965
|
+
database_name: ::String,
|
966
|
+
dataview_name: ::String,
|
967
|
+
?description: ::String,
|
968
|
+
?changeset_id: ::String,
|
969
|
+
?segment_configurations: Array[
|
970
|
+
{
|
971
|
+
db_paths: Array[::String],
|
972
|
+
volume_name: ::String
|
973
|
+
},
|
974
|
+
],
|
975
|
+
client_token: ::String
|
976
|
+
) -> _UpdateKxDataviewResponseSuccess
|
977
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKxDataviewResponseSuccess
|
978
|
+
|
979
|
+
interface _UpdateKxEnvironmentResponseSuccess
|
980
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKxEnvironmentResponse]
|
981
|
+
def name: () -> ::String
|
982
|
+
def environment_id: () -> ::String
|
983
|
+
def aws_account_id: () -> ::String
|
984
|
+
def status: () -> ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
985
|
+
def tgw_status: () -> ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
986
|
+
def dns_status: () -> ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
987
|
+
def error_message: () -> ::String
|
988
|
+
def description: () -> ::String
|
989
|
+
def environment_arn: () -> ::String
|
990
|
+
def kms_key_id: () -> ::String
|
991
|
+
def dedicated_service_account_id: () -> ::String
|
992
|
+
def transit_gateway_configuration: () -> Types::TransitGatewayConfiguration
|
993
|
+
def custom_dns_configuration: () -> ::Array[Types::CustomDNSServer]
|
994
|
+
def creation_timestamp: () -> ::Time
|
995
|
+
def update_timestamp: () -> ::Time
|
996
|
+
def availability_zone_ids: () -> ::Array[::String]
|
997
|
+
end
|
998
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_kx_environment-instance_method
|
999
|
+
def update_kx_environment: (
|
1000
|
+
environment_id: ::String,
|
1001
|
+
?name: ::String,
|
1002
|
+
?description: ::String,
|
1003
|
+
?client_token: ::String
|
1004
|
+
) -> _UpdateKxEnvironmentResponseSuccess
|
1005
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKxEnvironmentResponseSuccess
|
1006
|
+
|
1007
|
+
interface _UpdateKxEnvironmentNetworkResponseSuccess
|
1008
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKxEnvironmentNetworkResponse]
|
1009
|
+
def name: () -> ::String
|
1010
|
+
def environment_id: () -> ::String
|
1011
|
+
def aws_account_id: () -> ::String
|
1012
|
+
def status: () -> ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
1013
|
+
def tgw_status: () -> ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
1014
|
+
def dns_status: () -> ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
1015
|
+
def error_message: () -> ::String
|
1016
|
+
def description: () -> ::String
|
1017
|
+
def environment_arn: () -> ::String
|
1018
|
+
def kms_key_id: () -> ::String
|
1019
|
+
def dedicated_service_account_id: () -> ::String
|
1020
|
+
def transit_gateway_configuration: () -> Types::TransitGatewayConfiguration
|
1021
|
+
def custom_dns_configuration: () -> ::Array[Types::CustomDNSServer]
|
1022
|
+
def creation_timestamp: () -> ::Time
|
1023
|
+
def update_timestamp: () -> ::Time
|
1024
|
+
def availability_zone_ids: () -> ::Array[::String]
|
1025
|
+
end
|
1026
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_kx_environment_network-instance_method
|
1027
|
+
def update_kx_environment_network: (
|
1028
|
+
environment_id: ::String,
|
1029
|
+
?transit_gateway_configuration: {
|
1030
|
+
transit_gateway_id: ::String,
|
1031
|
+
routable_cidr_space: ::String,
|
1032
|
+
attachment_network_acl_configuration: Array[
|
1033
|
+
{
|
1034
|
+
rule_number: ::Integer,
|
1035
|
+
protocol: ::String,
|
1036
|
+
rule_action: ("allow" | "deny"),
|
1037
|
+
port_range: {
|
1038
|
+
from: ::Integer,
|
1039
|
+
to: ::Integer
|
1040
|
+
}?,
|
1041
|
+
icmp_type_code: {
|
1042
|
+
type: ::Integer,
|
1043
|
+
code: ::Integer
|
1044
|
+
}?,
|
1045
|
+
cidr_block: ::String
|
1046
|
+
},
|
1047
|
+
]?
|
1048
|
+
},
|
1049
|
+
?custom_dns_configuration: Array[
|
1050
|
+
{
|
1051
|
+
custom_dns_server_name: ::String,
|
1052
|
+
custom_dns_server_ip: ::String
|
1053
|
+
},
|
1054
|
+
],
|
1055
|
+
?client_token: ::String
|
1056
|
+
) -> _UpdateKxEnvironmentNetworkResponseSuccess
|
1057
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKxEnvironmentNetworkResponseSuccess
|
1058
|
+
|
1059
|
+
interface _UpdateKxUserResponseSuccess
|
1060
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKxUserResponse]
|
1061
|
+
def user_name: () -> ::String
|
1062
|
+
def user_arn: () -> ::String
|
1063
|
+
def environment_id: () -> ::String
|
1064
|
+
def iam_role: () -> ::String
|
1065
|
+
end
|
1066
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_kx_user-instance_method
|
1067
|
+
def update_kx_user: (
|
1068
|
+
environment_id: ::String,
|
1069
|
+
user_name: ::String,
|
1070
|
+
iam_role: ::String,
|
1071
|
+
?client_token: ::String
|
1072
|
+
) -> _UpdateKxUserResponseSuccess
|
1073
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKxUserResponseSuccess
|
1074
|
+
|
1075
|
+
interface _UpdateKxVolumeResponseSuccess
|
1076
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateKxVolumeResponse]
|
1077
|
+
def environment_id: () -> ::String
|
1078
|
+
def volume_name: () -> ::String
|
1079
|
+
def volume_type: () -> ("NAS_1")
|
1080
|
+
def volume_arn: () -> ::String
|
1081
|
+
def nas1_configuration: () -> Types::KxNAS1Configuration
|
1082
|
+
def status: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
1083
|
+
def description: () -> ::String
|
1084
|
+
def status_reason: () -> ::String
|
1085
|
+
def created_timestamp: () -> ::Time
|
1086
|
+
def az_mode: () -> ("SINGLE" | "MULTI")
|
1087
|
+
def availability_zone_ids: () -> ::Array[::String]
|
1088
|
+
def last_modified_timestamp: () -> ::Time
|
1089
|
+
def attached_clusters: () -> ::Array[Types::KxAttachedCluster]
|
1090
|
+
end
|
1091
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#update_kx_volume-instance_method
|
1092
|
+
def update_kx_volume: (
|
1093
|
+
environment_id: ::String,
|
1094
|
+
volume_name: ::String,
|
1095
|
+
?description: ::String,
|
1096
|
+
?client_token: ::String,
|
1097
|
+
?nas1_configuration: {
|
1098
|
+
type: ("SSD_1000" | "SSD_250" | "HDD_12")?,
|
1099
|
+
size: ::Integer?
|
1100
|
+
}
|
1101
|
+
) -> _UpdateKxVolumeResponseSuccess
|
1102
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateKxVolumeResponseSuccess
|
1103
|
+
end
|
1104
|
+
end
|
1105
|
+
end
|
1106
|
+
|