aws-sdk-devicefarm 1.0.0 → 1.1.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: 79898be2a6adb2b7bf04382319e26f1a4b6822f3
4
- data.tar.gz: 9b3f90ca1aac02cfec37ba68b75a90f55ec2a4b6
3
+ metadata.gz: 02d598c98a113c4aaf05a0f6497f61cf33679b7f
4
+ data.tar.gz: 66c3cf374905c38d173e65546620b2b2b59a2e3f
5
5
  SHA512:
6
- metadata.gz: 8de293e3579d9eaf87691f82797085691af0751900aa0f1e47040b44acff16e62ea3c2ecf44d9b923e2d6e9a51cd3f9bfd0bb33665e4d5fabeaf1b760afc4a37
7
- data.tar.gz: 60fecca08726e6e2f019763b678574829cc95414168e739660f9f005eb4c6774c46b4c0ffd104f9273b999a01cd021f3671f4b99e02c9a427fc0bddc38bc71d9
6
+ metadata.gz: a06bbc0fd2d89e4b679bf0e73e022526885c1bf2c61f8c997cfe92ab3b0ddf4fbdba2659def7b0505735c2300f841ad61859c177f56802219db488bbd94d0d21
7
+ data.tar.gz: 856655f7c0d0ba202d16ef32d5c535723019449ca97b93022c1f3fff479d74c6aafaabf43bb8ad2ca916e30b7314e631c46d9e21a34c7b0f4ac36fea259a92ff
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-devicefarm/customizations'
42
42
  # @service
43
43
  module Aws::DeviceFarm
44
44
 
45
- GEM_VERSION = '1.0.0'
45
+ GEM_VERSION = '1.1.0'
46
46
 
47
47
  end
@@ -200,7 +200,7 @@ module Aws::DeviceFarm
200
200
  # description: "Message",
201
201
  # rules: [ # required
202
202
  # {
203
- # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, APPIUM_VERSION
203
+ # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, REMOTE_DEBUG_ENABLED, APPIUM_VERSION
204
204
  # operator: "EQUALS", # accepts EQUALS, LESS_THAN, GREATER_THAN, IN, NOT_IN, CONTAINS
205
205
  # value: "String",
206
206
  # },
@@ -214,7 +214,7 @@ module Aws::DeviceFarm
214
214
  # resp.device_pool.description #=> String
215
215
  # resp.device_pool.type #=> String, one of "CURATED", "PRIVATE"
216
216
  # resp.device_pool.rules #=> Array
217
- # resp.device_pool.rules[0].attribute #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "APPIUM_VERSION"
217
+ # resp.device_pool.rules[0].attribute #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "REMOTE_DEBUG_ENABLED", "APPIUM_VERSION"
218
218
  # resp.device_pool.rules[0].operator #=> String, one of "EQUALS", "LESS_THAN", "GREATER_THAN", "IN", "NOT_IN", "CONTAINS"
219
219
  # resp.device_pool.rules[0].value #=> String
220
220
  #
@@ -385,9 +385,24 @@ module Aws::DeviceFarm
385
385
  # The Amazon Resource Name (ARN) of the device for which you want to
386
386
  # create a remote access session.
387
387
  #
388
+ # @option params [String] :ssh_public_key
389
+ # The public key of the `ssh` key pair you want to use for connecting to
390
+ # remote devices in your remote debugging session. This is only required
391
+ # if `remoteDebugEnabled` is set to `true`.
392
+ #
393
+ # @option params [Boolean] :remote_debug_enabled
394
+ # Set to `true` if you want to access devices remotely for debugging in
395
+ # your remote access session.
396
+ #
388
397
  # @option params [String] :name
389
398
  # The name of the remote access session that you wish to create.
390
399
  #
400
+ # @option params [String] :client_id
401
+ # Unique identifier for the client. If you want access to multiple
402
+ # devices on the same client, you should pass the same `clientId` value
403
+ # in each call to `CreateRemoteAccessSession`. This is required only if
404
+ # `remoteDebugEnabled` is set to true `true`.
405
+ #
391
406
  # @option params [Types::CreateRemoteAccessSessionConfiguration] :configuration
392
407
  # The configuration information for the remote access session request.
393
408
  #
@@ -420,7 +435,10 @@ module Aws::DeviceFarm
420
435
  # resp = client.create_remote_access_session({
421
436
  # project_arn: "AmazonResourceName", # required
422
437
  # device_arn: "AmazonResourceName", # required
438
+ # ssh_public_key: "SshPublicKey",
439
+ # remote_debug_enabled: false,
423
440
  # name: "Name",
441
+ # client_id: "ClientId",
424
442
  # configuration: {
425
443
  # billing_method: "METERED", # accepts METERED, UNMETERED
426
444
  # },
@@ -454,13 +472,18 @@ module Aws::DeviceFarm
454
472
  # resp.remote_access_session.device.carrier #=> String
455
473
  # resp.remote_access_session.device.radio #=> String
456
474
  # resp.remote_access_session.device.remote_access_enabled #=> Boolean
475
+ # resp.remote_access_session.device.remote_debug_enabled #=> Boolean
457
476
  # resp.remote_access_session.device.fleet_type #=> String
458
477
  # resp.remote_access_session.device.fleet_name #=> String
478
+ # resp.remote_access_session.remote_debug_enabled #=> Boolean
479
+ # resp.remote_access_session.host_address #=> String
480
+ # resp.remote_access_session.client_id #=> String
459
481
  # resp.remote_access_session.billing_method #=> String, one of "METERED", "UNMETERED"
460
482
  # resp.remote_access_session.device_minutes.total #=> Float
461
483
  # resp.remote_access_session.device_minutes.metered #=> Float
462
484
  # resp.remote_access_session.device_minutes.unmetered #=> Float
463
485
  # resp.remote_access_session.endpoint #=> String
486
+ # resp.remote_access_session.device_udid #=> String
464
487
  #
465
488
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSession AWS API Documentation
466
489
  #
@@ -914,6 +937,7 @@ module Aws::DeviceFarm
914
937
  # resp.device.carrier #=> String
915
938
  # resp.device.radio #=> String
916
939
  # resp.device.remote_access_enabled #=> Boolean
940
+ # resp.device.remote_debug_enabled #=> Boolean
917
941
  # resp.device.fleet_type #=> String
918
942
  # resp.device.fleet_name #=> String
919
943
  #
@@ -963,7 +987,7 @@ module Aws::DeviceFarm
963
987
  # resp.device_pool.description #=> String
964
988
  # resp.device_pool.type #=> String, one of "CURATED", "PRIVATE"
965
989
  # resp.device_pool.rules #=> Array
