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/types.rbs
ADDED
@@ -0,0 +1,1239 @@
|
|
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::Finspace
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AutoScalingConfiguration
|
17
|
+
attr_accessor min_node_count: ::Integer
|
18
|
+
attr_accessor max_node_count: ::Integer
|
19
|
+
attr_accessor auto_scaling_metric: ("CPU_UTILIZATION_PERCENTAGE")
|
20
|
+
attr_accessor metric_target: ::Float
|
21
|
+
attr_accessor scale_in_cooldown_seconds: ::Float
|
22
|
+
attr_accessor scale_out_cooldown_seconds: ::Float
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class CapacityConfiguration
|
27
|
+
attr_accessor node_type: ::String
|
28
|
+
attr_accessor node_count: ::Integer
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class ChangeRequest
|
33
|
+
attr_accessor change_type: ("PUT" | "DELETE")
|
34
|
+
attr_accessor s3_path: ::String
|
35
|
+
attr_accessor db_path: ::String
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class CodeConfiguration
|
40
|
+
attr_accessor s3_bucket: ::String
|
41
|
+
attr_accessor s3_key: ::String
|
42
|
+
attr_accessor s3_object_version: ::String
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
46
|
+
class ConflictException
|
47
|
+
attr_accessor message: ::String
|
48
|
+
attr_accessor reason: ::String
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class CreateEnvironmentRequest
|
53
|
+
attr_accessor name: ::String
|
54
|
+
attr_accessor description: ::String
|
55
|
+
attr_accessor kms_key_id: ::String
|
56
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
57
|
+
attr_accessor federation_mode: ("FEDERATED" | "LOCAL")
|
58
|
+
attr_accessor federation_parameters: Types::FederationParameters
|
59
|
+
attr_accessor superuser_parameters: Types::SuperuserParameters
|
60
|
+
attr_accessor data_bundles: ::Array[::String]
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class CreateEnvironmentResponse
|
65
|
+
attr_accessor environment_id: ::String
|
66
|
+
attr_accessor environment_arn: ::String
|
67
|
+
attr_accessor environment_url: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class CreateKxChangesetRequest
|
72
|
+
attr_accessor environment_id: ::String
|
73
|
+
attr_accessor database_name: ::String
|
74
|
+
attr_accessor change_requests: ::Array[Types::ChangeRequest]
|
75
|
+
attr_accessor client_token: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CreateKxChangesetResponse
|
80
|
+
attr_accessor changeset_id: ::String
|
81
|
+
attr_accessor database_name: ::String
|
82
|
+
attr_accessor environment_id: ::String
|
83
|
+
attr_accessor change_requests: ::Array[Types::ChangeRequest]
|
84
|
+
attr_accessor created_timestamp: ::Time
|
85
|
+
attr_accessor last_modified_timestamp: ::Time
|
86
|
+
attr_accessor status: ("PENDING" | "PROCESSING" | "FAILED" | "COMPLETED")
|
87
|
+
attr_accessor error_info: Types::ErrorInfo
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class CreateKxClusterRequest
|
92
|
+
attr_accessor client_token: ::String
|
93
|
+
attr_accessor environment_id: ::String
|
94
|
+
attr_accessor cluster_name: ::String
|
95
|
+
attr_accessor cluster_type: ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT")
|
96
|
+
attr_accessor tickerplant_log_configuration: Types::TickerplantLogConfiguration
|
97
|
+
attr_accessor databases: ::Array[Types::KxDatabaseConfiguration]
|
98
|
+
attr_accessor cache_storage_configurations: ::Array[Types::KxCacheStorageConfiguration]
|
99
|
+
attr_accessor auto_scaling_configuration: Types::AutoScalingConfiguration
|
100
|
+
attr_accessor cluster_description: ::String
|
101
|
+
attr_accessor capacity_configuration: Types::CapacityConfiguration
|
102
|
+
attr_accessor release_label: ::String
|
103
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
104
|
+
attr_accessor initialization_script: ::String
|
105
|
+
attr_accessor command_line_arguments: ::Array[Types::KxCommandLineArgument]
|
106
|
+
attr_accessor code: Types::CodeConfiguration
|
107
|
+
attr_accessor execution_role: ::String
|
108
|
+
attr_accessor savedown_storage_configuration: Types::KxSavedownStorageConfiguration
|
109
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
110
|
+
attr_accessor availability_zone_id: ::String
|
111
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
112
|
+
attr_accessor scaling_group_configuration: Types::KxScalingGroupConfiguration
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class CreateKxClusterResponse
|
117
|
+
attr_accessor environment_id: ::String
|
118
|
+
attr_accessor status: ("PENDING" | "CREATING" | "CREATE_FAILED" | "RUNNING" | "UPDATING" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
119
|
+
attr_accessor status_reason: ::String
|
120
|
+
attr_accessor cluster_name: ::String
|
121
|
+
attr_accessor cluster_type: ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT")
|
122
|
+
attr_accessor tickerplant_log_configuration: Types::TickerplantLogConfiguration
|
123
|
+
attr_accessor volumes: ::Array[Types::Volume]
|
124
|
+
attr_accessor databases: ::Array[Types::KxDatabaseConfiguration]
|
125
|
+
attr_accessor cache_storage_configurations: ::Array[Types::KxCacheStorageConfiguration]
|
126
|
+
attr_accessor auto_scaling_configuration: Types::AutoScalingConfiguration
|
127
|
+
attr_accessor cluster_description: ::String
|
128
|
+
attr_accessor capacity_configuration: Types::CapacityConfiguration
|
129
|
+
attr_accessor release_label: ::String
|
130
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
131
|
+
attr_accessor initialization_script: ::String
|
132
|
+
attr_accessor command_line_arguments: ::Array[Types::KxCommandLineArgument]
|
133
|
+
attr_accessor code: Types::CodeConfiguration
|
134
|
+
attr_accessor execution_role: ::String
|
135
|
+
attr_accessor last_modified_timestamp: ::Time
|
136
|
+
attr_accessor savedown_storage_configuration: Types::KxSavedownStorageConfiguration
|
137
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
138
|
+
attr_accessor availability_zone_id: ::String
|
139
|
+
attr_accessor created_timestamp: ::Time
|
140
|
+
attr_accessor scaling_group_configuration: Types::KxScalingGroupConfiguration
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class CreateKxDatabaseRequest
|
145
|
+
attr_accessor environment_id: ::String
|
146
|
+
attr_accessor database_name: ::String
|
147
|
+
attr_accessor description: ::String
|
148
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
149
|
+
attr_accessor client_token: ::String
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class CreateKxDatabaseResponse
|
154
|
+
attr_accessor database_name: ::String
|
155
|
+
attr_accessor database_arn: ::String
|
156
|
+
attr_accessor environment_id: ::String
|
157
|
+
attr_accessor description: ::String
|
158
|
+
attr_accessor created_timestamp: ::Time
|
159
|
+
attr_accessor last_modified_timestamp: ::Time
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class CreateKxDataviewRequest
|
164
|
+
attr_accessor environment_id: ::String
|
165
|
+
attr_accessor database_name: ::String
|
166
|
+
attr_accessor dataview_name: ::String
|
167
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
168
|
+
attr_accessor availability_zone_id: ::String
|
169
|
+
attr_accessor changeset_id: ::String
|
170
|
+
attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
|
171
|
+
attr_accessor auto_update: bool
|
172
|
+
attr_accessor description: ::String
|
173
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
174
|
+
attr_accessor client_token: ::String
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class CreateKxDataviewResponse
|
179
|
+
attr_accessor dataview_name: ::String
|
180
|
+
attr_accessor database_name: ::String
|
181
|
+
attr_accessor environment_id: ::String
|
182
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
183
|
+
attr_accessor availability_zone_id: ::String
|
184
|
+
attr_accessor changeset_id: ::String
|
185
|
+
attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
|
186
|
+
attr_accessor description: ::String
|
187
|
+
attr_accessor auto_update: bool
|
188
|
+
attr_accessor created_timestamp: ::Time
|
189
|
+
attr_accessor last_modified_timestamp: ::Time
|
190
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class CreateKxEnvironmentRequest
|
195
|
+
attr_accessor name: ::String
|
196
|
+
attr_accessor description: ::String
|
197
|
+
attr_accessor kms_key_id: ::String
|
198
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
199
|
+
attr_accessor client_token: ::String
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class CreateKxEnvironmentResponse
|
204
|
+
attr_accessor name: ::String
|
205
|
+
attr_accessor status: ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
206
|
+
attr_accessor environment_id: ::String
|
207
|
+
attr_accessor description: ::String
|
208
|
+
attr_accessor environment_arn: ::String
|
209
|
+
attr_accessor kms_key_id: ::String
|
210
|
+
attr_accessor creation_timestamp: ::Time
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class CreateKxScalingGroupRequest
|
215
|
+
attr_accessor client_token: ::String
|
216
|
+
attr_accessor environment_id: ::String
|
217
|
+
attr_accessor scaling_group_name: ::String
|
218
|
+
attr_accessor host_type: ::String
|
219
|
+
attr_accessor availability_zone_id: ::String
|
220
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class CreateKxScalingGroupResponse
|
225
|
+
attr_accessor environment_id: ::String
|
226
|
+
attr_accessor scaling_group_name: ::String
|
227
|
+
attr_accessor host_type: ::String
|
228
|
+
attr_accessor availability_zone_id: ::String
|
229
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
230
|
+
attr_accessor last_modified_timestamp: ::Time
|
231
|
+
attr_accessor created_timestamp: ::Time
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class CreateKxUserRequest
|
236
|
+
attr_accessor environment_id: ::String
|
237
|
+
attr_accessor user_name: ::String
|
238
|
+
attr_accessor iam_role: ::String
|
239
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
240
|
+
attr_accessor client_token: ::String
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class CreateKxUserResponse
|
245
|
+
attr_accessor user_name: ::String
|
246
|
+
attr_accessor user_arn: ::String
|
247
|
+
attr_accessor environment_id: ::String
|
248
|
+
attr_accessor iam_role: ::String
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class CreateKxVolumeRequest
|
253
|
+
attr_accessor client_token: ::String
|
254
|
+
attr_accessor environment_id: ::String
|
255
|
+
attr_accessor volume_type: ("NAS_1")
|
256
|
+
attr_accessor volume_name: ::String
|
257
|
+
attr_accessor description: ::String
|
258
|
+
attr_accessor nas1_configuration: Types::KxNAS1Configuration
|
259
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
260
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
261
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class CreateKxVolumeResponse
|
266
|
+
attr_accessor environment_id: ::String
|
267
|
+
attr_accessor volume_name: ::String
|
268
|
+
attr_accessor volume_type: ("NAS_1")
|
269
|
+
attr_accessor volume_arn: ::String
|
270
|
+
attr_accessor nas1_configuration: Types::KxNAS1Configuration
|
271
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
272
|
+
attr_accessor status_reason: ::String
|
273
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
274
|
+
attr_accessor description: ::String
|
275
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
276
|
+
attr_accessor created_timestamp: ::Time
|
277
|
+
SENSITIVE: []
|
278
|
+
end
|
279
|
+
|
280
|
+
class CustomDNSServer
|
281
|
+
attr_accessor custom_dns_server_name: ::String
|
282
|
+
attr_accessor custom_dns_server_ip: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class DeleteEnvironmentRequest
|
287
|
+
attr_accessor environment_id: ::String
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class DeleteEnvironmentResponse < Aws::EmptyStructure
|
292
|
+
end
|
293
|
+
|
294
|
+
class DeleteKxClusterRequest
|
295
|
+
attr_accessor environment_id: ::String
|
296
|
+
attr_accessor cluster_name: ::String
|
297
|
+
attr_accessor client_token: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class DeleteKxClusterResponse < Aws::EmptyStructure
|
302
|
+
end
|
303
|
+
|
304
|
+
class DeleteKxDatabaseRequest
|
305
|
+
attr_accessor environment_id: ::String
|
306
|
+
attr_accessor database_name: ::String
|
307
|
+
attr_accessor client_token: ::String
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class DeleteKxDatabaseResponse < Aws::EmptyStructure
|
312
|
+
end
|
313
|
+
|
314
|
+
class DeleteKxDataviewRequest
|
315
|
+
attr_accessor environment_id: ::String
|
316
|
+
attr_accessor database_name: ::String
|
317
|
+
attr_accessor dataview_name: ::String
|
318
|
+
attr_accessor client_token: ::String
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class DeleteKxDataviewResponse < Aws::EmptyStructure
|
323
|
+
end
|
324
|
+
|
325
|
+
class DeleteKxEnvironmentRequest
|
326
|
+
attr_accessor environment_id: ::String
|
327
|
+
attr_accessor client_token: ::String
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class DeleteKxEnvironmentResponse < Aws::EmptyStructure
|
332
|
+
end
|
333
|
+
|
334
|
+
class DeleteKxScalingGroupRequest
|
335
|
+
attr_accessor environment_id: ::String
|
336
|
+
attr_accessor scaling_group_name: ::String
|
337
|
+
attr_accessor client_token: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class DeleteKxScalingGroupResponse < Aws::EmptyStructure
|
342
|
+
end
|
343
|
+
|
344
|
+
class DeleteKxUserRequest
|
345
|
+
attr_accessor user_name: ::String
|
346
|
+
attr_accessor environment_id: ::String
|
347
|
+
attr_accessor client_token: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class DeleteKxUserResponse < Aws::EmptyStructure
|
352
|
+
end
|
353
|
+
|
354
|
+
class DeleteKxVolumeRequest
|
355
|
+
attr_accessor environment_id: ::String
|
356
|
+
attr_accessor volume_name: ::String
|
357
|
+
attr_accessor client_token: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class DeleteKxVolumeResponse < Aws::EmptyStructure
|
362
|
+
end
|
363
|
+
|
364
|
+
class Environment
|
365
|
+
attr_accessor name: ::String
|
366
|
+
attr_accessor environment_id: ::String
|
367
|
+
attr_accessor aws_account_id: ::String
|
368
|
+
attr_accessor status: ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
369
|
+
attr_accessor environment_url: ::String
|
370
|
+
attr_accessor description: ::String
|
371
|
+
attr_accessor environment_arn: ::String
|
372
|
+
attr_accessor sage_maker_studio_domain_url: ::String
|
373
|
+
attr_accessor kms_key_id: ::String
|
374
|
+
attr_accessor dedicated_service_account_id: ::String
|
375
|
+
attr_accessor federation_mode: ("FEDERATED" | "LOCAL")
|
376
|
+
attr_accessor federation_parameters: Types::FederationParameters
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class ErrorInfo
|
381
|
+
attr_accessor error_message: ::String
|
382
|
+
attr_accessor error_type: ("The inputs to this request are invalid." | "Service limits have been exceeded." | "Missing required permission to perform this request." | "One or more inputs to this request were not found." | "The system temporarily lacks sufficient resources to process the request." | "An internal error has occurred." | "Cancelled" | "A user recoverable error has occurred")
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class FederationParameters
|
387
|
+
attr_accessor saml_metadata_document: ::String
|
388
|
+
attr_accessor saml_metadata_url: ::String
|
389
|
+
attr_accessor application_call_back_url: ::String
|
390
|
+
attr_accessor federation_urn: ::String
|
391
|
+
attr_accessor federation_provider_name: ::String
|
392
|
+
attr_accessor attribute_map: ::Hash[::String, ::String]
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class GetEnvironmentRequest
|
397
|
+
attr_accessor environment_id: ::String
|
398
|
+
SENSITIVE: []
|
399
|
+
end
|
400
|
+
|
401
|
+
class GetEnvironmentResponse
|
402
|
+
attr_accessor environment: Types::Environment
|
403
|
+
SENSITIVE: []
|
404
|
+
end
|
405
|
+
|
406
|
+
class GetKxChangesetRequest
|
407
|
+
attr_accessor environment_id: ::String
|
408
|
+
attr_accessor database_name: ::String
|
409
|
+
attr_accessor changeset_id: ::String
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class GetKxChangesetResponse
|
414
|
+
attr_accessor changeset_id: ::String
|
415
|
+
attr_accessor database_name: ::String
|
416
|
+
attr_accessor environment_id: ::String
|
417
|
+
attr_accessor change_requests: ::Array[Types::ChangeRequest]
|
418
|
+
attr_accessor created_timestamp: ::Time
|
419
|
+
attr_accessor active_from_timestamp: ::Time
|
420
|
+
attr_accessor last_modified_timestamp: ::Time
|
421
|
+
attr_accessor status: ("PENDING" | "PROCESSING" | "FAILED" | "COMPLETED")
|
422
|
+
attr_accessor error_info: Types::ErrorInfo
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class GetKxClusterRequest
|
427
|
+
attr_accessor environment_id: ::String
|
428
|
+
attr_accessor cluster_name: ::String
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class GetKxClusterResponse
|
433
|
+
attr_accessor status: ("PENDING" | "CREATING" | "CREATE_FAILED" | "RUNNING" | "UPDATING" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
434
|
+
attr_accessor status_reason: ::String
|
435
|
+
attr_accessor cluster_name: ::String
|
436
|
+
attr_accessor cluster_type: ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT")
|
437
|
+
attr_accessor tickerplant_log_configuration: Types::TickerplantLogConfiguration
|
438
|
+
attr_accessor volumes: ::Array[Types::Volume]
|
439
|
+
attr_accessor databases: ::Array[Types::KxDatabaseConfiguration]
|
440
|
+
attr_accessor cache_storage_configurations: ::Array[Types::KxCacheStorageConfiguration]
|
441
|
+
attr_accessor auto_scaling_configuration: Types::AutoScalingConfiguration
|
442
|
+
attr_accessor cluster_description: ::String
|
443
|
+
attr_accessor capacity_configuration: Types::CapacityConfiguration
|
444
|
+
attr_accessor release_label: ::String
|
445
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
446
|
+
attr_accessor initialization_script: ::String
|
447
|
+
attr_accessor command_line_arguments: ::Array[Types::KxCommandLineArgument]
|
448
|
+
attr_accessor code: Types::CodeConfiguration
|
449
|
+
attr_accessor execution_role: ::String
|
450
|
+
attr_accessor last_modified_timestamp: ::Time
|
451
|
+
attr_accessor savedown_storage_configuration: Types::KxSavedownStorageConfiguration
|
452
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
453
|
+
attr_accessor availability_zone_id: ::String
|
454
|
+
attr_accessor created_timestamp: ::Time
|
455
|
+
attr_accessor scaling_group_configuration: Types::KxScalingGroupConfiguration
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class GetKxConnectionStringRequest
|
460
|
+
attr_accessor user_arn: ::String
|
461
|
+
attr_accessor environment_id: ::String
|
462
|
+
attr_accessor cluster_name: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class GetKxConnectionStringResponse
|
467
|
+
attr_accessor signed_connection_string: ::String
|
468
|
+
SENSITIVE: [:signed_connection_string]
|
469
|
+
end
|
470
|
+
|
471
|
+
class GetKxDatabaseRequest
|
472
|
+
attr_accessor environment_id: ::String
|
473
|
+
attr_accessor database_name: ::String
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class GetKxDatabaseResponse
|
478
|
+
attr_accessor database_name: ::String
|
479
|
+
attr_accessor database_arn: ::String
|
480
|
+
attr_accessor environment_id: ::String
|
481
|
+
attr_accessor description: ::String
|
482
|
+
attr_accessor created_timestamp: ::Time
|
483
|
+
attr_accessor last_modified_timestamp: ::Time
|
484
|
+
attr_accessor last_completed_changeset_id: ::String
|
485
|
+
attr_accessor num_bytes: ::Integer
|
486
|
+
attr_accessor num_changesets: ::Integer
|
487
|
+
attr_accessor num_files: ::Integer
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class GetKxDataviewRequest
|
492
|
+
attr_accessor environment_id: ::String
|
493
|
+
attr_accessor database_name: ::String
|
494
|
+
attr_accessor dataview_name: ::String
|
495
|
+
SENSITIVE: []
|
496
|
+
end
|
497
|
+
|
498
|
+
class GetKxDataviewResponse
|
499
|
+
attr_accessor database_name: ::String
|
500
|
+
attr_accessor dataview_name: ::String
|
501
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
502
|
+
attr_accessor availability_zone_id: ::String
|
503
|
+
attr_accessor changeset_id: ::String
|
504
|
+
attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
|
505
|
+
attr_accessor active_versions: ::Array[Types::KxDataviewActiveVersion]
|
506
|
+
attr_accessor description: ::String
|
507
|
+
attr_accessor auto_update: bool
|
508
|
+
attr_accessor environment_id: ::String
|
509
|
+
attr_accessor created_timestamp: ::Time
|
510
|
+
attr_accessor last_modified_timestamp: ::Time
|
511
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
|
512
|
+
attr_accessor status_reason: ::String
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class GetKxEnvironmentRequest
|
517
|
+
attr_accessor environment_id: ::String
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class GetKxEnvironmentResponse
|
522
|
+
attr_accessor name: ::String
|
523
|
+
attr_accessor environment_id: ::String
|
524
|
+
attr_accessor aws_account_id: ::String
|
525
|
+
attr_accessor status: ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
526
|
+
attr_accessor tgw_status: ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
527
|
+
attr_accessor dns_status: ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
528
|
+
attr_accessor error_message: ::String
|
529
|
+
attr_accessor description: ::String
|
530
|
+
attr_accessor environment_arn: ::String
|
531
|
+
attr_accessor kms_key_id: ::String
|
532
|
+
attr_accessor dedicated_service_account_id: ::String
|
533
|
+
attr_accessor transit_gateway_configuration: Types::TransitGatewayConfiguration
|
534
|
+
attr_accessor custom_dns_configuration: ::Array[Types::CustomDNSServer]
|
535
|
+
attr_accessor creation_timestamp: ::Time
|
536
|
+
attr_accessor update_timestamp: ::Time
|
537
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
538
|
+
attr_accessor certificate_authority_arn: ::String
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class GetKxScalingGroupRequest
|
543
|
+
attr_accessor environment_id: ::String
|
544
|
+
attr_accessor scaling_group_name: ::String
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class GetKxScalingGroupResponse
|
549
|
+
attr_accessor scaling_group_name: ::String
|
550
|
+
attr_accessor scaling_group_arn: ::String
|
551
|
+
attr_accessor host_type: ::String
|
552
|
+
attr_accessor clusters: ::Array[::String]
|
553
|
+
attr_accessor availability_zone_id: ::String
|
554
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
555
|
+
attr_accessor status_reason: ::String
|
556
|
+
attr_accessor last_modified_timestamp: ::Time
|
557
|
+
attr_accessor created_timestamp: ::Time
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class GetKxUserRequest
|
562
|
+
attr_accessor user_name: ::String
|
563
|
+
attr_accessor environment_id: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class GetKxUserResponse
|
568
|
+
attr_accessor user_name: ::String
|
569
|
+
attr_accessor user_arn: ::String
|
570
|
+
attr_accessor environment_id: ::String
|
571
|
+
attr_accessor iam_role: ::String
|
572
|
+
SENSITIVE: []
|
573
|
+
end
|
574
|
+
|
575
|
+
class GetKxVolumeRequest
|
576
|
+
attr_accessor environment_id: ::String
|
577
|
+
attr_accessor volume_name: ::String
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class GetKxVolumeResponse
|
582
|
+
attr_accessor environment_id: ::String
|
583
|
+
attr_accessor volume_name: ::String
|
584
|
+
attr_accessor volume_type: ("NAS_1")
|
585
|
+
attr_accessor volume_arn: ::String
|
586
|
+
attr_accessor nas1_configuration: Types::KxNAS1Configuration
|
587
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
588
|
+
attr_accessor status_reason: ::String
|
589
|
+
attr_accessor created_timestamp: ::Time
|
590
|
+
attr_accessor description: ::String
|
591
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
592
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
593
|
+
attr_accessor last_modified_timestamp: ::Time
|
594
|
+
attr_accessor attached_clusters: ::Array[Types::KxAttachedCluster]
|
595
|
+
SENSITIVE: []
|
596
|
+
end
|
597
|
+
|
598
|
+
class IcmpTypeCode
|
599
|
+
attr_accessor type: ::Integer
|
600
|
+
attr_accessor code: ::Integer
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class InternalServerException
|
605
|
+
attr_accessor message: ::String
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class InvalidRequestException
|
610
|
+
attr_accessor message: ::String
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class KxAttachedCluster
|
615
|
+
attr_accessor cluster_name: ::String
|
616
|
+
attr_accessor cluster_type: ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT")
|
617
|
+
attr_accessor cluster_status: ("PENDING" | "CREATING" | "CREATE_FAILED" | "RUNNING" | "UPDATING" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
618
|
+
SENSITIVE: []
|
619
|
+
end
|
620
|
+
|
621
|
+
class KxCacheStorageConfiguration
|
622
|
+
attr_accessor type: ::String
|
623
|
+
attr_accessor size: ::Integer
|
624
|
+
SENSITIVE: []
|
625
|
+
end
|
626
|
+
|
627
|
+
class KxChangesetListEntry
|
628
|
+
attr_accessor changeset_id: ::String
|
629
|
+
attr_accessor created_timestamp: ::Time
|
630
|
+
attr_accessor active_from_timestamp: ::Time
|
631
|
+
attr_accessor last_modified_timestamp: ::Time
|
632
|
+
attr_accessor status: ("PENDING" | "PROCESSING" | "FAILED" | "COMPLETED")
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class KxCluster
|
637
|
+
attr_accessor status: ("PENDING" | "CREATING" | "CREATE_FAILED" | "RUNNING" | "UPDATING" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
638
|
+
attr_accessor status_reason: ::String
|
639
|
+
attr_accessor cluster_name: ::String
|
640
|
+
attr_accessor cluster_type: ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT")
|
641
|
+
attr_accessor cluster_description: ::String
|
642
|
+
attr_accessor release_label: ::String
|
643
|
+
attr_accessor volumes: ::Array[Types::Volume]
|
644
|
+
attr_accessor initialization_script: ::String
|
645
|
+
attr_accessor execution_role: ::String
|
646
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
647
|
+
attr_accessor availability_zone_id: ::String
|
648
|
+
attr_accessor last_modified_timestamp: ::Time
|
649
|
+
attr_accessor created_timestamp: ::Time
|
650
|
+
SENSITIVE: []
|
651
|
+
end
|
652
|
+
|
653
|
+
class KxClusterCodeDeploymentConfiguration
|
654
|
+
attr_accessor deployment_strategy: ("NO_RESTART" | "ROLLING" | "FORCE")
|
655
|
+
SENSITIVE: []
|
656
|
+
end
|
657
|
+
|
658
|
+
class KxCommandLineArgument
|
659
|
+
attr_accessor key: ::String
|
660
|
+
attr_accessor value: ::String
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
|
664
|
+
class KxDatabaseCacheConfiguration
|
665
|
+
attr_accessor cache_type: ::String
|
666
|
+
attr_accessor db_paths: ::Array[::String]
|
667
|
+
attr_accessor dataview_name: ::String
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class KxDatabaseConfiguration
|
672
|
+
attr_accessor database_name: ::String
|
673
|
+
attr_accessor cache_configurations: ::Array[Types::KxDatabaseCacheConfiguration]
|
674
|
+
attr_accessor changeset_id: ::String
|
675
|
+
attr_accessor dataview_name: ::String
|
676
|
+
attr_accessor dataview_configuration: Types::KxDataviewConfiguration
|
677
|
+
SENSITIVE: []
|
678
|
+
end
|
679
|
+
|
680
|
+
class KxDatabaseListEntry
|
681
|
+
attr_accessor database_name: ::String
|
682
|
+
attr_accessor created_timestamp: ::Time
|
683
|
+
attr_accessor last_modified_timestamp: ::Time
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class KxDataviewActiveVersion
|
688
|
+
attr_accessor changeset_id: ::String
|
689
|
+
attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
|
690
|
+
attr_accessor attached_clusters: ::Array[::String]
|
691
|
+
attr_accessor created_timestamp: ::Time
|
692
|
+
attr_accessor version_id: ::String
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
696
|
+
class KxDataviewConfiguration
|
697
|
+
attr_accessor dataview_name: ::String
|
698
|
+
attr_accessor dataview_version_id: ::String
|
699
|
+
attr_accessor changeset_id: ::String
|
700
|
+
attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class KxDataviewListEntry
|
705
|
+
attr_accessor environment_id: ::String
|
706
|
+
attr_accessor database_name: ::String
|
707
|
+
attr_accessor dataview_name: ::String
|
708
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
709
|
+
attr_accessor availability_zone_id: ::String
|
710
|
+
attr_accessor changeset_id: ::String
|
711
|
+
attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
|
712
|
+
attr_accessor active_versions: ::Array[Types::KxDataviewActiveVersion]
|
713
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
|
714
|
+
attr_accessor description: ::String
|
715
|
+
attr_accessor auto_update: bool
|
716
|
+
attr_accessor created_timestamp: ::Time
|
717
|
+
attr_accessor last_modified_timestamp: ::Time
|
718
|
+
attr_accessor status_reason: ::String
|
719
|
+
SENSITIVE: []
|
720
|
+
end
|
721
|
+
|
722
|
+
class KxDataviewSegmentConfiguration
|
723
|
+
attr_accessor db_paths: ::Array[::String]
|
724
|
+
attr_accessor volume_name: ::String
|
725
|
+
SENSITIVE: []
|
726
|
+
end
|
727
|
+
|
728
|
+
class KxDeploymentConfiguration
|
729
|
+
attr_accessor deployment_strategy: ("NO_RESTART" | "ROLLING")
|
730
|
+
SENSITIVE: []
|
731
|
+
end
|
732
|
+
|
733
|
+
class KxEnvironment
|
734
|
+
attr_accessor name: ::String
|
735
|
+
attr_accessor environment_id: ::String
|
736
|
+
attr_accessor aws_account_id: ::String
|
737
|
+
attr_accessor status: ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
738
|
+
attr_accessor tgw_status: ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
739
|
+
attr_accessor dns_status: ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
740
|
+
attr_accessor error_message: ::String
|
741
|
+
attr_accessor description: ::String
|
742
|
+
attr_accessor environment_arn: ::String
|
743
|
+
attr_accessor kms_key_id: ::String
|
744
|
+
attr_accessor dedicated_service_account_id: ::String
|
745
|
+
attr_accessor transit_gateway_configuration: Types::TransitGatewayConfiguration
|
746
|
+
attr_accessor custom_dns_configuration: ::Array[Types::CustomDNSServer]
|
747
|
+
attr_accessor creation_timestamp: ::Time
|
748
|
+
attr_accessor update_timestamp: ::Time
|
749
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
750
|
+
attr_accessor certificate_authority_arn: ::String
|
751
|
+
SENSITIVE: []
|
752
|
+
end
|
753
|
+
|
754
|
+
class KxNAS1Configuration
|
755
|
+
attr_accessor type: ("SSD_1000" | "SSD_250" | "HDD_12")
|
756
|
+
attr_accessor size: ::Integer
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class KxNode
|
761
|
+
attr_accessor node_id: ::String
|
762
|
+
attr_accessor availability_zone_id: ::String
|
763
|
+
attr_accessor launch_time: ::Time
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class KxSavedownStorageConfiguration
|
768
|
+
attr_accessor type: ("SDS01")
|
769
|
+
attr_accessor size: ::Integer
|
770
|
+
attr_accessor volume_name: ::String
|
771
|
+
SENSITIVE: []
|
772
|
+
end
|
773
|
+
|
774
|
+
class KxScalingGroup
|
775
|
+
attr_accessor scaling_group_name: ::String
|
776
|
+
attr_accessor host_type: ::String
|
777
|
+
attr_accessor clusters: ::Array[::String]
|
778
|
+
attr_accessor availability_zone_id: ::String
|
779
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
780
|
+
attr_accessor status_reason: ::String
|
781
|
+
attr_accessor last_modified_timestamp: ::Time
|
782
|
+
attr_accessor created_timestamp: ::Time
|
783
|
+
SENSITIVE: []
|
784
|
+
end
|
785
|
+
|
786
|
+
class KxScalingGroupConfiguration
|
787
|
+
attr_accessor scaling_group_name: ::String
|
788
|
+
attr_accessor memory_limit: ::Integer
|
789
|
+
attr_accessor memory_reservation: ::Integer
|
790
|
+
attr_accessor node_count: ::Integer
|
791
|
+
attr_accessor cpu: ::Float
|
792
|
+
SENSITIVE: []
|
793
|
+
end
|
794
|
+
|
795
|
+
class KxUser
|
796
|
+
attr_accessor user_arn: ::String
|
797
|
+
attr_accessor user_name: ::String
|
798
|
+
attr_accessor iam_role: ::String
|
799
|
+
attr_accessor create_timestamp: ::Time
|
800
|
+
attr_accessor update_timestamp: ::Time
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class KxVolume
|
805
|
+
attr_accessor volume_name: ::String
|
806
|
+
attr_accessor volume_type: ("NAS_1")
|
807
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
808
|
+
attr_accessor description: ::String
|
809
|
+
attr_accessor status_reason: ::String
|
810
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
811
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
812
|
+
attr_accessor created_timestamp: ::Time
|
813
|
+
attr_accessor last_modified_timestamp: ::Time
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class LimitExceededException
|
818
|
+
attr_accessor message: ::String
|
819
|
+
SENSITIVE: []
|
820
|
+
end
|
821
|
+
|
822
|
+
class ListEnvironmentsRequest
|
823
|
+
attr_accessor next_token: ::String
|
824
|
+
attr_accessor max_results: ::Integer
|
825
|
+
SENSITIVE: []
|
826
|
+
end
|
827
|
+
|
828
|
+
class ListEnvironmentsResponse
|
829
|
+
attr_accessor environments: ::Array[Types::Environment]
|
830
|
+
attr_accessor next_token: ::String
|
831
|
+
SENSITIVE: []
|
832
|
+
end
|
833
|
+
|
834
|
+
class ListKxChangesetsRequest
|
835
|
+
attr_accessor environment_id: ::String
|
836
|
+
attr_accessor database_name: ::String
|
837
|
+
attr_accessor next_token: ::String
|
838
|
+
attr_accessor max_results: ::Integer
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class ListKxChangesetsResponse
|
843
|
+
attr_accessor kx_changesets: ::Array[Types::KxChangesetListEntry]
|
844
|
+
attr_accessor next_token: ::String
|
845
|
+
SENSITIVE: []
|
846
|
+
end
|
847
|
+
|
848
|
+
class ListKxClusterNodesRequest
|
849
|
+
attr_accessor environment_id: ::String
|
850
|
+
attr_accessor cluster_name: ::String
|
851
|
+
attr_accessor next_token: ::String
|
852
|
+
attr_accessor max_results: ::Integer
|
853
|
+
SENSITIVE: []
|
854
|
+
end
|
855
|
+
|
856
|
+
class ListKxClusterNodesResponse
|
857
|
+
attr_accessor nodes: ::Array[Types::KxNode]
|
858
|
+
attr_accessor next_token: ::String
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class ListKxClustersRequest
|
863
|
+
attr_accessor environment_id: ::String
|
864
|
+
attr_accessor cluster_type: ("HDB" | "RDB" | "GATEWAY" | "GP" | "TICKERPLANT")
|
865
|
+
attr_accessor max_results: ::Integer
|
866
|
+
attr_accessor next_token: ::String
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class ListKxClustersResponse
|
871
|
+
attr_accessor kx_cluster_summaries: ::Array[Types::KxCluster]
|
872
|
+
attr_accessor next_token: ::String
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
876
|
+
class ListKxDatabasesRequest
|
877
|
+
attr_accessor environment_id: ::String
|
878
|
+
attr_accessor next_token: ::String
|
879
|
+
attr_accessor max_results: ::Integer
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class ListKxDatabasesResponse
|
884
|
+
attr_accessor kx_databases: ::Array[Types::KxDatabaseListEntry]
|
885
|
+
attr_accessor next_token: ::String
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class ListKxDataviewsRequest
|
890
|
+
attr_accessor environment_id: ::String
|
891
|
+
attr_accessor database_name: ::String
|
892
|
+
attr_accessor next_token: ::String
|
893
|
+
attr_accessor max_results: ::Integer
|
894
|
+
SENSITIVE: []
|
895
|
+
end
|
896
|
+
|
897
|
+
class ListKxDataviewsResponse
|
898
|
+
attr_accessor kx_dataviews: ::Array[Types::KxDataviewListEntry]
|
899
|
+
attr_accessor next_token: ::String
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class ListKxEnvironmentsRequest
|
904
|
+
attr_accessor next_token: ::String
|
905
|
+
attr_accessor max_results: ::Integer
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class ListKxEnvironmentsResponse
|
910
|
+
attr_accessor environments: ::Array[Types::KxEnvironment]
|
911
|
+
attr_accessor next_token: ::String
|
912
|
+
SENSITIVE: []
|
913
|
+
end
|
914
|
+
|
915
|
+
class ListKxScalingGroupsRequest
|
916
|
+
attr_accessor environment_id: ::String
|
917
|
+
attr_accessor max_results: ::Integer
|
918
|
+
attr_accessor next_token: ::String
|
919
|
+
SENSITIVE: []
|
920
|
+
end
|
921
|
+
|
922
|
+
class ListKxScalingGroupsResponse
|
923
|
+
attr_accessor scaling_groups: ::Array[Types::KxScalingGroup]
|
924
|
+
attr_accessor next_token: ::String
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class ListKxUsersRequest
|
929
|
+
attr_accessor environment_id: ::String
|
930
|
+
attr_accessor next_token: ::String
|
931
|
+
attr_accessor max_results: ::Integer
|
932
|
+
SENSITIVE: []
|
933
|
+
end
|
934
|
+
|
935
|
+
class ListKxUsersResponse
|
936
|
+
attr_accessor users: ::Array[Types::KxUser]
|
937
|
+
attr_accessor next_token: ::String
|
938
|
+
SENSITIVE: []
|
939
|
+
end
|
940
|
+
|
941
|
+
class ListKxVolumesRequest
|
942
|
+
attr_accessor environment_id: ::String
|
943
|
+
attr_accessor max_results: ::Integer
|
944
|
+
attr_accessor next_token: ::String
|
945
|
+
attr_accessor volume_type: ("NAS_1")
|
946
|
+
SENSITIVE: []
|
947
|
+
end
|
948
|
+
|
949
|
+
class ListKxVolumesResponse
|
950
|
+
attr_accessor kx_volume_summaries: ::Array[Types::KxVolume]
|
951
|
+
attr_accessor next_token: ::String
|
952
|
+
SENSITIVE: []
|
953
|
+
end
|
954
|
+
|
955
|
+
class ListTagsForResourceRequest
|
956
|
+
attr_accessor resource_arn: ::String
|
957
|
+
SENSITIVE: []
|
958
|
+
end
|
959
|
+
|
960
|
+
class ListTagsForResourceResponse
|
961
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
962
|
+
SENSITIVE: []
|
963
|
+
end
|
964
|
+
|
965
|
+
class NetworkACLEntry
|
966
|
+
attr_accessor rule_number: ::Integer
|
967
|
+
attr_accessor protocol: ::String
|
968
|
+
attr_accessor rule_action: ("allow" | "deny")
|
969
|
+
attr_accessor port_range: Types::PortRange
|
970
|
+
attr_accessor icmp_type_code: Types::IcmpTypeCode
|
971
|
+
attr_accessor cidr_block: ::String
|
972
|
+
SENSITIVE: []
|
973
|
+
end
|
974
|
+
|
975
|
+
class PortRange
|
976
|
+
attr_accessor from: ::Integer
|
977
|
+
attr_accessor to: ::Integer
|
978
|
+
SENSITIVE: []
|
979
|
+
end
|
980
|
+
|
981
|
+
class ResourceAlreadyExistsException
|
982
|
+
attr_accessor message: ::String
|
983
|
+
SENSITIVE: []
|
984
|
+
end
|
985
|
+
|
986
|
+
class ResourceNotFoundException
|
987
|
+
attr_accessor message: ::String
|
988
|
+
SENSITIVE: []
|
989
|
+
end
|
990
|
+
|
991
|
+
class ServiceQuotaExceededException
|
992
|
+
attr_accessor message: ::String
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class SuperuserParameters
|
997
|
+
attr_accessor email_address: ::String
|
998
|
+
attr_accessor first_name: ::String
|
999
|
+
attr_accessor last_name: ::String
|
1000
|
+
SENSITIVE: [:email_address]
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
class TagResourceRequest
|
1004
|
+
attr_accessor resource_arn: ::String
|
1005
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1006
|
+
SENSITIVE: []
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
class ThrottlingException
|
1013
|
+
attr_accessor message: ::String
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class TickerplantLogConfiguration
|
1018
|
+
attr_accessor tickerplant_log_volumes: ::Array[::String]
|
1019
|
+
SENSITIVE: []
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
class TransitGatewayConfiguration
|
1023
|
+
attr_accessor transit_gateway_id: ::String
|
1024
|
+
attr_accessor routable_cidr_space: ::String
|
1025
|
+
attr_accessor attachment_network_acl_configuration: ::Array[Types::NetworkACLEntry]
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class UntagResourceRequest
|
1030
|
+
attr_accessor resource_arn: ::String
|
1031
|
+
attr_accessor tag_keys: ::Array[::String]
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1036
|
+
end
|
1037
|
+
|
1038
|
+
class UpdateEnvironmentRequest
|
1039
|
+
attr_accessor environment_id: ::String
|
1040
|
+
attr_accessor name: ::String
|
1041
|
+
attr_accessor description: ::String
|
1042
|
+
attr_accessor federation_mode: ("FEDERATED" | "LOCAL")
|
1043
|
+
attr_accessor federation_parameters: Types::FederationParameters
|
1044
|
+
SENSITIVE: []
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class UpdateEnvironmentResponse
|
1048
|
+
attr_accessor environment: Types::Environment
|
1049
|
+
SENSITIVE: []
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
class UpdateKxClusterCodeConfigurationRequest
|
1053
|
+
attr_accessor environment_id: ::String
|
1054
|
+
attr_accessor cluster_name: ::String
|
1055
|
+
attr_accessor client_token: ::String
|
1056
|
+
attr_accessor code: Types::CodeConfiguration
|
1057
|
+
attr_accessor initialization_script: ::String
|
1058
|
+
attr_accessor command_line_arguments: ::Array[Types::KxCommandLineArgument]
|
1059
|
+
attr_accessor deployment_configuration: Types::KxClusterCodeDeploymentConfiguration
|
1060
|
+
SENSITIVE: []
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
class UpdateKxClusterCodeConfigurationResponse < Aws::EmptyStructure
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class UpdateKxClusterDatabasesRequest
|
1067
|
+
attr_accessor environment_id: ::String
|
1068
|
+
attr_accessor cluster_name: ::String
|
1069
|
+
attr_accessor client_token: ::String
|
1070
|
+
attr_accessor databases: ::Array[Types::KxDatabaseConfiguration]
|
1071
|
+
attr_accessor deployment_configuration: Types::KxDeploymentConfiguration
|
1072
|
+
SENSITIVE: []
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class UpdateKxClusterDatabasesResponse < Aws::EmptyStructure
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class UpdateKxDatabaseRequest
|
1079
|
+
attr_accessor environment_id: ::String
|
1080
|
+
attr_accessor database_name: ::String
|
1081
|
+
attr_accessor description: ::String
|
1082
|
+
attr_accessor client_token: ::String
|
1083
|
+
SENSITIVE: []
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
class UpdateKxDatabaseResponse
|
1087
|
+
attr_accessor database_name: ::String
|
1088
|
+
attr_accessor environment_id: ::String
|
1089
|
+
attr_accessor description: ::String
|
1090
|
+
attr_accessor last_modified_timestamp: ::Time
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class UpdateKxDataviewRequest
|
1095
|
+
attr_accessor environment_id: ::String
|
1096
|
+
attr_accessor database_name: ::String
|
1097
|
+
attr_accessor dataview_name: ::String
|
1098
|
+
attr_accessor description: ::String
|
1099
|
+
attr_accessor changeset_id: ::String
|
1100
|
+
attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
|
1101
|
+
attr_accessor client_token: ::String
|
1102
|
+
SENSITIVE: []
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
class UpdateKxDataviewResponse
|
1106
|
+
attr_accessor environment_id: ::String
|
1107
|
+
attr_accessor database_name: ::String
|
1108
|
+
attr_accessor dataview_name: ::String
|
1109
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
1110
|
+
attr_accessor availability_zone_id: ::String
|
1111
|
+
attr_accessor changeset_id: ::String
|
1112
|
+
attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
|
1113
|
+
attr_accessor active_versions: ::Array[Types::KxDataviewActiveVersion]
|
1114
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
|
1115
|
+
attr_accessor auto_update: bool
|
1116
|
+
attr_accessor description: ::String
|
1117
|
+
attr_accessor created_timestamp: ::Time
|
1118
|
+
attr_accessor last_modified_timestamp: ::Time
|
1119
|
+
SENSITIVE: []
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
class UpdateKxEnvironmentNetworkRequest
|
1123
|
+
attr_accessor environment_id: ::String
|
1124
|
+
attr_accessor transit_gateway_configuration: Types::TransitGatewayConfiguration
|
1125
|
+
attr_accessor custom_dns_configuration: ::Array[Types::CustomDNSServer]
|
1126
|
+
attr_accessor client_token: ::String
|
1127
|
+
SENSITIVE: []
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class UpdateKxEnvironmentNetworkResponse
|
1131
|
+
attr_accessor name: ::String
|
1132
|
+
attr_accessor environment_id: ::String
|
1133
|
+
attr_accessor aws_account_id: ::String
|
1134
|
+
attr_accessor status: ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
1135
|
+
attr_accessor tgw_status: ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
1136
|
+
attr_accessor dns_status: ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
1137
|
+
attr_accessor error_message: ::String
|
1138
|
+
attr_accessor description: ::String
|
1139
|
+
attr_accessor environment_arn: ::String
|
1140
|
+
attr_accessor kms_key_id: ::String
|
1141
|
+
attr_accessor dedicated_service_account_id: ::String
|
1142
|
+
attr_accessor transit_gateway_configuration: Types::TransitGatewayConfiguration
|
1143
|
+
attr_accessor custom_dns_configuration: ::Array[Types::CustomDNSServer]
|
1144
|
+
attr_accessor creation_timestamp: ::Time
|
1145
|
+
attr_accessor update_timestamp: ::Time
|
1146
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
1147
|
+
SENSITIVE: []
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class UpdateKxEnvironmentRequest
|
1151
|
+
attr_accessor environment_id: ::String
|
1152
|
+
attr_accessor name: ::String
|
1153
|
+
attr_accessor description: ::String
|
1154
|
+
attr_accessor client_token: ::String
|
1155
|
+
SENSITIVE: []
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
class UpdateKxEnvironmentResponse
|
1159
|
+
attr_accessor name: ::String
|
1160
|
+
attr_accessor environment_id: ::String
|
1161
|
+
attr_accessor aws_account_id: ::String
|
1162
|
+
attr_accessor status: ("CREATE_REQUESTED" | "CREATING" | "CREATED" | "DELETE_REQUESTED" | "DELETING" | "DELETED" | "FAILED_CREATION" | "RETRY_DELETION" | "FAILED_DELETION" | "UPDATE_NETWORK_REQUESTED" | "UPDATING_NETWORK" | "FAILED_UPDATING_NETWORK" | "SUSPENDED")
|
1163
|
+
attr_accessor tgw_status: ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
1164
|
+
attr_accessor dns_status: ("NONE" | "UPDATE_REQUESTED" | "UPDATING" | "FAILED_UPDATE" | "SUCCESSFULLY_UPDATED")
|
1165
|
+
attr_accessor error_message: ::String
|
1166
|
+
attr_accessor description: ::String
|
1167
|
+
attr_accessor environment_arn: ::String
|
1168
|
+
attr_accessor kms_key_id: ::String
|
1169
|
+
attr_accessor dedicated_service_account_id: ::String
|
1170
|
+
attr_accessor transit_gateway_configuration: Types::TransitGatewayConfiguration
|
1171
|
+
attr_accessor custom_dns_configuration: ::Array[Types::CustomDNSServer]
|
1172
|
+
attr_accessor creation_timestamp: ::Time
|
1173
|
+
attr_accessor update_timestamp: ::Time
|
1174
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class UpdateKxUserRequest
|
1179
|
+
attr_accessor environment_id: ::String
|
1180
|
+
attr_accessor user_name: ::String
|
1181
|
+
attr_accessor iam_role: ::String
|
1182
|
+
attr_accessor client_token: ::String
|
1183
|
+
SENSITIVE: []
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
class UpdateKxUserResponse
|
1187
|
+
attr_accessor user_name: ::String
|
1188
|
+
attr_accessor user_arn: ::String
|
1189
|
+
attr_accessor environment_id: ::String
|
1190
|
+
attr_accessor iam_role: ::String
|
1191
|
+
SENSITIVE: []
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
class UpdateKxVolumeRequest
|
1195
|
+
attr_accessor environment_id: ::String
|
1196
|
+
attr_accessor volume_name: ::String
|
1197
|
+
attr_accessor description: ::String
|
1198
|
+
attr_accessor client_token: ::String
|
1199
|
+
attr_accessor nas1_configuration: Types::KxNAS1Configuration
|
1200
|
+
SENSITIVE: []
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
class UpdateKxVolumeResponse
|
1204
|
+
attr_accessor environment_id: ::String
|
1205
|
+
attr_accessor volume_name: ::String
|
1206
|
+
attr_accessor volume_type: ("NAS_1")
|
1207
|
+
attr_accessor volume_arn: ::String
|
1208
|
+
attr_accessor nas1_configuration: Types::KxNAS1Configuration
|
1209
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
1210
|
+
attr_accessor description: ::String
|
1211
|
+
attr_accessor status_reason: ::String
|
1212
|
+
attr_accessor created_timestamp: ::Time
|
1213
|
+
attr_accessor az_mode: ("SINGLE" | "MULTI")
|
1214
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
1215
|
+
attr_accessor last_modified_timestamp: ::Time
|
1216
|
+
attr_accessor attached_clusters: ::Array[Types::KxAttachedCluster]
|
1217
|
+
SENSITIVE: []
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
class ValidationException
|
1221
|
+
attr_accessor message: ::String
|
1222
|
+
SENSITIVE: []
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
class Volume
|
1226
|
+
attr_accessor volume_name: ::String
|
1227
|
+
attr_accessor volume_type: ("NAS_1")
|
1228
|
+
SENSITIVE: []
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
class VpcConfiguration
|
1232
|
+
attr_accessor vpc_id: ::String
|
1233
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1234
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1235
|
+
attr_accessor ip_address_type: ("IP_V4")
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
end
|
1239
|
+
end
|