aws-sdk-devicefarm 1.2.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a391c6d03e73954b2700228c39ddbc27c4f2a8cb
4
- data.tar.gz: 41a251a5b60fafd20fc9eeeeca25f4b24e72541a
3
+ metadata.gz: abfec090c911d38b9df883d3759ddd67ddcc6426
4
+ data.tar.gz: c613922ec73601c144a6a7980e79b198702e8d33
5
5
  SHA512:
6
- metadata.gz: aafd91548315d597f915b6332f339fb3cd9a3dbd20e411eaf5153acd2c0831a37edbb9a5f4b99e674fbe536b1ce58c75de98c089f19ace074095565f32e76945
7
- data.tar.gz: fda8bf510569bfd187472034ab02a005625bd67dce0f91dcfdb82bd5ca0d183132ca42547cd3a3b5dcee464ab61471fe527a421869fd67df6d1cc2da2c3850a1
6
+ metadata.gz: 879e2d572eedc950b5ae357ec0f1031714eb0457f9609b8473e4d8c6a3e59e44f536d5ecbf36107b000b470e0607f8be2f08eace3f47a81b7c08aaa4538a832b
7
+ data.tar.gz: 640dfdf2f3dfbb9b482e738b9bde7a7469c5822c78864fb4d52619441b3fcde4710c0397ef136b94e308487ddb473498c15b0b36c07d0f718f1af4b3717ca535
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-devicefarm/customizations'
42
42
  # @service
43
43
  module Aws::DeviceFarm
44
44
 
45
- GEM_VERSION = '1.2.0'
45
+ GEM_VERSION = '1.3.0'
46
46
 
47
47
  end
@@ -394,6 +394,14 @@ module Aws::DeviceFarm
394
394
  # Set to `true` if you want to access devices remotely for debugging in
395
395
  # your remote access session.
396
396
  #
397
+ # @option params [Boolean] :remote_record_enabled
398
+ # Set to `true` to enable remote recording for the remote access
399
+ # session.
400
+ #
401
+ # @option params [String] :remote_record_app_arn
402
+ # The Amazon Resource Name (ARN) for the app to be recorded in the
403
+ # remote access session.
404
+ #
397
405
  # @option params [String] :name
398
406
  # The name of the remote access session that you wish to create.
399
407
  #
@@ -401,11 +409,26 @@ module Aws::DeviceFarm
401
409
  # Unique identifier for the client. If you want access to multiple
402
410
  # devices on the same client, you should pass the same `clientId` value
403
411
  # in each call to `CreateRemoteAccessSession`. This is required only if
404
- # `remoteDebugEnabled` is set to true `true`.
412
+ # `remoteDebugEnabled` is set to `true`.
405
413
  #
406
414
  # @option params [Types::CreateRemoteAccessSessionConfiguration] :configuration
407
415
  # The configuration information for the remote access session request.
408
416
  #
417
+ # @option params [String] :interaction_mode
418
+ # The interaction mode of the remote access session. Valid values are:
419
+ #
420
+ # * INTERACTIVE: You can interact with the iOS device by viewing,
421
+ # touching, and rotating the screen. You **cannot** run XCUITest
422
+ # framework-based tests in this mode.
423
+ #
424
+ # * NO\_VIDEO: You are connected to the device but cannot interact with
425
+ # it or view the screen. This mode has the fastest test execution
426
+ # speed. You **can** run XCUITest framework-based tests in this mode.
427
+ #
428
+ # * VIDEO\_ONLY: You can view the screen but cannot touch or rotate it.
429
+ # You **can** run XCUITest framework-based tests and watch the screen
430
+ # in this mode.
431
+ #
409
432
  # @return [Types::CreateRemoteAccessSessionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
410
433
  #
411
434
  # * {Types::CreateRemoteAccessSessionResult#remote_access_session #remote_access_session} => Types::RemoteAccessSession
@@ -437,11 +460,14 @@ module Aws::DeviceFarm
437
460
  # device_arn: "AmazonResourceName", # required
438
461
  # ssh_public_key: "SshPublicKey",
439
462
  # remote_debug_enabled: false,
463
+ # remote_record_enabled: false,
464
+ # remote_record_app_arn: "AmazonResourceName",
440
465
  # name: "Name",
441
466
  # client_id: "ClientId",
442
467
  # configuration: {
443
468
  # billing_method: "METERED", # accepts METERED, UNMETERED
444
469
  # },
470
+ # interaction_mode: "INTERACTIVE", # accepts INTERACTIVE, NO_VIDEO, VIDEO_ONLY
445
471
  # })
446
472
  #
447
473
  # @example Response structure
@@ -458,6 +484,7 @@ module Aws::DeviceFarm
458
484
  # resp.remote_access_session.device.name #=> String
459
485
  # resp.remote_access_session.device.manufacturer #=> String
460
486
  # resp.remote_access_session.device.model #=> String
487
+ # resp.remote_access_session.device.model_id #=> String
461
488
  # resp.remote_access_session.device.form_factor #=> String, one of "PHONE", "TABLET"
462
489
  # resp.remote_access_session.device.platform #=> String, one of "ANDROID", "IOS"
463
490
  # resp.remote_access_session.device.os #=> String
@@ -476,6 +503,8 @@ module Aws::DeviceFarm
476
503
  # resp.remote_access_session.device.fleet_type #=> String
477
504
  # resp.remote_access_session.device.fleet_name #=> String
478
505
  # resp.remote_access_session.remote_debug_enabled #=> Boolean
506
+ # resp.remote_access_session.remote_record_enabled #=> Boolean
507
+ # resp.remote_access_session.remote_record_app_arn #=> String
479
508
  # resp.remote_access_session.host_address #=> String
480
509
  # resp.remote_access_session.client_id #=> String
481
510
  # resp.remote_access_session.billing_method #=> String, one of "METERED", "UNMETERED"
@@ -484,6 +513,7 @@ module Aws::DeviceFarm
484
513
  # resp.remote_access_session.device_minutes.unmetered #=> Float
485
514
  # resp.remote_access_session.endpoint #=> String
486
515
  # resp.remote_access_session.device_udid #=> String
516
+ # resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
487
517
  #
488
518
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSession AWS API Documentation
489
519
  #
@@ -923,6 +953,7 @@ module Aws::DeviceFarm
923
953
  # resp.device.name #=> String
924
954
  # resp.device.manufacturer #=> String
925
955
  # resp.device.model #=> String
