aws-sdk-mainframemodernization 1.14.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mainframemodernization/client.rb +1 -1
- data/lib/aws-sdk-mainframemodernization/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-mainframemodernization.rb +1 -1
- data/sig/client.rbs +641 -0
- data/sig/errors.rbs +57 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +939 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,939 @@
|
|
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::MainframeModernization
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AlternateKey
|
17
|
+
attr_accessor allow_duplicates: bool
|
18
|
+
attr_accessor length: ::Integer
|
19
|
+
attr_accessor name: ::String
|
20
|
+
attr_accessor offset: ::Integer
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class ApplicationSummary
|
25
|
+
attr_accessor application_arn: ::String
|
26
|
+
attr_accessor application_id: ::String
|
27
|
+
attr_accessor application_version: ::Integer
|
28
|
+
attr_accessor creation_time: ::Time
|
29
|
+
attr_accessor deployment_status: ("Deploying" | "Deployed")
|
30
|
+
attr_accessor description: ::String
|
31
|
+
attr_accessor engine_type: ("microfocus" | "bluage")
|
32
|
+
attr_accessor environment_id: ::String
|
33
|
+
attr_accessor last_start_time: ::Time
|
34
|
+
attr_accessor name: ::String
|
35
|
+
attr_accessor role_arn: ::String
|
36
|
+
attr_accessor status: ("Creating" | "Created" | "Available" | "Ready" | "Starting" | "Running" | "Stopping" | "Stopped" | "Failed" | "Deleting" | "Deleting From Environment")
|
37
|
+
attr_accessor version_status: ("Creating" | "Available" | "Failed")
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class ApplicationVersionSummary
|
42
|
+
attr_accessor application_version: ::Integer
|
43
|
+
attr_accessor creation_time: ::Time
|
44
|
+
attr_accessor status: ("Creating" | "Available" | "Failed")
|
45
|
+
attr_accessor status_reason: ::String
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class BatchJobDefinition
|
50
|
+
attr_accessor file_batch_job_definition: Types::FileBatchJobDefinition
|
51
|
+
attr_accessor script_batch_job_definition: Types::ScriptBatchJobDefinition
|
52
|
+
attr_accessor unknown: untyped
|
53
|
+
SENSITIVE: []
|
54
|
+
|
55
|
+
class FileBatchJobDefinition < BatchJobDefinition
|
56
|
+
end
|
57
|
+
class ScriptBatchJobDefinition < BatchJobDefinition
|
58
|
+
end
|
59
|
+
class Unknown < BatchJobDefinition
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
class BatchJobExecutionSummary
|
64
|
+
attr_accessor application_id: ::String
|
65
|
+
attr_accessor batch_job_identifier: Types::BatchJobIdentifier
|
66
|
+
attr_accessor end_time: ::Time
|
67
|
+
attr_accessor execution_id: ::String
|
68
|
+
attr_accessor job_id: ::String
|
69
|
+
attr_accessor job_name: ::String
|
70
|
+
attr_accessor job_type: ("VSE" | "JES2" | "JES3")
|
71
|
+
attr_accessor return_code: ::String
|
72
|
+
attr_accessor start_time: ::Time
|
73
|
+
attr_accessor status: ("Submitting" | "Holding" | "Dispatching" | "Running" | "Cancelling" | "Cancelled" | "Succeeded" | "Failed" | "Succeeded With Warning")
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class BatchJobIdentifier
|
78
|
+
attr_accessor file_batch_job_identifier: Types::FileBatchJobIdentifier
|
79
|
+
attr_accessor s3_batch_job_identifier: Types::S3BatchJobIdentifier
|
80
|
+
attr_accessor script_batch_job_identifier: Types::ScriptBatchJobIdentifier
|
81
|
+
attr_accessor unknown: untyped
|
82
|
+
SENSITIVE: []
|
83
|
+
|
84
|
+
class FileBatchJobIdentifier < BatchJobIdentifier
|
85
|
+
end
|
86
|
+
class S3BatchJobIdentifier < BatchJobIdentifier
|
87
|
+
end
|
88
|
+
class ScriptBatchJobIdentifier < BatchJobIdentifier
|
89
|
+
end
|
90
|
+
class Unknown < BatchJobIdentifier
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
class CancelBatchJobExecutionRequest
|
95
|
+
attr_accessor application_id: ::String
|
96
|
+
attr_accessor execution_id: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class CancelBatchJobExecutionResponse < Aws::EmptyStructure
|
101
|
+
end
|
102
|
+
|
103
|
+
class ConflictException
|
104
|
+
attr_accessor message: ::String
|
105
|
+
attr_accessor resource_id: ::String
|
106
|
+
attr_accessor resource_type: ::String
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class CreateApplicationRequest
|
111
|
+
attr_accessor client_token: ::String
|
112
|
+
attr_accessor definition: Types::Definition
|
113
|
+
attr_accessor description: ::String
|
114
|
+
attr_accessor engine_type: ("microfocus" | "bluage")
|
115
|
+
attr_accessor kms_key_id: ::String
|
116
|
+
attr_accessor name: ::String
|
117
|
+
attr_accessor role_arn: ::String
|
118
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class CreateApplicationResponse
|
123
|
+
attr_accessor application_arn: ::String
|
124
|
+
attr_accessor application_id: ::String
|
125
|
+
attr_accessor application_version: ::Integer
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class CreateDataSetImportTaskRequest
|
130
|
+
attr_accessor application_id: ::String
|
131
|
+
attr_accessor client_token: ::String
|
132
|
+
attr_accessor import_config: Types::DataSetImportConfig
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class CreateDataSetImportTaskResponse
|
137
|
+
attr_accessor task_id: ::String
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class CreateDeploymentRequest
|
142
|
+
attr_accessor application_id: ::String
|
143
|
+
attr_accessor application_version: ::Integer
|
144
|
+
attr_accessor client_token: ::String
|
145
|
+
attr_accessor environment_id: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class CreateDeploymentResponse
|
150
|
+
attr_accessor deployment_id: ::String
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class CreateEnvironmentRequest
|
155
|
+
attr_accessor client_token: ::String
|
156
|
+
attr_accessor description: ::String
|
157
|
+
attr_accessor engine_type: ("microfocus" | "bluage")
|
158
|
+
attr_accessor engine_version: ::String
|
159
|
+
attr_accessor high_availability_config: Types::HighAvailabilityConfig
|
160
|
+
attr_accessor instance_type: ::String
|
161
|
+
attr_accessor kms_key_id: ::String
|
162
|
+
attr_accessor name: ::String
|
163
|
+
attr_accessor preferred_maintenance_window: ::String
|
164
|
+
attr_accessor publicly_accessible: bool
|
165
|
+
attr_accessor security_group_ids: ::Array[::String]
|
166
|
+
attr_accessor storage_configurations: ::Array[Types::StorageConfiguration]
|
167
|
+
attr_accessor subnet_ids: ::Array[::String]
|
168
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class CreateEnvironmentResponse
|
173
|
+
attr_accessor environment_id: ::String
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class DataSet
|
178
|
+
attr_accessor dataset_name: ::String
|
179
|
+
attr_accessor dataset_org: Types::DatasetOrgAttributes
|
180
|
+
attr_accessor record_length: Types::RecordLength
|
181
|
+
attr_accessor relative_path: ::String
|
182
|
+
attr_accessor storage_type: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class DataSetImportConfig
|
187
|
+
attr_accessor data_sets: ::Array[Types::DataSetImportItem]
|
188
|
+
attr_accessor s3_location: ::String
|
189
|
+
attr_accessor unknown: untyped
|
190
|
+
SENSITIVE: []
|
191
|
+
|
192
|
+
class DataSets < DataSetImportConfig
|
193
|
+
end
|
194
|
+
class S3Location < DataSetImportConfig
|
195
|
+
end
|
196
|
+
class Unknown < DataSetImportConfig
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
class DataSetImportItem
|
201
|
+
attr_accessor data_set: Types::DataSet
|
202
|
+
attr_accessor external_location: Types::ExternalLocation
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class DataSetImportSummary
|
207
|
+
attr_accessor failed: ::Integer
|
208
|
+
attr_accessor in_progress: ::Integer
|
209
|
+
attr_accessor pending: ::Integer
|
210
|
+
attr_accessor succeeded: ::Integer
|
211
|
+
attr_accessor total: ::Integer
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class DataSetImportTask
|
216
|
+
attr_accessor status: ("Creating" | "Running" | "Completed" | "Failed")
|
217
|
+
attr_accessor status_reason: ::String
|
218
|
+
attr_accessor summary: Types::DataSetImportSummary
|
219
|
+
attr_accessor task_id: ::String
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class DataSetSummary
|
224
|
+
attr_accessor creation_time: ::Time
|
225
|
+
attr_accessor data_set_name: ::String
|
226
|
+
attr_accessor data_set_org: ::String
|
227
|
+
attr_accessor format: ::String
|
228
|
+
attr_accessor last_referenced_time: ::Time
|
229
|
+
attr_accessor last_updated_time: ::Time
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class DatasetDetailOrgAttributes
|
234
|
+
attr_accessor gdg: Types::GdgDetailAttributes
|
235
|
+
attr_accessor po: Types::PoDetailAttributes
|
236
|
+
attr_accessor ps: Types::PsDetailAttributes
|
237
|
+
attr_accessor vsam: Types::VsamDetailAttributes
|
238
|
+
attr_accessor unknown: untyped
|
239
|
+
SENSITIVE: []
|
240
|
+
|
241
|
+
class Gdg < DatasetDetailOrgAttributes
|
242
|
+
end
|
243
|
+
class Po < DatasetDetailOrgAttributes
|
244
|
+
end
|
245
|
+
class Ps < DatasetDetailOrgAttributes
|
246
|
+
end
|
247
|
+
class Vsam < DatasetDetailOrgAttributes
|
248
|
+
end
|
249
|
+
class Unknown < DatasetDetailOrgAttributes
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
253
|
+
class DatasetOrgAttributes
|
254
|
+
attr_accessor gdg: Types::GdgAttributes
|
255
|
+
attr_accessor po: Types::PoAttributes
|
256
|
+
attr_accessor ps: Types::PsAttributes
|
257
|
+
attr_accessor vsam: Types::VsamAttributes
|
258
|
+
attr_accessor unknown: untyped
|
259
|
+
SENSITIVE: []
|
260
|
+
|
261
|
+
class Gdg < DatasetOrgAttributes
|
262
|
+
end
|
263
|
+
class Po < DatasetOrgAttributes
|
264
|
+
end
|
265
|
+
class Ps < DatasetOrgAttributes
|
266
|
+
end
|
267
|
+
class Vsam < DatasetOrgAttributes
|
268
|
+
end
|
269
|
+
class Unknown < DatasetOrgAttributes
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
class Definition
|
274
|
+
attr_accessor content: ::String
|
275
|
+
attr_accessor s3_location: ::String
|
276
|
+
attr_accessor unknown: untyped
|
277
|
+
SENSITIVE: []
|
278
|
+
|
279
|
+
class Content < Definition
|
280
|
+
end
|
281
|
+
class S3Location < Definition
|
282
|
+
end
|
283
|
+
class Unknown < Definition
|
284
|
+
end
|
285
|
+
end
|
286
|
+
|
287
|
+
class DeleteApplicationFromEnvironmentRequest
|
288
|
+
attr_accessor application_id: ::String
|
289
|
+
attr_accessor environment_id: ::String
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class DeleteApplicationFromEnvironmentResponse < Aws::EmptyStructure
|
294
|
+
end
|
295
|
+
|
296
|
+
class DeleteApplicationRequest
|
297
|
+
attr_accessor application_id: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class DeleteApplicationResponse < Aws::EmptyStructure
|
302
|
+
end
|
303
|
+
|
304
|
+
class DeleteEnvironmentRequest
|
305
|
+
attr_accessor environment_id: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class DeleteEnvironmentResponse < Aws::EmptyStructure
|
310
|
+
end
|
311
|
+
|
312
|
+
class DeployedVersionSummary
|
313
|
+
attr_accessor application_version: ::Integer
|
314
|
+
attr_accessor status: ("Deploying" | "Succeeded" | "Failed" | "Updating Deployment")
|
315
|
+
attr_accessor status_reason: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class DeploymentSummary
|
320
|
+
attr_accessor application_id: ::String
|
321
|
+
attr_accessor application_version: ::Integer
|
322
|
+
attr_accessor creation_time: ::Time
|
323
|
+
attr_accessor deployment_id: ::String
|
324
|
+
attr_accessor environment_id: ::String
|
325
|
+
attr_accessor status: ("Deploying" | "Succeeded" | "Failed" | "Updating Deployment")
|
326
|
+
attr_accessor status_reason: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class EfsStorageConfiguration
|
331
|
+
attr_accessor file_system_id: ::String
|
332
|
+
attr_accessor mount_point: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class EngineVersionsSummary
|
337
|
+
attr_accessor engine_type: ::String
|
338
|
+
attr_accessor engine_version: ::String
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class EnvironmentSummary
|
343
|
+
attr_accessor creation_time: ::Time
|
344
|
+
attr_accessor engine_type: ("microfocus" | "bluage")
|
345
|
+
attr_accessor engine_version: ::String
|
346
|
+
attr_accessor environment_arn: ::String
|
347
|
+
attr_accessor environment_id: ::String
|
348
|
+
attr_accessor instance_type: ::String
|
349
|
+
attr_accessor name: ::String
|
350
|
+
attr_accessor status: ("Creating" | "Available" | "Updating" | "Deleting" | "Failed")
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class ExecutionTimeoutException
|
355
|
+
attr_accessor message: ::String
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class ExternalLocation
|
360
|
+
attr_accessor s3_location: ::String
|
361
|
+
attr_accessor unknown: untyped
|
362
|
+
SENSITIVE: []
|
363
|
+
|
364
|
+
class S3Location < ExternalLocation
|
365
|
+
end
|
366
|
+
class Unknown < ExternalLocation
|
367
|
+
end
|
368
|
+
end
|
369
|
+
|
370
|
+
class FileBatchJobDefinition
|
371
|
+
attr_accessor file_name: ::String
|
372
|
+
attr_accessor folder_path: ::String
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class FileBatchJobIdentifier
|
377
|
+
attr_accessor file_name: ::String
|
378
|
+
attr_accessor folder_path: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class FsxStorageConfiguration
|
383
|
+
attr_accessor file_system_id: ::String
|
384
|
+
attr_accessor mount_point: ::String
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class GdgAttributes
|
389
|
+
attr_accessor limit: ::Integer
|
390
|
+
attr_accessor roll_disposition: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class GdgDetailAttributes
|
395
|
+
attr_accessor limit: ::Integer
|
396
|
+
attr_accessor roll_disposition: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class GetApplicationRequest
|
401
|
+
attr_accessor application_id: ::String
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class GetApplicationResponse
|
406
|
+
attr_accessor application_arn: ::String
|
407
|
+
attr_accessor application_id: ::String
|
408
|
+
attr_accessor creation_time: ::Time
|
409
|
+
attr_accessor deployed_version: Types::DeployedVersionSummary
|
410
|
+
attr_accessor description: ::String
|
411
|
+
attr_accessor engine_type: ("microfocus" | "bluage")
|
412
|
+
attr_accessor environment_id: ::String
|
413
|
+
attr_accessor kms_key_id: ::String
|
414
|
+
attr_accessor last_start_time: ::Time
|
415
|
+
attr_accessor latest_version: Types::ApplicationVersionSummary
|
416
|
+
attr_accessor listener_arns: ::Array[::String]
|
417
|
+
attr_accessor listener_ports: ::Array[::Integer]
|
418
|
+
attr_accessor load_balancer_dns_name: ::String
|
419
|
+
attr_accessor log_groups: ::Array[Types::LogGroupSummary]
|
420
|
+
attr_accessor name: ::String
|
421
|
+
attr_accessor role_arn: ::String
|
422
|
+
attr_accessor status: ("Creating" | "Created" | "Available" | "Ready" | "Starting" | "Running" | "Stopping" | "Stopped" | "Failed" | "Deleting" | "Deleting From Environment")
|
423
|
+
attr_accessor status_reason: ::String
|
424
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
425
|
+
attr_accessor target_group_arns: ::Array[::String]
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class GetApplicationVersionRequest
|
430
|
+
attr_accessor application_id: ::String
|
431
|
+
attr_accessor application_version: ::Integer
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class GetApplicationVersionResponse
|
436
|
+
attr_accessor application_version: ::Integer
|
437
|
+
attr_accessor creation_time: ::Time
|
438
|
+
attr_accessor definition_content: ::String
|
439
|
+
attr_accessor description: ::String
|
440
|
+
attr_accessor name: ::String
|
441
|
+
attr_accessor status: ("Creating" | "Available" | "Failed")
|
442
|
+
attr_accessor status_reason: ::String
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class GetBatchJobExecutionRequest
|
447
|
+
attr_accessor application_id: ::String
|
448
|
+
attr_accessor execution_id: ::String
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class GetBatchJobExecutionResponse
|
453
|
+
attr_accessor application_id: ::String
|
454
|
+
attr_accessor batch_job_identifier: Types::BatchJobIdentifier
|
455
|
+
attr_accessor end_time: ::Time
|
456
|
+
attr_accessor execution_id: ::String
|
457
|
+
attr_accessor job_id: ::String
|
458
|
+
attr_accessor job_name: ::String
|
459
|
+
attr_accessor job_type: ("VSE" | "JES2" | "JES3")
|
460
|
+
attr_accessor job_user: ::String
|
461
|
+
attr_accessor return_code: ::String
|
462
|
+
attr_accessor start_time: ::Time
|
463
|
+
attr_accessor status: ("Submitting" | "Holding" | "Dispatching" | "Running" | "Cancelling" | "Cancelled" | "Succeeded" | "Failed" | "Succeeded With Warning")
|
464
|
+
attr_accessor status_reason: ::String
|
465
|
+
SENSITIVE: []
|
466
|
+
end
|
467
|
+
|
468
|
+
class GetDataSetDetailsRequest
|
469
|
+
attr_accessor application_id: ::String
|
470
|
+
attr_accessor data_set_name: ::String
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class GetDataSetDetailsResponse
|
475
|
+
attr_accessor blocksize: ::Integer
|
476
|
+
attr_accessor creation_time: ::Time
|
477
|
+
attr_accessor data_set_name: ::String
|
478
|
+
attr_accessor data_set_org: Types::DatasetDetailOrgAttributes
|
479
|
+
attr_accessor file_size: ::Integer
|
480
|
+
attr_accessor last_referenced_time: ::Time
|
481
|
+
attr_accessor last_updated_time: ::Time
|
482
|
+
attr_accessor location: ::String
|
483
|
+
attr_accessor record_length: ::Integer
|
484
|
+
SENSITIVE: []
|
485
|
+
end
|
486
|
+
|
487
|
+
class GetDataSetImportTaskRequest
|
488
|
+
attr_accessor application_id: ::String
|
489
|
+
attr_accessor task_id: ::String
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class GetDataSetImportTaskResponse
|
494
|
+
attr_accessor status: ("Creating" | "Running" | "Completed" | "Failed")
|
495
|
+
attr_accessor summary: Types::DataSetImportSummary
|
496
|
+
attr_accessor task_id: ::String
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class GetDeploymentRequest
|
501
|
+
attr_accessor application_id: ::String
|
502
|
+
attr_accessor deployment_id: ::String
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class GetDeploymentResponse
|
507
|
+
attr_accessor application_id: ::String
|
508
|
+
attr_accessor application_version: ::Integer
|
509
|
+
attr_accessor creation_time: ::Time
|
510
|
+
attr_accessor deployment_id: ::String
|
511
|
+
attr_accessor environment_id: ::String
|
512
|
+
attr_accessor status: ("Deploying" | "Succeeded" | "Failed" | "Updating Deployment")
|
513
|
+
attr_accessor status_reason: ::String
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
517
|
+
class GetEnvironmentRequest
|
518
|
+
attr_accessor environment_id: ::String
|
519
|
+
SENSITIVE: []
|
520
|
+
end
|
521
|
+
|
522
|
+
class GetEnvironmentResponse
|
523
|
+
attr_accessor actual_capacity: ::Integer
|
524
|
+
attr_accessor creation_time: ::Time
|
525
|
+
attr_accessor description: ::String
|
526
|
+
attr_accessor engine_type: ("microfocus" | "bluage")
|
527
|
+
attr_accessor engine_version: ::String
|
528
|
+
attr_accessor environment_arn: ::String
|
529
|
+
attr_accessor environment_id: ::String
|
530
|
+
attr_accessor high_availability_config: Types::HighAvailabilityConfig
|
531
|
+
attr_accessor instance_type: ::String
|
532
|
+
attr_accessor kms_key_id: ::String
|
533
|
+
attr_accessor load_balancer_arn: ::String
|
534
|
+
attr_accessor name: ::String
|
535
|
+
attr_accessor pending_maintenance: Types::PendingMaintenance
|
536
|
+
attr_accessor preferred_maintenance_window: ::String
|
537
|
+
attr_accessor publicly_accessible: bool
|
538
|
+
attr_accessor security_group_ids: ::Array[::String]
|
539
|
+
attr_accessor status: ("Creating" | "Available" | "Updating" | "Deleting" | "Failed")
|
540
|
+
attr_accessor status_reason: ::String
|
541
|
+
attr_accessor storage_configurations: ::Array[Types::StorageConfiguration]
|
542
|
+
attr_accessor subnet_ids: ::Array[::String]
|
543
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
544
|
+
attr_accessor vpc_id: ::String
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class GetSignedBluinsightsUrlResponse
|
549
|
+
attr_accessor signed_bi_url: ::String
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class HighAvailabilityConfig
|
554
|
+
attr_accessor desired_capacity: ::Integer
|
555
|
+
SENSITIVE: []
|
556
|
+
end
|
557
|
+
|
558
|
+
class InternalServerException
|
559
|
+
attr_accessor message: ::String
|
560
|
+
attr_accessor retry_after_seconds: ::Integer
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class JobIdentifier
|
565
|
+
attr_accessor file_name: ::String
|
566
|
+
attr_accessor script_name: ::String
|
567
|
+
attr_accessor unknown: untyped
|
568
|
+
SENSITIVE: []
|
569
|
+
|
570
|
+
class FileName < JobIdentifier
|
571
|
+
end
|
572
|
+
class ScriptName < JobIdentifier
|
573
|
+
end
|
574
|
+
class Unknown < JobIdentifier
|
575
|
+
end
|
576
|
+
end
|
577
|
+
|
578
|
+
class ListApplicationVersionsRequest
|
579
|
+
attr_accessor application_id: ::String
|
580
|
+
attr_accessor max_results: ::Integer
|
581
|
+
attr_accessor next_token: ::String
|
582
|
+
SENSITIVE: []
|
583
|
+
end
|
584
|
+
|
585
|
+
class ListApplicationVersionsResponse
|
586
|
+
attr_accessor application_versions: ::Array[Types::ApplicationVersionSummary]
|
587
|
+
attr_accessor next_token: ::String
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class ListApplicationsRequest
|
592
|
+
attr_accessor environment_id: ::String
|
593
|
+
attr_accessor max_results: ::Integer
|
594
|
+
attr_accessor names: ::Array[::String]
|
595
|
+
attr_accessor next_token: ::String
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class ListApplicationsResponse
|
600
|
+
attr_accessor applications: ::Array[Types::ApplicationSummary]
|
601
|
+
attr_accessor next_token: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class ListBatchJobDefinitionsRequest
|
606
|
+
attr_accessor application_id: ::String
|
607
|
+
attr_accessor max_results: ::Integer
|
608
|
+
attr_accessor next_token: ::String
|
609
|
+
attr_accessor prefix: ::String
|
610
|
+
SENSITIVE: []
|
611
|
+
end
|
612
|
+
|
613
|
+
class ListBatchJobDefinitionsResponse
|
614
|
+
attr_accessor batch_job_definitions: ::Array[Types::BatchJobDefinition]
|
615
|
+
attr_accessor next_token: ::String
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class ListBatchJobExecutionsRequest
|
620
|
+
attr_accessor application_id: ::String
|
621
|
+
attr_accessor execution_ids: ::Array[::String]
|
622
|
+
attr_accessor job_name: ::String
|
623
|
+
attr_accessor max_results: ::Integer
|
624
|
+
attr_accessor next_token: ::String
|
625
|
+
attr_accessor started_after: ::Time
|
626
|
+
attr_accessor started_before: ::Time
|
627
|
+
attr_accessor status: ("Submitting" | "Holding" | "Dispatching" | "Running" | "Cancelling" | "Cancelled" | "Succeeded" | "Failed" | "Succeeded With Warning")
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class ListBatchJobExecutionsResponse
|
632
|
+
attr_accessor batch_job_executions: ::Array[Types::BatchJobExecutionSummary]
|
633
|
+
attr_accessor next_token: ::String
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class ListDataSetImportHistoryRequest
|
638
|
+
attr_accessor application_id: ::String
|
639
|
+
attr_accessor max_results: ::Integer
|
640
|
+
attr_accessor next_token: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
644
|
+
class ListDataSetImportHistoryResponse
|
645
|
+
attr_accessor data_set_import_tasks: ::Array[Types::DataSetImportTask]
|
646
|
+
attr_accessor next_token: ::String
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class ListDataSetsRequest
|
651
|
+
attr_accessor application_id: ::String
|
652
|
+
attr_accessor max_results: ::Integer
|
653
|
+
attr_accessor name_filter: ::String
|
654
|
+
attr_accessor next_token: ::String
|
655
|
+
attr_accessor prefix: ::String
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class ListDataSetsResponse
|
660
|
+
attr_accessor data_sets: ::Array[Types::DataSetSummary]
|
661
|
+
attr_accessor next_token: ::String
|
662
|
+
SENSITIVE: []
|
663
|
+
end
|
664
|
+
|
665
|
+
class ListDeploymentsRequest
|
666
|
+
attr_accessor application_id: ::String
|
667
|
+
attr_accessor max_results: ::Integer
|
668
|
+
attr_accessor next_token: ::String
|
669
|
+
SENSITIVE: []
|
670
|
+
end
|
671
|
+
|
672
|
+
class ListDeploymentsResponse
|
673
|
+
attr_accessor deployments: ::Array[Types::DeploymentSummary]
|
674
|
+
attr_accessor next_token: ::String
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class ListEngineVersionsRequest
|
679
|
+
attr_accessor engine_type: ("microfocus" | "bluage")
|
680
|
+
attr_accessor max_results: ::Integer
|
681
|
+
attr_accessor next_token: ::String
|
682
|
+
SENSITIVE: []
|
683
|
+
end
|
684
|
+
|
685
|
+
class ListEngineVersionsResponse
|
686
|
+
attr_accessor engine_versions: ::Array[Types::EngineVersionsSummary]
|
687
|
+
attr_accessor next_token: ::String
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class ListEnvironmentsRequest
|
692
|
+
attr_accessor engine_type: ("microfocus" | "bluage")
|
693
|
+
attr_accessor max_results: ::Integer
|
694
|
+
attr_accessor names: ::Array[::String]
|
695
|
+
attr_accessor next_token: ::String
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
699
|
+
class ListEnvironmentsResponse
|
700
|
+
attr_accessor environments: ::Array[Types::EnvironmentSummary]
|
701
|
+
attr_accessor next_token: ::String
|
702
|
+
SENSITIVE: []
|
703
|
+
end
|
704
|
+
|
705
|
+
class ListTagsForResourceRequest
|
706
|
+
attr_accessor resource_arn: ::String
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class ListTagsForResourceResponse
|
711
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
712
|
+
SENSITIVE: []
|
713
|
+
end
|
714
|
+
|
715
|
+
class LogGroupSummary
|
716
|
+
attr_accessor log_group_name: ::String
|
717
|
+
attr_accessor log_type: ::String
|
718
|
+
SENSITIVE: []
|
719
|
+
end
|
720
|
+
|
721
|
+
class MaintenanceSchedule
|
722
|
+
attr_accessor end_time: ::Time
|
723
|
+
attr_accessor start_time: ::Time
|
724
|
+
SENSITIVE: []
|
725
|
+
end
|
726
|
+
|
727
|
+
class PendingMaintenance
|
728
|
+
attr_accessor engine_version: ::String
|
729
|
+
attr_accessor schedule: Types::MaintenanceSchedule
|
730
|
+
SENSITIVE: []
|
731
|
+
end
|
732
|
+
|
733
|
+
class PoAttributes
|
734
|
+
attr_accessor encoding: ::String
|
735
|
+
attr_accessor format: ::String
|
736
|
+
attr_accessor member_file_extensions: ::Array[::String]
|
737
|
+
SENSITIVE: []
|
738
|
+
end
|
739
|
+
|
740
|
+
class PoDetailAttributes
|
741
|
+
attr_accessor encoding: ::String
|
742
|
+
attr_accessor format: ::String
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class PrimaryKey
|
747
|
+
attr_accessor length: ::Integer
|
748
|
+
attr_accessor name: ::String
|
749
|
+
attr_accessor offset: ::Integer
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class PsAttributes
|
754
|
+
attr_accessor encoding: ::String
|
755
|
+
attr_accessor format: ::String
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class PsDetailAttributes
|
760
|
+
attr_accessor encoding: ::String
|
761
|
+
attr_accessor format: ::String
|
762
|
+
SENSITIVE: []
|
763
|
+
end
|
764
|
+
|
765
|
+
class RecordLength
|
766
|
+
attr_accessor max: ::Integer
|
767
|
+
attr_accessor min: ::Integer
|
768
|
+
SENSITIVE: []
|
769
|
+
end
|
770
|
+
|
771
|
+
class ResourceNotFoundException
|
772
|
+
attr_accessor message: ::String
|
773
|
+
attr_accessor resource_id: ::String
|
774
|
+
attr_accessor resource_type: ::String
|
775
|
+
SENSITIVE: []
|
776
|
+
end
|
777
|
+
|
778
|
+
class S3BatchJobIdentifier
|
779
|
+
attr_accessor bucket: ::String
|
780
|
+
attr_accessor identifier: Types::JobIdentifier
|
781
|
+
attr_accessor key_prefix: ::String
|
782
|
+
SENSITIVE: []
|
783
|
+
end
|
784
|
+
|
785
|
+
class ScriptBatchJobDefinition
|
786
|
+
attr_accessor script_name: ::String
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class ScriptBatchJobIdentifier
|
791
|
+
attr_accessor script_name: ::String
|
792
|
+
SENSITIVE: []
|
793
|
+
end
|
794
|
+
|
795
|
+
class ServiceQuotaExceededException
|
796
|
+
attr_accessor message: ::String
|
797
|
+
attr_accessor quota_code: ::String
|
798
|
+
attr_accessor resource_id: ::String
|
799
|
+
attr_accessor resource_type: ::String
|
800
|
+
attr_accessor service_code: ::String
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class ServiceUnavailableException
|
805
|
+
attr_accessor message: ::String
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class StartApplicationRequest
|
810
|
+
attr_accessor application_id: ::String
|
811
|
+
SENSITIVE: []
|
812
|
+
end
|
813
|
+
|
814
|
+
class StartApplicationResponse < Aws::EmptyStructure
|
815
|
+
end
|
816
|
+
|
817
|
+
class StartBatchJobRequest
|
818
|
+
attr_accessor application_id: ::String
|
819
|
+
attr_accessor batch_job_identifier: Types::BatchJobIdentifier
|
820
|
+
attr_accessor job_params: ::Hash[::String, ::String]
|
821
|
+
SENSITIVE: []
|
822
|
+
end
|
823
|
+
|
824
|
+
class StartBatchJobResponse
|
825
|
+
attr_accessor execution_id: ::String
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
829
|
+
class StopApplicationRequest
|
830
|
+
attr_accessor application_id: ::String
|
831
|
+
attr_accessor force_stop: bool
|
832
|
+
SENSITIVE: []
|
833
|
+
end
|
834
|
+
|
835
|
+
class StopApplicationResponse < Aws::EmptyStructure
|
836
|
+
end
|
837
|
+
|
838
|
+
class StorageConfiguration
|
839
|
+
attr_accessor efs: Types::EfsStorageConfiguration
|
840
|
+
attr_accessor fsx: Types::FsxStorageConfiguration
|
841
|
+
attr_accessor unknown: untyped
|
842
|
+
SENSITIVE: []
|
843
|
+
|
844
|
+
class Efs < StorageConfiguration
|
845
|
+
end
|
846
|
+
class Fsx < StorageConfiguration
|
847
|
+
end
|
848
|
+
class Unknown < StorageConfiguration
|
849
|
+
end
|
850
|
+
end
|
851
|
+
|
852
|
+
class TagResourceRequest
|
853
|
+
attr_accessor resource_arn: ::String
|
854
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
855
|
+
SENSITIVE: []
|
856
|
+
end
|
857
|
+
|
858
|
+
class TagResourceResponse < Aws::EmptyStructure
|
859
|
+
end
|
860
|
+
|
861
|
+
class ThrottlingException
|
862
|
+
attr_accessor message: ::String
|
863
|
+
attr_accessor quota_code: ::String
|
864
|
+
attr_accessor retry_after_seconds: ::Integer
|
865
|
+
attr_accessor service_code: ::String
|
866
|
+
SENSITIVE: []
|
867
|
+
end
|
868
|
+
|
869
|
+
class UntagResourceRequest
|
870
|
+
attr_accessor resource_arn: ::String
|
871
|
+
attr_accessor tag_keys: ::Array[::String]
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
876
|
+
end
|
877
|
+
|
878
|
+
class UpdateApplicationRequest
|
879
|
+
attr_accessor application_id: ::String
|
880
|
+
attr_accessor current_application_version: ::Integer
|
881
|
+
attr_accessor definition: Types::Definition
|
882
|
+
attr_accessor description: ::String
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
886
|
+
class UpdateApplicationResponse
|
887
|
+
attr_accessor application_version: ::Integer
|
888
|
+
SENSITIVE: []
|
889
|
+
end
|
890
|
+
|
891
|
+
class UpdateEnvironmentRequest
|
892
|
+
attr_accessor apply_during_maintenance_window: bool
|
893
|
+
attr_accessor desired_capacity: ::Integer
|
894
|
+
attr_accessor engine_version: ::String
|
895
|
+
attr_accessor environment_id: ::String
|
896
|
+
attr_accessor force_update: bool
|
897
|
+
attr_accessor instance_type: ::String
|
898
|
+
attr_accessor preferred_maintenance_window: ::String
|
899
|
+
SENSITIVE: []
|
900
|
+
end
|
901
|
+
|
902
|
+
class UpdateEnvironmentResponse
|
903
|
+
attr_accessor environment_id: ::String
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class ValidationException
|
908
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
909
|
+
attr_accessor message: ::String
|
910
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
911
|
+
SENSITIVE: []
|
912
|
+
end
|
913
|
+
|
914
|
+
class ValidationExceptionField
|
915
|
+
attr_accessor message: ::String
|
916
|
+
attr_accessor name: ::String
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class VsamAttributes
|
921
|
+
attr_accessor alternate_keys: ::Array[Types::AlternateKey]
|
922
|
+
attr_accessor compressed: bool
|
923
|
+
attr_accessor encoding: ::String
|
924
|
+
attr_accessor format: ::String
|
925
|
+
attr_accessor primary_key: Types::PrimaryKey
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class VsamDetailAttributes
|
930
|
+
attr_accessor alternate_keys: ::Array[Types::AlternateKey]
|
931
|
+
attr_accessor cache_at_startup: bool
|
932
|
+
attr_accessor compressed: bool
|
933
|
+
attr_accessor encoding: ::String
|
934
|
+
attr_accessor primary_key: Types::PrimaryKey
|
935
|
+
attr_accessor record_format: ::String
|
936
|
+
SENSITIVE: []
|
937
|
+
end
|
938
|
+
end
|
939
|
+
end
|