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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-apptest/client.rb +2269 -0
- data/lib/aws-sdk-apptest/client_api.rb +1346 -0
- data/lib/aws-sdk-apptest/customizations.rb +0 -0
- data/lib/aws-sdk-apptest/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-apptest/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-apptest/endpoints.rb +352 -0
- data/lib/aws-sdk-apptest/errors.rb +232 -0
- data/lib/aws-sdk-apptest/plugins/endpoints.rb +118 -0
- data/lib/aws-sdk-apptest/resource.rb +26 -0
- data/lib/aws-sdk-apptest/types.rb +3259 -0
- data/lib/aws-sdk-apptest/waiters.rb +15 -0
- data/lib/aws-sdk-apptest.rb +58 -0
- data/sig/client.rbs +951 -0
- data/sig/errors.rbs +51 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1042 -0
- data/sig/waiters.rbs +13 -0
- metadata +100 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,1042 @@
|
|
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::AppTest
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class Batch
|
17
|
+
attr_accessor batch_job_name: ::String
|
18
|
+
attr_accessor batch_job_parameters: ::Hash[::String, ::String]
|
19
|
+
attr_accessor export_data_set_names: ::Array[::String]
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class BatchStepInput
|
24
|
+
attr_accessor resource: Types::MainframeResourceSummary
|
25
|
+
attr_accessor batch_job_name: ::String
|
26
|
+
attr_accessor batch_job_parameters: ::Hash[::String, ::String]
|
27
|
+
attr_accessor export_data_set_names: ::Array[::String]
|
28
|
+
attr_accessor properties: Types::MainframeActionProperties
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class BatchStepOutput
|
33
|
+
attr_accessor data_set_export_location: ::String
|
34
|
+
attr_accessor dms_output_location: ::String
|
35
|
+
attr_accessor data_set_details: ::Array[Types::DataSet]
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class BatchSummary
|
40
|
+
attr_accessor step_input: Types::BatchStepInput
|
41
|
+
attr_accessor step_output: Types::BatchStepOutput
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class CloudFormation
|
46
|
+
attr_accessor template_location: ::String
|
47
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class CloudFormationAction
|
52
|
+
attr_accessor resource: ::String
|
53
|
+
attr_accessor action_type: ("Create" | "Delete")
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class CloudFormationStepSummary
|
58
|
+
attr_accessor create_cloudformation: Types::CreateCloudFormationSummary
|
59
|
+
attr_accessor delete_cloudformation: Types::DeleteCloudFormationSummary
|
60
|
+
attr_accessor unknown: untyped
|
61
|
+
SENSITIVE: []
|
62
|
+
|
63
|
+
class CreateCloudformation < CloudFormationStepSummary
|
64
|
+
end
|
65
|
+
class DeleteCloudformation < CloudFormationStepSummary
|
66
|
+
end
|
67
|
+
class Unknown < CloudFormationStepSummary
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
class CompareAction
|
72
|
+
attr_accessor input: Types::Input
|
73
|
+
attr_accessor output: Types::Output
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class CompareActionSummary
|
78
|
+
attr_accessor type: Types::File
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class CompareDataSetsStepInput
|
83
|
+
attr_accessor source_location: ::String
|
84
|
+
attr_accessor target_location: ::String
|
85
|
+
attr_accessor source_data_sets: ::Array[Types::DataSet]
|
86
|
+
attr_accessor target_data_sets: ::Array[Types::DataSet]
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class CompareDataSetsStepOutput
|
91
|
+
attr_accessor comparison_output_location: ::String
|
92
|
+
attr_accessor comparison_status: ("Different" | "Equivalent" | "Equal")
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class CompareDataSetsSummary
|
97
|
+
attr_accessor step_input: Types::CompareDataSetsStepInput
|
98
|
+
attr_accessor step_output: Types::CompareDataSetsStepOutput
|
99
|
+
SENSITIVE: []
|
100
|
+
end
|
101
|
+
|
102
|
+
class CompareDatabaseCDCStepInput
|
103
|
+
attr_accessor source_location: ::String
|
104
|
+
attr_accessor target_location: ::String
|
105
|
+
attr_accessor output_location: ::String
|
106
|
+
attr_accessor source_metadata: Types::SourceDatabaseMetadata
|
107
|
+
attr_accessor target_metadata: Types::TargetDatabaseMetadata
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class CompareDatabaseCDCStepOutput
|
112
|
+
attr_accessor comparison_output_location: ::String
|
113
|
+
attr_accessor comparison_status: ("Different" | "Equivalent" | "Equal")
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class CompareDatabaseCDCSummary
|
118
|
+
attr_accessor step_input: Types::CompareDatabaseCDCStepInput
|
119
|
+
attr_accessor step_output: Types::CompareDatabaseCDCStepOutput
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class CompareFileType
|
124
|
+
attr_accessor datasets: Types::CompareDataSetsSummary
|
125
|
+
attr_accessor database_cdc: Types::CompareDatabaseCDCSummary
|
126
|
+
attr_accessor unknown: untyped
|
127
|
+
SENSITIVE: []
|
128
|
+
|
129
|
+
class Datasets < CompareFileType
|
130
|
+
end
|
131
|
+
class DatabaseCdc < CompareFileType
|
132
|
+
end
|
133
|
+
class Unknown < CompareFileType
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
class ConflictException
|
138
|
+
attr_accessor message: ::String
|
139
|
+
attr_accessor resource_id: ::String
|
140
|
+
attr_accessor resource_type: ::String
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class CreateCloudFormationStepInput
|
145
|
+
attr_accessor template_location: ::String
|
146
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class CreateCloudFormationStepOutput
|
151
|
+
attr_accessor stack_id: ::String
|
152
|
+
attr_accessor exports: ::Hash[::String, ::String]
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class CreateCloudFormationSummary
|
157
|
+
attr_accessor step_input: Types::CreateCloudFormationStepInput
|
158
|
+
attr_accessor step_output: Types::CreateCloudFormationStepOutput
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class CreateTestCaseRequest
|
163
|
+
attr_accessor name: ::String
|
164
|
+
attr_accessor description: ::String
|
165
|
+
attr_accessor steps: ::Array[Types::Step]
|
166
|
+
attr_accessor client_token: ::String
|
167
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class CreateTestCaseResponse
|
172
|
+
attr_accessor test_case_id: ::String
|
173
|
+
attr_accessor test_case_version: ::Integer
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class CreateTestConfigurationRequest
|
178
|
+
attr_accessor name: ::String
|
179
|
+
attr_accessor description: ::String
|
180
|
+
attr_accessor resources: ::Array[Types::Resource]
|
181
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
182
|
+
attr_accessor client_token: ::String
|
183
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
184
|
+
attr_accessor service_settings: Types::ServiceSettings
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class CreateTestConfigurationResponse
|
189
|
+
attr_accessor test_configuration_id: ::String
|
190
|
+
attr_accessor test_configuration_version: ::Integer
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class CreateTestSuiteRequest
|
195
|
+
attr_accessor name: ::String
|
196
|
+
attr_accessor description: ::String
|
197
|
+
attr_accessor before_steps: ::Array[Types::Step]
|
198
|
+
attr_accessor after_steps: ::Array[Types::Step]
|
199
|
+
attr_accessor test_cases: Types::TestCases
|
200
|
+
attr_accessor client_token: ::String
|
201
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class CreateTestSuiteResponse
|
206
|
+
attr_accessor test_suite_id: ::String
|
207
|
+
attr_accessor test_suite_version: ::Integer
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class DataSet
|
212
|
+
attr_accessor type: ("PS")
|
213
|
+
attr_accessor name: ::String
|
214
|
+
attr_accessor ccsid: ::String
|
215
|
+
attr_accessor format: ("FIXED" | "VARIABLE" | "LINE_SEQUENTIAL")
|
216
|
+
attr_accessor length: ::Integer
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class DatabaseCDC
|
221
|
+
attr_accessor source_metadata: Types::SourceDatabaseMetadata
|
222
|
+
attr_accessor target_metadata: Types::TargetDatabaseMetadata
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class DeleteCloudFormationStepInput
|
227
|
+
attr_accessor stack_id: ::String
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class DeleteCloudFormationStepOutput < Aws::EmptyStructure
|
232
|
+
end
|
233
|
+
|
234
|
+
class DeleteCloudFormationSummary
|
235
|
+
attr_accessor step_input: Types::DeleteCloudFormationStepInput
|
236
|
+
attr_accessor step_output: Types::DeleteCloudFormationStepOutput
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class DeleteTestCaseRequest
|
241
|
+
attr_accessor test_case_id: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class DeleteTestCaseResponse < Aws::EmptyStructure
|
246
|
+
end
|
247
|
+
|
248
|
+
class DeleteTestConfigurationRequest
|
249
|
+
attr_accessor test_configuration_id: ::String
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class DeleteTestConfigurationResponse < Aws::EmptyStructure
|
254
|
+
end
|
255
|
+
|
256
|
+
class DeleteTestRunRequest
|
257
|
+
attr_accessor test_run_id: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class DeleteTestRunResponse < Aws::EmptyStructure
|
262
|
+
end
|
263
|
+
|
264
|
+
class DeleteTestSuiteRequest
|
265
|
+
attr_accessor test_suite_id: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class DeleteTestSuiteResponse < Aws::EmptyStructure
|
270
|
+
end
|
271
|
+
|
272
|
+
class File
|
273
|
+
attr_accessor file_type: Types::CompareFileType
|
274
|
+
attr_accessor unknown: untyped
|
275
|
+
SENSITIVE: []
|
276
|
+
|
277
|
+
class FileType < File
|
278
|
+
end
|
279
|
+
class Unknown < File
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
class FileMetadata
|
284
|
+
attr_accessor data_sets: ::Array[Types::DataSet]
|
285
|
+
attr_accessor database_cdc: Types::DatabaseCDC
|
286
|
+
attr_accessor unknown: untyped
|
287
|
+
SENSITIVE: []
|
288
|
+
|
289
|
+
class DataSets < FileMetadata
|
290
|
+
end
|
291
|
+
class DatabaseCdc < FileMetadata
|
292
|
+
end
|
293
|
+
class Unknown < FileMetadata
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
class GetTestCaseRequest
|
298
|
+
attr_accessor test_case_id: ::String
|
299
|
+
attr_accessor test_case_version: ::Integer
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class GetTestCaseResponse
|
304
|
+
attr_accessor test_case_id: ::String
|
305
|
+
attr_accessor test_case_arn: ::String
|
306
|
+
attr_accessor name: ::String
|
307
|
+
attr_accessor description: ::String
|
308
|
+
attr_accessor latest_version: Types::TestCaseLatestVersion
|
309
|
+
attr_accessor test_case_version: ::Integer
|
310
|
+
attr_accessor status: ("Active" | "Deleting")
|
311
|
+
attr_accessor status_reason: ::String
|
312
|
+
attr_accessor creation_time: ::Time
|
313
|
+
attr_accessor last_update_time: ::Time
|
314
|
+
attr_accessor steps: ::Array[Types::Step]
|
315
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class GetTestConfigurationRequest
|
320
|
+
attr_accessor test_configuration_id: ::String
|
321
|
+
attr_accessor test_configuration_version: ::Integer
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class GetTestConfigurationResponse
|
326
|
+
attr_accessor test_configuration_id: ::String
|
327
|
+
attr_accessor name: ::String
|
328
|
+
attr_accessor test_configuration_arn: ::String
|
329
|
+
attr_accessor latest_version: Types::TestConfigurationLatestVersion
|
330
|
+
attr_accessor test_configuration_version: ::Integer
|
331
|
+
attr_accessor status: ("Active" | "Deleting")
|
332
|
+
attr_accessor status_reason: ::String
|
333
|
+
attr_accessor creation_time: ::Time
|
334
|
+
attr_accessor last_update_time: ::Time
|
335
|
+
attr_accessor description: ::String
|
336
|
+
attr_accessor resources: ::Array[Types::Resource]
|
337
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
338
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
339
|
+
attr_accessor service_settings: Types::ServiceSettings
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class GetTestRunStepRequest
|
344
|
+
attr_accessor test_run_id: ::String
|
345
|
+
attr_accessor step_name: ::String
|
346
|
+
attr_accessor test_case_id: ::String
|
347
|
+
attr_accessor test_suite_id: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class GetTestRunStepResponse
|
352
|
+
attr_accessor step_name: ::String
|
353
|
+
attr_accessor test_run_id: ::String
|
354
|
+
attr_accessor test_case_id: ::String
|
355
|
+
attr_accessor test_case_version: ::Integer
|
356
|
+
attr_accessor test_suite_id: ::String
|
357
|
+
attr_accessor test_suite_version: ::Integer
|
358
|
+
attr_accessor before_step: bool
|
359
|
+
attr_accessor after_step: bool
|
360
|
+
attr_accessor status: ("Success" | "Failed" | "Running")
|
361
|
+
attr_accessor status_reason: ::String
|
362
|
+
attr_accessor run_start_time: ::Time
|
363
|
+
attr_accessor run_end_time: ::Time
|
364
|
+
attr_accessor step_run_summary: Types::StepRunSummary
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class GetTestSuiteRequest
|
369
|
+
attr_accessor test_suite_id: ::String
|
370
|
+
attr_accessor test_suite_version: ::Integer
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class GetTestSuiteResponse
|
375
|
+
attr_accessor test_suite_id: ::String
|
376
|
+
attr_accessor name: ::String
|
377
|
+
attr_accessor latest_version: Types::TestSuiteLatestVersion
|
378
|
+
attr_accessor test_suite_version: ::Integer
|
379
|
+
attr_accessor status: ("Creating" | "Updating" | "Active" | "Failed" | "Deleting")
|
380
|
+
attr_accessor status_reason: ::String
|
381
|
+
attr_accessor test_suite_arn: ::String
|
382
|
+
attr_accessor creation_time: ::Time
|
383
|
+
attr_accessor last_update_time: ::Time
|
384
|
+
attr_accessor description: ::String
|
385
|
+
attr_accessor before_steps: ::Array[Types::Step]
|
386
|
+
attr_accessor after_steps: ::Array[Types::Step]
|
387
|
+
attr_accessor test_cases: Types::TestCases
|
388
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class Input
|
393
|
+
attr_accessor file: Types::InputFile
|
394
|
+
attr_accessor unknown: untyped
|
395
|
+
SENSITIVE: []
|
396
|
+
|
397
|
+
class File < Input
|
398
|
+
end
|
399
|
+
class Unknown < Input
|
400
|
+
end
|
401
|
+
end
|
402
|
+
|
403
|
+
class InputFile
|
404
|
+
attr_accessor source_location: ::String
|
405
|
+
attr_accessor target_location: ::String
|
406
|
+
attr_accessor file_metadata: Types::FileMetadata
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class InternalServerException
|
411
|
+
attr_accessor message: ::String
|
412
|
+
attr_accessor retry_after_seconds: ::Integer
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class ListTagsForResourceRequest
|
417
|
+
attr_accessor resource_arn: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class ListTagsForResourceResponse
|
422
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class ListTestCasesRequest
|
427
|
+
attr_accessor test_case_ids: ::Array[::String]
|
428
|
+
attr_accessor next_token: ::String
|
429
|
+
attr_accessor max_results: ::Integer
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class ListTestCasesResponse
|
434
|
+
attr_accessor test_cases: ::Array[Types::TestCaseSummary]
|
435
|
+
attr_accessor next_token: ::String
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class ListTestConfigurationsRequest
|
440
|
+
attr_accessor test_configuration_ids: ::Array[::String]
|
441
|
+
attr_accessor next_token: ::String
|
442
|
+
attr_accessor max_results: ::Integer
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class ListTestConfigurationsResponse
|
447
|
+
attr_accessor test_configurations: ::Array[Types::TestConfigurationSummary]
|
448
|
+
attr_accessor next_token: ::String
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class ListTestRunStepsRequest
|
453
|
+
attr_accessor test_run_id: ::String
|
454
|
+
attr_accessor test_case_id: ::String
|
455
|
+
attr_accessor test_suite_id: ::String
|
456
|
+
attr_accessor next_token: ::String
|
457
|
+
attr_accessor max_results: ::Integer
|
458
|
+
SENSITIVE: []
|
459
|
+
end
|
460
|
+
|
461
|
+
class ListTestRunStepsResponse
|
462
|
+
attr_accessor test_run_steps: ::Array[Types::TestRunStepSummary]
|
463
|
+
attr_accessor next_token: ::String
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class ListTestRunTestCasesRequest
|
468
|
+
attr_accessor test_run_id: ::String
|
469
|
+
attr_accessor next_token: ::String
|
470
|
+
attr_accessor max_results: ::Integer
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class ListTestRunTestCasesResponse
|
475
|
+
attr_accessor test_run_test_cases: ::Array[Types::TestCaseRunSummary]
|
476
|
+
attr_accessor next_token: ::String
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class ListTestRunsRequest
|
481
|
+
attr_accessor test_suite_id: ::String
|
482
|
+
attr_accessor test_run_ids: ::Array[::String]
|
483
|
+
attr_accessor next_token: ::String
|
484
|
+
attr_accessor max_results: ::Integer
|
485
|
+
SENSITIVE: []
|
486
|
+
end
|
487
|
+
|
488
|
+
class ListTestRunsResponse
|
489
|
+
attr_accessor test_runs: ::Array[Types::TestRunSummary]
|
490
|
+
attr_accessor next_token: ::String
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class ListTestSuitesRequest
|
495
|
+
attr_accessor test_suite_ids: ::Array[::String]
|
496
|
+
attr_accessor next_token: ::String
|
497
|
+
attr_accessor max_results: ::Integer
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
501
|
+
class ListTestSuitesResponse
|
502
|
+
attr_accessor test_suites: ::Array[Types::TestSuiteSummary]
|
503
|
+
attr_accessor next_token: ::String
|
504
|
+
SENSITIVE: []
|
505
|
+
end
|
506
|
+
|
507
|
+
class M2ManagedActionProperties
|
508
|
+
attr_accessor force_stop: bool
|
509
|
+
attr_accessor import_data_set_location: ::String
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class M2ManagedApplication
|
514
|
+
attr_accessor application_id: ::String
|
515
|
+
attr_accessor runtime: ("MicroFocus")
|
516
|
+
attr_accessor vpc_endpoint_service_name: ::String
|
517
|
+
attr_accessor listener_port: ::String
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class M2ManagedApplicationAction
|
522
|
+
attr_accessor resource: ::String
|
523
|
+
attr_accessor action_type: ("Configure" | "Deconfigure")
|
524
|
+
attr_accessor properties: Types::M2ManagedActionProperties
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class M2ManagedApplicationStepInput
|
529
|
+
attr_accessor application_id: ::String
|
530
|
+
attr_accessor runtime: ::String
|
531
|
+
attr_accessor vpc_endpoint_service_name: ::String
|
532
|
+
attr_accessor listener_port: ::Integer
|
533
|
+
attr_accessor action_type: ("Configure" | "Deconfigure")
|
534
|
+
attr_accessor properties: Types::M2ManagedActionProperties
|
535
|
+
SENSITIVE: []
|
536
|
+
end
|
537
|
+
|
538
|
+
class M2ManagedApplicationStepOutput
|
539
|
+
attr_accessor import_data_set_summary: ::Hash[::String, ::String]
|
540
|
+
SENSITIVE: []
|
541
|
+
end
|
542
|
+
|
543
|
+
class M2ManagedApplicationStepSummary
|
544
|
+
attr_accessor step_input: Types::M2ManagedApplicationStepInput
|
545
|
+
attr_accessor step_output: Types::M2ManagedApplicationStepOutput
|
546
|
+
SENSITIVE: []
|
547
|
+
end
|
548
|
+
|
549
|
+
class M2ManagedApplicationSummary
|
550
|
+
attr_accessor application_id: ::String
|
551
|
+
attr_accessor runtime: ("MicroFocus")
|
552
|
+
attr_accessor listener_port: ::Integer
|
553
|
+
SENSITIVE: []
|
554
|
+
end
|
555
|
+
|
556
|
+
class M2NonManagedApplication
|
557
|
+
attr_accessor vpc_endpoint_service_name: ::String
|
558
|
+
attr_accessor listener_port: ::String
|
559
|
+
attr_accessor runtime: ("BluAge")
|
560
|
+
attr_accessor web_app_name: ::String
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class M2NonManagedApplicationAction
|
565
|
+
attr_accessor resource: ::String
|
566
|
+
attr_accessor action_type: ("Configure" | "Deconfigure")
|
567
|
+
SENSITIVE: []
|
568
|
+
end
|
569
|
+
|
570
|
+
class M2NonManagedApplicationStepInput
|
571
|
+
attr_accessor vpc_endpoint_service_name: ::String
|
572
|
+
attr_accessor listener_port: ::Integer
|
573
|
+
attr_accessor runtime: ("BluAge")
|
574
|
+
attr_accessor web_app_name: ::String
|
575
|
+
attr_accessor action_type: ("Configure" | "Deconfigure")
|
576
|
+
SENSITIVE: []
|
577
|
+
end
|
578
|
+
|
579
|
+
class M2NonManagedApplicationStepOutput < Aws::EmptyStructure
|
580
|
+
end
|
581
|
+
|
582
|
+
class M2NonManagedApplicationStepSummary
|
583
|
+
attr_accessor step_input: Types::M2NonManagedApplicationStepInput
|
584
|
+
attr_accessor step_output: Types::M2NonManagedApplicationStepOutput
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
588
|
+
class M2NonManagedApplicationSummary
|
589
|
+
attr_accessor vpc_endpoint_service_name: ::String
|
590
|
+
attr_accessor listener_port: ::Integer
|
591
|
+
attr_accessor runtime: ("BluAge")
|
592
|
+
attr_accessor web_app_name: ::String
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class MainframeAction
|
597
|
+
attr_accessor resource: ::String
|
598
|
+
attr_accessor action_type: Types::MainframeActionType
|
599
|
+
attr_accessor properties: Types::MainframeActionProperties
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
603
|
+
class MainframeActionProperties
|
604
|
+
attr_accessor dms_task_arn: ::String
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class MainframeActionSummary
|
609
|
+
attr_accessor batch: Types::BatchSummary
|
610
|
+
attr_accessor tn3270: Types::TN3270Summary
|
611
|
+
attr_accessor unknown: untyped
|
612
|
+
SENSITIVE: []
|
613
|
+
|
614
|
+
class Batch < MainframeActionSummary
|
615
|
+
end
|
616
|
+
class Tn3270 < MainframeActionSummary
|
617
|
+
end
|
618
|
+
class Unknown < MainframeActionSummary
|
619
|
+
end
|
620
|
+
end
|
621
|
+
|
622
|
+
class MainframeActionType
|
623
|
+
attr_accessor batch: Types::Batch
|
624
|
+
attr_accessor tn3270: Types::TN3270
|
625
|
+
attr_accessor unknown: untyped
|
626
|
+
SENSITIVE: []
|
627
|
+
|
628
|
+
class Batch < MainframeActionType
|
629
|
+
end
|
630
|
+
class Tn3270 < MainframeActionType
|
631
|
+
end
|
632
|
+
class Unknown < MainframeActionType
|
633
|
+
end
|
634
|
+
end
|
635
|
+
|
636
|
+
class MainframeResourceSummary
|
637
|
+
attr_accessor m2_managed_application: Types::M2ManagedApplicationSummary
|
638
|
+
attr_accessor m2_non_managed_application: Types::M2NonManagedApplicationSummary
|
639
|
+
attr_accessor unknown: untyped
|
640
|
+
SENSITIVE: []
|
641
|
+
|
642
|
+
class M2ManagedApplication < MainframeResourceSummary
|
643
|
+
end
|
644
|
+
class M2NonManagedApplication < MainframeResourceSummary
|
645
|
+
end
|
646
|
+
class Unknown < MainframeResourceSummary
|
647
|
+
end
|
648
|
+
end
|
649
|
+
|
650
|
+
class Output
|
651
|
+
attr_accessor file: Types::OutputFile
|
652
|
+
attr_accessor unknown: untyped
|
653
|
+
SENSITIVE: []
|
654
|
+
|
655
|
+
class File < Output
|
656
|
+
end
|
657
|
+
class Unknown < Output
|
658
|
+
end
|
659
|
+
end
|
660
|
+
|
661
|
+
class OutputFile
|
662
|
+
attr_accessor file_location: ::String
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class Resource
|
667
|
+
attr_accessor name: ::String
|
668
|
+
attr_accessor type: Types::ResourceType
|
669
|
+
SENSITIVE: []
|
670
|
+
end
|
671
|
+
|
672
|
+
class ResourceAction
|
673
|
+
attr_accessor m2_managed_application_action: Types::M2ManagedApplicationAction
|
674
|
+
attr_accessor m2_non_managed_application_action: Types::M2NonManagedApplicationAction
|
675
|
+
attr_accessor cloud_formation_action: Types::CloudFormationAction
|
676
|
+
attr_accessor unknown: untyped
|
677
|
+
SENSITIVE: []
|
678
|
+
|
679
|
+
class M2ManagedApplicationAction < ResourceAction
|
680
|
+
end
|
681
|
+
class M2NonManagedApplicationAction < ResourceAction
|
682
|
+
end
|
683
|
+
class CloudFormationAction < ResourceAction
|
684
|
+
end
|
685
|
+
class Unknown < ResourceAction
|
686
|
+
end
|
687
|
+
end
|
688
|
+
|
689
|
+
class ResourceActionSummary
|
690
|
+
attr_accessor cloud_formation: Types::CloudFormationStepSummary
|
691
|
+
attr_accessor m2_managed_application: Types::M2ManagedApplicationStepSummary
|
692
|
+
attr_accessor m2_non_managed_application: Types::M2NonManagedApplicationStepSummary
|
693
|
+
attr_accessor unknown: untyped
|
694
|
+
SENSITIVE: []
|
695
|
+
|
696
|
+
class CloudFormation < ResourceActionSummary
|
697
|
+
end
|
698
|
+
class M2ManagedApplication < ResourceActionSummary
|
699
|
+
end
|
700
|
+
class M2NonManagedApplication < ResourceActionSummary
|
701
|
+
end
|
702
|
+
class Unknown < ResourceActionSummary
|
703
|
+
end
|
704
|
+
end
|
705
|
+
|
706
|
+
class ResourceNotFoundException
|
707
|
+
attr_accessor message: ::String
|
708
|
+
attr_accessor resource_id: ::String
|
709
|
+
attr_accessor resource_type: ::String
|
710
|
+
SENSITIVE: []
|
711
|
+
end
|
712
|
+
|
713
|
+
class ResourceType
|
714
|
+
attr_accessor cloud_formation: Types::CloudFormation
|
715
|
+
attr_accessor m2_managed_application: Types::M2ManagedApplication
|
716
|
+
attr_accessor m2_non_managed_application: Types::M2NonManagedApplication
|
717
|
+
attr_accessor unknown: untyped
|
718
|
+
SENSITIVE: []
|
719
|
+
|
720
|
+
class CloudFormation < ResourceType
|
721
|
+
end
|
722
|
+
class M2ManagedApplication < ResourceType
|
723
|
+
end
|
724
|
+
class M2NonManagedApplication < ResourceType
|
725
|
+
end
|
726
|
+
class Unknown < ResourceType
|
727
|
+
end
|
728
|
+
end
|
729
|
+
|
730
|
+
class Script
|
731
|
+
attr_accessor script_location: ::String
|
732
|
+
attr_accessor type: ("Selenium")
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class ScriptSummary
|
737
|
+
attr_accessor script_location: ::String
|
738
|
+
attr_accessor type: ("Selenium")
|
739
|
+
SENSITIVE: []
|
740
|
+
end
|
741
|
+
|
742
|
+
class ServiceQuotaExceededException
|
743
|
+
attr_accessor message: ::String
|
744
|
+
attr_accessor resource_id: ::String
|
745
|
+
attr_accessor resource_type: ::String
|
746
|
+
attr_accessor service_code: ::String
|
747
|
+
attr_accessor quota_code: ::String
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class ServiceSettings
|
752
|
+
attr_accessor kms_key_id: ::String
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class SourceDatabaseMetadata
|
757
|
+
attr_accessor type: ("z/OS-DB2")
|
758
|
+
attr_accessor capture_tool: ("Precisely" | "AWS DMS")
|
759
|
+
SENSITIVE: []
|
760
|
+
end
|
761
|
+
|
762
|
+
class StartTestRunRequest
|
763
|
+
attr_accessor test_suite_id: ::String
|
764
|
+
attr_accessor test_configuration_id: ::String
|
765
|
+
attr_accessor client_token: ::String
|
766
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
767
|
+
SENSITIVE: []
|
768
|
+
end
|
769
|
+
|
770
|
+
class StartTestRunResponse
|
771
|
+
attr_accessor test_run_id: ::String
|
772
|
+
attr_accessor test_run_status: ("Success" | "Running" | "Failed" | "Deleting")
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class Step
|
777
|
+
attr_accessor name: ::String
|
778
|
+
attr_accessor description: ::String
|
779
|
+
attr_accessor action: Types::StepAction
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class StepAction
|
784
|
+
attr_accessor resource_action: Types::ResourceAction
|
785
|
+
attr_accessor mainframe_action: Types::MainframeAction
|
786
|
+
attr_accessor compare_action: Types::CompareAction
|
787
|
+
attr_accessor unknown: untyped
|
788
|
+
SENSITIVE: []
|
789
|
+
|
790
|
+
class ResourceAction < StepAction
|
791
|
+
end
|
792
|
+
class MainframeAction < StepAction
|
793
|
+
end
|
794
|
+
class CompareAction < StepAction
|
795
|
+
end
|
796
|
+
class Unknown < StepAction
|
797
|
+
end
|
798
|
+
end
|
799
|
+
|
800
|
+
class StepRunSummary
|
801
|
+
attr_accessor mainframe_action: Types::MainframeActionSummary
|
802
|
+
attr_accessor compare_action: Types::CompareActionSummary
|
803
|
+
attr_accessor resource_action: Types::ResourceActionSummary
|
804
|
+
attr_accessor unknown: untyped
|
805
|
+
SENSITIVE: []
|
806
|
+
|
807
|
+
class MainframeAction < StepRunSummary
|
808
|
+
end
|
809
|
+
class CompareAction < StepRunSummary
|
810
|
+
end
|
811
|
+
class ResourceAction < StepRunSummary
|
812
|
+
end
|
813
|
+
class Unknown < StepRunSummary
|
814
|
+
end
|
815
|
+
end
|
816
|
+
|
817
|
+
class TN3270
|
818
|
+
attr_accessor script: Types::Script
|
819
|
+
attr_accessor export_data_set_names: ::Array[::String]
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class TN3270StepInput
|
824
|
+
attr_accessor resource: Types::MainframeResourceSummary
|
825
|
+
attr_accessor script: Types::ScriptSummary
|
826
|
+
attr_accessor export_data_set_names: ::Array[::String]
|
827
|
+
attr_accessor properties: Types::MainframeActionProperties
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class TN3270StepOutput
|
832
|
+
attr_accessor data_set_export_location: ::String
|
833
|
+
attr_accessor dms_output_location: ::String
|
834
|
+
attr_accessor data_set_details: ::Array[Types::DataSet]
|
835
|
+
attr_accessor script_output_location: ::String
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
|
839
|
+
class TN3270Summary
|
840
|
+
attr_accessor step_input: Types::TN3270StepInput
|
841
|
+
attr_accessor step_output: Types::TN3270StepOutput
|
842
|
+
SENSITIVE: []
|
843
|
+
end
|
844
|
+
|
845
|
+
class TagResourceRequest
|
846
|
+
attr_accessor resource_arn: ::String
|
847
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class TagResourceResponse < Aws::EmptyStructure
|
852
|
+
end
|
853
|
+
|
854
|
+
class TargetDatabaseMetadata
|
855
|
+
attr_accessor type: ("PostgreSQL")
|
856
|
+
attr_accessor capture_tool: ("Precisely" | "AWS DMS")
|
857
|
+
SENSITIVE: []
|
858
|
+
end
|
859
|
+
|
860
|
+
class TestCaseLatestVersion
|
861
|
+
attr_accessor version: ::Integer
|
862
|
+
attr_accessor status: ("Active" | "Deleting")
|
863
|
+
attr_accessor status_reason: ::String
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class TestCaseRunSummary
|
868
|
+
attr_accessor test_case_id: ::String
|
869
|
+
attr_accessor test_case_version: ::Integer
|
870
|
+
attr_accessor test_run_id: ::String
|
871
|
+
attr_accessor status: ("Success" | "Running" | "Failed")
|
872
|
+
attr_accessor status_reason: ::String
|
873
|
+
attr_accessor run_start_time: ::Time
|
874
|
+
attr_accessor run_end_time: ::Time
|
875
|
+
SENSITIVE: []
|
876
|
+
end
|
877
|
+
|
878
|
+
class TestCaseSummary
|
879
|
+
attr_accessor test_case_id: ::String
|
880
|
+
attr_accessor test_case_arn: ::String
|
881
|
+
attr_accessor name: ::String
|
882
|
+
attr_accessor status_reason: ::String
|
883
|
+
attr_accessor latest_version: ::Integer
|
884
|
+
attr_accessor status: ("Active" | "Deleting")
|
885
|
+
attr_accessor creation_time: ::Time
|
886
|
+
attr_accessor last_update_time: ::Time
|
887
|
+
SENSITIVE: []
|
888
|
+
end
|
889
|
+
|
890
|
+
class TestCases
|
891
|
+
attr_accessor sequential: ::Array[::String]
|
892
|
+
attr_accessor unknown: untyped
|
893
|
+
SENSITIVE: []
|
894
|
+
|
895
|
+
class Sequential < TestCases
|
896
|
+
end
|
897
|
+
class Unknown < TestCases
|
898
|
+
end
|
899
|
+
end
|
900
|
+
|
901
|
+
class TestConfigurationLatestVersion
|
902
|
+
attr_accessor version: ::Integer
|
903
|
+
attr_accessor status: ("Active" | "Deleting")
|
904
|
+
attr_accessor status_reason: ::String
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
908
|
+
class TestConfigurationSummary
|
909
|
+
attr_accessor test_configuration_id: ::String
|
910
|
+
attr_accessor name: ::String
|
911
|
+
attr_accessor status_reason: ::String
|
912
|
+
attr_accessor latest_version: ::Integer
|
913
|
+
attr_accessor test_configuration_arn: ::String
|
914
|
+
attr_accessor status: ("Active" | "Deleting")
|
915
|
+
attr_accessor creation_time: ::Time
|
916
|
+
attr_accessor last_update_time: ::Time
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class TestRunStepSummary
|
921
|
+
attr_accessor step_name: ::String
|
922
|
+
attr_accessor test_run_id: ::String
|
923
|
+
attr_accessor test_case_id: ::String
|
924
|
+
attr_accessor test_case_version: ::Integer
|
925
|
+
attr_accessor test_suite_id: ::String
|
926
|
+
attr_accessor test_suite_version: ::Integer
|
927
|
+
attr_accessor before_step: bool
|
928
|
+
attr_accessor after_step: bool
|
929
|
+
attr_accessor status: ("Success" | "Failed" | "Running")
|
930
|
+
attr_accessor status_reason: ::String
|
931
|
+
attr_accessor run_start_time: ::Time
|
932
|
+
attr_accessor run_end_time: ::Time
|
933
|
+
SENSITIVE: []
|
934
|
+
end
|
935
|
+
|
936
|
+
class TestRunSummary
|
937
|
+
attr_accessor test_run_id: ::String
|
938
|
+
attr_accessor test_run_arn: ::String
|
939
|
+
attr_accessor test_suite_id: ::String
|
940
|
+
attr_accessor test_suite_version: ::Integer
|
941
|
+
attr_accessor test_configuration_id: ::String
|
942
|
+
attr_accessor test_configuration_version: ::Integer
|
943
|
+
attr_accessor status: ("Success" | "Running" | "Failed" | "Deleting")
|
944
|
+
attr_accessor status_reason: ::String
|
945
|
+
attr_accessor run_start_time: ::Time
|
946
|
+
attr_accessor run_end_time: ::Time
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class TestSuiteLatestVersion
|
951
|
+
attr_accessor version: ::Integer
|
952
|
+
attr_accessor status: ("Creating" | "Updating" | "Active" | "Failed" | "Deleting")
|
953
|
+
attr_accessor status_reason: ::String
|
954
|
+
SENSITIVE: []
|
955
|
+
end
|
956
|
+
|
957
|
+
class TestSuiteSummary
|
958
|
+
attr_accessor test_suite_id: ::String
|
959
|
+
attr_accessor name: ::String
|
960
|
+
attr_accessor status_reason: ::String
|
961
|
+
attr_accessor latest_version: ::Integer
|
962
|
+
attr_accessor test_suite_arn: ::String
|
963
|
+
attr_accessor status: ("Creating" | "Updating" | "Active" | "Failed" | "Deleting")
|
964
|
+
attr_accessor creation_time: ::Time
|
965
|
+
attr_accessor last_update_time: ::Time
|
966
|
+
SENSITIVE: []
|
967
|
+
end
|
968
|
+
|
969
|
+
class ThrottlingException
|
970
|
+
attr_accessor message: ::String
|
971
|
+
attr_accessor service_code: ::String
|
972
|
+
attr_accessor quota_code: ::String
|
973
|
+
attr_accessor retry_after_seconds: ::Integer
|
974
|
+
SENSITIVE: []
|
975
|
+
end
|
976
|
+
|
977
|
+
class UntagResourceRequest
|
978
|
+
attr_accessor resource_arn: ::String
|
979
|
+
attr_accessor tag_keys: ::Array[::String]
|
980
|
+
SENSITIVE: []
|
981
|
+
end
|
982
|
+
|
983
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
984
|
+
end
|
985
|
+
|
986
|
+
class UpdateTestCaseRequest
|
987
|
+
attr_accessor test_case_id: ::String
|
988
|
+
attr_accessor description: ::String
|
989
|
+
attr_accessor steps: ::Array[Types::Step]
|
990
|
+
SENSITIVE: []
|
991
|
+
end
|
992
|
+
|
993
|
+
class UpdateTestCaseResponse
|
994
|
+
attr_accessor test_case_id: ::String
|
995
|
+
attr_accessor test_case_version: ::Integer
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class UpdateTestConfigurationRequest
|
1000
|
+
attr_accessor test_configuration_id: ::String
|
1001
|
+
attr_accessor description: ::String
|
1002
|
+
attr_accessor resources: ::Array[Types::Resource]
|
1003
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
1004
|
+
attr_accessor service_settings: Types::ServiceSettings
|
1005
|
+
SENSITIVE: []
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
class UpdateTestConfigurationResponse
|
1009
|
+
attr_accessor test_configuration_id: ::String
|
1010
|
+
attr_accessor test_configuration_version: ::Integer
|
1011
|
+
SENSITIVE: []
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class UpdateTestSuiteRequest
|
1015
|
+
attr_accessor test_suite_id: ::String
|
1016
|
+
attr_accessor description: ::String
|
1017
|
+
attr_accessor before_steps: ::Array[Types::Step]
|
1018
|
+
attr_accessor after_steps: ::Array[Types::Step]
|
1019
|
+
attr_accessor test_cases: Types::TestCases
|
1020
|
+
SENSITIVE: []
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class UpdateTestSuiteResponse
|
1024
|
+
attr_accessor test_suite_id: ::String
|
1025
|
+
attr_accessor test_suite_version: ::Integer
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class ValidationException
|
1030
|
+
attr_accessor message: ::String
|
1031
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
1032
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1033
|
+
SENSITIVE: []
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
class ValidationExceptionField
|
1037
|
+
attr_accessor name: ::String
|
1038
|
+
attr_accessor message: ::String
|
1039
|
+
SENSITIVE: []
|
1040
|
+
end
|
1041
|
+
end
|
1042
|
+
end
|