956
+ # resp.device.model_id #=> String
926
957
  # resp.device.form_factor #=> String, one of "PHONE", "TABLET"
927
958
  # resp.device.platform #=> String, one of "ANDROID", "IOS"
928
959
  # resp.device.os #=> String
@@ -1075,9 +1106,9 @@ module Aws::DeviceFarm
1075
1106
  # resp = client.get_device_pool_compatibility({
1076
1107
  # device_pool_arn: "AmazonResourceName", # required
1077
1108
  # app_arn: "AmazonResourceName",
1078
- # test_type: "BUILTIN_FUZZ", # accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI
1109
+ # test_type: "BUILTIN_FUZZ", # accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, WEB_PERFORMANCE_PROFILE, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI, REMOTE_ACCESS_RECORD, REMOTE_ACCESS_REPLAY
1079
1110
  # test: {
1080
- # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI
1111
+ # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, WEB_PERFORMANCE_PROFILE, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI, REMOTE_ACCESS_RECORD, REMOTE_ACCESS_REPLAY
1081
1112
  # test_package_arn: "AmazonResourceName",
1082
1113
  # filter: "Filter",
1083
1114
  # parameters: {
@@ -1093,6 +1124,7 @@ module Aws::DeviceFarm
1093
1124
  # resp.compatible_devices[0].device.name #=> String
1094
1125
  # resp.compatible_devices[0].device.manufacturer #=> String
1095
1126
  # resp.compatible_devices[0].device.model #=> String
1127
+ # resp.compatible_devices[0].device.model_id #=> String
1096
1128
  # resp.compatible_devices[0].device.form_factor #=> String, one of "PHONE", "TABLET"
1097
1129
  # resp.compatible_devices[0].device.platform #=> String, one of "ANDROID", "IOS"
1098
1130
  # resp.compatible_devices[0].device.os #=> String
@@ -1119,6 +1151,7 @@ module Aws::DeviceFarm
1119
1151
  # resp.incompatible_devices[0].device.name #=> String
1120
1152
  # resp.incompatible_devices[0].device.manufacturer #=> String
1121
1153
  # resp.incompatible_devices[0].device.model #=> String
1154
+ # resp.incompatible_devices[0].device.model_id #=> String
1122
1155
  # resp.incompatible_devices[0].device.form_factor #=> String, one of "PHONE", "TABLET"
1123
1156
  # resp.incompatible_devices[0].device.platform #=> String, one of "ANDROID", "IOS"
1124
1157
  # resp.incompatible_devices[0].device.os #=> String
@@ -1184,7 +1217,7 @@ module Aws::DeviceFarm
1184
1217
  #
1185
1218
  # resp.job.arn #=> String
1186
1219
  # resp.job.name #=> String
1187
- # resp.job.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
1220
+ # resp.job.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
1188
1221
  # resp.job.created #=> Time
1189
1222
  # resp.job.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
1190
1223
  # resp.job.result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
@@ -1202,6 +1235,7 @@ module Aws::DeviceFarm
1202
1235
  # resp.job.device.name #=> String
1203
1236
  # resp.job.device.manufacturer #=> String
1204
1237
  # resp.job.device.model #=> String
1238
+ # resp.job.device.model_id #=> String
1205
1239
  # resp.job.device.form_factor #=> String, one of "PHONE", "TABLET"
1206
1240
  # resp.job.device.platform #=> String, one of "ANDROID", "IOS"
1207
1241
  # resp.job.device.os #=> String
@@ -1464,6 +1498,7 @@ module Aws::DeviceFarm
1464
1498
  # resp.remote_access_session.device.name #=> String
1465
1499
  # resp.remote_access_session.device.manufacturer #=> String
1466
1500
  # resp.remote_access_session.device.model #=> String
1501
+ # resp.remote_access_session.device.model_id #=> String
1467
1502
  # resp.remote_access_session.device.form_factor #=> String, one of "PHONE", "TABLET"
1468
1503
  # resp.remote_access_session.device.platform #=> String, one of "ANDROID", "IOS"
1469
1504
  # resp.remote_access_session.device.os #=> String
@@ -1482,6 +1517,8 @@ module Aws::DeviceFarm
1482
1517
  # resp.remote_access_session.device.fleet_type #=> String
1483
1518
  # resp.remote_access_session.device.fleet_name #=> String
1484
1519
  # resp.remote_access_session.remote_debug_enabled #=> Boolean
1520
+ # resp.remote_access_session.remote_record_enabled #=> Boolean
1521
+ # resp.remote_access_session.remote_record_app_arn #=> String
1485
1522
  # resp.remote_access_session.host_address #=> String
1486
1523
  # resp.remote_access_session.client_id #=> String
1487
1524
  # resp.remote_access_session.billing_method #=> String, one of "METERED", "UNMETERED"
@@ -1490,6 +1527,7 @@ module Aws::DeviceFarm
1490
1527
  # resp.remote_access_session.device_minutes.unmetered #=> Float
1491
1528
  # resp.remote_access_session.endpoint #=> String
1492
1529
  # resp.remote_access_session.device_udid #=> String
1530
+ # resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
1493
1531
  #
1494
1532
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRemoteAccessSession AWS API Documentation
1495
1533
  #
@@ -1558,7 +1596,7 @@ module Aws::DeviceFarm
1558
1596
  #
1559
1597
  # resp.run.arn #=> String
1560
1598
  # resp.run.name #=> String
1561
- # resp.run.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
1599
+ # resp.run.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
1562
1600
  # resp.run.platform #=> String, one of "ANDROID", "IOS"
1563
1601
  # resp.run.created #=> Time
1564
1602
  # resp.run.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
@@ -1593,12 +1631,25 @@ module Aws::DeviceFarm
1593
1631
  # resp.run.network_profile.downlink_loss_percent #=> Integer
1594
1632
  # resp.run.parsing_result_url #=> String
1595
1633
  # resp.run.result_code #=> String, one of "PARSING_FAILED"
1634
+ # resp.run.seed #=> Integer
1635
+ # resp.run.app_upload #=> String
1636
+ # resp.run.event_count #=> Integer
1637
+ # resp.run.job_timeout_minutes #=> Integer
1638
+ # resp.run.device_pool_arn #=> String
1639
+ # resp.run.locale #=> String
1640
+ # resp.run.radios.wifi #=> Boolean
1641
+ # resp.run.radios.bluetooth #=> Boolean
1642
+ # resp.run.radios.nfc #=> Boolean
1643
+ # resp.run.radios.gps #=> Boolean
1644
+ # resp.run.location.latitude #=> Float
1645
+ # resp.run.location.longitude #=> Float
1596
1646
  # resp.run.customer_artifact_paths.ios_paths #=> Array
