aws-sdk-apptest 1.0.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,951 @@
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 AppTest
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/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 _CreateTestCaseResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTestCaseResponse]
77
+ def test_case_id: () -> ::String
78
+ def test_case_version: () -> ::Integer
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#create_test_case-instance_method
81
+ def create_test_case: (
82
+ name: ::String,
83
+ ?description: ::String,
84
+ steps: Array[
85
+ {
86
+ name: ::String,
87
+ description: ::String?,
88
+ action: {
89
+ resource_action: {
90
+ m2_managed_application_action: {
91
+ resource: ::String,
92
+ action_type: ("Configure" | "Deconfigure"),
93
+ properties: {
94
+ force_stop: bool?,
95
+ import_data_set_location: ::String?
96
+ }?
97
+ }?,
98
+ m2_non_managed_application_action: {
99
+ resource: ::String,
100
+ action_type: ("Configure" | "Deconfigure")
101
+ }?,
102
+ cloud_formation_action: {
103
+ resource: ::String,
104
+ action_type: ("Create" | "Delete")?
105
+ }?
106
+ }?,
107
+ mainframe_action: {
108
+ resource: ::String,
109
+ action_type: {
110
+ batch: {
111
+ batch_job_name: ::String,
112
+ batch_job_parameters: Hash[::String, ::String]?,
113
+ export_data_set_names: Array[::String]?
114
+ }?,
115
+ tn3270: {
116
+ script: {
117
+ script_location: ::String,
118
+ type: ("Selenium")
119
+ },
120
+ export_data_set_names: Array[::String]?
121
+ }?
122
+ },
123
+ properties: {
124
+ dms_task_arn: ::String?
125
+ }?
126
+ }?,
127
+ compare_action: {
128
+ input: {
129
+ file: {
130
+ source_location: ::String,
131
+ target_location: ::String,
132
+ file_metadata: {
133
+ data_sets: Array[
134
+ {
135
+ type: ("PS"),
136
+ name: ::String,
137
+ ccsid: ::String,
138
+ format: ("FIXED" | "VARIABLE" | "LINE_SEQUENTIAL"),
139
+ length: ::Integer
140
+ },
141
+ ]?,
142
+ database_cdc: {
143
+ source_metadata: {
144
+ type: ("z/OS-DB2"),
145
+ capture_tool: ("Precisely" | "AWS DMS")
146
+ },
147
+ target_metadata: {
148
+ type: ("PostgreSQL"),
149
+ capture_tool: ("Precisely" | "AWS DMS")
150
+ }
151
+ }?
152
+ }
153
+ }?
154
+ },
155
+ output: {
156
+ file: {
157
+ file_location: ::String?
158
+ }?
159
+ }?
160
+ }?
161
+ }
162
+ },
163
+ ],
164
+ ?client_token: ::String,
165
+ ?tags: Hash[::String, ::String]
166
+ ) -> _CreateTestCaseResponseSuccess
167
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTestCaseResponseSuccess
168
+
169
+ interface _CreateTestConfigurationResponseSuccess
170
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTestConfigurationResponse]
171
+ def test_configuration_id: () -> ::String
172
+ def test_configuration_version: () -> ::Integer
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#create_test_configuration-instance_method
175
+ def create_test_configuration: (
176
+ name: ::String,
177
+ ?description: ::String,
178
+ resources: Array[
179
+ {
180
+ name: ::String,
181
+ type: {
182
+ cloud_formation: {
183
+ template_location: ::String,
184
+ parameters: Hash[::String, ::String]?
185
+ }?,
186
+ m2_managed_application: {
187
+ application_id: ::String,
188
+ runtime: ("MicroFocus"),
189
+ vpc_endpoint_service_name: ::String?,
190
+ listener_port: ::String?
191
+ }?,
192
+ m2_non_managed_application: {
193
+ vpc_endpoint_service_name: ::String,
194
+ listener_port: ::String,
195
+ runtime: ("BluAge"),
196
+ web_app_name: ::String?
197
+ }?
198
+ }
199
+ },
200
+ ],
201
+ ?properties: Hash[::String, ::String],
202
+ ?client_token: ::String,
203
+ ?tags: Hash[::String, ::String],
204
+ ?service_settings: {
205
+ kms_key_id: ::String?
206
+ }
207
+ ) -> _CreateTestConfigurationResponseSuccess
208
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTestConfigurationResponseSuccess
209
+
210
+ interface _CreateTestSuiteResponseSuccess
211
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTestSuiteResponse]
212
+ def test_suite_id: () -> ::String
213
+ def test_suite_version: () -> ::Integer
214
+ end
215
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#create_test_suite-instance_method
216
+ def create_test_suite: (
217
+ name: ::String,
218
+ ?description: ::String,
219
+ ?before_steps: Array[
220
+ {
221
+ name: ::String,
222
+ description: ::String?,
223
+ action: {
224
+ resource_action: {
225
+ m2_managed_application_action: {
226
+ resource: ::String,
227
+ action_type: ("Configure" | "Deconfigure"),
228
+ properties: {
229
+ force_stop: bool?,
230
+ import_data_set_location: ::String?
231
+ }?
232
+ }?,
233
+ m2_non_managed_application_action: {
234
+ resource: ::String,
235
+ action_type: ("Configure" | "Deconfigure")
236
+ }?,
237
+ cloud_formation_action: {
238
+ resource: ::String,
239
+ action_type: ("Create" | "Delete")?
240
+ }?
241
+ }?,
242
+ mainframe_action: {
243
+ resource: ::String,
244
+ action_type: {
245
+ batch: {
246
+ batch_job_name: ::String,
247
+ batch_job_parameters: Hash[::String, ::String]?,
248
+ export_data_set_names: Array[::String]?
249
+ }?,
250
+ tn3270: {
251
+ script: {
252
+ script_location: ::String,
253
+ type: ("Selenium")
254
+ },
255
+ export_data_set_names: Array[::String]?
256
+ }?
257
+ },
258
+ properties: {
259
+ dms_task_arn: ::String?
260
+ }?
261
+ }?,
262
+ compare_action: {
263
+ input: {
264
+ file: {
265
+ source_location: ::String,
266
+ target_location: ::String,
267
+ file_metadata: {
268
+ data_sets: Array[
269
+ {
270
+ type: ("PS"),
271
+ name: ::String,
272
+ ccsid: ::String,
273
+ format: ("FIXED" | "VARIABLE" | "LINE_SEQUENTIAL"),
274
+ length: ::Integer
275
+ },
276
+ ]?,
277
+ database_cdc: {
278
+ source_metadata: {
279
+ type: ("z/OS-DB2"),
280
+ capture_tool: ("Precisely" | "AWS DMS")
281
+ },
282
+ target_metadata: {
283
+ type: ("PostgreSQL"),
284
+ capture_tool: ("Precisely" | "AWS DMS")
285
+ }
286
+ }?
287
+ }
288
+ }?
289
+ },
290
+ output: {
291
+ file: {
292
+ file_location: ::String?
293
+ }?
294
+ }?
295
+ }?
296
+ }
297
+ },
298
+ ],
299
+ ?after_steps: Array[
300
+ {
301
+ name: ::String,
302
+ description: ::String?,
303
+ action: {
304
+ resource_action: {
305
+ m2_managed_application_action: {
306
+ resource: ::String,
307
+ action_type: ("Configure" | "Deconfigure"),
308
+ properties: {
309
+ force_stop: bool?,
310
+ import_data_set_location: ::String?
311
+ }?
312
+ }?,
313
+ m2_non_managed_application_action: {
314
+ resource: ::String,
315
+ action_type: ("Configure" | "Deconfigure")
316
+ }?,
317
+ cloud_formation_action: {
318
+ resource: ::String,
319
+ action_type: ("Create" | "Delete")?
320
+ }?
321
+ }?,
322
+ mainframe_action: {
323
+ resource: ::String,
324
+ action_type: {
325
+ batch: {
326
+ batch_job_name: ::String,
327
+ batch_job_parameters: Hash[::String, ::String]?,
328
+ export_data_set_names: Array[::String]?
329
+ }?,
330
+ tn3270: {
331
+ script: {
332
+ script_location: ::String,
333
+ type: ("Selenium")
334
+ },
335
+ export_data_set_names: Array[::String]?
336
+ }?
337
+ },
338
+ properties: {
339
+ dms_task_arn: ::String?
340
+ }?
341
+ }?,
342
+ compare_action: {
343
+ input: {
344
+ file: {
345
+ source_location: ::String,
346
+ target_location: ::String,
347
+ file_metadata: {
348
+ data_sets: Array[
349
+ {
350
+ type: ("PS"),
351
+ name: ::String,
352
+ ccsid: ::String,
353
+ format: ("FIXED" | "VARIABLE" | "LINE_SEQUENTIAL"),
354
+ length: ::Integer
355
+ },
356
+ ]?,
357
+ database_cdc: {
358
+ source_metadata: {
359
+ type: ("z/OS-DB2"),
360
+ capture_tool: ("Precisely" | "AWS DMS")
361
+ },
362
+ target_metadata: {
363
+ type: ("PostgreSQL"),
364
+ capture_tool: ("Precisely" | "AWS DMS")
365
+ }
366
+ }?
367
+ }
368
+ }?
369
+ },
370
+ output: {
371
+ file: {
372
+ file_location: ::String?
373
+ }?
374
+ }?
375
+ }?
376
+ }
377
+ },
378
+ ],
379
+ test_cases: {
380
+ sequential: Array[::String]?
381
+ },
382
+ ?client_token: ::String,
383
+ ?tags: Hash[::String, ::String]
384
+ ) -> _CreateTestSuiteResponseSuccess
385
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTestSuiteResponseSuccess
386
+
387
+ interface _DeleteTestCaseResponseSuccess
388
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTestCaseResponse]
389
+ end
390
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#delete_test_case-instance_method
391
+ def delete_test_case: (
392
+ test_case_id: ::String
393
+ ) -> _DeleteTestCaseResponseSuccess
394
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTestCaseResponseSuccess
395
+
396
+ interface _DeleteTestConfigurationResponseSuccess
397
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTestConfigurationResponse]
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#delete_test_configuration-instance_method
400
+ def delete_test_configuration: (
401
+ test_configuration_id: ::String
402
+ ) -> _DeleteTestConfigurationResponseSuccess
403
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTestConfigurationResponseSuccess
404
+
405
+ interface _DeleteTestRunResponseSuccess
406
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTestRunResponse]
407
+ end
408
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#delete_test_run-instance_method
409
+ def delete_test_run: (
410
+ test_run_id: ::String
411
+ ) -> _DeleteTestRunResponseSuccess
412
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTestRunResponseSuccess
413
+
414
+ interface _DeleteTestSuiteResponseSuccess
415
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTestSuiteResponse]
416
+ end
417
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#delete_test_suite-instance_method
418
+ def delete_test_suite: (
419
+ test_suite_id: ::String
420
+ ) -> _DeleteTestSuiteResponseSuccess
421
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTestSuiteResponseSuccess
422
+
423
+ interface _GetTestCaseResponseSuccess
424
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTestCaseResponse]
425
+ def test_case_id: () -> ::String
426
+ def test_case_arn: () -> ::String
427
+ def name: () -> ::String
428
+ def description: () -> ::String
429
+ def latest_version: () -> Types::TestCaseLatestVersion
430
+ def test_case_version: () -> ::Integer
431
+ def status: () -> ("Active" | "Deleting")
432
+ def status_reason: () -> ::String
433
+ def creation_time: () -> ::Time
434
+ def last_update_time: () -> ::Time
435
+ def steps: () -> ::Array[Types::Step]
436
+ def tags: () -> ::Hash[::String, ::String]
437
+ end
438
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#get_test_case-instance_method
439
+ def get_test_case: (
440
+ test_case_id: ::String,
441
+ ?test_case_version: ::Integer
442
+ ) -> _GetTestCaseResponseSuccess
443
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTestCaseResponseSuccess
444
+
445
+ interface _GetTestConfigurationResponseSuccess
446
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTestConfigurationResponse]
447
+ def test_configuration_id: () -> ::String
448
+ def name: () -> ::String
449
+ def test_configuration_arn: () -> ::String
450
+ def latest_version: () -> Types::TestConfigurationLatestVersion
451
+ def test_configuration_version: () -> ::Integer
452
+ def status: () -> ("Active" | "Deleting")
453
+ def status_reason: () -> ::String
454
+ def creation_time: () -> ::Time
455
+ def last_update_time: () -> ::Time
456
+ def description: () -> ::String
457
+ def resources: () -> ::Array[Types::Resource]
458
+ def properties: () -> ::Hash[::String, ::String]
459
+ def tags: () -> ::Hash[::String, ::String]
460
+ def service_settings: () -> Types::ServiceSettings
461
+ end
462
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#get_test_configuration-instance_method
463
+ def get_test_configuration: (
464
+ test_configuration_id: ::String,
465
+ ?test_configuration_version: ::Integer
466
+ ) -> _GetTestConfigurationResponseSuccess
467
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTestConfigurationResponseSuccess
468
+
469
+ interface _GetTestRunStepResponseSuccess
470
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTestRunStepResponse]
471
+ def step_name: () -> ::String
472
+ def test_run_id: () -> ::String
473
+ def test_case_id: () -> ::String
474
+ def test_case_version: () -> ::Integer
475
+ def test_suite_id: () -> ::String
476
+ def test_suite_version: () -> ::Integer
477
+ def before_step: () -> bool
478
+ def after_step: () -> bool
479
+ def status: () -> ("Success" | "Failed" | "Running")
480
+ def status_reason: () -> ::String
481
+ def run_start_time: () -> ::Time
482
+ def run_end_time: () -> ::Time
483
+ def step_run_summary: () -> Types::StepRunSummary
484
+ end
485
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#get_test_run_step-instance_method
486
+ def get_test_run_step: (
487
+ test_run_id: ::String,
488
+ step_name: ::String,
489
+ ?test_case_id: ::String,
490
+ ?test_suite_id: ::String
491
+ ) -> _GetTestRunStepResponseSuccess
492
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTestRunStepResponseSuccess
493
+
494
+ interface _GetTestSuiteResponseSuccess
495
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTestSuiteResponse]
496
+ def test_suite_id: () -> ::String
497
+ def name: () -> ::String
498
+ def latest_version: () -> Types::TestSuiteLatestVersion
499
+ def test_suite_version: () -> ::Integer
500
+ def status: () -> ("Creating" | "Updating" | "Active" | "Failed" | "Deleting")
501
+ def status_reason: () -> ::String
502
+ def test_suite_arn: () -> ::String
503
+ def creation_time: () -> ::Time
504
+ def last_update_time: () -> ::Time
505
+ def description: () -> ::String
506
+ def before_steps: () -> ::Array[Types::Step]
507
+ def after_steps: () -> ::Array[Types::Step]
508
+ def test_cases: () -> Types::TestCases
509
+ def tags: () -> ::Hash[::String, ::String]
510
+ end
511
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#get_test_suite-instance_method
512
+ def get_test_suite: (
513
+ test_suite_id: ::String,
514
+ ?test_suite_version: ::Integer
515
+ ) -> _GetTestSuiteResponseSuccess
516
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTestSuiteResponseSuccess
517
+
518
+ interface _ListTagsForResourceResponseSuccess
519
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
520
+ def tags: () -> ::Hash[::String, ::String]
521
+ end
522
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#list_tags_for_resource-instance_method
523
+ def list_tags_for_resource: (
524
+ resource_arn: ::String
525
+ ) -> _ListTagsForResourceResponseSuccess
526
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
527
+
528
+ interface _ListTestCasesResponseSuccess
529
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestCasesResponse]
530
+ def test_cases: () -> ::Array[Types::TestCaseSummary]
531
+ def next_token: () -> ::String
532
+ end
533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#list_test_cases-instance_method
534
+ def list_test_cases: (
535
+ ?test_case_ids: Array[::String],
536
+ ?next_token: ::String,
537
+ ?max_results: ::Integer
538
+ ) -> _ListTestCasesResponseSuccess
539
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestCasesResponseSuccess
540
+
541
+ interface _ListTestConfigurationsResponseSuccess
542
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestConfigurationsResponse]
543
+ def test_configurations: () -> ::Array[Types::TestConfigurationSummary]
544
+ def next_token: () -> ::String
545
+ end
546
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#list_test_configurations-instance_method
547
+ def list_test_configurations: (
548
+ ?test_configuration_ids: Array[::String],
549
+ ?next_token: ::String,
550
+ ?max_results: ::Integer
551
+ ) -> _ListTestConfigurationsResponseSuccess
552
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestConfigurationsResponseSuccess
553
+
554
+ interface _ListTestRunStepsResponseSuccess
555
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestRunStepsResponse]
556
+ def test_run_steps: () -> ::Array[Types::TestRunStepSummary]
557
+ def next_token: () -> ::String
558
+ end
559
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#list_test_run_steps-instance_method
560
+ def list_test_run_steps: (
561
+ test_run_id: ::String,
562
+ ?test_case_id: ::String,
563
+ ?test_suite_id: ::String,
564
+ ?next_token: ::String,
565
+ ?max_results: ::Integer
566
+ ) -> _ListTestRunStepsResponseSuccess
567
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestRunStepsResponseSuccess
568
+
569
+ interface _ListTestRunTestCasesResponseSuccess
570
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestRunTestCasesResponse]
571
+ def test_run_test_cases: () -> ::Array[Types::TestCaseRunSummary]
572
+ def next_token: () -> ::String
573
+ end
574
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#list_test_run_test_cases-instance_method
575
+ def list_test_run_test_cases: (
576
+ test_run_id: ::String,
577
+ ?next_token: ::String,
578
+ ?max_results: ::Integer
579
+ ) -> _ListTestRunTestCasesResponseSuccess
580
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestRunTestCasesResponseSuccess
581
+
582
+ interface _ListTestRunsResponseSuccess
583
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestRunsResponse]
584
+ def test_runs: () -> ::Array[Types::TestRunSummary]
585
+ def next_token: () -> ::String
586
+ end
587
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#list_test_runs-instance_method
588
+ def list_test_runs: (
589
+ ?test_suite_id: ::String,
590
+ ?test_run_ids: Array[::String],
591
+ ?next_token: ::String,
592
+ ?max_results: ::Integer
593
+ ) -> _ListTestRunsResponseSuccess
594
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestRunsResponseSuccess
595
+
596
+ interface _ListTestSuitesResponseSuccess
597
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestSuitesResponse]
598
+ def test_suites: () -> ::Array[Types::TestSuiteSummary]
599
+ def next_token: () -> ::String
600
+ end
601
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#list_test_suites-instance_method
602
+ def list_test_suites: (
603
+ ?test_suite_ids: Array[::String],
604
+ ?next_token: ::String,
605
+ ?max_results: ::Integer
606
+ ) -> _ListTestSuitesResponseSuccess
607
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestSuitesResponseSuccess
608
+
609
+ interface _StartTestRunResponseSuccess
610
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartTestRunResponse]
611
+ def test_run_id: () -> ::String
612
+ def test_run_status: () -> ("Success" | "Running" | "Failed" | "Deleting")
613
+ end
614
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#start_test_run-instance_method
615
+ def start_test_run: (
616
+ test_suite_id: ::String,
617
+ ?test_configuration_id: ::String,
618
+ ?client_token: ::String,
619
+ ?tags: Hash[::String, ::String]
620
+ ) -> _StartTestRunResponseSuccess
621
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTestRunResponseSuccess
622
+
623
+ interface _TagResourceResponseSuccess
624
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
625
+ end
626
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#tag_resource-instance_method
627
+ def tag_resource: (
628
+ resource_arn: ::String,
629
+ tags: Hash[::String, ::String]
630
+ ) -> _TagResourceResponseSuccess
631
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
632
+
633
+ interface _UntagResourceResponseSuccess
634
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
635
+ end
636
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#untag_resource-instance_method
637
+ def untag_resource: (
638
+ resource_arn: ::String,
639
+ tag_keys: Array[::String]
640
+ ) -> _UntagResourceResponseSuccess
641
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
642
+
643
+ interface _UpdateTestCaseResponseSuccess
644
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTestCaseResponse]
645
+ def test_case_id: () -> ::String
646
+ def test_case_version: () -> ::Integer
647
+ end
648
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#update_test_case-instance_method
649
+ def update_test_case: (
650
+ test_case_id: ::String,
651
+ ?description: ::String,
652
+ ?steps: Array[
653
+ {
654
+ name: ::String,
655
+ description: ::String?,
656
+ action: {
657
+ resource_action: {
658
+ m2_managed_application_action: {
659
+ resource: ::String,
660
+ action_type: ("Configure" | "Deconfigure"),
661
+ properties: {
662
+ force_stop: bool?,
663
+ import_data_set_location: ::String?
664
+ }?
665
+ }?,
666
+ m2_non_managed_application_action: {
667
+ resource: ::String,
668
+ action_type: ("Configure" | "Deconfigure")
669
+ }?,
670
+ cloud_formation_action: {
671
+ resource: ::String,
672
+ action_type: ("Create" | "Delete")?
673
+ }?
674
+ }?,
675
+ mainframe_action: {
676
+ resource: ::String,
677
+ action_type: {
678
+ batch: {
679
+ batch_job_name: ::String,
680
+ batch_job_parameters: Hash[::String, ::String]?,
681
+ export_data_set_names: Array[::String]?
682
+ }?,
683
+ tn3270: {
684
+ script: {
685
+ script_location: ::String,
686
+ type: ("Selenium")
687
+ },
688
+ export_data_set_names: Array[::String]?
689
+ }?
690
+ },
691
+ properties: {
692
+ dms_task_arn: ::String?
693
+ }?
694
+ }?,
695
+ compare_action: {
696
+ input: {
697
+ file: {
698
+ source_location: ::String,
699
+ target_location: ::String,
700
+ file_metadata: {
701
+ data_sets: Array[
702
+ {
703
+ type: ("PS"),
704
+ name: ::String,
705
+ ccsid: ::String,
706
+ format: ("FIXED" | "VARIABLE" | "LINE_SEQUENTIAL"),
707
+ length: ::Integer
708
+ },
709
+ ]?,
710
+ database_cdc: {
711
+ source_metadata: {
712
+ type: ("z/OS-DB2"),
713
+ capture_tool: ("Precisely" | "AWS DMS")
714
+ },
715
+ target_metadata: {
716
+ type: ("PostgreSQL"),
717
+ capture_tool: ("Precisely" | "AWS DMS")
718
+ }
719
+ }?
720
+ }
721
+ }?
722
+ },
723
+ output: {
724
+ file: {
725
+ file_location: ::String?
726
+ }?
727
+ }?
728
+ }?
729
+ }
730
+ },
731
+ ]
732
+ ) -> _UpdateTestCaseResponseSuccess
733
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTestCaseResponseSuccess
734
+
735
+ interface _UpdateTestConfigurationResponseSuccess
736
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTestConfigurationResponse]
737
+ def test_configuration_id: () -> ::String
738
+ def test_configuration_version: () -> ::Integer
739
+ end
740
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#update_test_configuration-instance_method
741
+ def update_test_configuration: (
742
+ test_configuration_id: ::String,
743
+ ?description: ::String,
744
+ ?resources: Array[
745
+ {
746
+ name: ::String,
747
+ type: {
748
+ cloud_formation: {
749
+ template_location: ::String,
750
+ parameters: Hash[::String, ::String]?
751
+ }?,
752
+ m2_managed_application: {
753
+ application_id: ::String,
754
+ runtime: ("MicroFocus"),
755
+ vpc_endpoint_service_name: ::String?,
756
+ listener_port: ::String?
757
+ }?,
758
+ m2_non_managed_application: {
759
+ vpc_endpoint_service_name: ::String,
760
+ listener_port: ::String,
761
+ runtime: ("BluAge"),
762
+ web_app_name: ::String?
763
+ }?
764
+ }
765
+ },
766
+ ],
767
+ ?properties: Hash[::String, ::String],
768
+ ?service_settings: {
769
+ kms_key_id: ::String?
770
+ }
771
+ ) -> _UpdateTestConfigurationResponseSuccess
772
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTestConfigurationResponseSuccess
773
+
774
+ interface _UpdateTestSuiteResponseSuccess
775
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTestSuiteResponse]
776
+ def test_suite_id: () -> ::String
777
+ def test_suite_version: () -> ::Integer
778
+ end
779
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppTest/Client.html#update_test_suite-instance_method
780
+ def update_test_suite: (
781
+ test_suite_id: ::String,
782
+ ?description: ::String,
783
+ ?before_steps: Array[
784
+ {
785
+ name: ::String,
786
+ description: ::String?,
787
+ action: {
788
+ resource_action: {
789
+ m2_managed_application_action: {
790
+ resource: ::String,
791
+ action_type: ("Configure" | "Deconfigure"),
792
+ properties: {
793
+ force_stop: bool?,
794
+ import_data_set_location: ::String?
795
+ }?
796
+ }?,
797
+ m2_non_managed_application_action: {
798
+ resource: ::String,
799
+ action_type: ("Configure" | "Deconfigure")
800
+ }?,
801
+ cloud_formation_action: {
802
+ resource: ::String,
803
+ action_type: ("Create" | "Delete")?
804
+ }?
805
+ }?,
806
+ mainframe_action: {
807
+ resource: ::String,
808
+ action_type: {
809
+ batch: {
810
+ batch_job_name: ::String,
811
+ batch_job_parameters: Hash[::String, ::String]?,
812
+ export_data_set_names: Array[::String]?
813
+ }?,
814
+ tn3270: {
815
+ script: {
816
+ script_location: ::String,
817
+ type: ("Selenium")
818
+ },
819
+ export_data_set_names: Array[::String]?
820
+ }?
821
+ },
822
+ properties: {
823
+ dms_task_arn: ::String?
824
+ }?
825
+ }?,
826
+ compare_action: {
827
+ input: {
828
+ file: {
829
+ source_location: ::String,
830
+ target_location: ::String,
831
+ file_metadata: {
832
+ data_sets: Array[
833
+ {
834
+ type: ("PS"),
835
+ name: ::String,
836
+ ccsid: ::String,
837
+ format: ("FIXED" | "VARIABLE" | "LINE_SEQUENTIAL"),
838
+ length: ::Integer
839
+ },
840
+ ]?,
841
+ database_cdc: {
842
+ source_metadata: {
843
+ type: ("z/OS-DB2"),
844
+ capture_tool: ("Precisely" | "AWS DMS")
845
+ },
846
+ target_metadata: {
847
+ type: ("PostgreSQL"),
848
+ capture_tool: ("Precisely" | "AWS DMS")
849
+ }
850
+ }?
851
+ }
852
+ }?
853
+ },
854
+ output: {
855
+ file: {
856
+ file_location: ::String?
857
+ }?
858
+ }?
859
+ }?
860
+ }
861
+ },
862
+ ],
863
+ ?after_steps: Array[
864
+ {
865
+ name: ::String,
866
+ description: ::String?,
867
+ action: {
868
+ resource_action: {
869
+ m2_managed_application_action: {
870
+ resource: ::String,
871
+ action_type: ("Configure" | "Deconfigure"),
872
+ properties: {
873
+ force_stop: bool?,
874
+ import_data_set_location: ::String?
875
+ }?
876
+ }?,
877
+ m2_non_managed_application_action: {
878
+ resource: ::String,
879
+ action_type: ("Configure" | "Deconfigure")
880
+ }?,
881
+ cloud_formation_action: {
882
+ resource: ::String,
883
+ action_type: ("Create" | "Delete")?
884
+ }?
885
+ }?,
886
+ mainframe_action: {
887
+ resource: ::String,
888
+ action_type: {
889
+ batch: {
890
+ batch_job_name: ::String,
891
+ batch_job_parameters: Hash[::String, ::String]?,
892
+ export_data_set_names: Array[::String]?
893
+ }?,
894
+ tn3270: {
895
+ script: {
896
+ script_location: ::String,
897
+ type: ("Selenium")
898
+ },
899
+ export_data_set_names: Array[::String]?
900
+ }?
901
+ },
902
+ properties: {
903
+ dms_task_arn: ::String?
904
+ }?
905
+ }?,
906
+ compare_action: {
907
+ input: {
908
+ file: {
909
+ source_location: ::String,
910
+ target_location: ::String,
911
+ file_metadata: {
912
+ data_sets: Array[
913
+ {
914
+ type: ("PS"),
915
+ name: ::String,
916
+ ccsid: ::String,
917
+ format: ("FIXED" | "VARIABLE" | "LINE_SEQUENTIAL"),
918
+ length: ::Integer
919
+ },
920
+ ]?,
921
+ database_cdc: {
922
+ source_metadata: {
923
+ type: ("z/OS-DB2"),
924
+ capture_tool: ("Precisely" | "AWS DMS")
925
+ },
926
+ target_metadata: {
927
+ type: ("PostgreSQL"),
928
+ capture_tool: ("Precisely" | "AWS DMS")
929
+ }
930
+ }?
931
+ }
932
+ }?
933
+ },
934
+ output: {
935
+ file: {
936
+ file_location: ::String?
937
+ }?
938
+ }?
939
+ }?
940
+ }
941
+ },
942
+ ],
943
+ ?test_cases: {
944
+ sequential: Array[::String]?
945
+ }
946
+ ) -> _UpdateTestSuiteResponseSuccess
947
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTestSuiteResponseSuccess
948
+ end
949
+ end
950
+ end
951
+