aws-sdk-devicefarm 1.27.0 → 1.28.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 +4 -4
- data/lib/aws-sdk-devicefarm.rb +1 -1
- data/lib/aws-sdk-devicefarm/client.rb +32 -9
- data/lib/aws-sdk-devicefarm/types.rb +85 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f005fe6db859031a4d82621996bbc9aebaeef593
|
4
|
+
data.tar.gz: a223b4369ddef4f57017bf988a68dd9398ac8b20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49536a7508780002faa26b6e5f99ec699d534e9e9de805dafc4df79a43cdbfa83fc19180f0e5cfcaf61a707949bb60f42559c58e2ab2d8c42c337e28ce2243b4
|
7
|
+
data.tar.gz: d103d5cb83657d16dd19ada7f052c5ba91a9de9c07ad75a8e5952041645e39ab1a2d38f3d420a00162a277083695d1b78ea92d3e029c88398ba52caec90a5923
|
data/lib/aws-sdk-devicefarm.rb
CHANGED
@@ -568,14 +568,26 @@ module Aws::DeviceFarm
|
|
568
568
|
# want to create a remote access session.
|
569
569
|
#
|
570
570
|
# @option params [String] :ssh_public_key
|
571
|
-
# The public key of the `ssh` key pair you want to use for
|
572
|
-
# remote devices in your remote debugging session. This is
|
573
|
-
# if `remoteDebugEnabled` is set to `true`.
|
571
|
+
# *Ignored.* The public key of the `ssh` key pair you want to use for
|
572
|
+
# connecting to remote devices in your remote debugging session. This is
|
573
|
+
# only required if `remoteDebugEnabled` is set to `true`.
|
574
|
+
#
|
575
|
+
# *Remote debugging is [no longer supported][1].*
|
576
|
+
#
|
577
|
+
#
|
578
|
+
#
|
579
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
574
580
|
#
|
575
581
|
# @option params [Boolean] :remote_debug_enabled
|
576
582
|
# Set to `true` if you want to access devices remotely for debugging in
|
577
583
|
# your remote access session.
|
578
584
|
#
|
585
|
+
# *Remote debugging is [no longer supported][1].*
|
586
|
+
#
|
587
|
+
#
|
588
|
+
#
|
589
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
590
|
+
#
|
579
591
|
# @option params [Boolean] :remote_record_enabled
|
580
592
|
# Set to `true` to enable remote recording for the remote access
|
581
593
|
# session.
|
@@ -593,6 +605,12 @@ module Aws::DeviceFarm
|
|
593
605
|
# in each call to `CreateRemoteAccessSession`. This is required only if
|
594
606
|
# `remoteDebugEnabled` is set to `true`.
|
595
607
|
#
|
608
|
+
# *Remote debugging is [no longer supported][1].*
|
609
|
+
#
|
610
|
+
#
|
611
|
+
#
|
612
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
613
|
+
#
|
596
614
|
# @option params [Types::CreateRemoteAccessSessionConfiguration] :configuration
|
597
615
|
# The configuration information for the remote access session request.
|
598
616
|
#
|
@@ -2738,7 +2756,8 @@ module Aws::DeviceFarm
|
|
2738
2756
|
# access. Valid values are "TRUE" or "FALSE".
|
2739
2757
|
#
|
2740
2758
|
# * REMOTE\_DEBUG\_ENABLED: Whether the device is enabled for remote
|
2741
|
-
# debugging. Valid values are "TRUE" or "FALSE".
|
2759
|
+
# debugging. Valid values are "TRUE" or "FALSE". *This attribute
|
2760
|
+
# will be ignored, as remote debugging is [no longer supported][1].*
|
2742
2761
|
#
|
2743
2762
|
# * INSTANCE\_ARN: The Amazon Resource Name (ARN) of the device
|
2744
2763
|
# instance.
|
@@ -2774,6 +2793,10 @@ module Aws::DeviceFarm
|
|
2774
2793
|
# "HIGHLY\_AVAILABLE", "BUSY", or "TEMPORARY\_NOT\_AVAILABLE"
|
2775
2794
|
# as values.
|
2776
2795
|
#
|
2796
|
+
#
|
2797
|
+
#
|
2798
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
2799
|
+
#
|
2777
2800
|
# @return [Types::ListDevicesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2778
2801
|
#
|
2779
2802
|
# * {Types::ListDevicesResult#devices #devices} => Array<Types::Device>
|
@@ -3435,8 +3458,8 @@ module Aws::DeviceFarm
|
|
3435
3458
|
# Returns a list of all currently running remote access sessions.
|
3436
3459
|
#
|
3437
3460
|
# @option params [required, String] :arn
|
3438
|
-
# The Amazon Resource Name (ARN) of the
|
3439
|
-
#
|
3461
|
+
# The Amazon Resource Name (ARN) of the project about which you are
|
3462
|
+
# requesting information.
|
3440
3463
|
#
|
3441
3464
|
# @option params [String] :next_token
|
3442
3465
|
# An identifier that was returned from the previous call to this
|
@@ -3761,10 +3784,10 @@ module Aws::DeviceFarm
|
|
3761
3784
|
#
|
3762
3785
|
# @example Example: To get information about suites
|
3763
3786
|
#
|
3764
|
-
# # The following example returns information about suites, given a specific Device Farm
|
3787
|
+
# # The following example returns information about suites, given a specific Device Farm job.
|
3765
3788
|
#
|
3766
3789
|
# resp = client.list_suites({
|
3767
|
-
# arn: "arn:aws:devicefarm:us-west-2:123456789101:
|
3790
|
+
# arn: "arn:aws:devicefarm:us-west-2:123456789101:job:EXAMPLE-GUID-123-456", # You can get the Amazon Resource Name (ARN) of the job by using the list-jobs CLI command.
|
3768
3791
|
# next_token: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE", # A dynamically generated value, used for paginating results.
|
3769
3792
|
# })
|
3770
3793
|
#
|
@@ -5439,7 +5462,7 @@ module Aws::DeviceFarm
|
|
5439
5462
|
params: params,
|
5440
5463
|
config: config)
|
5441
5464
|
context[:gem_name] = 'aws-sdk-devicefarm'
|
5442
|
-
context[:gem_version] = '1.
|
5465
|
+
context[:gem_version] = '1.28.0'
|
5443
5466
|
Seahorse::Client::Request.new(handlers, context)
|
5444
5467
|
end
|
5445
5468
|
|
@@ -594,14 +594,26 @@ module Aws::DeviceFarm
|
|
594
594
|
# @return [String]
|
595
595
|
#
|
596
596
|
# @!attribute [rw] ssh_public_key
|
597
|
-
# The public key of the `ssh` key pair you want to use for
|
598
|
-
# to remote devices in your remote debugging session. This
|
599
|
-
# required if `remoteDebugEnabled` is set to `true`.
|
597
|
+
# *Ignored.* The public key of the `ssh` key pair you want to use for
|
598
|
+
# connecting to remote devices in your remote debugging session. This
|
599
|
+
# is only required if `remoteDebugEnabled` is set to `true`.
|
600
|
+
#
|
601
|
+
# *Remote debugging is [no longer supported][1].*
|
602
|
+
#
|
603
|
+
#
|
604
|
+
#
|
605
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
600
606
|
# @return [String]
|
601
607
|
#
|
602
608
|
# @!attribute [rw] remote_debug_enabled
|
603
609
|
# Set to `true` if you want to access devices remotely for debugging
|
604
610
|
# in your remote access session.
|
611
|
+
#
|
612
|
+
# *Remote debugging is [no longer supported][1].*
|
613
|
+
#
|
614
|
+
#
|
615
|
+
#
|
616
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
605
617
|
# @return [Boolean]
|
606
618
|
#
|
607
619
|
# @!attribute [rw] remote_record_enabled
|
@@ -623,6 +635,12 @@ module Aws::DeviceFarm
|
|
623
635
|
# devices on the same client, you should pass the same `clientId`
|
624
636
|
# value in each call to `CreateRemoteAccessSession`. This is required
|
625
637
|
# only if `remoteDebugEnabled` is set to `true`.
|
638
|
+
#
|
639
|
+
# *Remote debugging is [no longer supported][1].*
|
640
|
+
#
|
641
|
+
#
|
642
|
+
#
|
643
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
626
644
|
# @return [String]
|
627
645
|
#
|
628
646
|
# @!attribute [rw] configuration
|
@@ -1214,6 +1232,12 @@ module Aws::DeviceFarm
|
|
1214
1232
|
# @!attribute [rw] remote_debug_enabled
|
1215
1233
|
# This flag is set to `true` if remote debugging is enabled for the
|
1216
1234
|
# device.
|
1235
|
+
#
|
1236
|
+
# *Remote debugging is [no longer supported][1].*
|
1237
|
+
#
|
1238
|
+
#
|
1239
|
+
#
|
1240
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
1217
1241
|
# @return [Boolean]
|
1218
1242
|
#
|
1219
1243
|
# @!attribute [rw] fleet_type
|
@@ -1341,11 +1365,14 @@ module Aws::DeviceFarm
|
|
1341
1365
|
#
|
1342
1366
|
# REMOTE\_DEBUG\_ENABLED
|
1343
1367
|
#
|
1344
|
-
# : Whether the device is enabled for remote debugging.
|
1345
|
-
# are "TRUE" or "FALSE".
|
1368
|
+
# : *Ignored.*Whether the device is enabled for remote debugging.
|
1369
|
+
# Valid values are "TRUE" or "FALSE".
|
1346
1370
|
#
|
1347
1371
|
# *Supported operators*\: `EQUALS`
|
1348
1372
|
#
|
1373
|
+
# *This filter will be ignored, as remote debugging is [no longer
|
1374
|
+
# supported][1].*
|
1375
|
+
#
|
1349
1376
|
# INSTANCE\_ARN
|
1350
1377
|
#
|
1351
1378
|
# : The Amazon Resource Name (ARN) of the device instance.
|
@@ -1363,6 +1390,10 @@ module Aws::DeviceFarm
|
|
1363
1390
|
# : The fleet type. Valid values are "PUBLIC" or "PRIVATE".
|
1364
1391
|
#
|
1365
1392
|
# *Supported operators*\: `EQUALS`
|
1393
|
+
#
|
1394
|
+
#
|
1395
|
+
#
|
1396
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
1366
1397
|
# @return [String]
|
1367
1398
|
#
|
1368
1399
|
# @!attribute [rw] operator
|
@@ -1599,7 +1630,9 @@ module Aws::DeviceFarm
|
|
1599
1630
|
# remote access. Valid values are "TRUE" or "FALSE".
|
1600
1631
|
#
|
1601
1632
|
# * REMOTE\_DEBUG\_ENABLED: Whether the device is enabled for remote
|
1602
|
-
# debugging. Valid values are "TRUE" or "FALSE".
|
1633
|
+
# debugging. Valid values are "TRUE" or "FALSE". *This filter
|
1634
|
+
# will be ignored, as remote debugging is [no longer
|
1635
|
+
# supported][1].*
|
1603
1636
|
#
|
1604
1637
|
# * INSTANCE\_ARN: The Amazon Resource Name (ARN) of the device
|
1605
1638
|
# instance.
|
@@ -1650,6 +1683,10 @@ module Aws::DeviceFarm
|
|
1650
1683
|
#
|
1651
1684
|
# * The FLEET\_TYPE attribute can be set to "PUBLIC" or
|
1652
1685
|
# "PRIVATE".
|
1686
|
+
#
|
1687
|
+
#
|
1688
|
+
#
|
1689
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
1653
1690
|
# @return [Array<Types::DeviceFilter>]
|
1654
1691
|
#
|
1655
1692
|
# @!attribute [rw] max_devices
|
@@ -2926,7 +2963,9 @@ module Aws::DeviceFarm
|
|
2926
2963
|
# remote access. Valid values are "TRUE" or "FALSE".
|
2927
2964
|
#
|
2928
2965
|
# * REMOTE\_DEBUG\_ENABLED: Whether the device is enabled for remote
|
2929
|
-
# debugging. Valid values are "TRUE" or "FALSE".
|
2966
|
+
# debugging. Valid values are "TRUE" or "FALSE". *This
|
2967
|
+
# attribute will be ignored, as remote debugging is [no longer
|
2968
|
+
# supported][1].*
|
2930
2969
|
#
|
2931
2970
|
# * INSTANCE\_ARN: The Amazon Resource Name (ARN) of the device
|
2932
2971
|
# instance.
|
@@ -2961,6 +3000,10 @@ module Aws::DeviceFarm
|
|
2961
3000
|
# * In a request, the AVAILABILITY attribute takes "AVAILABLE",
|
2962
3001
|
# "HIGHLY\_AVAILABLE", "BUSY", or
|
2963
3002
|
# "TEMPORARY\_NOT\_AVAILABLE" as values.
|
3003
|
+
#
|
3004
|
+
#
|
3005
|
+
#
|
3006
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
2964
3007
|
# @return [Array<Types::DeviceFilter>]
|
2965
3008
|
#
|
2966
3009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListDevicesRequest AWS API Documentation
|
@@ -3323,8 +3366,8 @@ module Aws::DeviceFarm
|
|
3323
3366
|
# }
|
3324
3367
|
#
|
3325
3368
|
# @!attribute [rw] arn
|
3326
|
-
# The Amazon Resource Name (ARN) of the
|
3327
|
-
#
|
3369
|
+
# The Amazon Resource Name (ARN) of the project about which you are
|
3370
|
+
# requesting information.
|
3328
3371
|
# @return [String]
|
3329
3372
|
#
|
3330
3373
|
# @!attribute [rw] next_token
|
@@ -4403,6 +4446,12 @@ module Aws::DeviceFarm
|
|
4403
4446
|
# @!attribute [rw] remote_debug_enabled
|
4404
4447
|
# This flag is set to `true` if remote debugging is enabled for the
|
4405
4448
|
# remote access session.
|
4449
|
+
#
|
4450
|
+
# *Remote debugging is [no longer supported][1].*
|
4451
|
+
#
|
4452
|
+
#
|
4453
|
+
#
|
4454
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
4406
4455
|
# @return [Boolean]
|
4407
4456
|
#
|
4408
4457
|
# @!attribute [rw] remote_record_enabled
|
@@ -4419,12 +4468,24 @@ module Aws::DeviceFarm
|
|
4419
4468
|
# IP address of the EC2 host where you need to connect to remotely
|
4420
4469
|
# debug devices. Only returned if remote debugging is enabled for the
|
4421
4470
|
# remote access session.
|
4471
|
+
#
|
4472
|
+
# *Remote debugging is [no longer supported][1].*
|
4473
|
+
#
|
4474
|
+
#
|
4475
|
+
#
|
4476
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
4422
4477
|
# @return [String]
|
4423
4478
|
#
|
4424
4479
|
# @!attribute [rw] client_id
|
4425
4480
|
# Unique identifier of your client for the remote access session. Only
|
4426
4481
|
# returned if remote debugging is enabled for the remote access
|
4427
4482
|
# session.
|
4483
|
+
#
|
4484
|
+
# *Remote debugging is [no longer supported][1].*
|
4485
|
+
#
|
4486
|
+
#
|
4487
|
+
#
|
4488
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
4428
4489
|
# @return [String]
|
4429
4490
|
#
|
4430
4491
|
# @!attribute [rw] billing_method
|
@@ -4449,6 +4510,12 @@ module Aws::DeviceFarm
|
|
4449
4510
|
# @!attribute [rw] device_udid
|
4450
4511
|
# Unique device identifier for the remote device. Only returned if
|
4451
4512
|
# remote debugging is enabled for the remote access session.
|
4513
|
+
#
|
4514
|
+
# *Remote debugging is [no longer supported][1].*
|
4515
|
+
#
|
4516
|
+
#
|
4517
|
+
#
|
4518
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
4452
4519
|
# @return [String]
|
4453
4520
|
#
|
4454
4521
|
# @!attribute [rw] interaction_mode
|
@@ -4669,6 +4736,13 @@ module Aws::DeviceFarm
|
|
4669
4736
|
# are "TRUE" or "FALSE".
|
4670
4737
|
#
|
4671
4738
|
# *Supported operators*\: `EQUALS`
|
4739
|
+
#
|
4740
|
+
# *This filter will be ignored, as remote debugging is [no longer
|
4741
|
+
# supported][1].*
|
4742
|
+
#
|
4743
|
+
#
|
4744
|
+
#
|
4745
|
+
# [1]: https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html
|
4672
4746
|
# @return [String]
|
4673
4747
|
#
|
4674
4748
|
# @!attribute [rw] operator
|
@@ -5087,7 +5161,8 @@ module Aws::DeviceFarm
|
|
5087
5161
|
# @return [Types::Radios]
|
5088
5162
|
#
|
5089
5163
|
# @!attribute [rw] auxiliary_apps
|
5090
|
-
# A list of
|
5164
|
+
# A list of Upload ARNs for app packages that will be installed
|
5165
|
+
# alongside your app.
|
5091
5166
|
# @return [Array<String>]
|
5092
5167
|
#
|
5093
5168
|
# @!attribute [rw] billing_method
|
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.
|
4
|
+
version: 1.28.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: 2019-
|
11
|
+
date: 2019-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|