1597
1647
  # resp.run.customer_artifact_paths.ios_paths[0] #=> String
1598
1648
  # resp.run.customer_artifact_paths.android_paths #=> Array
1599
1649
  # resp.run.customer_artifact_paths.android_paths[0] #=> String
1600
1650
  # resp.run.customer_artifact_paths.device_host_paths #=> Array
1601
1651
  # resp.run.customer_artifact_paths.device_host_paths[0] #=> String
1652
+ # resp.run.web_url #=> String
1602
1653
  #
1603
1654
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRun AWS API Documentation
1604
1655
  #
@@ -1643,7 +1694,7 @@ module Aws::DeviceFarm
1643
1694
  #
1644
1695
  # resp.suite.arn #=> String
1645
1696
  # resp.suite.name #=> String
1646
- # resp.suite.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
1697
+ # resp.suite.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
1647
1698
  # resp.suite.created #=> Time
1648
1699
  # resp.suite.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
1649
1700
  # resp.suite.result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
@@ -1704,7 +1755,7 @@ module Aws::DeviceFarm
1704
1755
  #
1705
1756
  # resp.test.arn #=> String
1706
1757
  # resp.test.name #=> String
1707
- # resp.test.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
1758
+ # resp.test.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
1708
1759
  # resp.test.created #=> Time
1709
1760
  # resp.test.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
1710
1761
  # resp.test.result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
@@ -2043,6 +2094,7 @@ module Aws::DeviceFarm
2043
2094
  # resp.devices[0].name #=> String
2044
2095
  # resp.devices[0].manufacturer #=> String
2045
2096
  # resp.devices[0].model #=> String
2097
+ # resp.devices[0].model_id #=> String
2046
2098
  # resp.devices[0].form_factor #=> String, one of "PHONE", "TABLET"
2047
2099
  # resp.devices[0].platform #=> String, one of "ANDROID", "IOS"
2048
2100
  # resp.devices[0].os #=> String
@@ -2071,10 +2123,10 @@ module Aws::DeviceFarm
2071
2123
  req.send_request(options)
2072
2124
  end
2073
2125
 
2074
- # Gets information about jobs.
2126
+ # Gets information about jobs for a given test run.
2075
2127
  #
2076
2128
  # @option params [required, String] :arn
2077
- # The jobs' ARNs.
2129
+ # The run's Amazon Resource Name (ARN).
2078
2130
  #
2079
2131
  # @option params [String] :next_token
2080
2132
  # An identifier that was returned from the previous call to this
@@ -2107,7 +2159,7 @@ module Aws::DeviceFarm
2107
2159
  # resp.jobs #=> Array
2108
2160
  # resp.jobs[0].arn #=> String
2109
2161
  # resp.jobs[0].name #=> String
2110
- # resp.jobs[0].type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
2162
+ # resp.jobs[0].type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
2111
2163
  # resp.jobs[0].created #=> Time
2112
2164
  # resp.jobs[0].status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
2113
2165
  # resp.jobs[0].result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
@@ -2125,6 +2177,7 @@ module Aws::DeviceFarm
2125
2177
  # resp.jobs[0].device.name #=> String
2126
2178
  # resp.jobs[0].device.manufacturer #=> String
2127
2179
  # resp.jobs[0].device.model #=> String
2180
+ # resp.jobs[0].device.model_id #=> String
2128
2181
  # resp.jobs[0].device.form_factor #=> String, one of "PHONE", "TABLET"
2129
2182
  # resp.jobs[0].device.platform #=> String, one of "ANDROID", "IOS"
2130
2183
  # resp.jobs[0].device.os #=> String
@@ -2637,6 +2690,7 @@ module Aws::DeviceFarm
2637
2690
  # resp.remote_access_sessions[0].device.name #=> String
2638
2691
  # resp.remote_access_sessions[0].device.manufacturer #=> String
2639
2692
  # resp.remote_access_sessions[0].device.model #=> String
2693
+ # resp.remote_access_sessions[0].device.model_id #=> String
2640
2694
  # resp.remote_access_sessions[0].device.form_factor #=> String, one of "PHONE", "TABLET"
2641
2695
  # resp.remote_access_sessions[0].device.platform #=> String, one of "ANDROID", "IOS"
2642
2696
  # resp.remote_access_sessions[0].device.os #=> String
@@ -2655,6 +2709,8 @@ module Aws::DeviceFarm
2655
2709
  # resp.remote_access_sessions[0].device.fleet_type #=> String
2656
2710
  # resp.remote_access_sessions[0].device.fleet_name #=> String
2657
2711
  # resp.remote_access_sessions[0].remote_debug_enabled #=> Boolean
2712
+ # resp.remote_access_sessions[0].remote_record_enabled #=> Boolean
2713
+ # resp.remote_access_sessions[0].remote_record_app_arn #=> String
2658
2714
  # resp.remote_access_sessions[0].host_address #=> String
2659
2715
  # resp.remote_access_sessions[0].client_id #=> String
2660
2716
  # resp.remote_access_sessions[0].billing_method #=> String, one of "METERED", "UNMETERED"
@@ -2663,6 +2719,7 @@ module Aws::DeviceFarm
2663
2719
  # resp.remote_access_sessions[0].device_minutes.unmetered #=> Float
2664
2720
  # resp.remote_access_sessions[0].endpoint #=> String
2665
2721
  # resp.remote_access_sessions[0].device_udid #=> String
2722
+ # resp.remote_access_sessions[0].interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
2666
2723
  # resp.next_token #=> String
2667
2724
  #
2668
2725
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRemoteAccessSessions AWS API Documentation
@@ -2744,7 +2801,7 @@ module Aws::DeviceFarm
2744
2801
  # resp.runs #=> Array
2745
2802
  # resp.runs[0].arn #=> String
2746
2803
  # resp.runs[0].name #=> String
2747
- # resp.runs[0].type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
2804
+ # resp.runs[0].type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
2748
2805
  # resp.runs[0].platform #=> String, one of "ANDROID", "IOS"
2749
2806
  # resp.runs[0].created #=> Time
2750
2807
  # resp.runs[0].status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