966
- # resp.device_pool.rules[0].attribute #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "APPIUM_VERSION"
990
+ # resp.device_pool.rules[0].attribute #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "REMOTE_DEBUG_ENABLED", "APPIUM_VERSION"
967
991
  # resp.device_pool.rules[0].operator #=> String, one of "EQUALS", "LESS_THAN", "GREATER_THAN", "IN", "NOT_IN", "CONTAINS"
968
992
  # resp.device_pool.rules[0].value #=> String
969
993
  #
@@ -1083,12 +1107,13 @@ module Aws::DeviceFarm
1083
1107
  # resp.compatible_devices[0].device.carrier #=> String
1084
1108
  # resp.compatible_devices[0].device.radio #=> String
1085
1109
  # resp.compatible_devices[0].device.remote_access_enabled #=> Boolean
1110
+ # resp.compatible_devices[0].device.remote_debug_enabled #=> Boolean
1086
1111
  # resp.compatible_devices[0].device.fleet_type #=> String
1087
1112
  # resp.compatible_devices[0].device.fleet_name #=> String
1088
1113
  # resp.compatible_devices[0].compatible #=> Boolean
1089
1114
  # resp.compatible_devices[0].incompatibility_messages #=> Array
1090
1115
  # resp.compatible_devices[0].incompatibility_messages[0].message #=> String
1091
- # resp.compatible_devices[0].incompatibility_messages[0].type #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "APPIUM_VERSION"
1116
+ # resp.compatible_devices[0].incompatibility_messages[0].type #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "REMOTE_DEBUG_ENABLED", "APPIUM_VERSION"
1092
1117
  # resp.incompatible_devices #=> Array
1093
1118
  # resp.incompatible_devices[0].device.arn #=> String
1094
1119
  # resp.incompatible_devices[0].device.name #=> String
@@ -1108,12 +1133,13 @@ module Aws::DeviceFarm
1108
1133
  # resp.incompatible_devices[0].device.carrier #=> String
1109
1134
  # resp.incompatible_devices[0].device.radio #=> String
1110
1135
  # resp.incompatible_devices[0].device.remote_access_enabled #=> Boolean
1136
+ # resp.incompatible_devices[0].device.remote_debug_enabled #=> Boolean
1111
1137
  # resp.incompatible_devices[0].device.fleet_type #=> String
1112
1138
  # resp.incompatible_devices[0].device.fleet_name #=> String
1113
1139
  # resp.incompatible_devices[0].compatible #=> Boolean
1114
1140
  # resp.incompatible_devices[0].incompatibility_messages #=> Array
1115
1141
  # resp.incompatible_devices[0].incompatibility_messages[0].message #=> String
1116
- # resp.incompatible_devices[0].incompatibility_messages[0].type #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "APPIUM_VERSION"
1142
+ # resp.incompatible_devices[0].incompatibility_messages[0].type #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "REMOTE_DEBUG_ENABLED", "APPIUM_VERSION"
1117
1143
  #
1118
1144
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetDevicePoolCompatibility AWS API Documentation
1119
1145
  #
@@ -1190,6 +1216,7 @@ module Aws::DeviceFarm
1190
1216
  # resp.job.device.carrier #=> String
1191
1217
  # resp.job.device.radio #=> String
1192
1218
  # resp.job.device.remote_access_enabled #=> Boolean
1219
+ # resp.job.device.remote_debug_enabled #=> Boolean
1193
1220
  # resp.job.device.fleet_type #=> String
1194
1221
  # resp.job.device.fleet_name #=> String
1195
1222
  # resp.job.device_minutes.total #=> Float
@@ -1451,13 +1478,18 @@ module Aws::DeviceFarm
1451
1478
  # resp.remote_access_session.device.carrier #=> String
1452
1479
  # resp.remote_access_session.device.radio #=> String
1453
1480
  # resp.remote_access_session.device.remote_access_enabled #=> Boolean
1481
+ # resp.remote_access_session.device.remote_debug_enabled #=> Boolean
1454
1482
  # resp.remote_access_session.device.fleet_type #=> String
1455
1483
  # resp.remote_access_session.device.fleet_name #=> String
1484
+ # resp.remote_access_session.remote_debug_enabled #=> Boolean
1485
+ # resp.remote_access_session.host_address #=> String
1486
+ # resp.remote_access_session.client_id #=> String
1456
1487
  # resp.remote_access_session.billing_method #=> String, one of "METERED", "UNMETERED"
1457
1488
  # resp.remote_access_session.device_minutes.total #=> Float
1458
1489
  # resp.remote_access_session.device_minutes.metered #=> Float
1459
1490
  # resp.remote_access_session.device_minutes.unmetered #=> Float
1460
1491
  # resp.remote_access_session.endpoint #=> String
1492
+ # resp.remote_access_session.device_udid #=> String
1461
1493
  #
1462
1494
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRemoteAccessSession AWS API Documentation
1463
1495
  #
@@ -1559,6 +1591,14 @@ module Aws::DeviceFarm
1559
1591
  # resp.run.network_profile.downlink_jitter_ms #=> Integer
1560
1592
  # resp.run.network_profile.uplink_loss_percent #=> Integer
1561
1593
  # resp.run.network_profile.downlink_loss_percent #=> Integer
1594
+ # resp.run.parsing_result_url #=> String
1595
+ # resp.run.result_code #=> String, one of "PARSING_FAILED"
1596
+ # resp.run.customer_artifact_paths.ios_paths #=> Array
1597
+ # resp.run.customer_artifact_paths.ios_paths[0] #=> String
1598
+ # resp.run.customer_artifact_paths.android_paths #=> Array
1599
+ # resp.run.customer_artifact_paths.android_paths[0] #=> String
1600
+ # resp.run.customer_artifact_paths.device_host_paths #=> Array
1601
+ # resp.run.customer_artifact_paths.device_host_paths[0] #=> String
1562
1602
  #
1563
1603
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRun AWS API Documentation
1564
1604
  #
@@ -1851,7 +1891,7 @@ module Aws::DeviceFarm
1851
1891
  # resp.artifacts #=> Array
1852
1892
  # resp.artifacts[0].arn #=> String
1853
1893
  # resp.artifacts[0].name #=> String
