aws-sdk-devicefarm 1.63.0 → 1.64.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1106 @@
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 DeviceFarm
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/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
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _CreateDevicePoolResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDevicePoolResult]
78
+ def device_pool: () -> Types::DevicePool
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_device_pool-instance_method
81
+ def create_device_pool: (
82
+ project_arn: ::String,
83
+ name: ::String,
84
+ ?description: ::String,
85
+ rules: Array[
86
+ {
87
+ attribute: ("ARN" | "PLATFORM" | "FORM_FACTOR" | "MANUFACTURER" | "REMOTE_ACCESS_ENABLED" | "REMOTE_DEBUG_ENABLED" | "APPIUM_VERSION" | "INSTANCE_ARN" | "INSTANCE_LABELS" | "FLEET_TYPE" | "OS_VERSION" | "MODEL" | "AVAILABILITY")?,
88
+ operator: ("EQUALS" | "LESS_THAN" | "LESS_THAN_OR_EQUALS" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS" | "IN" | "NOT_IN" | "CONTAINS")?,
89
+ value: ::String?
90
+ },
91
+ ],
92
+ ?max_devices: ::Integer
93
+ ) -> _CreateDevicePoolResponseSuccess
94
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDevicePoolResponseSuccess
95
+
96
+ interface _CreateInstanceProfileResponseSuccess
97
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateInstanceProfileResult]
98
+ def instance_profile: () -> Types::InstanceProfile
99
+ end
100
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_instance_profile-instance_method
101
+ def create_instance_profile: (
102
+ name: ::String,
103
+ ?description: ::String,
104
+ ?package_cleanup: bool,
105
+ ?exclude_app_packages_from_cleanup: Array[::String],
106
+ ?reboot_after_use: bool
107
+ ) -> _CreateInstanceProfileResponseSuccess
108
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstanceProfileResponseSuccess
109
+
110
+ interface _CreateNetworkProfileResponseSuccess
111
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateNetworkProfileResult]
112
+ def network_profile: () -> Types::NetworkProfile
113
+ end
114
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_network_profile-instance_method
115
+ def create_network_profile: (
116
+ project_arn: ::String,
117
+ name: ::String,
118
+ ?description: ::String,
119
+ ?type: ("CURATED" | "PRIVATE"),
120
+ ?uplink_bandwidth_bits: ::Integer,
121
+ ?downlink_bandwidth_bits: ::Integer,
122
+ ?uplink_delay_ms: ::Integer,
123
+ ?downlink_delay_ms: ::Integer,
124
+ ?uplink_jitter_ms: ::Integer,
125
+ ?downlink_jitter_ms: ::Integer,
126
+ ?uplink_loss_percent: ::Integer,
127
+ ?downlink_loss_percent: ::Integer
128
+ ) -> _CreateNetworkProfileResponseSuccess
129
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateNetworkProfileResponseSuccess
130
+
131
+ interface _CreateProjectResponseSuccess
132
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectResult]
133
+ def project: () -> Types::Project
134
+ end
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_project-instance_method
136
+ def create_project: (
137
+ name: ::String,
138
+ ?default_job_timeout_minutes: ::Integer,
139
+ ?vpc_config: {
140
+ security_group_ids: Array[::String],
141
+ subnet_ids: Array[::String],
142
+ vpc_id: ::String
143
+ }
144
+ ) -> _CreateProjectResponseSuccess
145
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
146
+
147
+ interface _CreateRemoteAccessSessionResponseSuccess
148
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRemoteAccessSessionResult]
149
+ def remote_access_session: () -> Types::RemoteAccessSession
150
+ end
151
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_remote_access_session-instance_method
152
+ def create_remote_access_session: (
153
+ project_arn: ::String,
154
+ device_arn: ::String,
155
+ ?instance_arn: ::String,
156
+ ?ssh_public_key: ::String,
157
+ ?remote_debug_enabled: bool,
158
+ ?remote_record_enabled: bool,
159
+ ?remote_record_app_arn: ::String,
160
+ ?name: ::String,
161
+ ?client_id: ::String,
162
+ ?configuration: {
163
+ billing_method: ("METERED" | "UNMETERED")?,
164
+ vpce_configuration_arns: Array[::String]?
165
+ },
166
+ ?interaction_mode: ("INTERACTIVE" | "NO_VIDEO" | "VIDEO_ONLY"),
167
+ ?skip_app_resign: bool
168
+ ) -> _CreateRemoteAccessSessionResponseSuccess
169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRemoteAccessSessionResponseSuccess
170
+
171
+ interface _CreateTestGridProjectResponseSuccess
172
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTestGridProjectResult]
173
+ def test_grid_project: () -> Types::TestGridProject
174
+ end
175
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_test_grid_project-instance_method
176
+ def create_test_grid_project: (
177
+ name: ::String,
178
+ ?description: ::String,
179
+ ?vpc_config: {
180
+ security_group_ids: Array[::String],
181
+ subnet_ids: Array[::String],
182
+ vpc_id: ::String
183
+ }
184
+ ) -> _CreateTestGridProjectResponseSuccess
185
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTestGridProjectResponseSuccess
186
+
187
+ interface _CreateTestGridUrlResponseSuccess
188
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTestGridUrlResult]
189
+ def url: () -> ::String
190
+ def expires: () -> ::Time
191
+ end
192
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_test_grid_url-instance_method
193
+ def create_test_grid_url: (
194
+ project_arn: ::String,
195
+ expires_in_seconds: ::Integer
196
+ ) -> _CreateTestGridUrlResponseSuccess
197
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTestGridUrlResponseSuccess
198
+
199
+ interface _CreateUploadResponseSuccess
200
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateUploadResult]
201
+ def upload: () -> Types::Upload
202
+ end
203
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_upload-instance_method
204
+ def create_upload: (
205
+ project_arn: ::String,
206
+ name: ::String,
207
+ type: ("ANDROID_APP" | "IOS_APP" | "WEB_APP" | "EXTERNAL_DATA" | "APPIUM_JAVA_JUNIT_TEST_PACKAGE" | "APPIUM_JAVA_TESTNG_TEST_PACKAGE" | "APPIUM_PYTHON_TEST_PACKAGE" | "APPIUM_NODE_TEST_PACKAGE" | "APPIUM_RUBY_TEST_PACKAGE" | "APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE" | "APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE" | "APPIUM_WEB_PYTHON_TEST_PACKAGE" | "APPIUM_WEB_NODE_TEST_PACKAGE" | "APPIUM_WEB_RUBY_TEST_PACKAGE" | "CALABASH_TEST_PACKAGE" | "INSTRUMENTATION_TEST_PACKAGE" | "UIAUTOMATION_TEST_PACKAGE" | "UIAUTOMATOR_TEST_PACKAGE" | "XCTEST_TEST_PACKAGE" | "XCTEST_UI_TEST_PACKAGE" | "APPIUM_JAVA_JUNIT_TEST_SPEC" | "APPIUM_JAVA_TESTNG_TEST_SPEC" | "APPIUM_PYTHON_TEST_SPEC" | "APPIUM_NODE_TEST_SPEC" | "APPIUM_RUBY_TEST_SPEC" | "APPIUM_WEB_JAVA_JUNIT_TEST_SPEC" | "APPIUM_WEB_JAVA_TESTNG_TEST_SPEC" | "APPIUM_WEB_PYTHON_TEST_SPEC" | "APPIUM_WEB_NODE_TEST_SPEC" | "APPIUM_WEB_RUBY_TEST_SPEC" | "INSTRUMENTATION_TEST_SPEC" | "XCTEST_UI_TEST_SPEC"),
208
+ ?content_type: ::String
209
+ ) -> _CreateUploadResponseSuccess
210
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUploadResponseSuccess
211
+
212
+ interface _CreateVPCEConfigurationResponseSuccess
213
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVPCEConfigurationResult]
214
+ def vpce_configuration: () -> Types::VPCEConfiguration
215
+ end
216
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#create_vpce_configuration-instance_method
217
+ def create_vpce_configuration: (
218
+ vpce_configuration_name: ::String,
219
+ vpce_service_name: ::String,
220
+ service_dns_name: ::String,
221
+ ?vpce_configuration_description: ::String
222
+ ) -> _CreateVPCEConfigurationResponseSuccess
223
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVPCEConfigurationResponseSuccess
224
+
225
+ interface _DeleteDevicePoolResponseSuccess
226
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDevicePoolResult]
227
+ end
228
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_device_pool-instance_method
229
+ def delete_device_pool: (
230
+ arn: ::String
231
+ ) -> _DeleteDevicePoolResponseSuccess
232
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDevicePoolResponseSuccess
233
+
234
+ interface _DeleteInstanceProfileResponseSuccess
235
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInstanceProfileResult]
236
+ end
237
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_instance_profile-instance_method
238
+ def delete_instance_profile: (
239
+ arn: ::String
240
+ ) -> _DeleteInstanceProfileResponseSuccess
241
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInstanceProfileResponseSuccess
242
+
243
+ interface _DeleteNetworkProfileResponseSuccess
244
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNetworkProfileResult]
245
+ end
246
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_network_profile-instance_method
247
+ def delete_network_profile: (
248
+ arn: ::String
249
+ ) -> _DeleteNetworkProfileResponseSuccess
250
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteNetworkProfileResponseSuccess
251
+
252
+ interface _DeleteProjectResponseSuccess
253
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectResult]
254
+ end
255
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_project-instance_method
256
+ def delete_project: (
257
+ arn: ::String
258
+ ) -> _DeleteProjectResponseSuccess
259
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectResponseSuccess
260
+
261
+ interface _DeleteRemoteAccessSessionResponseSuccess
262
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRemoteAccessSessionResult]
263
+ end
264
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_remote_access_session-instance_method
265
+ def delete_remote_access_session: (
266
+ arn: ::String
267
+ ) -> _DeleteRemoteAccessSessionResponseSuccess
268
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRemoteAccessSessionResponseSuccess
269
+
270
+ interface _DeleteRunResponseSuccess
271
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRunResult]
272
+ end
273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_run-instance_method
274
+ def delete_run: (
275
+ arn: ::String
276
+ ) -> _DeleteRunResponseSuccess
277
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRunResponseSuccess
278
+
279
+ interface _DeleteTestGridProjectResponseSuccess
280
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTestGridProjectResult]
281
+ end
282
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_test_grid_project-instance_method
283
+ def delete_test_grid_project: (
284
+ project_arn: ::String
285
+ ) -> _DeleteTestGridProjectResponseSuccess
286
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTestGridProjectResponseSuccess
287
+
288
+ interface _DeleteUploadResponseSuccess
289
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUploadResult]
290
+ end
291
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_upload-instance_method
292
+ def delete_upload: (
293
+ arn: ::String
294
+ ) -> _DeleteUploadResponseSuccess
295
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteUploadResponseSuccess
296
+
297
+ interface _DeleteVPCEConfigurationResponseSuccess
298
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVPCEConfigurationResult]
299
+ end
300
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#delete_vpce_configuration-instance_method
301
+ def delete_vpce_configuration: (
302
+ arn: ::String
303
+ ) -> _DeleteVPCEConfigurationResponseSuccess
304
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVPCEConfigurationResponseSuccess
305
+
306
+ interface _GetAccountSettingsResponseSuccess
307
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountSettingsResult]
308
+ def account_settings: () -> Types::AccountSettings
309
+ end
310
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_account_settings-instance_method
311
+ def get_account_settings: (
312
+ ) -> _GetAccountSettingsResponseSuccess
313
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountSettingsResponseSuccess
314
+
315
+ interface _GetDeviceResponseSuccess
316
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDeviceResult]
317
+ def device: () -> Types::Device
318
+ end
319
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_device-instance_method
320
+ def get_device: (
321
+ arn: ::String
322
+ ) -> _GetDeviceResponseSuccess
323
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeviceResponseSuccess
324
+
325
+ interface _GetDeviceInstanceResponseSuccess
326
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDeviceInstanceResult]
327
+ def device_instance: () -> Types::DeviceInstance
328
+ end
329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_device_instance-instance_method
330
+ def get_device_instance: (
331
+ arn: ::String
332
+ ) -> _GetDeviceInstanceResponseSuccess
333
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeviceInstanceResponseSuccess
334
+
335
+ interface _GetDevicePoolResponseSuccess
336
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDevicePoolResult]
337
+ def device_pool: () -> Types::DevicePool
338
+ end
339
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_device_pool-instance_method
340
+ def get_device_pool: (
341
+ arn: ::String
342
+ ) -> _GetDevicePoolResponseSuccess
343
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDevicePoolResponseSuccess
344
+
345
+ interface _GetDevicePoolCompatibilityResponseSuccess
346
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDevicePoolCompatibilityResult]
347
+ def compatible_devices: () -> ::Array[Types::DevicePoolCompatibilityResult]
348
+ def incompatible_devices: () -> ::Array[Types::DevicePoolCompatibilityResult]
349
+ end
350
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_device_pool_compatibility-instance_method
351
+ def get_device_pool_compatibility: (
352
+ device_pool_arn: ::String,
353
+ ?app_arn: ::String,
354
+ ?test_type: ("BUILTIN_FUZZ" | "BUILTIN_EXPLORER" | "WEB_PERFORMANCE_PROFILE" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "CALABASH" | "INSTRUMENTATION" | "UIAUTOMATION" | "UIAUTOMATOR" | "XCTEST" | "XCTEST_UI" | "REMOTE_ACCESS_RECORD" | "REMOTE_ACCESS_REPLAY"),
355
+ ?test: {
356
+ type: ("BUILTIN_FUZZ" | "BUILTIN_EXPLORER" | "WEB_PERFORMANCE_PROFILE" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "CALABASH" | "INSTRUMENTATION" | "UIAUTOMATION" | "UIAUTOMATOR" | "XCTEST" | "XCTEST_UI" | "REMOTE_ACCESS_RECORD" | "REMOTE_ACCESS_REPLAY"),
357
+ test_package_arn: ::String?,
358
+ test_spec_arn: ::String?,
359
+ filter: ::String?,
360
+ parameters: Hash[::String, ::String]?
361
+ },
362
+ ?configuration: {
363
+ extra_data_package_arn: ::String?,
364
+ network_profile_arn: ::String?,
365
+ locale: ::String?,
366
+ location: {
367
+ latitude: ::Float,
368
+ longitude: ::Float
369
+ }?,
370
+ vpce_configuration_arns: Array[::String]?,
371
+ customer_artifact_paths: {
372
+ ios_paths: Array[::String]?,
373
+ android_paths: Array[::String]?,
374
+ device_host_paths: Array[::String]?
375
+ }?,
376
+ radios: {
377
+ wifi: bool?,
378
+ bluetooth: bool?,
379
+ nfc: bool?,
380
+ gps: bool?
381
+ }?,
382
+ auxiliary_apps: Array[::String]?,
383
+ billing_method: ("METERED" | "UNMETERED")?
384
+ }
385
+ ) -> _GetDevicePoolCompatibilityResponseSuccess
386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDevicePoolCompatibilityResponseSuccess
387
+
388
+ interface _GetInstanceProfileResponseSuccess
389
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetInstanceProfileResult]
390
+ def instance_profile: () -> Types::InstanceProfile
391
+ end
392
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_instance_profile-instance_method
393
+ def get_instance_profile: (
394
+ arn: ::String
395
+ ) -> _GetInstanceProfileResponseSuccess
396
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstanceProfileResponseSuccess
397
+
398
+ interface _GetJobResponseSuccess
399
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetJobResult]
400
+ def job: () -> Types::Job
401
+ end
402
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_job-instance_method
403
+ def get_job: (
404
+ arn: ::String
405
+ ) -> _GetJobResponseSuccess
406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetJobResponseSuccess
407
+
408
+ interface _GetNetworkProfileResponseSuccess
409
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkProfileResult]
410
+ def network_profile: () -> Types::NetworkProfile
411
+ end
412
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_network_profile-instance_method
413
+ def get_network_profile: (
414
+ arn: ::String
415
+ ) -> _GetNetworkProfileResponseSuccess
416
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkProfileResponseSuccess
417
+
418
+ interface _GetOfferingStatusResponseSuccess
419
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOfferingStatusResult]
420
+ def current: () -> ::Hash[::String, Types::OfferingStatus]
421
+ def next_period: () -> ::Hash[::String, Types::OfferingStatus]
422
+ def next_token: () -> ::String
423
+ end
424
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_offering_status-instance_method
425
+ def get_offering_status: (
426
+ ?next_token: ::String
427
+ ) -> _GetOfferingStatusResponseSuccess
428
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOfferingStatusResponseSuccess
429
+
430
+ interface _GetProjectResponseSuccess
431
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectResult]
432
+ def project: () -> Types::Project
433
+ end
434
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_project-instance_method
435
+ def get_project: (
436
+ arn: ::String
437
+ ) -> _GetProjectResponseSuccess
438
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProjectResponseSuccess
439
+
440
+ interface _GetRemoteAccessSessionResponseSuccess
441
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRemoteAccessSessionResult]
442
+ def remote_access_session: () -> Types::RemoteAccessSession
443
+ end
444
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_remote_access_session-instance_method
445
+ def get_remote_access_session: (
446
+ arn: ::String
447
+ ) -> _GetRemoteAccessSessionResponseSuccess
448
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRemoteAccessSessionResponseSuccess
449
+
450
+ interface _GetRunResponseSuccess
451
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRunResult]
452
+ def run: () -> Types::Run
453
+ end
454
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_run-instance_method
455
+ def get_run: (
456
+ arn: ::String
457
+ ) -> _GetRunResponseSuccess
458
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunResponseSuccess
459
+
460
+ interface _GetSuiteResponseSuccess
461
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSuiteResult]
462
+ def suite: () -> Types::Suite
463
+ end
464
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_suite-instance_method
465
+ def get_suite: (
466
+ arn: ::String
467
+ ) -> _GetSuiteResponseSuccess
468
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSuiteResponseSuccess
469
+
470
+ interface _GetTestResponseSuccess
471
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTestResult]
472
+ def test: () -> Types::Test
473
+ end
474
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_test-instance_method
475
+ def get_test: (
476
+ arn: ::String
477
+ ) -> _GetTestResponseSuccess
478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTestResponseSuccess
479
+
480
+ interface _GetTestGridProjectResponseSuccess
481
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTestGridProjectResult]
482
+ def test_grid_project: () -> Types::TestGridProject
483
+ end
484
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_test_grid_project-instance_method
485
+ def get_test_grid_project: (
486
+ project_arn: ::String
487
+ ) -> _GetTestGridProjectResponseSuccess
488
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTestGridProjectResponseSuccess
489
+
490
+ interface _GetTestGridSessionResponseSuccess
491
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTestGridSessionResult]
492
+ def test_grid_session: () -> Types::TestGridSession
493
+ end
494
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_test_grid_session-instance_method
495
+ def get_test_grid_session: (
496
+ ?project_arn: ::String,
497
+ ?session_id: ::String,
498
+ ?session_arn: ::String
499
+ ) -> _GetTestGridSessionResponseSuccess
500
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTestGridSessionResponseSuccess
501
+
502
+ interface _GetUploadResponseSuccess
503
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetUploadResult]
504
+ def upload: () -> Types::Upload
505
+ end
506
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_upload-instance_method
507
+ def get_upload: (
508
+ arn: ::String
509
+ ) -> _GetUploadResponseSuccess
510
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUploadResponseSuccess
511
+
512
+ interface _GetVPCEConfigurationResponseSuccess
513
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVPCEConfigurationResult]
514
+ def vpce_configuration: () -> Types::VPCEConfiguration
515
+ end
516
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#get_vpce_configuration-instance_method
517
+ def get_vpce_configuration: (
518
+ arn: ::String
519
+ ) -> _GetVPCEConfigurationResponseSuccess
520
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVPCEConfigurationResponseSuccess
521
+
522
+ interface _InstallToRemoteAccessSessionResponseSuccess
523
+ include ::Seahorse::Client::_ResponseSuccess[Types::InstallToRemoteAccessSessionResult]
524
+ def app_upload: () -> Types::Upload
525
+ end
526
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#install_to_remote_access_session-instance_method
527
+ def install_to_remote_access_session: (
528
+ remote_access_session_arn: ::String,
529
+ app_arn: ::String
530
+ ) -> _InstallToRemoteAccessSessionResponseSuccess
531
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InstallToRemoteAccessSessionResponseSuccess
532
+
533
+ interface _ListArtifactsResponseSuccess
534
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListArtifactsResult]
535
+ def artifacts: () -> ::Array[Types::Artifact]
536
+ def next_token: () -> ::String
537
+ end
538
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_artifacts-instance_method
539
+ def list_artifacts: (
540
+ arn: ::String,
541
+ type: ("SCREENSHOT" | "FILE" | "LOG"),
542
+ ?next_token: ::String
543
+ ) -> _ListArtifactsResponseSuccess
544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListArtifactsResponseSuccess
545
+
546
+ interface _ListDeviceInstancesResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDeviceInstancesResult]
548
+ def device_instances: () -> ::Array[Types::DeviceInstance]
549
+ def next_token: () -> ::String
550
+ end
551
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_device_instances-instance_method
552
+ def list_device_instances: (
553
+ ?max_results: ::Integer,
554
+ ?next_token: ::String
555
+ ) -> _ListDeviceInstancesResponseSuccess
556
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeviceInstancesResponseSuccess
557
+
558
+ interface _ListDevicePoolsResponseSuccess
559
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDevicePoolsResult]
560
+ def device_pools: () -> ::Array[Types::DevicePool]
561
+ def next_token: () -> ::String
562
+ end
563
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_device_pools-instance_method
564
+ def list_device_pools: (
565
+ arn: ::String,
566
+ ?type: ("CURATED" | "PRIVATE"),
567
+ ?next_token: ::String
568
+ ) -> _ListDevicePoolsResponseSuccess
569
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevicePoolsResponseSuccess
570
+
571
+ interface _ListDevicesResponseSuccess
572
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDevicesResult]
573
+ def devices: () -> ::Array[Types::Device]
574
+ def next_token: () -> ::String
575
+ end
576
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_devices-instance_method
577
+ def list_devices: (
578
+ ?arn: ::String,
579
+ ?next_token: ::String,
580
+ ?filters: Array[
581
+ {
582
+ attribute: ("ARN" | "PLATFORM" | "OS_VERSION" | "MODEL" | "AVAILABILITY" | "FORM_FACTOR" | "MANUFACTURER" | "REMOTE_ACCESS_ENABLED" | "REMOTE_DEBUG_ENABLED" | "INSTANCE_ARN" | "INSTANCE_LABELS" | "FLEET_TYPE"),
583
+ operator: ("EQUALS" | "LESS_THAN" | "LESS_THAN_OR_EQUALS" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS" | "IN" | "NOT_IN" | "CONTAINS"),
584
+ values: Array[::String]
585
+ },
586
+ ]
587
+ ) -> _ListDevicesResponseSuccess
588
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevicesResponseSuccess
589
+
590
+ interface _ListInstanceProfilesResponseSuccess
591
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInstanceProfilesResult]
592
+ def instance_profiles: () -> ::Array[Types::InstanceProfile]
593
+ def next_token: () -> ::String
594
+ end
595
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_instance_profiles-instance_method
596
+ def list_instance_profiles: (
597
+ ?max_results: ::Integer,
598
+ ?next_token: ::String
599
+ ) -> _ListInstanceProfilesResponseSuccess
600
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInstanceProfilesResponseSuccess
601
+
602
+ interface _ListJobsResponseSuccess
603
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsResult]
604
+ def jobs: () -> ::Array[Types::Job]
605
+ def next_token: () -> ::String
606
+ end
607
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_jobs-instance_method
608
+ def list_jobs: (
609
+ arn: ::String,
610
+ ?next_token: ::String
611
+ ) -> _ListJobsResponseSuccess
612
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsResponseSuccess
613
+
614
+ interface _ListNetworkProfilesResponseSuccess
615
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListNetworkProfilesResult]
616
+ def network_profiles: () -> ::Array[Types::NetworkProfile]
617
+ def next_token: () -> ::String
618
+ end
619
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_network_profiles-instance_method
620
+ def list_network_profiles: (
621
+ arn: ::String,
622
+ ?type: ("CURATED" | "PRIVATE"),
623
+ ?next_token: ::String
624
+ ) -> _ListNetworkProfilesResponseSuccess
625
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNetworkProfilesResponseSuccess
626
+
627
+ interface _ListOfferingPromotionsResponseSuccess
628
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOfferingPromotionsResult]
629
+ def offering_promotions: () -> ::Array[Types::OfferingPromotion]
630
+ def next_token: () -> ::String
631
+ end
632
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_offering_promotions-instance_method
633
+ def list_offering_promotions: (
634
+ ?next_token: ::String
635
+ ) -> _ListOfferingPromotionsResponseSuccess
636
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOfferingPromotionsResponseSuccess
637
+
638
+ interface _ListOfferingTransactionsResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOfferingTransactionsResult]
640
+ def offering_transactions: () -> ::Array[Types::OfferingTransaction]
641
+ def next_token: () -> ::String
642
+ end
643
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_offering_transactions-instance_method
644
+ def list_offering_transactions: (
645
+ ?next_token: ::String
646
+ ) -> _ListOfferingTransactionsResponseSuccess
647
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOfferingTransactionsResponseSuccess
648
+
649
+ interface _ListOfferingsResponseSuccess
650
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOfferingsResult]
651
+ def offerings: () -> ::Array[Types::Offering]
652
+ def next_token: () -> ::String
653
+ end
654
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_offerings-instance_method
655
+ def list_offerings: (
656
+ ?next_token: ::String
657
+ ) -> _ListOfferingsResponseSuccess
658
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOfferingsResponseSuccess
659
+
660
+ interface _ListProjectsResponseSuccess
661
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsResult]
662
+ def projects: () -> ::Array[Types::Project]
663
+ def next_token: () -> ::String
664
+ end
665
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_projects-instance_method
666
+ def list_projects: (
667
+ ?arn: ::String,
668
+ ?next_token: ::String
669
+ ) -> _ListProjectsResponseSuccess
670
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess
671
+
672
+ interface _ListRemoteAccessSessionsResponseSuccess
673
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRemoteAccessSessionsResult]
674
+ def remote_access_sessions: () -> ::Array[Types::RemoteAccessSession]
675
+ def next_token: () -> ::String
676
+ end
677
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_remote_access_sessions-instance_method
678
+ def list_remote_access_sessions: (
679
+ arn: ::String,
680
+ ?next_token: ::String
681
+ ) -> _ListRemoteAccessSessionsResponseSuccess
682
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRemoteAccessSessionsResponseSuccess
683
+
684
+ interface _ListRunsResponseSuccess
685
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunsResult]
686
+ def runs: () -> ::Array[Types::Run]
687
+ def next_token: () -> ::String
688
+ end
689
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_runs-instance_method
690
+ def list_runs: (
691
+ arn: ::String,
692
+ ?next_token: ::String
693
+ ) -> _ListRunsResponseSuccess
694
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunsResponseSuccess
695
+
696
+ interface _ListSamplesResponseSuccess
697
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSamplesResult]
698
+ def samples: () -> ::Array[Types::Sample]
699
+ def next_token: () -> ::String
700
+ end
701
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_samples-instance_method
702
+ def list_samples: (
703
+ arn: ::String,
704
+ ?next_token: ::String
705
+ ) -> _ListSamplesResponseSuccess
706
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSamplesResponseSuccess
707
+
708
+ interface _ListSuitesResponseSuccess
709
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSuitesResult]
710
+ def suites: () -> ::Array[Types::Suite]
711
+ def next_token: () -> ::String
712
+ end
713
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_suites-instance_method
714
+ def list_suites: (
715
+ arn: ::String,
716
+ ?next_token: ::String
717
+ ) -> _ListSuitesResponseSuccess
718
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSuitesResponseSuccess
719
+
720
+ interface _ListTagsForResourceResponseSuccess
721
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
722
+ def tags: () -> ::Array[Types::Tag]
723
+ end
724
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_tags_for_resource-instance_method
725
+ def list_tags_for_resource: (
726
+ resource_arn: ::String
727
+ ) -> _ListTagsForResourceResponseSuccess
728
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
729
+
730
+ interface _ListTestGridProjectsResponseSuccess
731
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestGridProjectsResult]
732
+ def test_grid_projects: () -> ::Array[Types::TestGridProject]
733
+ def next_token: () -> ::String
734
+ end
735
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_test_grid_projects-instance_method
736
+ def list_test_grid_projects: (
737
+ ?max_result: ::Integer,
738
+ ?next_token: ::String
739
+ ) -> _ListTestGridProjectsResponseSuccess
740
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestGridProjectsResponseSuccess
741
+
742
+ interface _ListTestGridSessionActionsResponseSuccess
743
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestGridSessionActionsResult]
744
+ def actions: () -> ::Array[Types::TestGridSessionAction]
745
+ def next_token: () -> ::String
746
+ end
747
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_test_grid_session_actions-instance_method
748
+ def list_test_grid_session_actions: (
749
+ session_arn: ::String,
750
+ ?max_result: ::Integer,
751
+ ?next_token: ::String
752
+ ) -> _ListTestGridSessionActionsResponseSuccess
753
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestGridSessionActionsResponseSuccess
754
+
755
+ interface _ListTestGridSessionArtifactsResponseSuccess
756
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestGridSessionArtifactsResult]
757
+ def artifacts: () -> ::Array[Types::TestGridSessionArtifact]
758
+ def next_token: () -> ::String
759
+ end
760
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_test_grid_session_artifacts-instance_method
761
+ def list_test_grid_session_artifacts: (
762
+ session_arn: ::String,
763
+ ?type: ("VIDEO" | "LOG"),
764
+ ?max_result: ::Integer,
765
+ ?next_token: ::String
766
+ ) -> _ListTestGridSessionArtifactsResponseSuccess
767
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestGridSessionArtifactsResponseSuccess
768
+
769
+ interface _ListTestGridSessionsResponseSuccess
770
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestGridSessionsResult]
771
+ def test_grid_sessions: () -> ::Array[Types::TestGridSession]
772
+ def next_token: () -> ::String
773
+ end
774
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_test_grid_sessions-instance_method
775
+ def list_test_grid_sessions: (
776
+ project_arn: ::String,
777
+ ?status: ("ACTIVE" | "CLOSED" | "ERRORED"),
778
+ ?creation_time_after: ::Time,
779
+ ?creation_time_before: ::Time,
780
+ ?end_time_after: ::Time,
781
+ ?end_time_before: ::Time,
782
+ ?max_result: ::Integer,
783
+ ?next_token: ::String
784
+ ) -> _ListTestGridSessionsResponseSuccess
785
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestGridSessionsResponseSuccess
786
+
787
+ interface _ListTestsResponseSuccess
788
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestsResult]
789
+ def tests: () -> ::Array[Types::Test]
790
+ def next_token: () -> ::String
791
+ end
792
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_tests-instance_method
793
+ def list_tests: (
794
+ arn: ::String,
795
+ ?next_token: ::String
796
+ ) -> _ListTestsResponseSuccess
797
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestsResponseSuccess
798
+
799
+ interface _ListUniqueProblemsResponseSuccess
800
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListUniqueProblemsResult]
801
+ def unique_problems: () -> ::Hash[("PENDING" | "PASSED" | "WARNED" | "FAILED" | "SKIPPED" | "ERRORED" | "STOPPED"), ::Array[Types::UniqueProblem]]
802
+ def next_token: () -> ::String
803
+ end
804
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_unique_problems-instance_method
805
+ def list_unique_problems: (
806
+ arn: ::String,
807
+ ?next_token: ::String
808
+ ) -> _ListUniqueProblemsResponseSuccess
809
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUniqueProblemsResponseSuccess
810
+
811
+ interface _ListUploadsResponseSuccess
812
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListUploadsResult]
813
+ def uploads: () -> ::Array[Types::Upload]
814
+ def next_token: () -> ::String
815
+ end
816
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_uploads-instance_method
817
+ def list_uploads: (
818
+ arn: ::String,
819
+ ?type: ("ANDROID_APP" | "IOS_APP" | "WEB_APP" | "EXTERNAL_DATA" | "APPIUM_JAVA_JUNIT_TEST_PACKAGE" | "APPIUM_JAVA_TESTNG_TEST_PACKAGE" | "APPIUM_PYTHON_TEST_PACKAGE" | "APPIUM_NODE_TEST_PACKAGE" | "APPIUM_RUBY_TEST_PACKAGE" | "APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE" | "APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE" | "APPIUM_WEB_PYTHON_TEST_PACKAGE" | "APPIUM_WEB_NODE_TEST_PACKAGE" | "APPIUM_WEB_RUBY_TEST_PACKAGE" | "CALABASH_TEST_PACKAGE" | "INSTRUMENTATION_TEST_PACKAGE" | "UIAUTOMATION_TEST_PACKAGE" | "UIAUTOMATOR_TEST_PACKAGE" | "XCTEST_TEST_PACKAGE" | "XCTEST_UI_TEST_PACKAGE" | "APPIUM_JAVA_JUNIT_TEST_SPEC" | "APPIUM_JAVA_TESTNG_TEST_SPEC" | "APPIUM_PYTHON_TEST_SPEC" | "APPIUM_NODE_TEST_SPEC" | "APPIUM_RUBY_TEST_SPEC" | "APPIUM_WEB_JAVA_JUNIT_TEST_SPEC" | "APPIUM_WEB_JAVA_TESTNG_TEST_SPEC" | "APPIUM_WEB_PYTHON_TEST_SPEC" | "APPIUM_WEB_NODE_TEST_SPEC" | "APPIUM_WEB_RUBY_TEST_SPEC" | "INSTRUMENTATION_TEST_SPEC" | "XCTEST_UI_TEST_SPEC"),
820
+ ?next_token: ::String
821
+ ) -> _ListUploadsResponseSuccess
822
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUploadsResponseSuccess
823
+
824
+ interface _ListVPCEConfigurationsResponseSuccess
825
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVPCEConfigurationsResult]
826
+ def vpce_configurations: () -> ::Array[Types::VPCEConfiguration]
827
+ def next_token: () -> ::String
828
+ end
829
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#list_vpce_configurations-instance_method
830
+ def list_vpce_configurations: (
831
+ ?max_results: ::Integer,
832
+ ?next_token: ::String
833
+ ) -> _ListVPCEConfigurationsResponseSuccess
834
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVPCEConfigurationsResponseSuccess
835
+
836
+ interface _PurchaseOfferingResponseSuccess
837
+ include ::Seahorse::Client::_ResponseSuccess[Types::PurchaseOfferingResult]
838
+ def offering_transaction: () -> Types::OfferingTransaction
839
+ end
840
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#purchase_offering-instance_method
841
+ def purchase_offering: (
842
+ offering_id: ::String,
843
+ quantity: ::Integer,
844
+ ?offering_promotion_id: ::String
845
+ ) -> _PurchaseOfferingResponseSuccess
846
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PurchaseOfferingResponseSuccess
847
+
848
+ interface _RenewOfferingResponseSuccess
849
+ include ::Seahorse::Client::_ResponseSuccess[Types::RenewOfferingResult]
850
+ def offering_transaction: () -> Types::OfferingTransaction
851
+ end
852
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#renew_offering-instance_method
853
+ def renew_offering: (
854
+ offering_id: ::String,
855
+ quantity: ::Integer
856
+ ) -> _RenewOfferingResponseSuccess
857
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RenewOfferingResponseSuccess
858
+
859
+ interface _ScheduleRunResponseSuccess
860
+ include ::Seahorse::Client::_ResponseSuccess[Types::ScheduleRunResult]
861
+ def run: () -> Types::Run
862
+ end
863
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#schedule_run-instance_method
864
+ def schedule_run: (
865
+ project_arn: ::String,
866
+ ?app_arn: ::String,
867
+ ?device_pool_arn: ::String,
868
+ ?device_selection_configuration: {
869
+ filters: Array[
870
+ {
871
+ attribute: ("ARN" | "PLATFORM" | "OS_VERSION" | "MODEL" | "AVAILABILITY" | "FORM_FACTOR" | "MANUFACTURER" | "REMOTE_ACCESS_ENABLED" | "REMOTE_DEBUG_ENABLED" | "INSTANCE_ARN" | "INSTANCE_LABELS" | "FLEET_TYPE"),
872
+ operator: ("EQUALS" | "LESS_THAN" | "LESS_THAN_OR_EQUALS" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS" | "IN" | "NOT_IN" | "CONTAINS"),
873
+ values: Array[::String]
874
+ },
875
+ ],
876
+ max_devices: ::Integer
877
+ },
878
+ ?name: ::String,
879
+ test: {
880
+ type: ("BUILTIN_FUZZ" | "BUILTIN_EXPLORER" | "WEB_PERFORMANCE_PROFILE" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "CALABASH" | "INSTRUMENTATION" | "UIAUTOMATION" | "UIAUTOMATOR" | "XCTEST" | "XCTEST_UI" | "REMOTE_ACCESS_RECORD" | "REMOTE_ACCESS_REPLAY"),
881
+ test_package_arn: ::String?,
882
+ test_spec_arn: ::String?,
883
+ filter: ::String?,
884
+ parameters: Hash[::String, ::String]?
885
+ },
886
+ ?configuration: {
887
+ extra_data_package_arn: ::String?,
888
+ network_profile_arn: ::String?,
889
+ locale: ::String?,
890
+ location: {
891
+ latitude: ::Float,
892
+ longitude: ::Float
893
+ }?,
894
+ vpce_configuration_arns: Array[::String]?,
895
+ customer_artifact_paths: {
896
+ ios_paths: Array[::String]?,
897
+ android_paths: Array[::String]?,
898
+ device_host_paths: Array[::String]?
899
+ }?,
900
+ radios: {
901
+ wifi: bool?,
902
+ bluetooth: bool?,
903
+ nfc: bool?,
904
+ gps: bool?
905
+ }?,
906
+ auxiliary_apps: Array[::String]?,
907
+ billing_method: ("METERED" | "UNMETERED")?
908
+ },
909
+ ?execution_configuration: {
910
+ job_timeout_minutes: ::Integer?,
911
+ accounts_cleanup: bool?,
912
+ app_packages_cleanup: bool?,
913
+ video_capture: bool?,
914
+ skip_app_resign: bool?
915
+ }
916
+ ) -> _ScheduleRunResponseSuccess
917
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ScheduleRunResponseSuccess
918
+
919
+ interface _StopJobResponseSuccess
920
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopJobResult]
921
+ def job: () -> Types::Job
922
+ end
923
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#stop_job-instance_method
924
+ def stop_job: (
925
+ arn: ::String
926
+ ) -> _StopJobResponseSuccess
927
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopJobResponseSuccess
928
+
929
+ interface _StopRemoteAccessSessionResponseSuccess
930
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopRemoteAccessSessionResult]
931
+ def remote_access_session: () -> Types::RemoteAccessSession
932
+ end
933
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#stop_remote_access_session-instance_method
934
+ def stop_remote_access_session: (
935
+ arn: ::String
936
+ ) -> _StopRemoteAccessSessionResponseSuccess
937
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopRemoteAccessSessionResponseSuccess
938
+
939
+ interface _StopRunResponseSuccess
940
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopRunResult]
941
+ def run: () -> Types::Run
942
+ end
943
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#stop_run-instance_method
944
+ def stop_run: (
945
+ arn: ::String
946
+ ) -> _StopRunResponseSuccess
947
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopRunResponseSuccess
948
+
949
+ interface _TagResourceResponseSuccess
950
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
951
+ end
952
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#tag_resource-instance_method
953
+ def tag_resource: (
954
+ resource_arn: ::String,
955
+ tags: Array[
956
+ {
957
+ key: ::String,
958
+ value: ::String
959
+ },
960
+ ]
961
+ ) -> _TagResourceResponseSuccess
962
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
963
+
964
+ interface _UntagResourceResponseSuccess
965
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
966
+ end
967
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#untag_resource-instance_method
968
+ def untag_resource: (
969
+ resource_arn: ::String,
970
+ tag_keys: Array[::String]
971
+ ) -> _UntagResourceResponseSuccess
972
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
973
+
974
+ interface _UpdateDeviceInstanceResponseSuccess
975
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDeviceInstanceResult]
976
+ def device_instance: () -> Types::DeviceInstance
977
+ end
978
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#update_device_instance-instance_method
979
+ def update_device_instance: (
980
+ arn: ::String,
981
+ ?profile_arn: ::String,
982
+ ?labels: Array[::String]
983
+ ) -> _UpdateDeviceInstanceResponseSuccess
984
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDeviceInstanceResponseSuccess
985
+
986
+ interface _UpdateDevicePoolResponseSuccess
987
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDevicePoolResult]
988
+ def device_pool: () -> Types::DevicePool
989
+ end
990
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#update_device_pool-instance_method
991
+ def update_device_pool: (
992
+ arn: ::String,
993
+ ?name: ::String,
994
+ ?description: ::String,
995
+ ?rules: Array[
996
+ {
997
+ attribute: ("ARN" | "PLATFORM" | "FORM_FACTOR" | "MANUFACTURER" | "REMOTE_ACCESS_ENABLED" | "REMOTE_DEBUG_ENABLED" | "APPIUM_VERSION" | "INSTANCE_ARN" | "INSTANCE_LABELS" | "FLEET_TYPE" | "OS_VERSION" | "MODEL" | "AVAILABILITY")?,
998
+ operator: ("EQUALS" | "LESS_THAN" | "LESS_THAN_OR_EQUALS" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS" | "IN" | "NOT_IN" | "CONTAINS")?,
999
+ value: ::String?
1000
+ },
1001
+ ],
1002
+ ?max_devices: ::Integer,
1003
+ ?clear_max_devices: bool
1004
+ ) -> _UpdateDevicePoolResponseSuccess
1005
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDevicePoolResponseSuccess
1006
+
1007
+ interface _UpdateInstanceProfileResponseSuccess
1008
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateInstanceProfileResult]
1009
+ def instance_profile: () -> Types::InstanceProfile
1010
+ end
1011
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#update_instance_profile-instance_method
1012
+ def update_instance_profile: (
1013
+ arn: ::String,
1014
+ ?name: ::String,
1015
+ ?description: ::String,
1016
+ ?package_cleanup: bool,
1017
+ ?exclude_app_packages_from_cleanup: Array[::String],
1018
+ ?reboot_after_use: bool
1019
+ ) -> _UpdateInstanceProfileResponseSuccess
1020
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInstanceProfileResponseSuccess
1021
+
1022
+ interface _UpdateNetworkProfileResponseSuccess
1023
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNetworkProfileResult]
1024
+ def network_profile: () -> Types::NetworkProfile
1025
+ end
1026
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#update_network_profile-instance_method
1027
+ def update_network_profile: (
1028
+ arn: ::String,
1029
+ ?name: ::String,
1030
+ ?description: ::String,
1031
+ ?type: ("CURATED" | "PRIVATE"),
1032
+ ?uplink_bandwidth_bits: ::Integer,
1033
+ ?downlink_bandwidth_bits: ::Integer,
1034
+ ?uplink_delay_ms: ::Integer,
1035
+ ?downlink_delay_ms: ::Integer,
1036
+ ?uplink_jitter_ms: ::Integer,
1037
+ ?downlink_jitter_ms: ::Integer,
1038
+ ?uplink_loss_percent: ::Integer,
1039
+ ?downlink_loss_percent: ::Integer
1040
+ ) -> _UpdateNetworkProfileResponseSuccess
1041
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNetworkProfileResponseSuccess
1042
+
1043
+ interface _UpdateProjectResponseSuccess
1044
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectResult]
1045
+ def project: () -> Types::Project
1046
+ end
1047
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#update_project-instance_method
1048
+ def update_project: (
1049
+ arn: ::String,
1050
+ ?name: ::String,
1051
+ ?default_job_timeout_minutes: ::Integer,
1052
+ ?vpc_config: {
1053
+ security_group_ids: Array[::String],
1054
+ subnet_ids: Array[::String],
1055
+ vpc_id: ::String
1056
+ }
1057
+ ) -> _UpdateProjectResponseSuccess
1058
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
1059
+
1060
+ interface _UpdateTestGridProjectResponseSuccess
1061
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTestGridProjectResult]
1062
+ def test_grid_project: () -> Types::TestGridProject
1063
+ end
1064
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#update_test_grid_project-instance_method
1065
+ def update_test_grid_project: (
1066
+ project_arn: ::String,
1067
+ ?name: ::String,
1068
+ ?description: ::String,
1069
+ ?vpc_config: {
1070
+ security_group_ids: Array[::String],
1071
+ subnet_ids: Array[::String],
1072
+ vpc_id: ::String
1073
+ }
1074
+ ) -> _UpdateTestGridProjectResponseSuccess
1075
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTestGridProjectResponseSuccess
1076
+
1077
+ interface _UpdateUploadResponseSuccess
1078
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUploadResult]
1079
+ def upload: () -> Types::Upload
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#update_upload-instance_method
1082
+ def update_upload: (
1083
+ arn: ::String,
1084
+ ?name: ::String,
1085
+ ?content_type: ::String,
1086
+ ?edit_content: bool
1087
+ ) -> _UpdateUploadResponseSuccess
1088
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUploadResponseSuccess
1089
+
1090
+ interface _UpdateVPCEConfigurationResponseSuccess
1091
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVPCEConfigurationResult]
1092
+ def vpce_configuration: () -> Types::VPCEConfiguration
1093
+ end
1094
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DeviceFarm/Client.html#update_vpce_configuration-instance_method
1095
+ def update_vpce_configuration: (
1096
+ arn: ::String,
1097
+ ?vpce_configuration_name: ::String,
1098
+ ?vpce_service_name: ::String,
1099
+ ?service_dns_name: ::String,
1100
+ ?vpce_configuration_description: ::String
1101
+ ) -> _UpdateVPCEConfigurationResponseSuccess
1102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVPCEConfigurationResponseSuccess
1103
+ end
1104
+ end
1105
+ end
1106
+