@@ -2779,12 +2836,25 @@ module Aws::DeviceFarm
2779
2836
  # resp.runs[0].network_profile.downlink_loss_percent #=> Integer
2780
2837
  # resp.runs[0].parsing_result_url #=> String
2781
2838
  # resp.runs[0].result_code #=> String, one of "PARSING_FAILED"
2839
+ # resp.runs[0].seed #=> Integer
2840
+ # resp.runs[0].app_upload #=> String
2841
+ # resp.runs[0].event_count #=> Integer
2842
+ # resp.runs[0].job_timeout_minutes #=> Integer
2843
+ # resp.runs[0].device_pool_arn #=> String
2844
+ # resp.runs[0].locale #=> String
2845
+ # resp.runs[0].radios.wifi #=> Boolean
2846
+ # resp.runs[0].radios.bluetooth #=> Boolean
2847
+ # resp.runs[0].radios.nfc #=> Boolean
2848
+ # resp.runs[0].radios.gps #=> Boolean
2849
+ # resp.runs[0].location.latitude #=> Float
2850
+ # resp.runs[0].location.longitude #=> Float
2782
2851
  # resp.runs[0].customer_artifact_paths.ios_paths #=> Array
2783
2852
  # resp.runs[0].customer_artifact_paths.ios_paths[0] #=> String
2784
2853
  # resp.runs[0].customer_artifact_paths.android_paths #=> Array
2785
2854
  # resp.runs[0].customer_artifact_paths.android_paths[0] #=> String
2786
2855
  # resp.runs[0].customer_artifact_paths.device_host_paths #=> Array
2787
2856
  # resp.runs[0].customer_artifact_paths.device_host_paths[0] #=> String
2857
+ # resp.runs[0].web_url #=> String
2788
2858
  # resp.next_token #=> String
2789
2859
  #
2790
2860
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRuns AWS API Documentation
@@ -2852,10 +2922,10 @@ module Aws::DeviceFarm
2852
2922
  req.send_request(options)
2853
2923
  end
2854
2924
 
2855
- # Gets information about suites.
2925
+ # Gets information about test suites for a given job.
2856
2926
  #
2857
2927
  # @option params [required, String] :arn
2858
- # The suites' ARNs.
2928
+ # The job's Amazon Resource Name (ARN).
2859
2929
  #
2860
2930
  # @option params [String] :next_token
2861
2931
  # An identifier that was returned from the previous call to this
@@ -2895,7 +2965,7 @@ module Aws::DeviceFarm
2895
2965
  # resp.suites #=> Array
2896
2966
  # resp.suites[0].arn #=> String
2897
2967
  # resp.suites[0].name #=> String
2898
- # resp.suites[0].type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
2968
+ # resp.suites[0].type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
2899
2969
  # resp.suites[0].created #=> Time
2900
2970
  # resp.suites[0].status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
2901
2971
  # resp.suites[0].result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
@@ -2923,10 +2993,10 @@ module Aws::DeviceFarm
2923
2993
  req.send_request(options)
2924
2994
  end
2925
2995
 
2926
- # Gets information about tests.
2996
+ # Gets information about tests in a given test suite.
2927
2997
  #
2928
2998
  # @option params [required, String] :arn
2929
- # The tests' ARNs.
2999
+ # The test suite's Amazon Resource Name (ARN).
2930
3000
  #
2931
3001
  # @option params [String] :next_token
2932
3002
  # An identifier that was returned from the previous call to this
@@ -2966,7 +3036,7 @@ module Aws::DeviceFarm
2966
3036
  # resp.tests #=> Array
2967
3037
  # resp.tests[0].arn #=> String
2968
3038
  # resp.tests[0].name #=> String
2969
- # resp.tests[0].type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
3039
+ # resp.tests[0].type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
2970
3040
  # resp.tests[0].created #=> Time
2971
3041
  # resp.tests[0].status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
2972
3042
  # resp.tests[0].result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
@@ -3050,6 +3120,7 @@ module Aws::DeviceFarm
3050
3120
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.name #=> String
3051
3121
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.manufacturer #=> String
3052
3122
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.model #=> String
3123
+ # resp.unique_problems["ExecutionResult"][0].problems[0].device.model_id #=> String
3053
3124
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.form_factor #=> String, one of "PHONE", "TABLET"
3054
3125
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.platform #=> String, one of "ANDROID", "IOS"
3055
3126
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.os #=> String
@@ -3374,7 +3445,7 @@ module Aws::DeviceFarm
3374
3445
  # device_pool_arn: "AmazonResourceName", # required
3375
3446
  # name: "Name",
3376
3447
  # test: { # required
3377
- # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI
3448
+ # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, WEB_PERFORMANCE_PROFILE, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI, REMOTE_ACCESS_RECORD, REMOTE_ACCESS_REPLAY
3378
3449
  # test_package_arn: "AmazonResourceName",
3379
3450
  # filter: "Filter",
3380
3451
  # parameters: {
@@ -3414,7 +3485,7 @@ module Aws::DeviceFarm
3414
3485
  #
3415
3486
  # resp.run.arn #=> String
3416
3487
  # resp.run.name #=> String
3417
- # resp.run.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
3488
+ # resp.run.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
3418
3489
  # resp.run.platform #=> String, one of "ANDROID", "IOS"
3419
3490
  # resp.run.created #=> Time
3420
3491
  # resp.run.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
@@ -3449,12 +3520,25 @@ module Aws::DeviceFarm
3449
3520
  # resp.run.network_profile.downlink_loss_percent #=> Integer
3450
3521
  # resp.run.parsing_result_url #=> String
3451
3522
  # resp.run.result_code #=> String, one of "PARSING_FAILED"
3523
+ # resp.run.seed #=> Integer
3524
+ # resp.run.app_upload #=> String
3525
+ # resp.run.event_count #=> Integer
3526
+ # resp.run.job_timeout_minutes #=> Integer
3527
+ # resp.run.device_pool_arn #=> String
3528
+ # resp.run.locale #=> String
3529
+ # resp.run.radios.wifi #=> Boolean
3530
+ # resp.run.radios.bluetooth #=> Boolean
3531
+ # resp.run.radios.nfc #=> Boolean
3532
+ # resp.run.radios.gps #=> Boolean
3533
+ # resp.run.location.latitude #=> Float
3534
+ # resp.run.location.longitude #=> Float
3452
3535
  # resp.run.customer_artifact_paths.ios_paths #=> Array