1854
- # resp.artifacts[0].type #=> String, one of "UNKNOWN", "SCREENSHOT", "DEVICE_LOG", "MESSAGE_LOG", "VIDEO_LOG", "RESULT_LOG", "SERVICE_LOG", "WEBKIT_LOG", "INSTRUMENTATION_OUTPUT", "EXERCISER_MONKEY_OUTPUT", "CALABASH_JSON_OUTPUT", "CALABASH_PRETTY_OUTPUT", "CALABASH_STANDARD_OUTPUT", "CALABASH_JAVA_XML_OUTPUT", "AUTOMATION_OUTPUT", "APPIUM_SERVER_OUTPUT", "APPIUM_JAVA_OUTPUT", "APPIUM_JAVA_XML_OUTPUT", "APPIUM_PYTHON_OUTPUT", "APPIUM_PYTHON_XML_OUTPUT", "EXPLORER_EVENT_LOG", "EXPLORER_SUMMARY_LOG", "APPLICATION_CRASH_REPORT", "XCTEST_LOG", "VIDEO"
1894
+ # resp.artifacts[0].type #=> String, one of "UNKNOWN", "SCREENSHOT", "DEVICE_LOG", "MESSAGE_LOG", "VIDEO_LOG", "RESULT_LOG", "SERVICE_LOG", "WEBKIT_LOG", "INSTRUMENTATION_OUTPUT", "EXERCISER_MONKEY_OUTPUT", "CALABASH_JSON_OUTPUT", "CALABASH_PRETTY_OUTPUT", "CALABASH_STANDARD_OUTPUT", "CALABASH_JAVA_XML_OUTPUT", "AUTOMATION_OUTPUT", "APPIUM_SERVER_OUTPUT", "APPIUM_JAVA_OUTPUT", "APPIUM_JAVA_XML_OUTPUT", "APPIUM_PYTHON_OUTPUT", "APPIUM_PYTHON_XML_OUTPUT", "EXPLORER_EVENT_LOG", "EXPLORER_SUMMARY_LOG", "APPLICATION_CRASH_REPORT", "XCTEST_LOG", "VIDEO", "CUSTOMER_ARTIFACT", "CUSTOMER_ARTIFACT_LOG"
1855
1895
  # resp.artifacts[0].extension #=> String
1856
1896
  # resp.artifacts[0].url #=> String
1857
1897
  # resp.next_token #=> String
@@ -1947,7 +1987,7 @@ module Aws::DeviceFarm
1947
1987
  # resp.device_pools[0].description #=> String
1948
1988
  # resp.device_pools[0].type #=> String, one of "CURATED", "PRIVATE"
1949
1989
  # resp.device_pools[0].rules #=> Array
1950
- # resp.device_pools[0].rules[0].attribute #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "APPIUM_VERSION"
1990
+ # resp.device_pools[0].rules[0].attribute #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "REMOTE_DEBUG_ENABLED", "APPIUM_VERSION"
1951
1991
  # resp.device_pools[0].rules[0].operator #=> String, one of "EQUALS", "LESS_THAN", "GREATER_THAN", "IN", "NOT_IN", "CONTAINS"
1952
1992
  # resp.device_pools[0].rules[0].value #=> String
1953
1993
  # resp.next_token #=> String
@@ -2017,6 +2057,7 @@ module Aws::DeviceFarm
2017
2057
  # resp.devices[0].carrier #=> String
2018
2058
  # resp.devices[0].radio #=> String
2019
2059
  # resp.devices[0].remote_access_enabled #=> Boolean
2060
+ # resp.devices[0].remote_debug_enabled #=> Boolean
2020
2061
  # resp.devices[0].fleet_type #=> String
2021
2062
  # resp.devices[0].fleet_name #=> String
2022
2063
  # resp.next_token #=> String
@@ -2098,6 +2139,7 @@ module Aws::DeviceFarm
2098
2139
  # resp.jobs[0].device.carrier #=> String
2099
2140
  # resp.jobs[0].device.radio #=> String
2100
2141
  # resp.jobs[0].device.remote_access_enabled #=> Boolean
2142
+ # resp.jobs[0].device.remote_debug_enabled #=> Boolean
2101
2143
  # resp.jobs[0].device.fleet_type #=> String
2102
2144
  # resp.jobs[0].device.fleet_name #=> String
2103
2145
  # resp.jobs[0].device_minutes.total #=> Float
@@ -2609,13 +2651,18 @@ module Aws::DeviceFarm
2609
2651
  # resp.remote_access_sessions[0].device.carrier #=> String
2610
2652
  # resp.remote_access_sessions[0].device.radio #=> String
2611
2653
  # resp.remote_access_sessions[0].device.remote_access_enabled #=> Boolean
2654
+ # resp.remote_access_sessions[0].device.remote_debug_enabled #=> Boolean
2612
2655
  # resp.remote_access_sessions[0].device.fleet_type #=> String
2613
2656
  # resp.remote_access_sessions[0].device.fleet_name #=> String
2657
+ # resp.remote_access_sessions[0].remote_debug_enabled #=> Boolean
2658
+ # resp.remote_access_sessions[0].host_address #=> String
2659
+ # resp.remote_access_sessions[0].client_id #=> String
2614
2660
  # resp.remote_access_sessions[0].billing_method #=> String, one of "METERED", "UNMETERED"
2615
2661
  # resp.remote_access_sessions[0].device_minutes.total #=> Float
2616
2662
  # resp.remote_access_sessions[0].device_minutes.metered #=> Float
2617
2663
  # resp.remote_access_sessions[0].device_minutes.unmetered #=> Float
2618
2664
  # resp.remote_access_sessions[0].endpoint #=> String
2665
+ # resp.remote_access_sessions[0].device_udid #=> String
2619
2666
  # resp.next_token #=> String
2620
2667
  #
2621
2668
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRemoteAccessSessions AWS API Documentation
@@ -2730,6 +2777,14 @@ module Aws::DeviceFarm
2730
2777
  # resp.runs[0].network_profile.downlink_jitter_ms #=> Integer
2731
2778
  # resp.runs[0].network_profile.uplink_loss_percent #=> Integer
2732
2779
  # resp.runs[0].network_profile.downlink_loss_percent #=> Integer
2780
+ # resp.runs[0].parsing_result_url #=> String
2781
+ # resp.runs[0].result_code #=> String, one of "PARSING_FAILED"
2782
+ # resp.runs[0].customer_artifact_paths.ios_paths #=> Array
2783
+ # resp.runs[0].customer_artifact_paths.ios_paths[0] #=> String
2784
+ # resp.runs[0].customer_artifact_paths.android_paths #=> Array
2785
+ # resp.runs[0].customer_artifact_paths.android_paths[0] #=> String
2786
+ # resp.runs[0].customer_artifact_paths.device_host_paths #=> Array
2787
+ # resp.runs[0].customer_artifact_paths.device_host_paths[0] #=> String
2733
2788
  # resp.next_token #=> String
2734
2789
  #
2735
2790
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRuns AWS API Documentation
@@ -3009,6 +3064,7 @@ module Aws::DeviceFarm
3009
3064
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.carrier #=> String
3010
3065
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.radio #=> String
3011
3066
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.remote_access_enabled #=> Boolean
3067
+ # resp.unique_problems["ExecutionResult"][0].problems[0].device.remote_debug_enabled #=> Boolean
3012
3068
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.fleet_type #=> String
3013
3069
  # resp.unique_problems["ExecutionResult"][0].problems[0].device.fleet_name #=> String
