aws-sdk-mainframemodernization 1.14.0 → 1.15.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 +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/client.rbs
ADDED
@@ -0,0 +1,641 @@
|
|
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 MainframeModernization
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/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 _CancelBatchJobExecutionResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelBatchJobExecutionResponse]
|
77
|
+
end
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#cancel_batch_job_execution-instance_method
|
79
|
+
def cancel_batch_job_execution: (
|
80
|
+
application_id: ::String,
|
81
|
+
execution_id: ::String
|
82
|
+
) -> _CancelBatchJobExecutionResponseSuccess
|
83
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelBatchJobExecutionResponseSuccess
|
84
|
+
|
85
|
+
interface _CreateApplicationResponseSuccess
|
86
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationResponse]
|
87
|
+
def application_arn: () -> ::String
|
88
|
+
def application_id: () -> ::String
|
89
|
+
def application_version: () -> ::Integer
|
90
|
+
end
|
91
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#create_application-instance_method
|
92
|
+
def create_application: (
|
93
|
+
?client_token: ::String,
|
94
|
+
definition: {
|
95
|
+
content: ::String?,
|
96
|
+
s3_location: ::String?
|
97
|
+
},
|
98
|
+
?description: ::String,
|
99
|
+
engine_type: ("microfocus" | "bluage"),
|
100
|
+
?kms_key_id: ::String,
|
101
|
+
name: ::String,
|
102
|
+
?role_arn: ::String,
|
103
|
+
?tags: Hash[::String, ::String]
|
104
|
+
) -> _CreateApplicationResponseSuccess
|
105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
106
|
+
|
107
|
+
interface _CreateDataSetImportTaskResponseSuccess
|
108
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSetImportTaskResponse]
|
109
|
+
def task_id: () -> ::String
|
110
|
+
end
|
111
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#create_data_set_import_task-instance_method
|
112
|
+
def create_data_set_import_task: (
|
113
|
+
application_id: ::String,
|
114
|
+
?client_token: ::String,
|
115
|
+
import_config: {
|
116
|
+
data_sets: Array[
|
117
|
+
{
|
118
|
+
data_set: {
|
119
|
+
dataset_name: ::String,
|
120
|
+
dataset_org: {
|
121
|
+
gdg: {
|
122
|
+
limit: ::Integer?,
|
123
|
+
roll_disposition: ::String?
|
124
|
+
}?,
|
125
|
+
po: {
|
126
|
+
encoding: ::String?,
|
127
|
+
format: ::String,
|
128
|
+
member_file_extensions: Array[::String]
|
129
|
+
}?,
|
130
|
+
ps: {
|
131
|
+
encoding: ::String?,
|
132
|
+
format: ::String
|
133
|
+
}?,
|
134
|
+
vsam: {
|
135
|
+
alternate_keys: Array[
|
136
|
+
{
|
137
|
+
allow_duplicates: bool?,
|
138
|
+
length: ::Integer,
|
139
|
+
name: ::String?,
|
140
|
+
offset: ::Integer
|
141
|
+
},
|
142
|
+
]?,
|
143
|
+
compressed: bool?,
|
144
|
+
encoding: ::String?,
|
145
|
+
format: ::String,
|
146
|
+
primary_key: {
|
147
|
+
length: ::Integer,
|
148
|
+
name: ::String?,
|
149
|
+
offset: ::Integer
|
150
|
+
}?
|
151
|
+
}?
|
152
|
+
},
|
153
|
+
record_length: {
|
154
|
+
max: ::Integer,
|
155
|
+
min: ::Integer
|
156
|
+
},
|
157
|
+
relative_path: ::String?,
|
158
|
+
storage_type: ::String?
|
159
|
+
},
|
160
|
+
external_location: {
|
161
|
+
s3_location: ::String?
|
162
|
+
}
|
163
|
+
},
|
164
|
+
]?,
|
165
|
+
s3_location: ::String?
|
166
|
+
}
|
167
|
+
) -> _CreateDataSetImportTaskResponseSuccess
|
168
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSetImportTaskResponseSuccess
|
169
|
+
|
170
|
+
interface _CreateDeploymentResponseSuccess
|
171
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDeploymentResponse]
|
172
|
+
def deployment_id: () -> ::String
|
173
|
+
end
|
174
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#create_deployment-instance_method
|
175
|
+
def create_deployment: (
|
176
|
+
application_id: ::String,
|
177
|
+
application_version: ::Integer,
|
178
|
+
?client_token: ::String,
|
179
|
+
environment_id: ::String
|
180
|
+
) -> _CreateDeploymentResponseSuccess
|
181
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeploymentResponseSuccess
|
182
|
+
|
183
|
+
interface _CreateEnvironmentResponseSuccess
|
184
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentResponse]
|
185
|
+
def environment_id: () -> ::String
|
186
|
+
end
|
187
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#create_environment-instance_method
|
188
|
+
def create_environment: (
|
189
|
+
?client_token: ::String,
|
190
|
+
?description: ::String,
|
191
|
+
engine_type: ("microfocus" | "bluage"),
|
192
|
+
?engine_version: ::String,
|
193
|
+
?high_availability_config: {
|
194
|
+
desired_capacity: ::Integer
|
195
|
+
},
|
196
|
+
instance_type: ::String,
|
197
|
+
?kms_key_id: ::String,
|
198
|
+
name: ::String,
|
199
|
+
?preferred_maintenance_window: ::String,
|
200
|
+
?publicly_accessible: bool,
|
201
|
+
?security_group_ids: Array[::String],
|
202
|
+
?storage_configurations: Array[
|
203
|
+
{
|
204
|
+
efs: {
|
205
|
+
file_system_id: ::String,
|
206
|
+
mount_point: ::String
|
207
|
+
}?,
|
208
|
+
fsx: {
|
209
|
+
file_system_id: ::String,
|
210
|
+
mount_point: ::String
|
211
|
+
}?
|
212
|
+
},
|
213
|
+
],
|
214
|
+
?subnet_ids: Array[::String],
|
215
|
+
?tags: Hash[::String, ::String]
|
216
|
+
) -> _CreateEnvironmentResponseSuccess
|
217
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
|
218
|
+
|
219
|
+
interface _DeleteApplicationResponseSuccess
|
220
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationResponse]
|
221
|
+
end
|
222
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#delete_application-instance_method
|
223
|
+
def delete_application: (
|
224
|
+
application_id: ::String
|
225
|
+
) -> _DeleteApplicationResponseSuccess
|
226
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationResponseSuccess
|
227
|
+
|
228
|
+
interface _DeleteApplicationFromEnvironmentResponseSuccess
|
229
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationFromEnvironmentResponse]
|
230
|
+
end
|
231
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#delete_application_from_environment-instance_method
|
232
|
+
def delete_application_from_environment: (
|
233
|
+
application_id: ::String,
|
234
|
+
environment_id: ::String
|
235
|
+
) -> _DeleteApplicationFromEnvironmentResponseSuccess
|
236
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationFromEnvironmentResponseSuccess
|
237
|
+
|
238
|
+
interface _DeleteEnvironmentResponseSuccess
|
239
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEnvironmentResponse]
|
240
|
+
end
|
241
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#delete_environment-instance_method
|
242
|
+
def delete_environment: (
|
243
|
+
environment_id: ::String
|
244
|
+
) -> _DeleteEnvironmentResponseSuccess
|
245
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEnvironmentResponseSuccess
|
246
|
+
|
247
|
+
interface _GetApplicationResponseSuccess
|
248
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetApplicationResponse]
|
249
|
+
def application_arn: () -> ::String
|
250
|
+
def application_id: () -> ::String
|
251
|
+
def creation_time: () -> ::Time
|
252
|
+
def deployed_version: () -> Types::DeployedVersionSummary
|
253
|
+
def description: () -> ::String
|
254
|
+
def engine_type: () -> ("microfocus" | "bluage")
|
255
|
+
def environment_id: () -> ::String
|
256
|
+
def kms_key_id: () -> ::String
|
257
|
+
def last_start_time: () -> ::Time
|
258
|
+
def latest_version: () -> Types::ApplicationVersionSummary
|
259
|
+
def listener_arns: () -> ::Array[::String]
|
260
|
+
def listener_ports: () -> ::Array[::Integer]
|
261
|
+
def load_balancer_dns_name: () -> ::String
|
262
|
+
def log_groups: () -> ::Array[Types::LogGroupSummary]
|
263
|
+
def name: () -> ::String
|
264
|
+
def role_arn: () -> ::String
|
265
|
+
def status: () -> ("Creating" | "Created" | "Available" | "Ready" | "Starting" | "Running" | "Stopping" | "Stopped" | "Failed" | "Deleting" | "Deleting From Environment")
|
266
|
+
def status_reason: () -> ::String
|
267
|
+
def tags: () -> ::Hash[::String, ::String]
|
268
|
+
def target_group_arns: () -> ::Array[::String]
|
269
|
+
end
|
270
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#get_application-instance_method
|
271
|
+
def get_application: (
|
272
|
+
application_id: ::String
|
273
|
+
) -> _GetApplicationResponseSuccess
|
274
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApplicationResponseSuccess
|
275
|
+
|
276
|
+
interface _GetApplicationVersionResponseSuccess
|
277
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetApplicationVersionResponse]
|
278
|
+
def application_version: () -> ::Integer
|
279
|
+
def creation_time: () -> ::Time
|
280
|
+
def definition_content: () -> ::String
|
281
|
+
def description: () -> ::String
|
282
|
+
def name: () -> ::String
|
283
|
+
def status: () -> ("Creating" | "Available" | "Failed")
|
284
|
+
def status_reason: () -> ::String
|
285
|
+
end
|
286
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#get_application_version-instance_method
|
287
|
+
def get_application_version: (
|
288
|
+
application_id: ::String,
|
289
|
+
application_version: ::Integer
|
290
|
+
) -> _GetApplicationVersionResponseSuccess
|
291
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApplicationVersionResponseSuccess
|
292
|
+
|
293
|
+
interface _GetBatchJobExecutionResponseSuccess
|
294
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBatchJobExecutionResponse]
|
295
|
+
def application_id: () -> ::String
|
296
|
+
def batch_job_identifier: () -> Types::BatchJobIdentifier
|
297
|
+
def end_time: () -> ::Time
|
298
|
+
def execution_id: () -> ::String
|
299
|
+
def job_id: () -> ::String
|
300
|
+
def job_name: () -> ::String
|
301
|
+
def job_type: () -> ("VSE" | "JES2" | "JES3")
|
302
|
+
def job_user: () -> ::String
|
303
|
+
def return_code: () -> ::String
|
304
|
+
def start_time: () -> ::Time
|
305
|
+
def status: () -> ("Submitting" | "Holding" | "Dispatching" | "Running" | "Cancelling" | "Cancelled" | "Succeeded" | "Failed" | "Succeeded With Warning")
|
306
|
+
def status_reason: () -> ::String
|
307
|
+
end
|
308
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#get_batch_job_execution-instance_method
|
309
|
+
def get_batch_job_execution: (
|
310
|
+
application_id: ::String,
|
311
|
+
execution_id: ::String
|
312
|
+
) -> _GetBatchJobExecutionResponseSuccess
|
313
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBatchJobExecutionResponseSuccess
|
314
|
+
|
315
|
+
interface _GetDataSetDetailsResponseSuccess
|
316
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSetDetailsResponse]
|
317
|
+
def blocksize: () -> ::Integer
|
318
|
+
def creation_time: () -> ::Time
|
319
|
+
def data_set_name: () -> ::String
|
320
|
+
def data_set_org: () -> Types::DatasetDetailOrgAttributes
|
321
|
+
def file_size: () -> ::Integer
|
322
|
+
def last_referenced_time: () -> ::Time
|
323
|
+
def last_updated_time: () -> ::Time
|
324
|
+
def location: () -> ::String
|
325
|
+
def record_length: () -> ::Integer
|
326
|
+
end
|
327
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#get_data_set_details-instance_method
|
328
|
+
def get_data_set_details: (
|
329
|
+
application_id: ::String,
|
330
|
+
data_set_name: ::String
|
331
|
+
) -> _GetDataSetDetailsResponseSuccess
|
332
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSetDetailsResponseSuccess
|
333
|
+
|
334
|
+
interface _GetDataSetImportTaskResponseSuccess
|
335
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSetImportTaskResponse]
|
336
|
+
def status: () -> ("Creating" | "Running" | "Completed" | "Failed")
|
337
|
+
def summary: () -> Types::DataSetImportSummary
|
338
|
+
def task_id: () -> ::String
|
339
|
+
end
|
340
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#get_data_set_import_task-instance_method
|
341
|
+
def get_data_set_import_task: (
|
342
|
+
application_id: ::String,
|
343
|
+
task_id: ::String
|
344
|
+
) -> _GetDataSetImportTaskResponseSuccess
|
345
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSetImportTaskResponseSuccess
|
346
|
+
|
347
|
+
interface _GetDeploymentResponseSuccess
|
348
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDeploymentResponse]
|
349
|
+
def application_id: () -> ::String
|
350
|
+
def application_version: () -> ::Integer
|
351
|
+
def creation_time: () -> ::Time
|
352
|
+
def deployment_id: () -> ::String
|
353
|
+
def environment_id: () -> ::String
|
354
|
+
def status: () -> ("Deploying" | "Succeeded" | "Failed" | "Updating Deployment")
|
355
|
+
def status_reason: () -> ::String
|
356
|
+
end
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#get_deployment-instance_method
|
358
|
+
def get_deployment: (
|
359
|
+
application_id: ::String,
|
360
|
+
deployment_id: ::String
|
361
|
+
) -> _GetDeploymentResponseSuccess
|
362
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentResponseSuccess
|
363
|
+
|
364
|
+
interface _GetEnvironmentResponseSuccess
|
365
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentResponse]
|
366
|
+
def actual_capacity: () -> ::Integer
|
367
|
+
def creation_time: () -> ::Time
|
368
|
+
def description: () -> ::String
|
369
|
+
def engine_type: () -> ("microfocus" | "bluage")
|
370
|
+
def engine_version: () -> ::String
|
371
|
+
def environment_arn: () -> ::String
|
372
|
+
def environment_id: () -> ::String
|
373
|
+
def high_availability_config: () -> Types::HighAvailabilityConfig
|
374
|
+
def instance_type: () -> ::String
|
375
|
+
def kms_key_id: () -> ::String
|
376
|
+
def load_balancer_arn: () -> ::String
|
377
|
+
def name: () -> ::String
|
378
|
+
def pending_maintenance: () -> Types::PendingMaintenance
|
379
|
+
def preferred_maintenance_window: () -> ::String
|
380
|
+
def publicly_accessible: () -> bool
|
381
|
+
def security_group_ids: () -> ::Array[::String]
|
382
|
+
def status: () -> ("Creating" | "Available" | "Updating" | "Deleting" | "Failed")
|
383
|
+
def status_reason: () -> ::String
|
384
|
+
def storage_configurations: () -> ::Array[Types::StorageConfiguration]
|
385
|
+
def subnet_ids: () -> ::Array[::String]
|
386
|
+
def tags: () -> ::Hash[::String, ::String]
|
387
|
+
def vpc_id: () -> ::String
|
388
|
+
end
|
389
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#get_environment-instance_method
|
390
|
+
def get_environment: (
|
391
|
+
environment_id: ::String
|
392
|
+
) -> _GetEnvironmentResponseSuccess
|
393
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentResponseSuccess
|
394
|
+
|
395
|
+
interface _GetSignedBluinsightsUrlResponseSuccess
|
396
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSignedBluinsightsUrlResponse]
|
397
|
+
def signed_bi_url: () -> ::String
|
398
|
+
end
|
399
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#get_signed_bluinsights_url-instance_method
|
400
|
+
def get_signed_bluinsights_url: () -> _GetSignedBluinsightsUrlResponseSuccess
|
401
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSignedBluinsightsUrlResponseSuccess
|
402
|
+
|
403
|
+
interface _ListApplicationVersionsResponseSuccess
|
404
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationVersionsResponse]
|
405
|
+
def application_versions: () -> ::Array[Types::ApplicationVersionSummary]
|
406
|
+
def next_token: () -> ::String
|
407
|
+
end
|
408
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_application_versions-instance_method
|
409
|
+
def list_application_versions: (
|
410
|
+
application_id: ::String,
|
411
|
+
?max_results: ::Integer,
|
412
|
+
?next_token: ::String
|
413
|
+
) -> _ListApplicationVersionsResponseSuccess
|
414
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationVersionsResponseSuccess
|
415
|
+
|
416
|
+
interface _ListApplicationsResponseSuccess
|
417
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationsResponse]
|
418
|
+
def applications: () -> ::Array[Types::ApplicationSummary]
|
419
|
+
def next_token: () -> ::String
|
420
|
+
end
|
421
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_applications-instance_method
|
422
|
+
def list_applications: (
|
423
|
+
?environment_id: ::String,
|
424
|
+
?max_results: ::Integer,
|
425
|
+
?names: Array[::String],
|
426
|
+
?next_token: ::String
|
427
|
+
) -> _ListApplicationsResponseSuccess
|
428
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
|
429
|
+
|
430
|
+
interface _ListBatchJobDefinitionsResponseSuccess
|
431
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBatchJobDefinitionsResponse]
|
432
|
+
def batch_job_definitions: () -> ::Array[Types::BatchJobDefinition]
|
433
|
+
def next_token: () -> ::String
|
434
|
+
end
|
435
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_batch_job_definitions-instance_method
|
436
|
+
def list_batch_job_definitions: (
|
437
|
+
application_id: ::String,
|
438
|
+
?max_results: ::Integer,
|
439
|
+
?next_token: ::String,
|
440
|
+
?prefix: ::String
|
441
|
+
) -> _ListBatchJobDefinitionsResponseSuccess
|
442
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBatchJobDefinitionsResponseSuccess
|
443
|
+
|
444
|
+
interface _ListBatchJobExecutionsResponseSuccess
|
445
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBatchJobExecutionsResponse]
|
446
|
+
def batch_job_executions: () -> ::Array[Types::BatchJobExecutionSummary]
|
447
|
+
def next_token: () -> ::String
|
448
|
+
end
|
449
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_batch_job_executions-instance_method
|
450
|
+
def list_batch_job_executions: (
|
451
|
+
application_id: ::String,
|
452
|
+
?execution_ids: Array[::String],
|
453
|
+
?job_name: ::String,
|
454
|
+
?max_results: ::Integer,
|
455
|
+
?next_token: ::String,
|
456
|
+
?started_after: ::Time,
|
457
|
+
?started_before: ::Time,
|
458
|
+
?status: ("Submitting" | "Holding" | "Dispatching" | "Running" | "Cancelling" | "Cancelled" | "Succeeded" | "Failed" | "Succeeded With Warning")
|
459
|
+
) -> _ListBatchJobExecutionsResponseSuccess
|
460
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBatchJobExecutionsResponseSuccess
|
461
|
+
|
462
|
+
interface _ListDataSetImportHistoryResponseSuccess
|
463
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSetImportHistoryResponse]
|
464
|
+
def data_set_import_tasks: () -> ::Array[Types::DataSetImportTask]
|
465
|
+
def next_token: () -> ::String
|
466
|
+
end
|
467
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_data_set_import_history-instance_method
|
468
|
+
def list_data_set_import_history: (
|
469
|
+
application_id: ::String,
|
470
|
+
?max_results: ::Integer,
|
471
|
+
?next_token: ::String
|
472
|
+
) -> _ListDataSetImportHistoryResponseSuccess
|
473
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSetImportHistoryResponseSuccess
|
474
|
+
|
475
|
+
interface _ListDataSetsResponseSuccess
|
476
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSetsResponse]
|
477
|
+
def data_sets: () -> ::Array[Types::DataSetSummary]
|
478
|
+
def next_token: () -> ::String
|
479
|
+
end
|
480
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_data_sets-instance_method
|
481
|
+
def list_data_sets: (
|
482
|
+
application_id: ::String,
|
483
|
+
?max_results: ::Integer,
|
484
|
+
?name_filter: ::String,
|
485
|
+
?next_token: ::String,
|
486
|
+
?prefix: ::String
|
487
|
+
) -> _ListDataSetsResponseSuccess
|
488
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSetsResponseSuccess
|
489
|
+
|
490
|
+
interface _ListDeploymentsResponseSuccess
|
491
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDeploymentsResponse]
|
492
|
+
def deployments: () -> ::Array[Types::DeploymentSummary]
|
493
|
+
def next_token: () -> ::String
|
494
|
+
end
|
495
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_deployments-instance_method
|
496
|
+
def list_deployments: (
|
497
|
+
application_id: ::String,
|
498
|
+
?max_results: ::Integer,
|
499
|
+
?next_token: ::String
|
500
|
+
) -> _ListDeploymentsResponseSuccess
|
501
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeploymentsResponseSuccess
|
502
|
+
|
503
|
+
interface _ListEngineVersionsResponseSuccess
|
504
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEngineVersionsResponse]
|
505
|
+
def engine_versions: () -> ::Array[Types::EngineVersionsSummary]
|
506
|
+
def next_token: () -> ::String
|
507
|
+
end
|
508
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_engine_versions-instance_method
|
509
|
+
def list_engine_versions: (
|
510
|
+
?engine_type: ("microfocus" | "bluage"),
|
511
|
+
?max_results: ::Integer,
|
512
|
+
?next_token: ::String
|
513
|
+
) -> _ListEngineVersionsResponseSuccess
|
514
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEngineVersionsResponseSuccess
|
515
|
+
|
516
|
+
interface _ListEnvironmentsResponseSuccess
|
517
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentsResponse]
|
518
|
+
def environments: () -> ::Array[Types::EnvironmentSummary]
|
519
|
+
def next_token: () -> ::String
|
520
|
+
end
|
521
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_environments-instance_method
|
522
|
+
def list_environments: (
|
523
|
+
?engine_type: ("microfocus" | "bluage"),
|
524
|
+
?max_results: ::Integer,
|
525
|
+
?names: Array[::String],
|
526
|
+
?next_token: ::String
|
527
|
+
) -> _ListEnvironmentsResponseSuccess
|
528
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
|
529
|
+
|
530
|
+
interface _ListTagsForResourceResponseSuccess
|
531
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
532
|
+
def tags: () -> ::Hash[::String, ::String]
|
533
|
+
end
|
534
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_tags_for_resource-instance_method
|
535
|
+
def list_tags_for_resource: (
|
536
|
+
resource_arn: ::String
|
537
|
+
) -> _ListTagsForResourceResponseSuccess
|
538
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
539
|
+
|
540
|
+
interface _StartApplicationResponseSuccess
|
541
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartApplicationResponse]
|
542
|
+
end
|
543
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#start_application-instance_method
|
544
|
+
def start_application: (
|
545
|
+
application_id: ::String
|
546
|
+
) -> _StartApplicationResponseSuccess
|
547
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartApplicationResponseSuccess
|
548
|
+
|
549
|
+
interface _StartBatchJobResponseSuccess
|
550
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartBatchJobResponse]
|
551
|
+
def execution_id: () -> ::String
|
552
|
+
end
|
553
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#start_batch_job-instance_method
|
554
|
+
def start_batch_job: (
|
555
|
+
application_id: ::String,
|
556
|
+
batch_job_identifier: {
|
557
|
+
file_batch_job_identifier: {
|
558
|
+
file_name: ::String,
|
559
|
+
folder_path: ::String?
|
560
|
+
}?,
|
561
|
+
s3_batch_job_identifier: {
|
562
|
+
bucket: ::String,
|
563
|
+
identifier: {
|
564
|
+
file_name: ::String?,
|
565
|
+
script_name: ::String?
|
566
|
+
},
|
567
|
+
key_prefix: ::String?
|
568
|
+
}?,
|
569
|
+
script_batch_job_identifier: {
|
570
|
+
script_name: ::String
|
571
|
+
}?
|
572
|
+
},
|
573
|
+
?job_params: Hash[::String, ::String]
|
574
|
+
) -> _StartBatchJobResponseSuccess
|
575
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBatchJobResponseSuccess
|
576
|
+
|
577
|
+
interface _StopApplicationResponseSuccess
|
578
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopApplicationResponse]
|
579
|
+
end
|
580
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#stop_application-instance_method
|
581
|
+
def stop_application: (
|
582
|
+
application_id: ::String,
|
583
|
+
?force_stop: bool
|
584
|
+
) -> _StopApplicationResponseSuccess
|
585
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopApplicationResponseSuccess
|
586
|
+
|
587
|
+
interface _TagResourceResponseSuccess
|
588
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
589
|
+
end
|
590
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#tag_resource-instance_method
|
591
|
+
def tag_resource: (
|
592
|
+
resource_arn: ::String,
|
593
|
+
tags: Hash[::String, ::String]
|
594
|
+
) -> _TagResourceResponseSuccess
|
595
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
596
|
+
|
597
|
+
interface _UntagResourceResponseSuccess
|
598
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
599
|
+
end
|
600
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#untag_resource-instance_method
|
601
|
+
def untag_resource: (
|
602
|
+
resource_arn: ::String,
|
603
|
+
tag_keys: Array[::String]
|
604
|
+
) -> _UntagResourceResponseSuccess
|
605
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
606
|
+
|
607
|
+
interface _UpdateApplicationResponseSuccess
|
608
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApplicationResponse]
|
609
|
+
def application_version: () -> ::Integer
|
610
|
+
end
|
611
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#update_application-instance_method
|
612
|
+
def update_application: (
|
613
|
+
application_id: ::String,
|
614
|
+
current_application_version: ::Integer,
|
615
|
+
?definition: {
|
616
|
+
content: ::String?,
|
617
|
+
s3_location: ::String?
|
618
|
+
},
|
619
|
+
?description: ::String
|
620
|
+
) -> _UpdateApplicationResponseSuccess
|
621
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
622
|
+
|
623
|
+
interface _UpdateEnvironmentResponseSuccess
|
624
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentResponse]
|
625
|
+
def environment_id: () -> ::String
|
626
|
+
end
|
627
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#update_environment-instance_method
|
628
|
+
def update_environment: (
|
629
|
+
?apply_during_maintenance_window: bool,
|
630
|
+
?desired_capacity: ::Integer,
|
631
|
+
?engine_version: ::String,
|
632
|
+
environment_id: ::String,
|
633
|
+
?force_update: bool,
|
634
|
+
?instance_type: ::String,
|
635
|
+
?preferred_maintenance_window: ::String
|
636
|
+
) -> _UpdateEnvironmentResponseSuccess
|
637
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
|
638
|
+
end
|
639
|
+
end
|
640
|
+
end
|
641
|
+
|