3453
3536
  # resp.run.customer_artifact_paths.ios_paths[0] #=> String
3454
3537
  # resp.run.customer_artifact_paths.android_paths #=> Array
3455
3538
  # resp.run.customer_artifact_paths.android_paths[0] #=> String
3456
3539
  # resp.run.customer_artifact_paths.device_host_paths #=> Array
3457
3540
  # resp.run.customer_artifact_paths.device_host_paths[0] #=> String
3541
+ # resp.run.web_url #=> String
3458
3542
  #
3459
3543
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ScheduleRun AWS API Documentation
3460
3544
  #
@@ -3495,6 +3579,7 @@ module Aws::DeviceFarm
3495
3579
  # resp.remote_access_session.device.name #=> String
3496
3580
  # resp.remote_access_session.device.manufacturer #=> String
3497
3581
  # resp.remote_access_session.device.model #=> String
3582
+ # resp.remote_access_session.device.model_id #=> String
3498
3583
  # resp.remote_access_session.device.form_factor #=> String, one of "PHONE", "TABLET"
3499
3584
  # resp.remote_access_session.device.platform #=> String, one of "ANDROID", "IOS"
3500
3585
  # resp.remote_access_session.device.os #=> String
@@ -3513,6 +3598,8 @@ module Aws::DeviceFarm
3513
3598
  # resp.remote_access_session.device.fleet_type #=> String
3514
3599
  # resp.remote_access_session.device.fleet_name #=> String
3515
3600
  # resp.remote_access_session.remote_debug_enabled #=> Boolean
3601
+ # resp.remote_access_session.remote_record_enabled #=> Boolean
3602
+ # resp.remote_access_session.remote_record_app_arn #=> String
3516
3603
  # resp.remote_access_session.host_address #=> String
3517
3604
  # resp.remote_access_session.client_id #=> String
3518
3605
  # resp.remote_access_session.billing_method #=> String, one of "METERED", "UNMETERED"
@@ -3521,6 +3608,7 @@ module Aws::DeviceFarm
3521
3608
  # resp.remote_access_session.device_minutes.unmetered #=> Float
3522
3609
  # resp.remote_access_session.endpoint #=> String
3523
3610
  # resp.remote_access_session.device_udid #=> String
3611
+ # resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
3524
3612
  #
3525
3613
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRemoteAccessSession AWS API Documentation
3526
3614
  #
@@ -3572,7 +3660,7 @@ module Aws::DeviceFarm
3572
3660
  #
3573
3661
  # resp.run.arn #=> String
3574
3662
  # resp.run.name #=> String
3575
- # resp.run.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI"
3663
+ # resp.run.type #=> String, one of "BUILTIN_FUZZ", "BUILTIN_EXPLORER", "WEB_PERFORMANCE_PROFILE", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "CALABASH", "INSTRUMENTATION", "UIAUTOMATION", "UIAUTOMATOR", "XCTEST", "XCTEST_UI", "REMOTE_ACCESS_RECORD", "REMOTE_ACCESS_REPLAY"
3576
3664
  # resp.run.platform #=> String, one of "ANDROID", "IOS"
3577
3665
  # resp.run.created #=> Time
3578
3666
  # resp.run.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
@@ -3607,12 +3695,25 @@ module Aws::DeviceFarm
3607
3695
  # resp.run.network_profile.downlink_loss_percent #=> Integer
3608
3696
  # resp.run.parsing_result_url #=> String
3609
3697
  # resp.run.result_code #=> String, one of "PARSING_FAILED"
3698
+ # resp.run.seed #=> Integer
3699
+ # resp.run.app_upload #=> String
3700
+ # resp.run.event_count #=> Integer
3701
+ # resp.run.job_timeout_minutes #=> Integer
3702
+ # resp.run.device_pool_arn #=> String
3703
+ # resp.run.locale #=> String
3704
+ # resp.run.radios.wifi #=> Boolean
3705
+ # resp.run.radios.bluetooth #=> Boolean
3706
+ # resp.run.radios.nfc #=> Boolean
3707
+ # resp.run.radios.gps #=> Boolean
3708
+ # resp.run.location.latitude #=> Float
3709
+ # resp.run.location.longitude #=> Float
3610
3710
  # resp.run.customer_artifact_paths.ios_paths #=> Array
3611
3711
  # resp.run.customer_artifact_paths.ios_paths[0] #=> String
3612
3712
  # resp.run.customer_artifact_paths.android_paths #=> Array
3613
3713
  # resp.run.customer_artifact_paths.android_paths[0] #=> String
3614
3714
  # resp.run.customer_artifact_paths.device_host_paths #=> Array
3615
3715
  # resp.run.customer_artifact_paths.device_host_paths[0] #=> String
3716
+ # resp.run.web_url #=> String
3616
3717
  #
3617
3718
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRun AWS API Documentation
3618
3719
  #
@@ -3709,8 +3810,8 @@ module Aws::DeviceFarm
3709
3810
  # Updates the network profile with specific settings.
3710
3811
  #
3711
3812
  # @option params [required, String] :arn
3712
- # The Amazon Resource Name (ARN) of the project that you wish to update
3713
- # network profile settings.
3813
+ # The Amazon Resource Name (ARN) of the project for which you want to
3814
+ # update network profile settings.
3714
3815
  #
3715
3816
  # @option params [String] :name
3716
3817
  # The name of the network profile about which you are returning
@@ -3876,7 +3977,7 @@ module Aws::DeviceFarm
3876
3977
  params: params,
3877
3978
  config: config)
3878
3979
  context[:gem_name] = 'aws-sdk-devicefarm'
3879
- context[:gem_version] = '1.2.0'
3980
+ context[:gem_version] = '1.3.0'
3880
3981
  Seahorse::Client::Request.new(handlers, context)
3881
3982
  end
3882
3983
 
@@ -106,6 +106,7 @@ module Aws::DeviceFarm
106
106
  InstallToRemoteAccessSessionRequest = Shapes::StructureShape.new(name: 'InstallToRemoteAccessSessionRequest')
107
107
  InstallToRemoteAccessSessionResult = Shapes::StructureShape.new(name: 'InstallToRemoteAccessSessionResult')
108
108
  Integer = Shapes::IntegerShape.new(name: 'Integer')
109
+ InteractionMode = Shapes::StringShape.new(name: 'InteractionMode')
109
110
  IosPaths = Shapes::ListShape.new(name: 'IosPaths')