3014
3070
  # resp.unique_problems["ExecutionResult"][0].problems[0].result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
@@ -3333,6 +3389,11 @@ module Aws::DeviceFarm
3333
3389
  # latitude: 1.0, # required
3334
3390
  # longitude: 1.0, # required
3335
3391
  # },
3392
+ # customer_artifact_paths: {
3393
+ # ios_paths: ["String"],
3394
+ # android_paths: ["String"],
3395
+ # device_host_paths: ["String"],
3396
+ # },
3336
3397
  # radios: {
3337
3398
  # wifi: false,
3338
3399
  # bluetooth: false,
@@ -3386,6 +3447,14 @@ module Aws::DeviceFarm
3386
3447
  # resp.run.network_profile.downlink_jitter_ms #=> Integer
3387
3448
  # resp.run.network_profile.uplink_loss_percent #=> Integer
3388
3449
  # resp.run.network_profile.downlink_loss_percent #=> Integer
3450
+ # resp.run.parsing_result_url #=> String
3451
+ # resp.run.result_code #=> String, one of "PARSING_FAILED"
3452
+ # resp.run.customer_artifact_paths.ios_paths #=> Array
3453
+ # resp.run.customer_artifact_paths.ios_paths[0] #=> String
3454
+ # resp.run.customer_artifact_paths.android_paths #=> Array
3455
+ # resp.run.customer_artifact_paths.android_paths[0] #=> String
3456
+ # resp.run.customer_artifact_paths.device_host_paths #=> Array
3457
+ # resp.run.customer_artifact_paths.device_host_paths[0] #=> String
3389
3458
  #
3390
3459
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ScheduleRun AWS API Documentation
3391
3460
  #
@@ -3440,13 +3509,18 @@ module Aws::DeviceFarm
3440
3509
  # resp.remote_access_session.device.carrier #=> String
3441
3510
  # resp.remote_access_session.device.radio #=> String
3442
3511
  # resp.remote_access_session.device.remote_access_enabled #=> Boolean
3512
+ # resp.remote_access_session.device.remote_debug_enabled #=> Boolean
3443
3513
  # resp.remote_access_session.device.fleet_type #=> String
3444
3514
  # resp.remote_access_session.device.fleet_name #=> String
3515
+ # resp.remote_access_session.remote_debug_enabled #=> Boolean
3516
+ # resp.remote_access_session.host_address #=> String
3517
+ # resp.remote_access_session.client_id #=> String
3445
3518
  # resp.remote_access_session.billing_method #=> String, one of "METERED", "UNMETERED"
3446
3519
  # resp.remote_access_session.device_minutes.total #=> Float
3447
3520
  # resp.remote_access_session.device_minutes.metered #=> Float
3448
3521
  # resp.remote_access_session.device_minutes.unmetered #=> Float
3449
3522
  # resp.remote_access_session.endpoint #=> String
3523
+ # resp.remote_access_session.device_udid #=> String
3450
3524
  #
3451
3525
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRemoteAccessSession AWS API Documentation
3452
3526
  #
@@ -3531,6 +3605,14 @@ module Aws::DeviceFarm
3531
3605
  # resp.run.network_profile.downlink_jitter_ms #=> Integer
3532
3606
  # resp.run.network_profile.uplink_loss_percent #=> Integer
3533
3607
  # resp.run.network_profile.downlink_loss_percent #=> Integer
3608
+ # resp.run.parsing_result_url #=> String
3609
+ # resp.run.result_code #=> String, one of "PARSING_FAILED"
3610
+ # resp.run.customer_artifact_paths.ios_paths #=> Array
3611
+ # resp.run.customer_artifact_paths.ios_paths[0] #=> String
3612
+ # resp.run.customer_artifact_paths.android_paths #=> Array
3613
+ # resp.run.customer_artifact_paths.android_paths[0] #=> String
3614
+ # resp.run.customer_artifact_paths.device_host_paths #=> Array
3615
+ # resp.run.customer_artifact_paths.device_host_paths[0] #=> String
3534
3616
  #
3535
3617
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRun AWS API Documentation
3536
3618
  #
@@ -3596,7 +3678,7 @@ module Aws::DeviceFarm
3596
3678
  # description: "Message",
3597
3679
  # rules: [
3598
3680
  # {
3599
- # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, APPIUM_VERSION
3681
+ # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, REMOTE_DEBUG_ENABLED, APPIUM_VERSION
3600
3682
  # operator: "EQUALS", # accepts EQUALS, LESS_THAN, GREATER_THAN, IN, NOT_IN, CONTAINS
3601
3683
  # value: "String",
3602
3684
  # },
@@ -3610,7 +3692,7 @@ module Aws::DeviceFarm
3610
3692
  # resp.device_pool.description #=> String
3611
3693
  # resp.device_pool.type #=> String, one of "CURATED", "PRIVATE"
3612
3694
  # resp.device_pool.rules #=> Array
3613
- # resp.device_pool.rules[0].attribute #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "APPIUM_VERSION"
3695
+ # resp.device_pool.rules[0].attribute #=> String, one of "ARN", "PLATFORM", "FORM_FACTOR", "MANUFACTURER", "REMOTE_ACCESS_ENABLED", "REMOTE_DEBUG_ENABLED", "APPIUM_VERSION"
3614
3696
  # resp.device_pool.rules[0].operator #=> String, one of "EQUALS", "LESS_THAN", "GREATER_THAN", "IN", "NOT_IN", "CONTAINS"
3615
3697
  # resp.device_pool.rules[0].value #=> String
3616
3698
  #
@@ -3793,7 +3875,7 @@ module Aws::DeviceFarm
3793
3875
  params: params,
3794
3876
  config: config)
3795
3877
  context[:gem_name] = 'aws-sdk-devicefarm'
3796
- context[:gem_version] = '1.0.0'
3878
+ context[:gem_version] = '1.1.0'
3797
3879
  Seahorse::Client::Request.new(handlers, context)
3798
3880
  end
3799
3881
 
@@ -16,6 +16,7 @@ module Aws::DeviceFarm
16
16
  AccountsCleanup = Shapes::BooleanShape.new(name: 'AccountsCleanup')
17
17
  AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
18
18
  AmazonResourceNames = Shapes::ListShape.new(name: 'AmazonResourceNames')
19
+ AndroidPaths = Shapes::ListShape.new(name: 'AndroidPaths')
19
20
  AppPackagesCleanup = Shapes::BooleanShape.new(name: 'AppPackagesCleanup')