110
111
  Job = Shapes::StructureShape.new(name: 'Job')
111
112
  JobTimeoutMinutes = Shapes::IntegerShape.new(name: 'JobTimeoutMinutes')
@@ -304,9 +305,12 @@ module Aws::DeviceFarm
304
305
  CreateRemoteAccessSessionRequest.add_member(:device_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "deviceArn"))
305
306
  CreateRemoteAccessSessionRequest.add_member(:ssh_public_key, Shapes::ShapeRef.new(shape: SshPublicKey, location_name: "sshPublicKey"))
306
307
  CreateRemoteAccessSessionRequest.add_member(:remote_debug_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteDebugEnabled"))
308
+ CreateRemoteAccessSessionRequest.add_member(:remote_record_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteRecordEnabled"))
309
+ CreateRemoteAccessSessionRequest.add_member(:remote_record_app_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "remoteRecordAppArn"))
307
310
  CreateRemoteAccessSessionRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
308
311
  CreateRemoteAccessSessionRequest.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "clientId"))
309
312
  CreateRemoteAccessSessionRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: CreateRemoteAccessSessionConfiguration, location_name: "configuration"))
313
+ CreateRemoteAccessSessionRequest.add_member(:interaction_mode, Shapes::ShapeRef.new(shape: InteractionMode, location_name: "interactionMode"))
310
314
  CreateRemoteAccessSessionRequest.struct_class = Types::CreateRemoteAccessSessionRequest
311
315
 
312
316
  CreateRemoteAccessSessionResult.add_member(:remote_access_session, Shapes::ShapeRef.new(shape: RemoteAccessSession, location_name: "remoteAccessSession"))
@@ -360,6 +364,7 @@ module Aws::DeviceFarm
360
364
  Device.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
361
365
  Device.add_member(:manufacturer, Shapes::ShapeRef.new(shape: String, location_name: "manufacturer"))
362
366
  Device.add_member(:model, Shapes::ShapeRef.new(shape: String, location_name: "model"))
367
+ Device.add_member(:model_id, Shapes::ShapeRef.new(shape: String, location_name: "modelId"))
363
368
  Device.add_member(:form_factor, Shapes::ShapeRef.new(shape: DeviceFormFactor, location_name: "formFactor"))
364
369
  Device.add_member(:platform, Shapes::ShapeRef.new(shape: DevicePlatform, location_name: "platform"))
365
370
  Device.add_member(:os, Shapes::ShapeRef.new(shape: String, location_name: "os"))
@@ -764,12 +769,15 @@ module Aws::DeviceFarm
764
769
  RemoteAccessSession.add_member(:stopped, Shapes::ShapeRef.new(shape: DateTime, location_name: "stopped"))
765
770
  RemoteAccessSession.add_member(:device, Shapes::ShapeRef.new(shape: Device, location_name: "device"))
766
771
  RemoteAccessSession.add_member(:remote_debug_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteDebugEnabled"))
772
+ RemoteAccessSession.add_member(:remote_record_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteRecordEnabled"))
773
+ RemoteAccessSession.add_member(:remote_record_app_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "remoteRecordAppArn"))
767
774
  RemoteAccessSession.add_member(:host_address, Shapes::ShapeRef.new(shape: HostAddress, location_name: "hostAddress"))
768
775
  RemoteAccessSession.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "clientId"))
769
776
  RemoteAccessSession.add_member(:billing_method, Shapes::ShapeRef.new(shape: BillingMethod, location_name: "billingMethod"))
770
777
  RemoteAccessSession.add_member(:device_minutes, Shapes::ShapeRef.new(shape: DeviceMinutes, location_name: "deviceMinutes"))
771
778
  RemoteAccessSession.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
772
779
  RemoteAccessSession.add_member(:device_udid, Shapes::ShapeRef.new(shape: String, location_name: "deviceUdid"))
780
+ RemoteAccessSession.add_member(:interaction_mode, Shapes::ShapeRef.new(shape: InteractionMode, location_name: "interactionMode"))
773
781
  RemoteAccessSession.struct_class = Types::RemoteAccessSession
774
782
 
775
783
  RemoteAccessSessions.member = Shapes::ShapeRef.new(shape: RemoteAccessSession)
@@ -810,7 +818,16 @@ module Aws::DeviceFarm
810
818
  Run.add_member(:network_profile, Shapes::ShapeRef.new(shape: NetworkProfile, location_name: "networkProfile"))
811
819
  Run.add_member(:parsing_result_url, Shapes::ShapeRef.new(shape: String, location_name: "parsingResultUrl"))
812
820
  Run.add_member(:result_code, Shapes::ShapeRef.new(shape: ExecutionResultCode, location_name: "resultCode"))
821
+ Run.add_member(:seed, Shapes::ShapeRef.new(shape: Integer, location_name: "seed"))
822
+ Run.add_member(:app_upload, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "appUpload"))
823
+ Run.add_member(:event_count, Shapes::ShapeRef.new(shape: Integer, location_name: "eventCount"))
824
+ Run.add_member(:job_timeout_minutes, Shapes::ShapeRef.new(shape: JobTimeoutMinutes, location_name: "jobTimeoutMinutes"))
825
+ Run.add_member(:device_pool_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "devicePoolArn"))
826
+ Run.add_member(:locale, Shapes::ShapeRef.new(shape: String, location_name: "locale"))
827
+ Run.add_member(:radios, Shapes::ShapeRef.new(shape: Radios, location_name: "radios"))
828
+ Run.add_member(:location, Shapes::ShapeRef.new(shape: Location, location_name: "location"))
813
829
  Run.add_member(:customer_artifact_paths, Shapes::ShapeRef.new(shape: CustomerArtifactPaths, location_name: "customerArtifactPaths"))
830
+ Run.add_member(:web_url, Shapes::ShapeRef.new(shape: String, location_name: "webUrl"))
814
831
  Run.struct_class = Types::Run
815
832
 
816
833
  Runs.member = Shapes::ShapeRef.new(shape: Run)
@@ -450,11 +450,14 @@ module Aws::DeviceFarm
450
450
  # device_arn: "AmazonResourceName", # required
451
451
  # ssh_public_key: "SshPublicKey",
452
452
  # remote_debug_enabled: false,
453
+ # remote_record_enabled: false,
454
+ # remote_record_app_arn: "AmazonResourceName",
453
455
  # name: "Name",
454
456
  # client_id: "ClientId",
455
457
  # configuration: {