20
21
  ArgumentException = Shapes::StructureShape.new(name: 'ArgumentException')
21
22
  Artifact = Shapes::StructureShape.new(name: 'Artifact')
@@ -25,6 +26,7 @@ module Aws::DeviceFarm
25
26
  BillingMethod = Shapes::StringShape.new(name: 'BillingMethod')
26
27
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
27
28
  CPU = Shapes::StructureShape.new(name: 'CPU')
29
+ ClientId = Shapes::StringShape.new(name: 'ClientId')
28
30
  ContentType = Shapes::StringShape.new(name: 'ContentType')
29
31
  Counters = Shapes::StructureShape.new(name: 'Counters')
30
32
  CreateDevicePoolRequest = Shapes::StructureShape.new(name: 'CreateDevicePoolRequest')
@@ -39,6 +41,7 @@ module Aws::DeviceFarm
39
41
  CreateUploadRequest = Shapes::StructureShape.new(name: 'CreateUploadRequest')
40
42
  CreateUploadResult = Shapes::StructureShape.new(name: 'CreateUploadResult')
41
43
  CurrencyCode = Shapes::StringShape.new(name: 'CurrencyCode')
44
+ CustomerArtifactPaths = Shapes::StructureShape.new(name: 'CustomerArtifactPaths')
42
45
  DateTime = Shapes::TimestampShape.new(name: 'DateTime')
43
46
  DeleteDevicePoolRequest = Shapes::StructureShape.new(name: 'DeleteDevicePoolRequest')
44
47
  DeleteDevicePoolResult = Shapes::StructureShape.new(name: 'DeleteDevicePoolResult')
@@ -55,6 +58,7 @@ module Aws::DeviceFarm
55
58
  Device = Shapes::StructureShape.new(name: 'Device')
56
59
  DeviceAttribute = Shapes::StringShape.new(name: 'DeviceAttribute')
57
60
  DeviceFormFactor = Shapes::StringShape.new(name: 'DeviceFormFactor')
61
+ DeviceHostPaths = Shapes::ListShape.new(name: 'DeviceHostPaths')
58
62
  DeviceMinutes = Shapes::StructureShape.new(name: 'DeviceMinutes')
59
63
  DevicePlatform = Shapes::StringShape.new(name: 'DevicePlatform')
60
64
  DevicePool = Shapes::StructureShape.new(name: 'DevicePool')
@@ -66,6 +70,7 @@ module Aws::DeviceFarm
66
70
  Double = Shapes::FloatShape.new(name: 'Double')
67
71
  ExecutionConfiguration = Shapes::StructureShape.new(name: 'ExecutionConfiguration')
68
72
  ExecutionResult = Shapes::StringShape.new(name: 'ExecutionResult')
73
+ ExecutionResultCode = Shapes::StringShape.new(name: 'ExecutionResultCode')
69
74
  ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
70
75
  Filter = Shapes::StringShape.new(name: 'Filter')
71
76
  GetAccountSettingsRequest = Shapes::StructureShape.new(name: 'GetAccountSettingsRequest')
@@ -94,12 +99,14 @@ module Aws::DeviceFarm
94
99
  GetTestResult = Shapes::StructureShape.new(name: 'GetTestResult')
95
100
  GetUploadRequest = Shapes::StructureShape.new(name: 'GetUploadRequest')
96
101
  GetUploadResult = Shapes::StructureShape.new(name: 'GetUploadResult')
102
+ HostAddress = Shapes::StringShape.new(name: 'HostAddress')
97
103
  IdempotencyException = Shapes::StructureShape.new(name: 'IdempotencyException')
98
104
  IncompatibilityMessage = Shapes::StructureShape.new(name: 'IncompatibilityMessage')
99
105
  IncompatibilityMessages = Shapes::ListShape.new(name: 'IncompatibilityMessages')
100
106
  InstallToRemoteAccessSessionRequest = Shapes::StructureShape.new(name: 'InstallToRemoteAccessSessionRequest')
101
107
  InstallToRemoteAccessSessionResult = Shapes::StructureShape.new(name: 'InstallToRemoteAccessSessionResult')
102
108
  Integer = Shapes::IntegerShape.new(name: 'Integer')
109
+ IosPaths = Shapes::ListShape.new(name: 'IosPaths')
103
110
  Job = Shapes::StructureShape.new(name: 'Job')
104
111
  JobTimeoutMinutes = Shapes::IntegerShape.new(name: 'JobTimeoutMinutes')
105
112
  Jobs = Shapes::ListShape.new(name: 'Jobs')
@@ -192,6 +199,7 @@ module Aws::DeviceFarm
192
199
  ScheduleRunResult = Shapes::StructureShape.new(name: 'ScheduleRunResult')
193
200
  ScheduleRunTest = Shapes::StructureShape.new(name: 'ScheduleRunTest')
194
201
  ServiceAccountException = Shapes::StructureShape.new(name: 'ServiceAccountException')
202
+ SshPublicKey = Shapes::StringShape.new(name: 'SshPublicKey')
195
203
  StopRemoteAccessSessionRequest = Shapes::StructureShape.new(name: 'StopRemoteAccessSessionRequest')
196
204
  StopRemoteAccessSessionResult = Shapes::StructureShape.new(name: 'StopRemoteAccessSessionResult')
197
205
  StopRunRequest = Shapes::StructureShape.new(name: 'StopRunRequest')
@@ -231,6 +239,8 @@ module Aws::DeviceFarm
231
239
 
232
240
  AmazonResourceNames.member = Shapes::ShapeRef.new(shape: AmazonResourceName)
233
241
 
242
+ AndroidPaths.member = Shapes::ShapeRef.new(shape: String)
243
+
234
244
  Artifact.add_member(:arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "arn"))
235
245
  Artifact.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
236
246
  Artifact.add_member(:type, Shapes::ShapeRef.new(shape: ArtifactType, location_name: "type"))
@@ -292,7 +302,10 @@ module Aws::DeviceFarm
292
302
 
293
303
  CreateRemoteAccessSessionRequest.add_member(:project_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "projectArn"))
294
304
  CreateRemoteAccessSessionRequest.add_member(:device_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "deviceArn"))
305
+ CreateRemoteAccessSessionRequest.add_member(:ssh_public_key, Shapes::ShapeRef.new(shape: SshPublicKey, location_name: "sshPublicKey"))
306
+ CreateRemoteAccessSessionRequest.add_member(:remote_debug_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteDebugEnabled"))
295
307
  CreateRemoteAccessSessionRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
308
+ CreateRemoteAccessSessionRequest.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "clientId"))
296
309
  CreateRemoteAccessSessionRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: CreateRemoteAccessSessionConfiguration, location_name: "configuration"))
297
310
  CreateRemoteAccessSessionRequest.struct_class = Types::CreateRemoteAccessSessionRequest
298
311
 
@@ -308,6 +321,11 @@ module Aws::DeviceFarm
308
321
  CreateUploadResult.add_member(:upload, Shapes::ShapeRef.new(shape: Upload, location_name: "upload"))
309
322
  CreateUploadResult.struct_class = Types::CreateUploadResult
310
323
 
324
+ CustomerArtifactPaths.add_member(:ios_paths, Shapes::ShapeRef.new(shape: IosPaths, location_name: "iosPaths"))
325
+ CustomerArtifactPaths.add_member(:android_paths, Shapes::ShapeRef.new(shape: AndroidPaths, location_name: "androidPaths"))
326
+ CustomerArtifactPaths.add_member(:device_host_paths, Shapes::ShapeRef.new(shape: DeviceHostPaths, location_name: "deviceHostPaths"))
327
+ CustomerArtifactPaths.struct_class = Types::CustomerArtifactPaths
328
+
311
329
  DeleteDevicePoolRequest.add_member(:arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "arn"))
312
330
  DeleteDevicePoolRequest.struct_class = Types::DeleteDevicePoolRequest
313
331
 
@@ -353,10 +371,13 @@ module Aws::DeviceFarm
353
371
  Device.add_member(:carrier, Shapes::ShapeRef.new(shape: String, location_name: "carrier"))
354
372
  Device.add_member(:radio, Shapes::ShapeRef.new(shape: String, location_name: "radio"))
355
373
  Device.add_member(:remote_access_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteAccessEnabled"))
374
+ Device.add_member(:remote_debug_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteDebugEnabled"))
356
375
  Device.add_member(:fleet_type, Shapes::ShapeRef.new(shape: String, location_name: "fleetType"))
357
376
  Device.add_member(:fleet_name, Shapes::ShapeRef.new(shape: String, location_name: "fleetName"))
358
377
  Device.struct_class = Types::Device
359
378
 
379
+ DeviceHostPaths.member = Shapes::ShapeRef.new(shape: String)
380
+
360
381
  DeviceMinutes.add_member(:total, Shapes::ShapeRef.new(shape: Double, location_name: "total"))
361
382
  DeviceMinutes.add_member(:metered, Shapes::ShapeRef.new(shape: Double, location_name: "metered"))
362
383
  DeviceMinutes.add_member(:unmetered, Shapes::ShapeRef.new(shape: Double, location_name: "unmetered"))
@@ -481,6 +502,8 @@ module Aws::DeviceFarm
481
502
  InstallToRemoteAccessSessionResult.add_member(:app_upload, Shapes::ShapeRef.new(shape: Upload, location_name: "appUpload"))
482
503
  InstallToRemoteAccessSessionResult.struct_class = Types::InstallToRemoteAccessSessionResult
483
504
 
505
+ IosPaths.member = Shapes::ShapeRef.new(shape: String)
506
+
484
507
  Job.add_member(:arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "arn"))
485
508
  Job.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
486
509
  Job.add_member(:type, Shapes::ShapeRef.new(shape: TestType, location_name: "type"))
@@ -740,9 +763,13 @@ module Aws::DeviceFarm
740
763
  RemoteAccessSession.add_member(:started, Shapes::ShapeRef.new(shape: DateTime, location_name: "started"))
741
764
  RemoteAccessSession.add_member(:stopped, Shapes::ShapeRef.new(shape: DateTime, location_name: "stopped"))
742
765
  RemoteAccessSession.add_member(:device, Shapes::ShapeRef.new(shape: Device, location_name: "device"))
766
+ RemoteAccessSession.add_member(:remote_debug_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteDebugEnabled"))
767
+ RemoteAccessSession.add_member(:host_address, Shapes::ShapeRef.new(shape: HostAddress, location_name: "hostAddress"))
768
+ RemoteAccessSession.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "clientId"))
743
769
  RemoteAccessSession.add_member(:billing_method, Shapes::ShapeRef.new(shape: BillingMethod, location_name: "billingMethod"))
744
770
  RemoteAccessSession.add_member(:device_minutes, Shapes::ShapeRef.new(shape: DeviceMinutes, location_name: "deviceMinutes"))
745
771
  RemoteAccessSession.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
772
+ RemoteAccessSession.add_member(:device_udid, Shapes::ShapeRef.new(shape: String, location_name: "deviceUdid"))
746
773
  RemoteAccessSession.struct_class = Types::RemoteAccessSession
747
774
 
748
775
  RemoteAccessSessions.member = Shapes::ShapeRef.new(shape: RemoteAccessSession)
@@ -781,6 +808,9 @@ module Aws::DeviceFarm
781
808
  Run.add_member(:billing_method, Shapes::ShapeRef.new(shape: BillingMethod, location_name: "billingMethod"))
782
809
  Run.add_member(:device_minutes, Shapes::ShapeRef.new(shape: DeviceMinutes, location_name: "deviceMinutes"))
783
810
  Run.add_member(:network_profile, Shapes::ShapeRef.new(shape: NetworkProfile, location_name: "networkProfile"))
811
+ Run.add_member(:parsing_result_url, Shapes::ShapeRef.new(shape: String, location_name: "parsingResultUrl"))
812
+ Run.add_member(:result_code, Shapes::ShapeRef.new(shape: ExecutionResultCode, location_name: "resultCode"))
813
+ Run.add_member(:customer_artifact_paths, Shapes::ShapeRef.new(shape: CustomerArtifactPaths, location_name: "customerArtifactPaths"))
784
814
  Run.struct_class = Types::Run
785
815
 
786
816
  Runs.member = Shapes::ShapeRef.new(shape: Run)
@@ -796,6 +826,7 @@ module Aws::DeviceFarm
796
826
  ScheduleRunConfiguration.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "networkProfileArn"))
797
827
  ScheduleRunConfiguration.add_member(:locale, Shapes::ShapeRef.new(shape: String, location_name: "locale"))
798
828
  ScheduleRunConfiguration.add_member(:location, Shapes::ShapeRef.new(shape: Location, location_name: "location"))
829
+ ScheduleRunConfiguration.add_member(:customer_artifact_paths, Shapes::ShapeRef.new(shape: CustomerArtifactPaths, location_name: "customerArtifactPaths"))
799
830
  ScheduleRunConfiguration.add_member(:radios, Shapes::ShapeRef.new(shape: Radios, location_name: "radios"))
800
831
  ScheduleRunConfiguration.add_member(:auxiliary_apps, Shapes::ShapeRef.new(shape: AmazonResourceNames, location_name: "auxiliaryApps"))
801
832
  ScheduleRunConfiguration.add_member(:billing_method, Shapes::ShapeRef.new(shape: BillingMethod, location_name: "billingMethod"))