456
458
  # billing_method: "METERED", # accepts METERED, UNMETERED
457
459
  # },
460
+ # interaction_mode: "INTERACTIVE", # accepts INTERACTIVE, NO_VIDEO, VIDEO_ONLY
458
461
  # }
459
462
  #
460
463
  # @!attribute [rw] project_arn
@@ -478,6 +481,16 @@ module Aws::DeviceFarm
478
481
  # in your remote access session.
479
482
  # @return [Boolean]
480
483
  #
484
+ # @!attribute [rw] remote_record_enabled
485
+ # Set to `true` to enable remote recording for the remote access
486
+ # session.
487
+ # @return [Boolean]
488
+ #
489
+ # @!attribute [rw] remote_record_app_arn
490
+ # The Amazon Resource Name (ARN) for the app to be recorded in the
491
+ # remote access session.
492
+ # @return [String]
493
+ #
481
494
  # @!attribute [rw] name
482
495
  # The name of the remote access session that you wish to create.
483
496
  # @return [String]
@@ -486,13 +499,30 @@ module Aws::DeviceFarm
486
499
  # Unique identifier for the client. If you want access to multiple
487
500
  # devices on the same client, you should pass the same `clientId`
488
501
  # value in each call to `CreateRemoteAccessSession`. This is required
489
- # only if `remoteDebugEnabled` is set to true `true`.
502
+ # only if `remoteDebugEnabled` is set to `true`.
490
503
  # @return [String]
491
504
  #
492
505
  # @!attribute [rw] configuration
493
506
  # The configuration information for the remote access session request.
494
507
  # @return [Types::CreateRemoteAccessSessionConfiguration]
495
508
  #
509
+ # @!attribute [rw] interaction_mode
510
+ # The interaction mode of the remote access session. Valid values are:
511
+ #
512
+ # * INTERACTIVE: You can interact with the iOS device by viewing,
513
+ # touching, and rotating the screen. You **cannot** run XCUITest
514
+ # framework-based tests in this mode.
515
+ #
516
+ # * NO\_VIDEO: You are connected to the device but cannot interact
517
+ # with it or view the screen. This mode has the fastest test
518
+ # execution speed. You **can** run XCUITest framework-based tests in
519
+ # this mode.
520
+ #
521
+ # * VIDEO\_ONLY: You can view the screen but cannot touch or rotate
522
+ # it. You **can** run XCUITest framework-based tests and watch the
523
+ # screen in this mode.
524
+ # @return [String]
525
+ #
496
526
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSessionRequest AWS API Documentation
497
527
  #
498
528
  class CreateRemoteAccessSessionRequest < Struct.new(
@@ -500,9 +530,12 @@ module Aws::DeviceFarm
500
530
  :device_arn,
501
531
  :ssh_public_key,
502
532
  :remote_debug_enabled,
533
+ :remote_record_enabled,
534
+ :remote_record_app_arn,
503
535
  :name,
504
536
  :client_id,
505
- :configuration)
537
+ :configuration,
538
+ :interaction_mode)
506
539
  include Aws::Structure
507
540
  end
508
541
 
@@ -839,6 +872,10 @@ module Aws::DeviceFarm
839
872
  # The device's model name.
840
873
  # @return [String]
841
874
  #
875
+ # @!attribute [rw] model_id
876
+ # The device's model ID.
877
+ # @return [String]
878
+ #
842
879
  # @!attribute [rw] form_factor
843
880
  # The device's form factor.
844
881
  #
@@ -917,6 +954,7 @@ module Aws::DeviceFarm
917
954
  :name,
918
955
  :manufacturer,
919
956
  :model,
957
+ :model_id,
920
958
  :form_factor,
921
959
  :platform,
922
960
  :os,
@@ -1092,9 +1130,9 @@ module Aws::DeviceFarm
1092
1130
  # {
1093
1131
  # device_pool_arn: "AmazonResourceName", # required
1094
1132
  # app_arn: "AmazonResourceName",
1095
- # test_type: "BUILTIN_FUZZ", # accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI
1133
+ # test_type: "BUILTIN_FUZZ", # accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, WEB_PERFORMANCE_PROFILE, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI, REMOTE_ACCESS_RECORD, REMOTE_ACCESS_REPLAY
1096
1134
  # test: {
1097
- # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI
1135
+ # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, WEB_PERFORMANCE_PROFILE, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI, REMOTE_ACCESS_RECORD, REMOTE_ACCESS_REPLAY
1098
1136
  # test_package_arn: "AmazonResourceName",
1099
1137
  # filter: "Filter",
1100
1138
  # parameters: {
@@ -1962,7 +2000,7 @@ module Aws::DeviceFarm
1962
2000
  # }
1963
2001
  #
1964
2002
  # @!attribute [rw] arn
1965
- # The jobs' ARNs.
2003
+ # The run's Amazon Resource Name (ARN).
1966
2004
  # @return [String]
1967
2005
  #
1968
2006
  # @!attribute [rw] next_token
@@ -2388,7 +2426,7 @@ module Aws::DeviceFarm
2388
2426
  # }
2389
2427
  #
2390
2428
  # @!attribute [rw] arn
2391
- # The suites' ARNs.
2429
+ # The job's Amazon Resource Name (ARN).
2392
2430
  # @return [String]
2393
2431
  #
2394
2432
  # @!attribute [rw] next_token
@@ -2437,7 +2475,7 @@ module Aws::DeviceFarm
2437
2475
  # }
2438
2476
  #
2439
2477
  # @!attribute [rw] arn
2440
- # The tests' ARNs.
2478
+ # The test suite's Amazon Resource Name (ARN).
2441
2479
  # @return [String]
2442
2480
  #
2443
2481
  # @!attribute [rw] next_token
@@ -3119,6 +3157,16 @@ module Aws::DeviceFarm
3119
3157
  # remote access session.
3120
3158
  # @return [Boolean]
3121
3159
  #
3160
+ # @!attribute [rw] remote_record_enabled
3161
+ # This flag is set to `true` if remote recording is enabled for the
3162
+ # remote access session.
3163
+ # @return [Boolean]
3164
+ #
3165
+ # @!attribute [rw] remote_record_app_arn
3166
+ # The Amazon Resource Name (ARN) for the app to be recorded in the
3167
+ # remote access session.
3168
+ # @return [String]
3169
+ #
3122
3170
  # @!attribute [rw] host_address
3123
3171
  # IP address of the EC2 host where you need to connect to remotely
3124
3172
  # debug devices. Only returned if remote debugging is enabled for the
@@ -3155,6 +3203,23 @@ module Aws::DeviceFarm
3155
3203
  # remote debugging is enabled for the remote access session.
3156
3204
  # @return [String]
3157
3205
  #
3206
+ # @!attribute [rw] interaction_mode
3207
+ # The interaction mode of the remote access session. Valid values are:
3208
+ #
3209
+ # * INTERACTIVE: You can interact with the iOS device by viewing,
3210
+ # touching, and rotating the screen. You **cannot** run XCUITest
3211
+ # framework-based tests in this mode.
3212
+ #
3213
+ # * NO\_VIDEO: You are connected to the device but cannot interact
3214
+ # with it or view the screen. This mode has the fastest test
3215
+ # execution speed. You **can** run XCUITest framework-based tests in
3216
+ # this mode.
3217
+ #
3218
+ # * VIDEO\_ONLY: You can view the screen but cannot touch or rotate
3219
+ # it. You **can** run XCUITest framework-based tests and watch the
3220
+ # screen in this mode.
3221
+ # @return [String]
3222
+ #
3158
3223
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/RemoteAccessSession AWS API Documentation
3159
3224
  #
3160
3225
  class RemoteAccessSession < Struct.new(
@@ -3168,12 +3233,15 @@ module Aws::DeviceFarm
3168
3233
  :stopped,
3169
3234
  :device,
3170
3235
  :remote_debug_enabled,
3236
+ :remote_record_enabled,
3237
+ :remote_record_app_arn,
3171
3238
  :host_address,
3172
3239
  :client_id,
3173
3240
  :billing_method,
3174
3241
  :device_minutes,
3175
3242
  :endpoint,
3176
- :device_udid)
3243
+ :device_udid,
3244
+ :interaction_mode)
3177
3245
  include Aws::Structure
3178
3246
  end
3179
3247
 
@@ -3453,10 +3521,50 @@ module Aws::DeviceFarm
3453
3521
  # package parsing failure.
3454
3522
  # @return [String]
3455
3523
  #
3524
+ # @!attribute [rw] seed
3525
+ # For fuzz tests, this is a seed to use for randomizing the UI fuzz
3526
+ # test. Using the same seed value between tests ensures identical
3527
+ # event sequences.
3528
+ # @return [Integer]
3529
+ #
3530
+ # @!attribute [rw] app_upload
3531
+ # An app to upload or that has been uploaded.
3532
+ # @return [String]
3533
+ #
3534
+ # @!attribute [rw] event_count
3535
+ # For fuzz tests, this is the number of events, between 1 and 10000,
3536
+ # that the UI fuzz test should perform.
3537
+ # @return [Integer]
3538
+ #
3539
+ # @!attribute [rw] job_timeout_minutes
3540
+ # The number of minutes the job will execute before it times out.
3541
+ # @return [Integer]
3542
+ #
3543
+ # @!attribute [rw] device_pool_arn
3544
+ # The ARN of the device pool for the run.
3545
+ # @return [String]
3546
+ #
3547
+ # @!attribute [rw] locale
3548
+ # Information about the locale that is used for the run.
3549
+ # @return [String]
3550
+ #
3551
+ # @!attribute [rw] radios
3552
+ # Information about the radio states for the run.
3553
+ # @return [Types::Radios]
3554
+ #
3555
+ # @!attribute [rw] location
3556
+ # Information about the location that is used for the run.
3557
+ # @return [Types::Location]
3558
+ #
3456
3559
  # @!attribute [rw] customer_artifact_paths
3457
3560
  # Output `CustomerArtifactPaths` object for the test run.
3458
3561
  # @return [Types::CustomerArtifactPaths]
3459
3562
  #
3563
+ # @!attribute [rw] web_url
3564
+ # A pre-signed Amazon S3 URL that can be used with a corresponding GET
3565
+ # request to download the symbol file for the run.
3566
+ # @return [String]
3567
+ #
3460
3568
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Run AWS API Documentation
3461
3569
  #
3462
3570
  class Run < Struct.new(
@@ -3478,7 +3586,16 @@ module Aws::DeviceFarm
3478
3586
  :network_profile,
3479
3587
  :parsing_result_url,
3480
3588
  :result_code,
3481
- :customer_artifact_paths)
3589
+ :seed,
3590
+ :app_upload,
3591
+ :event_count,
3592
+ :job_timeout_minutes,
3593
+ :device_pool_arn,
3594
+ :locale,
3595
+ :radios,
3596
+ :location,
3597
+ :customer_artifact_paths,
3598
+ :web_url)
3482
3599
  include Aws::Structure
3483
3600
  end
3484
3601
 
@@ -3639,7 +3756,7 @@ module Aws::DeviceFarm
3639
3756
  # device_pool_arn: "AmazonResourceName", # required
3640
3757
  # name: "Name",
3641
3758
  # test: { # required
3642
- # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI
3759
+ # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, WEB_PERFORMANCE_PROFILE, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI, REMOTE_ACCESS_RECORD, REMOTE_ACCESS_REPLAY
3643
3760
  # test_package_arn: "AmazonResourceName",
3644
3761
  # filter: "Filter",
3645
3762
  # parameters: {
@@ -3736,7 +3853,7 @@ module Aws::DeviceFarm
3736
3853
  # data as a hash:
3737
3854
  #
3738
3855
  # {
3739
- # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI
3856
+ # type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, BUILTIN_EXPLORER, WEB_PERFORMANCE_PROFILE, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, CALABASH, INSTRUMENTATION, UIAUTOMATION, UIAUTOMATOR, XCTEST, XCTEST_UI, REMOTE_ACCESS_RECORD, REMOTE_ACCESS_REPLAY
3740
3857
  # test_package_arn: "AmazonResourceName",
3741
3858
  # filter: "Filter",
3742
3859
  # parameters: {
@@ -4335,7 +4452,7 @@ module Aws::DeviceFarm
4335
4452
  # }
4336
4453
  #
4337
4454
  # @!attribute [rw] arn
4338
- # The Amazon Resource Name (ARN) of the project that you wish to
4455
+ # The Amazon Resource Name (ARN) of the project for which you want to
4339
4456
  # update network profile settings.
4340
4457
  # @return [String]
4341
4458
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-devicefarm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-13 00:00:00.000000000 Z
11
+ date: 2018-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core