@@ -225,7 +225,7 @@ module Aws::DeviceFarm
225
225
  # description: "Message",
226
226
  # rules: [ # required
227
227
  # {
228
- # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, APPIUM_VERSION
228
+ # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, REMOTE_DEBUG_ENABLED, APPIUM_VERSION
229
229
  # operator: "EQUALS", # accepts EQUALS, LESS_THAN, GREATER_THAN, IN, NOT_IN, CONTAINS
230
230
  # value: "String",
231
231
  # },
@@ -448,7 +448,10 @@ module Aws::DeviceFarm
448
448
  # {
449
449
  # project_arn: "AmazonResourceName", # required
450
450
  # device_arn: "AmazonResourceName", # required
451
+ # ssh_public_key: "SshPublicKey",
452
+ # remote_debug_enabled: false,
451
453
  # name: "Name",
454
+ # client_id: "ClientId",
452
455
  # configuration: {
453
456
  # billing_method: "METERED", # accepts METERED, UNMETERED
454
457
  # },
@@ -464,10 +467,28 @@ module Aws::DeviceFarm
464
467
  # create a remote access session.
465
468
  # @return [String]
466
469
  #
470
+ # @!attribute [rw] ssh_public_key
471
+ # The public key of the `ssh` key pair you want to use for connecting
472
+ # to remote devices in your remote debugging session. This is only
473
+ # required if `remoteDebugEnabled` is set to `true`.
474
+ # @return [String]
475
+ #
476
+ # @!attribute [rw] remote_debug_enabled
477
+ # Set to `true` if you want to access devices remotely for debugging
478
+ # in your remote access session.
479
+ # @return [Boolean]
480
+ #
467
481
  # @!attribute [rw] name
468
482
  # The name of the remote access session that you wish to create.
469
483
  # @return [String]
470
484
  #
485
+ # @!attribute [rw] client_id
486
+ # Unique identifier for the client. If you want access to multiple
487
+ # devices on the same client, you should pass the same `clientId`
488
+ # value in each call to `CreateRemoteAccessSession`. This is required
489
+ # only if `remoteDebugEnabled` is set to true `true`.
490
+ # @return [String]
491
+ #
471
492
  # @!attribute [rw] configuration
472
493
  # The configuration information for the remote access session request.
473
494
  # @return [Types::CreateRemoteAccessSessionConfiguration]
@@ -477,7 +498,10 @@ module Aws::DeviceFarm
477
498
  class CreateRemoteAccessSessionRequest < Struct.new(
478
499
  :project_arn,
479
500
  :device_arn,
501
+ :ssh_public_key,
502
+ :remote_debug_enabled,
480
503
  :name,
504
+ :client_id,
481
505
  :configuration)
482
506
  include Aws::Structure
483
507
  end
@@ -596,6 +620,49 @@ module Aws::DeviceFarm
596
620
  include Aws::Structure
597
621
  end
598
622
 
623
+ # A JSON object specifying the paths where the artifacts generated by
624
+ # the customer's tests, on the device or in the test environment, will
625
+ # be pulled from.
626
+ #
627
+ # Specify `deviceHostPaths` and optionally specify either `iosPaths` or
628
+ # `androidPaths`.
629
+ #
630
+ # For web app tests, you can specify both `iosPaths` and `androidPaths`.
631
+ #
632
+ # @note When making an API call, you may pass CustomerArtifactPaths
633
+ # data as a hash:
634
+ #
635
+ # {
636
+ # ios_paths: ["String"],
637
+ # android_paths: ["String"],
638
+ # device_host_paths: ["String"],
639
+ # }
640
+ #
641
+ # @!attribute [rw] ios_paths
642
+ # Comma-separated list of paths on the iOS device where the artifacts
643
+ # generated by the customer's tests will be pulled from.
644
+ # @return [Array<String>]
645
+ #
646
+ # @!attribute [rw] android_paths
647
+ # Comma-separated list of paths on the Android device where the
648
+ # artifacts generated by the customer's tests will be pulled from.
649
+ # @return [Array<String>]
650
+ #
651
+ # @!attribute [rw] device_host_paths
652
+ # Comma-separated list of paths in the test execution environment
653
+ # where the artifacts generated by the customer's tests will be
654
+ # pulled from.
655
+ # @return [Array<String>]
656
+ #
657
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CustomerArtifactPaths AWS API Documentation
658
+ #
659
+ class CustomerArtifactPaths < Struct.new(
660
+ :ios_paths,
661
+ :android_paths,
662
+ :device_host_paths)
663
+ include Aws::Structure
664
+ end
665
+
599
666
  # Represents a request to the delete device pool operation.
600
667
  #
601
668
  # @note When making an API call, you may pass DeleteDevicePoolRequest
@@ -829,6 +896,11 @@ module Aws::DeviceFarm
829
896
  # device.
830
897
  # @return [Boolean]
831
898
  #
899
+ # @!attribute [rw] remote_debug_enabled
900
+ # This flag is set to `true` if remote debugging is enabled for the
901
+ # device.
902
+ # @return [Boolean]
903
+ #
832
904
  # @!attribute [rw] fleet_type
833
905
  # The type of fleet to which this device belongs. Possible values for
834
906
  # fleet type are PRIVATE and PUBLIC.
@@ -856,6 +928,7 @@ module Aws::DeviceFarm
856
928
  :carrier,
857
929
  :radio,
858
930
  :remote_access_enabled,
931
+ :remote_debug_enabled,
859
932
  :fleet_type,
860
933
  :fleet_name)
861
934
  include Aws::Structure
@@ -3041,6 +3114,23 @@ module Aws::DeviceFarm
3041
3114
  # The device (phone or tablet) used in the remote access session.
3042
3115
  # @return [Types::Device]
3043
3116
  #
3117
+ # @!attribute [rw] remote_debug_enabled
3118
+ # This flag is set to `true` if remote debugging is enabled for the
3119
+ # remote access session.
3120
+ # @return [Boolean]
3121
+ #
3122
+ # @!attribute [rw] host_address
3123
+ # IP address of the EC2 host where you need to connect to remotely
3124
+ # debug devices. Only returned if remote debugging is enabled for the
3125
+ # remote access session.
3126
+ # @return [String]
3127
+ #
3128
+ # @!attribute [rw] client_id
3129
+ # Unique identifier of your client for the remote access session. Only
3130
+ # returned if remote debugging is enabled for the remote access
3131
+ # session.
3132
+ # @return [String]
3133
+ #
3044
3134
  # @!attribute [rw] billing_method
3045
3135
  # The billing method of the remote access session. Possible values
3046
3136
  # include `METERED` or `UNMETERED`. For more information about metered
@@ -3060,6 +3150,11 @@ module Aws::DeviceFarm
3060
3150
  # The endpoint for the remote access sesssion.
3061
3151
  # @return [String]
3062
3152
  #
3153
+ # @!attribute [rw] device_udid
3154
+ # Unique device identifier for the remote device. Only returned if
3155
+ # remote debugging is enabled for the remote access session.
3156
+ # @return [String]
3157
+ #
3063
3158
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/RemoteAccessSession AWS API Documentation
3064
3159
  #
3065
3160
  class RemoteAccessSession < Struct.new(
@@ -3072,9 +3167,13 @@ module Aws::DeviceFarm
3072
3167
  :started,
3073
3168
  :stopped,
3074
3169
  :device,
3170
+ :remote_debug_enabled,
3171
+ :host_address,
3172
+ :client_id,
3075
3173
  :billing_method,
3076
3174
  :device_minutes,
3077
- :endpoint)
3175
+ :endpoint,
3176
+ :device_udid)
3078
3177
  include Aws::Structure
3079
3178
  end
3080
3179
 
@@ -3142,7 +3241,7 @@ module Aws::DeviceFarm
3142
3241
  # data as a hash:
3143
3242
  #
3144
3243
  # {
3145
- # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, APPIUM_VERSION
3244
+ # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, REMOTE_DEBUG_ENABLED, APPIUM_VERSION
3146
3245
  # operator: "EQUALS", # accepts EQUALS, LESS_THAN, GREATER_THAN, IN, NOT_IN, CONTAINS
3147
3246
  # value: "String",
3148
3247
  # }
@@ -3196,8 +3295,8 @@ module Aws::DeviceFarm
3196
3295
  include Aws::Structure
3197
3296
  end
3198
3297
 
3199
- # Represents an app on a set of devices with a specific test and
3200
- # configuration.
3298
+ # Represents a test run on a set of devices with a given app package,
3299
+ # test parameters, etc.
3201
3300
  #
3202
3301
  # @!attribute [rw] arn
3203
3302
  # The run's ARN.
@@ -3341,6 +3440,23 @@ module Aws::DeviceFarm
3341
3440
  # The network profile being used for a test run.
3342
3441
  # @return [Types::NetworkProfile]
3343
3442
  #
3443
+ # @!attribute [rw] parsing_result_url
3444
+ # Read-only URL for an object in S3 bucket where you can get the
3445
+ # parsing results of the test package. If the test package doesn't
3446
+ # parse, the reason why it doesn't parse appears in the file that
3447
+ # this URL points to.
3448
+ # @return [String]
3449
+ #
3450
+ # @!attribute [rw] result_code
3451
+ # Supporting field for the result field. Set only if `result` is
3452
+ # `SKIPPED`. `PARSING_FAILED` if the result is skipped because of test
3453
+ # package parsing failure.
3454
+ # @return [String]
3455
+ #
3456
+ # @!attribute [rw] customer_artifact_paths
3457
+ # Output `CustomerArtifactPaths` object for the test run.
3458
+ # @return [Types::CustomerArtifactPaths]
3459
+ #
3344
3460
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Run AWS API Documentation
3345
3461
  #
3346
3462
  class Run < Struct.new(
@@ -3359,7 +3475,10 @@ module Aws::DeviceFarm
3359
3475
  :completed_jobs,
3360
3476
  :billing_method,
3361
3477
  :device_minutes,
3362
- :network_profile)
3478
+ :network_profile,
3479
+ :parsing_result_url,
3480
+ :result_code,
3481
+ :customer_artifact_paths)
3363
3482
  include Aws::Structure
3364
3483
  end
3365
3484
 
@@ -3443,6 +3562,11 @@ module Aws::DeviceFarm
3443
3562
  # latitude: 1.0, # required
3444
3563
  # longitude: 1.0, # required
3445
3564
  # },
3565
+ # customer_artifact_paths: {
3566
+ # ios_paths: ["String"],
3567
+ # android_paths: ["String"],
3568
+ # device_host_paths: ["String"],
3569
+ # },
3446
3570
  # radios: {
3447
3571
  # wifi: false,
3448
3572
  # bluetooth: false,
@@ -3471,6 +3595,11 @@ module Aws::DeviceFarm
3471
3595
  # Information about the location that is used for the run.
3472
3596
  # @return [Types::Location]
3473
3597
  #
3598
+ # @!attribute [rw] customer_artifact_paths
3599
+ # Input `CustomerArtifactPaths` object for the scheduled run
3600
+ # configuration.
3601
+ # @return [Types::CustomerArtifactPaths]
3602
+ #
3474
3603
  # @!attribute [rw] radios
3475
3604
  # Information about the radio states for the run.
3476
3605
  # @return [Types::Radios]
@@ -3492,6 +3621,7 @@ module Aws::DeviceFarm
3492
3621
  :network_profile_arn,
3493
3622
  :locale,
3494
3623
  :location,
3624
+ :customer_artifact_paths,
3495
3625
  :radios,
3496
3626
  :auxiliary_apps,
3497
3627
  :billing_method)
@@ -3524,6 +3654,11 @@ module Aws::DeviceFarm
3524
3654
  # latitude: 1.0, # required
3525
3655
  # longitude: 1.0, # required
3526
3656
  # },
3657
+ # customer_artifact_paths: {
3658
+ # ios_paths: ["String"],
3659
+ # android_paths: ["String"],
3660
+ # device_host_paths: ["String"],
3661
+ # },
3527
3662
  # radios: {
3528
3663
  # wifi: false,
3529
3664
  # bluetooth: false,
@@ -4131,7 +4266,7 @@ module Aws::DeviceFarm
4131
4266
  # description: "Message",
4132
4267
  # rules: [
4133
4268
  # {
4134
- # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, APPIUM_VERSION
4269
+ # attribute: "ARN", # accepts ARN, PLATFORM, FORM_FACTOR, MANUFACTURER, REMOTE_ACCESS_ENABLED, REMOTE_DEBUG_ENABLED, APPIUM_VERSION
4135
4270
  # operator: "EQUALS", # accepts EQUALS, LESS_THAN, GREATER_THAN, IN, NOT_IN, CONTAINS
4136
4271
  # value: "String",
4137
4272
  # },
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.0.0
4
+ version: 1.1.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-08-29 00:00:00.000000000 Z
11
+ date: 2017-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -56,7 +56,9 @@ files:
56
56
  homepage: http://github.com/aws/aws-sdk-ruby
57
57
  licenses:
58
58
  - Apache-2.0
59
- metadata: {}
59
+ metadata:
60
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-devicefarm
61
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-devicefarm/CHANGELOG.md
60
62
  post_install_message:
61
63
  rdoc_options: []
62
64
  require_paths: