aws-sdk-devicefarm 1.29.0 → 1.30.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 +678 -303
- data/lib/aws-sdk-devicefarm/client_api.rb +300 -3
- data/lib/aws-sdk-devicefarm/errors.rb +32 -0
- data/lib/aws-sdk-devicefarm/types.rb +1361 -839
- metadata +2 -2
@@ -26,6 +26,22 @@ module Aws::DeviceFarm
|
|
26
26
|
|
27
27
|
end
|
28
28
|
|
29
|
+
class CannotDeleteException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::DeviceFarm::Types::CannotDeleteException] data
|
34
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
35
|
+
super(context, message, data)
|
36
|
+
end
|
37
|
+
|
38
|
+
# @return [String]
|
39
|
+
def message
|
40
|
+
@message || @data[:message]
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
29
45
|
class IdempotencyException < ServiceError
|
30
46
|
|
31
47
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -42,6 +58,22 @@ module Aws::DeviceFarm
|
|
42
58
|
|
43
59
|
end
|
44
60
|
|
61
|
+
class InternalServiceException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::DeviceFarm::Types::InternalServiceException] data
|
66
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
67
|
+
super(context, message, data)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @return [String]
|
71
|
+
def message
|
72
|
+
@message || @data[:message]
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
45
77
|
class InvalidOperationException < ServiceError
|
46
78
|
|
47
79
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -8,7 +8,7 @@
|
|
8
8
|
module Aws::DeviceFarm
|
9
9
|
module Types
|
10
10
|
|
11
|
-
# A container for account-level settings
|
11
|
+
# A container for account-level settings in AWS Device Farm.
|
12
12
|
#
|
13
13
|
# @!attribute [rw] aws_account_number
|
14
14
|
# The AWS account number specified in the `AccountSettings` container.
|
@@ -25,8 +25,8 @@ module Aws::DeviceFarm
|
|
25
25
|
# @return [Hash<String,Integer>]
|
26
26
|
#
|
27
27
|
# @!attribute [rw] max_job_timeout_minutes
|
28
|
-
# The maximum number of minutes a test run
|
29
|
-
#
|
28
|
+
# The maximum number of minutes a test run executes before it times
|
29
|
+
# out.
|
30
30
|
# @return [Integer]
|
31
31
|
#
|
32
32
|
# @!attribute [rw] trial_minutes
|
@@ -42,16 +42,16 @@ module Aws::DeviceFarm
|
|
42
42
|
# @return [Hash<String,Integer>]
|
43
43
|
#
|
44
44
|
# @!attribute [rw] default_job_timeout_minutes
|
45
|
-
# The default number of minutes (at the account level) a test run
|
46
|
-
#
|
45
|
+
# The default number of minutes (at the account level) a test run
|
46
|
+
# executes before it times out. The default value is 150 minutes.
|
47
47
|
# @return [Integer]
|
48
48
|
#
|
49
49
|
# @!attribute [rw] skip_app_resign
|
50
|
-
# When set to `true`, for private devices, Device Farm
|
50
|
+
# When set to `true`, for private devices, Device Farm does not sign
|
51
51
|
# your app again. For public devices, Device Farm always signs your
|
52
|
-
# apps again
|
52
|
+
# apps again.
|
53
53
|
#
|
54
|
-
# For more information about how Device Farm re-signs your
|
54
|
+
# For more information about how Device Farm re-signs your apps, see
|
55
55
|
# [Do you modify my app?][1] in the *AWS Device Farm FAQs*.
|
56
56
|
#
|
57
57
|
#
|
@@ -102,63 +102,62 @@ module Aws::DeviceFarm
|
|
102
102
|
#
|
103
103
|
# Allowed values include the following:
|
104
104
|
#
|
105
|
-
# * UNKNOWN
|
105
|
+
# * UNKNOWN
|
106
106
|
#
|
107
|
-
# * SCREENSHOT
|
107
|
+
# * SCREENSHOT
|
108
108
|
#
|
109
|
-
# * DEVICE\_LOG
|
109
|
+
# * DEVICE\_LOG
|
110
110
|
#
|
111
|
-
# * MESSAGE\_LOG
|
111
|
+
# * MESSAGE\_LOG
|
112
112
|
#
|
113
|
-
# * VIDEO\_LOG
|
113
|
+
# * VIDEO\_LOG
|
114
114
|
#
|
115
|
-
# * RESULT\_LOG
|
115
|
+
# * RESULT\_LOG
|
116
116
|
#
|
117
|
-
# * SERVICE\_LOG
|
117
|
+
# * SERVICE\_LOG
|
118
118
|
#
|
119
|
-
# * WEBKIT\_LOG
|
119
|
+
# * WEBKIT\_LOG
|
120
120
|
#
|
121
|
-
# * INSTRUMENTATION\_OUTPUT
|
121
|
+
# * INSTRUMENTATION\_OUTPUT
|
122
122
|
#
|
123
|
-
# * EXERCISER\_MONKEY\_OUTPUT:
|
124
|
-
#
|
123
|
+
# * EXERCISER\_MONKEY\_OUTPUT: the artifact (log) generated by an
|
124
|
+
# Android fuzz test.
|
125
125
|
#
|
126
|
-
# * CALABASH\_JSON\_OUTPUT
|
126
|
+
# * CALABASH\_JSON\_OUTPUT
|
127
127
|
#
|
128
|
-
# * CALABASH\_PRETTY\_OUTPUT
|
128
|
+
# * CALABASH\_PRETTY\_OUTPUT
|
129
129
|
#
|
130
|
-
# * CALABASH\_STANDARD\_OUTPUT
|
130
|
+
# * CALABASH\_STANDARD\_OUTPUT
|
131
131
|
#
|
132
|
-
# * CALABASH\_JAVA\_XML\_OUTPUT
|
132
|
+
# * CALABASH\_JAVA\_XML\_OUTPUT
|
133
133
|
#
|
134
|
-
# * AUTOMATION\_OUTPUT
|
134
|
+
# * AUTOMATION\_OUTPUT
|
135
135
|
#
|
136
|
-
# * APPIUM\_SERVER\_OUTPUT
|
136
|
+
# * APPIUM\_SERVER\_OUTPUT
|
137
137
|
#
|
138
|
-
# * APPIUM\_JAVA\_OUTPUT
|
138
|
+
# * APPIUM\_JAVA\_OUTPUT
|
139
139
|
#
|
140
|
-
# * APPIUM\_JAVA\_XML\_OUTPUT
|
140
|
+
# * APPIUM\_JAVA\_XML\_OUTPUT
|
141
141
|
#
|
142
|
-
# * APPIUM\_PYTHON\_OUTPUT
|
142
|
+
# * APPIUM\_PYTHON\_OUTPUT
|
143
143
|
#
|
144
|
-
# * APPIUM\_PYTHON\_XML\_OUTPUT
|
144
|
+
# * APPIUM\_PYTHON\_XML\_OUTPUT
|
145
145
|
#
|
146
|
-
# * EXPLORER\_EVENT\_LOG
|
146
|
+
# * EXPLORER\_EVENT\_LOG
|
147
147
|
#
|
148
|
-
# * EXPLORER\_SUMMARY\_LOG
|
148
|
+
# * EXPLORER\_SUMMARY\_LOG
|
149
149
|
#
|
150
|
-
# * APPLICATION\_CRASH\_REPORT
|
151
|
-
# type.
|
150
|
+
# * APPLICATION\_CRASH\_REPORT
|
152
151
|
#
|
153
|
-
# * XCTEST\_LOG
|
152
|
+
# * XCTEST\_LOG
|
154
153
|
#
|
155
|
-
# * VIDEO
|
154
|
+
# * VIDEO
|
156
155
|
#
|
157
|
-
# * CUSTOMER\_ARTIFACT
|
156
|
+
# * CUSTOMER\_ARTIFACT
|
158
157
|
#
|
159
|
-
# * CUSTOMER\_ARTIFACT\_LOG
|
158
|
+
# * CUSTOMER\_ARTIFACT\_LOG
|
160
159
|
#
|
161
|
-
# * TESTSPEC\_OUTPUT
|
160
|
+
# * TESTSPEC\_OUTPUT
|
162
161
|
# @return [String]
|
163
162
|
#
|
164
163
|
# @!attribute [rw] extension
|
@@ -166,8 +165,8 @@ module Aws::DeviceFarm
|
|
166
165
|
# @return [String]
|
167
166
|
#
|
168
167
|
# @!attribute [rw] url
|
169
|
-
# The
|
170
|
-
#
|
168
|
+
# The presigned Amazon S3 URL that can be used with a GET request to
|
169
|
+
# download the artifact's file.
|
171
170
|
# @return [String]
|
172
171
|
#
|
173
172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Artifact AWS API Documentation
|
@@ -182,16 +181,14 @@ module Aws::DeviceFarm
|
|
182
181
|
end
|
183
182
|
|
184
183
|
# Represents the amount of CPU that an app is using on a physical
|
185
|
-
# device.
|
186
|
-
#
|
187
|
-
# Note that this does not represent system-wide CPU usage.
|
184
|
+
# device. Does not represent system-wide CPU usage.
|
188
185
|
#
|
189
186
|
# @!attribute [rw] frequency
|
190
187
|
# The CPU's frequency.
|
191
188
|
# @return [String]
|
192
189
|
#
|
193
190
|
# @!attribute [rw] architecture
|
194
|
-
# The CPU's architecture
|
191
|
+
# The CPU's architecture (for example, x86 or ARM).
|
195
192
|
# @return [String]
|
196
193
|
#
|
197
194
|
# @!attribute [rw] clock
|
@@ -208,6 +205,18 @@ module Aws::DeviceFarm
|
|
208
205
|
include Aws::Structure
|
209
206
|
end
|
210
207
|
|
208
|
+
# The requested object could not be deleted.
|
209
|
+
#
|
210
|
+
# @!attribute [rw] message
|
211
|
+
# @return [String]
|
212
|
+
#
|
213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CannotDeleteException AWS API Documentation
|
214
|
+
#
|
215
|
+
class CannotDeleteException < Struct.new(
|
216
|
+
:message)
|
217
|
+
include Aws::Structure
|
218
|
+
end
|
219
|
+
|
211
220
|
# Represents entity counters.
|
212
221
|
#
|
213
222
|
# @!attribute [rw] total
|
@@ -288,10 +297,10 @@ module Aws::DeviceFarm
|
|
288
297
|
#
|
289
298
|
# @!attribute [rw] max_devices
|
290
299
|
# The number of devices that Device Farm can add to your device pool.
|
291
|
-
# Device Farm adds devices that are available and
|
292
|
-
#
|
293
|
-
#
|
294
|
-
#
|
300
|
+
# Device Farm adds devices that are available and meet the criteria
|
301
|
+
# that you assign for the `rules` parameter. Depending on how many
|
302
|
+
# devices meet these constraints, your device pool might contain fewer
|
303
|
+
# devices than the value for this parameter.
|
295
304
|
#
|
296
305
|
# By specifying the maximum number of devices, you can control the
|
297
306
|
# costs that you incur by running tests.
|
@@ -341,21 +350,21 @@ module Aws::DeviceFarm
|
|
341
350
|
# @return [String]
|
342
351
|
#
|
343
352
|
# @!attribute [rw] package_cleanup
|
344
|
-
# When set to `true`, Device Farm
|
345
|
-
#
|
353
|
+
# When set to `true`, Device Farm removes app packages after a test
|
354
|
+
# run. The default value is `false` for private devices.
|
346
355
|
# @return [Boolean]
|
347
356
|
#
|
348
357
|
# @!attribute [rw] exclude_app_packages_from_cleanup
|
349
|
-
# An array of strings
|
350
|
-
# not be cleaned up from the device after a test run
|
358
|
+
# An array of strings that specifies the list of app packages that
|
359
|
+
# should not be cleaned up from the device after a test run.
|
351
360
|
#
|
352
|
-
# The list of packages is only
|
361
|
+
# The list of packages is considered only if you set `packageCleanup`
|
353
362
|
# to `true`.
|
354
363
|
# @return [Array<String>]
|
355
364
|
#
|
356
365
|
# @!attribute [rw] reboot_after_use
|
357
|
-
# When set to `true`, Device Farm
|
358
|
-
#
|
366
|
+
# When set to `true`, Device Farm reboots the instance after a test
|
367
|
+
# run. The default value is `true`.
|
359
368
|
# @return [Boolean]
|
360
369
|
#
|
361
370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateInstanceProfileRequest AWS API Documentation
|
@@ -370,7 +379,7 @@ module Aws::DeviceFarm
|
|
370
379
|
end
|
371
380
|
|
372
381
|
# @!attribute [rw] instance_profile
|
373
|
-
# An object
|
382
|
+
# An object that contains information about your instance profile.
|
374
383
|
# @return [Types::InstanceProfile]
|
375
384
|
#
|
376
385
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateInstanceProfileResult AWS API Documentation
|
@@ -404,7 +413,7 @@ module Aws::DeviceFarm
|
|
404
413
|
# @return [String]
|
405
414
|
#
|
406
415
|
# @!attribute [rw] name
|
407
|
-
# The name
|
416
|
+
# The name for the new network profile.
|
408
417
|
# @return [String]
|
409
418
|
#
|
410
419
|
# @!attribute [rw] description
|
@@ -412,8 +421,7 @@ module Aws::DeviceFarm
|
|
412
421
|
# @return [String]
|
413
422
|
#
|
414
423
|
# @!attribute [rw] type
|
415
|
-
# The type of network profile
|
416
|
-
# listed below.
|
424
|
+
# The type of network profile to create. Valid values are listed here.
|
417
425
|
# @return [String]
|
418
426
|
#
|
419
427
|
# @!attribute [rw] uplink_bandwidth_bits
|
@@ -502,8 +510,8 @@ module Aws::DeviceFarm
|
|
502
510
|
#
|
503
511
|
# @!attribute [rw] default_job_timeout_minutes
|
504
512
|
# Sets the execution timeout value (in minutes) for a project. All
|
505
|
-
# test runs in this project
|
506
|
-
#
|
513
|
+
# test runs in this project use the specified execution timeout value
|
514
|
+
# unless overridden when scheduling a run.
|
507
515
|
# @return [Integer]
|
508
516
|
#
|
509
517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateProjectRequest AWS API Documentation
|
@@ -543,8 +551,7 @@ module Aws::DeviceFarm
|
|
543
551
|
# @return [String]
|
544
552
|
#
|
545
553
|
# @!attribute [rw] vpce_configuration_arns
|
546
|
-
# An array of
|
547
|
-
# endpoint configuration.
|
554
|
+
# An array of ARNs included in the VPC endpoint configuration.
|
548
555
|
# @return [Array<String>]
|
549
556
|
#
|
550
557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSessionConfiguration AWS API Documentation
|
@@ -584,8 +591,8 @@ module Aws::DeviceFarm
|
|
584
591
|
# @return [String]
|
585
592
|
#
|
586
593
|
# @!attribute [rw] device_arn
|
587
|
-
# The
|
588
|
-
#
|
594
|
+
# The ARN of the device for which you want to create a remote access
|
595
|
+
# session.
|
589
596
|
# @return [String]
|
590
597
|
#
|
591
598
|
# @!attribute [rw] instance_arn
|
@@ -594,11 +601,11 @@ module Aws::DeviceFarm
|
|
594
601
|
# @return [String]
|
595
602
|
#
|
596
603
|
# @!attribute [rw] ssh_public_key
|
597
|
-
#
|
604
|
+
# Ignored. The public key of the `ssh` key pair you want to use for
|
598
605
|
# connecting to remote devices in your remote debugging session. This
|
599
|
-
# is only
|
606
|
+
# key is required only if `remoteDebugEnabled` is set to `true`.
|
600
607
|
#
|
601
|
-
#
|
608
|
+
# Remote debugging is [no longer supported][1].
|
602
609
|
#
|
603
610
|
#
|
604
611
|
#
|
@@ -609,7 +616,7 @@ module Aws::DeviceFarm
|
|
609
616
|
# Set to `true` if you want to access devices remotely for debugging
|
610
617
|
# in your remote access session.
|
611
618
|
#
|
612
|
-
#
|
619
|
+
# Remote debugging is [no longer supported][1].
|
613
620
|
#
|
614
621
|
#
|
615
622
|
#
|
@@ -627,16 +634,16 @@ module Aws::DeviceFarm
|
|
627
634
|
# @return [String]
|
628
635
|
#
|
629
636
|
# @!attribute [rw] name
|
630
|
-
# The name of the remote access session
|
637
|
+
# The name of the remote access session to create.
|
631
638
|
# @return [String]
|
632
639
|
#
|
633
640
|
# @!attribute [rw] client_id
|
634
641
|
# Unique identifier for the client. If you want access to multiple
|
635
642
|
# devices on the same client, you should pass the same `clientId`
|
636
|
-
# value in each call to `CreateRemoteAccessSession`. This
|
637
|
-
# only if `remoteDebugEnabled` is set to `true`.
|
643
|
+
# value in each call to `CreateRemoteAccessSession`. This identifier
|
644
|
+
# is required only if `remoteDebugEnabled` is set to `true`.
|
638
645
|
#
|
639
|
-
#
|
646
|
+
# Remote debugging is [no longer supported][1].
|
640
647
|
#
|
641
648
|
#
|
642
649
|
#
|
@@ -651,26 +658,26 @@ module Aws::DeviceFarm
|
|
651
658
|
# The interaction mode of the remote access session. Valid values are:
|
652
659
|
#
|
653
660
|
# * INTERACTIVE: You can interact with the iOS device by viewing,
|
654
|
-
# touching, and rotating the screen. You
|
661
|
+
# touching, and rotating the screen. You cannot run XCUITest
|
655
662
|
# framework-based tests in this mode.
|
656
663
|
#
|
657
|
-
# * NO\_VIDEO: You are connected to the device but cannot interact
|
664
|
+
# * NO\_VIDEO: You are connected to the device, but cannot interact
|
658
665
|
# with it or view the screen. This mode has the fastest test
|
659
|
-
# execution speed. You
|
666
|
+
# execution speed. You can run XCUITest framework-based tests in
|
660
667
|
# this mode.
|
661
668
|
#
|
662
|
-
# * VIDEO\_ONLY: You can view the screen but cannot touch or rotate
|
663
|
-
# it. You
|
669
|
+
# * VIDEO\_ONLY: You can view the screen, but cannot touch or rotate
|
670
|
+
# it. You can run XCUITest framework-based tests and watch the
|
664
671
|
# screen in this mode.
|
665
672
|
# @return [String]
|
666
673
|
#
|
667
674
|
# @!attribute [rw] skip_app_resign
|
668
|
-
# When set to `true`, for private devices, Device Farm
|
675
|
+
# When set to `true`, for private devices, Device Farm does not sign
|
669
676
|
# your app again. For public devices, Device Farm always signs your
|
670
|
-
# apps again
|
677
|
+
# apps again.
|
671
678
|
#
|
672
|
-
# For more information
|
673
|
-
# [Do you modify my app?][1]
|
679
|
+
# For more information on how Device Farm modifies your uploads during
|
680
|
+
# tests, see [Do you modify my app?][1]
|
674
681
|
#
|
675
682
|
#
|
676
683
|
#
|
@@ -710,6 +717,84 @@ module Aws::DeviceFarm
|
|
710
717
|
include Aws::Structure
|
711
718
|
end
|
712
719
|
|
720
|
+
# @note When making an API call, you may pass CreateTestGridProjectRequest
|
721
|
+
# data as a hash:
|
722
|
+
#
|
723
|
+
# {
|
724
|
+
# name: "ResourceName", # required
|
725
|
+
# description: "ResourceDescription",
|
726
|
+
# }
|
727
|
+
#
|
728
|
+
# @!attribute [rw] name
|
729
|
+
# Human-readable name of the Selenium testing project.
|
730
|
+
# @return [String]
|
731
|
+
#
|
732
|
+
# @!attribute [rw] description
|
733
|
+
# Human-readable description of the project.
|
734
|
+
# @return [String]
|
735
|
+
#
|
736
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateTestGridProjectRequest AWS API Documentation
|
737
|
+
#
|
738
|
+
class CreateTestGridProjectRequest < Struct.new(
|
739
|
+
:name,
|
740
|
+
:description)
|
741
|
+
include Aws::Structure
|
742
|
+
end
|
743
|
+
|
744
|
+
# @!attribute [rw] test_grid_project
|
745
|
+
# ARN of the Selenium testing project that was created.
|
746
|
+
# @return [Types::TestGridProject]
|
747
|
+
#
|
748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateTestGridProjectResult AWS API Documentation
|
749
|
+
#
|
750
|
+
class CreateTestGridProjectResult < Struct.new(
|
751
|
+
:test_grid_project)
|
752
|
+
include Aws::Structure
|
753
|
+
end
|
754
|
+
|
755
|
+
# @note When making an API call, you may pass CreateTestGridUrlRequest
|
756
|
+
# data as a hash:
|
757
|
+
#
|
758
|
+
# {
|
759
|
+
# project_arn: "DeviceFarmArn", # required
|
760
|
+
# expires_in_seconds: 1, # required
|
761
|
+
# }
|
762
|
+
#
|
763
|
+
# @!attribute [rw] project_arn
|
764
|
+
# ARN (from CreateTestGridProject or ListTestGridProjects) to
|
765
|
+
# associate with the short-term URL.
|
766
|
+
# @return [String]
|
767
|
+
#
|
768
|
+
# @!attribute [rw] expires_in_seconds
|
769
|
+
# Lifetime, in seconds, of the URL.
|
770
|
+
# @return [Integer]
|
771
|
+
#
|
772
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateTestGridUrlRequest AWS API Documentation
|
773
|
+
#
|
774
|
+
class CreateTestGridUrlRequest < Struct.new(
|
775
|
+
:project_arn,
|
776
|
+
:expires_in_seconds)
|
777
|
+
include Aws::Structure
|
778
|
+
end
|
779
|
+
|
780
|
+
# @!attribute [rw] url
|
781
|
+
# A signed URL, expiring in CreateTestGridUrlRequest$expiresInSeconds
|
782
|
+
# seconds, to be passed to a `RemoteWebDriver`.
|
783
|
+
# @return [String]
|
784
|
+
#
|
785
|
+
# @!attribute [rw] expires
|
786
|
+
# The number of seconds the URL from CreateTestGridUrlResult$url stays
|
787
|
+
# active.
|
788
|
+
# @return [Time]
|
789
|
+
#
|
790
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateTestGridUrlResult AWS API Documentation
|
791
|
+
#
|
792
|
+
class CreateTestGridUrlResult < Struct.new(
|
793
|
+
:url,
|
794
|
+
:expires)
|
795
|
+
include Aws::Structure
|
796
|
+
end
|
797
|
+
|
713
798
|
# Represents a request to the create upload operation.
|
714
799
|
#
|
715
800
|
# @note When making an API call, you may pass CreateUploadRequest
|
@@ -727,11 +812,11 @@ module Aws::DeviceFarm
|
|
727
812
|
# @return [String]
|
728
813
|
#
|
729
814
|
# @!attribute [rw] name
|
730
|
-
# The upload's file name. The name should not contain
|
731
|
-
#
|
732
|
-
# the `.ipa` extension. If uploading an Android app,
|
733
|
-
#
|
734
|
-
# name must end with the `.zip` file extension.
|
815
|
+
# The upload's file name. The name should not contain any forward
|
816
|
+
# slashes (`/`). If you are uploading an iOS app, the file name must
|
817
|
+
# end with the `.ipa` extension. If you are uploading an Android app,
|
818
|
+
# the file name must end with the `.apk` extension. For all others,
|
819
|
+
# the file name must end with the `.zip` file extension.
|
735
820
|
# @return [String]
|
736
821
|
#
|
737
822
|
# @!attribute [rw] type
|
@@ -739,93 +824,77 @@ module Aws::DeviceFarm
|
|
739
824
|
#
|
740
825
|
# Must be one of the following values:
|
741
826
|
#
|
742
|
-
# * ANDROID\_APP
|
827
|
+
# * ANDROID\_APP
|
743
828
|
#
|
744
|
-
# * IOS\_APP
|
829
|
+
# * IOS\_APP
|
745
830
|
#
|
746
|
-
# * WEB\_APP
|
831
|
+
# * WEB\_APP
|
747
832
|
#
|
748
|
-
# * EXTERNAL\_DATA
|
833
|
+
# * EXTERNAL\_DATA
|
749
834
|
#
|
750
|
-
# * APPIUM\_JAVA\_JUNIT\_TEST\_PACKAGE
|
751
|
-
# package upload.
|
835
|
+
# * APPIUM\_JAVA\_JUNIT\_TEST\_PACKAGE
|
752
836
|
#
|
753
|
-
# * APPIUM\_JAVA\_TESTNG\_TEST\_PACKAGE
|
754
|
-
# package upload.
|
837
|
+
# * APPIUM\_JAVA\_TESTNG\_TEST\_PACKAGE
|
755
838
|
#
|
756
|
-
# * APPIUM\_PYTHON\_TEST\_PACKAGE
|
757
|
-
# upload.
|
839
|
+
# * APPIUM\_PYTHON\_TEST\_PACKAGE
|
758
840
|
#
|
759
|
-
# * APPIUM\_NODE\_TEST\_PACKAGE
|
760
|
-
# upload.
|
841
|
+
# * APPIUM\_NODE\_TEST\_PACKAGE
|
761
842
|
#
|
762
|
-
# * APPIUM\_RUBY\_TEST\_PACKAGE
|
843
|
+
# * APPIUM\_RUBY\_TEST\_PACKAGE
|
763
844
|
#
|
764
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_PACKAGE
|
765
|
-
# package upload for a web app.
|
845
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_PACKAGE
|
766
846
|
#
|
767
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_PACKAGE
|
768
|
-
# test package upload for a web app.
|
847
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_PACKAGE
|
769
848
|
#
|
770
|
-
# * APPIUM\_WEB\_PYTHON\_TEST\_PACKAGE
|
771
|
-
# upload for a web app.
|
849
|
+
# * APPIUM\_WEB\_PYTHON\_TEST\_PACKAGE
|
772
850
|
#
|
773
|
-
# * APPIUM\_WEB\_NODE\_TEST\_PACKAGE
|
774
|
-
# upload for a web app.
|
851
|
+
# * APPIUM\_WEB\_NODE\_TEST\_PACKAGE
|
775
852
|
#
|
776
|
-
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
777
|
-
# upload for a web app.
|
853
|
+
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
778
854
|
#
|
779
|
-
# * CALABASH\_TEST\_PACKAGE
|
855
|
+
# * CALABASH\_TEST\_PACKAGE
|
780
856
|
#
|
781
|
-
# * INSTRUMENTATION\_TEST\_PACKAGE
|
857
|
+
# * INSTRUMENTATION\_TEST\_PACKAGE
|
782
858
|
#
|
783
|
-
# * UIAUTOMATION\_TEST\_PACKAGE
|
859
|
+
# * UIAUTOMATION\_TEST\_PACKAGE
|
784
860
|
#
|
785
|
-
# * UIAUTOMATOR\_TEST\_PACKAGE
|
861
|
+
# * UIAUTOMATOR\_TEST\_PACKAGE
|
786
862
|
#
|
787
|
-
# * XCTEST\_TEST\_PACKAGE
|
863
|
+
# * XCTEST\_TEST\_PACKAGE
|
788
864
|
#
|
789
|
-
# * XCTEST\_UI\_TEST\_PACKAGE
|
865
|
+
# * XCTEST\_UI\_TEST\_PACKAGE
|
790
866
|
#
|
791
|
-
# * APPIUM\_JAVA\_JUNIT\_TEST\_SPEC
|
792
|
-
# upload.
|
867
|
+
# * APPIUM\_JAVA\_JUNIT\_TEST\_SPEC
|
793
868
|
#
|
794
|
-
# * APPIUM\_JAVA\_TESTNG\_TEST\_SPEC
|
795
|
-
# upload.
|
869
|
+
# * APPIUM\_JAVA\_TESTNG\_TEST\_SPEC
|
796
870
|
#
|
797
|
-
# * APPIUM\_PYTHON\_TEST\_SPEC
|
871
|
+
# * APPIUM\_PYTHON\_TEST\_SPEC
|
798
872
|
#
|
799
|
-
# * APPIUM\_NODE\_TEST\_SPEC
|
873
|
+
# * APPIUM\_NODE\_TEST\_SPEC
|
800
874
|
#
|
801
|
-
# * APPIUM\_RUBY\_TEST\_SPEC
|
875
|
+
# * APPIUM\_RUBY\_TEST\_SPEC
|
802
876
|
#
|
803
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_SPEC
|
804
|
-
# spec upload for a web app.
|
877
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_SPEC
|
805
878
|
#
|
806
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_SPEC
|
807
|
-
# spec upload for a web app.
|
879
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_SPEC
|
808
880
|
#
|
809
|
-
# * APPIUM\_WEB\_PYTHON\_TEST\_SPEC
|
810
|
-
# for a web app.
|
881
|
+
# * APPIUM\_WEB\_PYTHON\_TEST\_SPEC
|
811
882
|
#
|
812
|
-
# * APPIUM\_WEB\_NODE\_TEST\_SPEC
|
813
|
-
# for a web app.
|
883
|
+
# * APPIUM\_WEB\_NODE\_TEST\_SPEC
|
814
884
|
#
|
815
|
-
# * APPIUM\_WEB\_RUBY\_TEST\_SPEC
|
816
|
-
# a web app.
|
885
|
+
# * APPIUM\_WEB\_RUBY\_TEST\_SPEC
|
817
886
|
#
|
818
|
-
# * INSTRUMENTATION\_TEST\_SPEC
|
887
|
+
# * INSTRUMENTATION\_TEST\_SPEC
|
819
888
|
#
|
820
|
-
# * XCTEST\_UI\_TEST\_SPEC
|
889
|
+
# * XCTEST\_UI\_TEST\_SPEC
|
821
890
|
#
|
822
|
-
#
|
823
|
-
#
|
891
|
+
# If you call `CreateUpload` with `WEB_APP` specified, AWS Device Farm
|
892
|
+
# throws an `ArgumentException` error.
|
824
893
|
# @return [String]
|
825
894
|
#
|
826
895
|
# @!attribute [rw] content_type
|
827
896
|
# The upload's content type (for example,
|
828
|
-
#
|
897
|
+
# `application/octet-stream`).
|
829
898
|
# @return [String]
|
830
899
|
#
|
831
900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateUploadRequest AWS API Documentation
|
@@ -867,7 +936,7 @@ module Aws::DeviceFarm
|
|
867
936
|
# @return [String]
|
868
937
|
#
|
869
938
|
# @!attribute [rw] vpce_service_name
|
870
|
-
# The name of the VPC endpoint service running
|
939
|
+
# The name of the VPC endpoint service running in your AWS account
|
871
940
|
# that you want Device Farm to test.
|
872
941
|
# @return [String]
|
873
942
|
#
|
@@ -877,7 +946,7 @@ module Aws::DeviceFarm
|
|
877
946
|
# @return [String]
|
878
947
|
#
|
879
948
|
# @!attribute [rw] vpce_configuration_description
|
880
|
-
# An optional description
|
949
|
+
# An optional description that provides details about your VPC
|
881
950
|
# endpoint configuration.
|
882
951
|
# @return [String]
|
883
952
|
#
|
@@ -892,7 +961,7 @@ module Aws::DeviceFarm
|
|
892
961
|
end
|
893
962
|
|
894
963
|
# @!attribute [rw] vpce_configuration
|
895
|
-
# An object
|
964
|
+
# An object that contains information about your VPC endpoint
|
896
965
|
# configuration.
|
897
966
|
# @return [Types::VPCEConfiguration]
|
898
967
|
#
|
@@ -903,9 +972,9 @@ module Aws::DeviceFarm
|
|
903
972
|
include Aws::Structure
|
904
973
|
end
|
905
974
|
|
906
|
-
# A JSON object
|
907
|
-
# the customer's tests, on the device or in the test environment,
|
908
|
-
#
|
975
|
+
# A JSON object that specifies the paths where the artifacts generated
|
976
|
+
# by the customer's tests, on the device or in the test environment,
|
977
|
+
# are pulled from.
|
909
978
|
#
|
910
979
|
# Specify `deviceHostPaths` and optionally specify either `iosPaths` or
|
911
980
|
# `androidPaths`.
|
@@ -923,18 +992,18 @@ module Aws::DeviceFarm
|
|
923
992
|
#
|
924
993
|
# @!attribute [rw] ios_paths
|
925
994
|
# Comma-separated list of paths on the iOS device where the artifacts
|
926
|
-
# generated by the customer's tests
|
995
|
+
# generated by the customer's tests are pulled from.
|
927
996
|
# @return [Array<String>]
|
928
997
|
#
|
929
998
|
# @!attribute [rw] android_paths
|
930
999
|
# Comma-separated list of paths on the Android device where the
|
931
|
-
# artifacts generated by the customer's tests
|
1000
|
+
# artifacts generated by the customer's tests are pulled from.
|
932
1001
|
# @return [Array<String>]
|
933
1002
|
#
|
934
1003
|
# @!attribute [rw] device_host_paths
|
935
1004
|
# Comma-separated list of paths in the test execution environment
|
936
|
-
# where the artifacts generated by the customer's tests
|
937
|
-
#
|
1005
|
+
# where the artifacts generated by the customer's tests are pulled
|
1006
|
+
# from.
|
938
1007
|
# @return [Array<String>]
|
939
1008
|
#
|
940
1009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CustomerArtifactPaths AWS API Documentation
|
@@ -957,7 +1026,7 @@ module Aws::DeviceFarm
|
|
957
1026
|
#
|
958
1027
|
# @!attribute [rw] arn
|
959
1028
|
# Represents the Amazon Resource Name (ARN) of the Device Farm device
|
960
|
-
# pool
|
1029
|
+
# pool to delete.
|
961
1030
|
# @return [String]
|
962
1031
|
#
|
963
1032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeleteDevicePoolRequest AWS API Documentation
|
@@ -1004,8 +1073,7 @@ module Aws::DeviceFarm
|
|
1004
1073
|
# }
|
1005
1074
|
#
|
1006
1075
|
# @!attribute [rw] arn
|
1007
|
-
# The
|
1008
|
-
# delete.
|
1076
|
+
# The ARN of the network profile to delete.
|
1009
1077
|
# @return [String]
|
1010
1078
|
#
|
1011
1079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeleteNetworkProfileRequest AWS API Documentation
|
@@ -1030,7 +1098,7 @@ module Aws::DeviceFarm
|
|
1030
1098
|
#
|
1031
1099
|
# @!attribute [rw] arn
|
1032
1100
|
# Represents the Amazon Resource Name (ARN) of the Device Farm project
|
1033
|
-
#
|
1101
|
+
# to delete.
|
1034
1102
|
# @return [String]
|
1035
1103
|
#
|
1036
1104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeleteProjectRequest AWS API Documentation
|
@@ -1084,7 +1152,7 @@ module Aws::DeviceFarm
|
|
1084
1152
|
# }
|
1085
1153
|
#
|
1086
1154
|
# @!attribute [rw] arn
|
1087
|
-
# The Amazon Resource Name (ARN) for the run
|
1155
|
+
# The Amazon Resource Name (ARN) for the run to delete.
|
1088
1156
|
# @return [String]
|
1089
1157
|
#
|
1090
1158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeleteRunRequest AWS API Documentation
|
@@ -1100,6 +1168,29 @@ module Aws::DeviceFarm
|
|
1100
1168
|
#
|
1101
1169
|
class DeleteRunResult < Aws::EmptyStructure; end
|
1102
1170
|
|
1171
|
+
# @note When making an API call, you may pass DeleteTestGridProjectRequest
|
1172
|
+
# data as a hash:
|
1173
|
+
#
|
1174
|
+
# {
|
1175
|
+
# project_arn: "DeviceFarmArn", # required
|
1176
|
+
# }
|
1177
|
+
#
|
1178
|
+
# @!attribute [rw] project_arn
|
1179
|
+
# The ARN of the project to delete, from CreateTestGridProject or
|
1180
|
+
# ListTestGridProjects.
|
1181
|
+
# @return [String]
|
1182
|
+
#
|
1183
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeleteTestGridProjectRequest AWS API Documentation
|
1184
|
+
#
|
1185
|
+
class DeleteTestGridProjectRequest < Struct.new(
|
1186
|
+
:project_arn)
|
1187
|
+
include Aws::Structure
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeleteTestGridProjectResult AWS API Documentation
|
1191
|
+
#
|
1192
|
+
class DeleteTestGridProjectResult < Aws::EmptyStructure; end
|
1193
|
+
|
1103
1194
|
# Represents a request to the delete upload operation.
|
1104
1195
|
#
|
1105
1196
|
# @note When making an API call, you may pass DeleteUploadRequest
|
@@ -1111,7 +1202,7 @@ module Aws::DeviceFarm
|
|
1111
1202
|
#
|
1112
1203
|
# @!attribute [rw] arn
|
1113
1204
|
# Represents the Amazon Resource Name (ARN) of the Device Farm upload
|
1114
|
-
#
|
1205
|
+
# to delete.
|
1115
1206
|
# @return [String]
|
1116
1207
|
#
|
1117
1208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeleteUploadRequest AWS API Documentation
|
@@ -1177,9 +1268,9 @@ module Aws::DeviceFarm
|
|
1177
1268
|
#
|
1178
1269
|
# Allowed values include:
|
1179
1270
|
#
|
1180
|
-
# * PHONE
|
1271
|
+
# * PHONE
|
1181
1272
|
#
|
1182
|
-
# * TABLET
|
1273
|
+
# * TABLET
|
1183
1274
|
# @return [String]
|
1184
1275
|
#
|
1185
1276
|
# @!attribute [rw] platform
|
@@ -1187,9 +1278,9 @@ module Aws::DeviceFarm
|
|
1187
1278
|
#
|
1188
1279
|
# Allowed values include:
|
1189
1280
|
#
|
1190
|
-
# * ANDROID
|
1281
|
+
# * ANDROID
|
1191
1282
|
#
|
1192
|
-
# * IOS
|
1283
|
+
# * IOS
|
1193
1284
|
# @return [String]
|
1194
1285
|
#
|
1195
1286
|
# @!attribute [rw] os
|
@@ -1233,7 +1324,7 @@ module Aws::DeviceFarm
|
|
1233
1324
|
# This flag is set to `true` if remote debugging is enabled for the
|
1234
1325
|
# device.
|
1235
1326
|
#
|
1236
|
-
#
|
1327
|
+
# Remote debugging is [no longer supported][1].
|
1237
1328
|
#
|
1238
1329
|
#
|
1239
1330
|
#
|
@@ -1241,8 +1332,8 @@ module Aws::DeviceFarm
|
|
1241
1332
|
# @return [Boolean]
|
1242
1333
|
#
|
1243
1334
|
# @!attribute [rw] fleet_type
|
1244
|
-
# The type of fleet to which this device belongs. Possible values
|
1245
|
-
#
|
1335
|
+
# The type of fleet to which this device belongs. Possible values are
|
1336
|
+
# PRIVATE and PUBLIC.
|
1246
1337
|
# @return [String]
|
1247
1338
|
#
|
1248
1339
|
# @!attribute [rw] fleet_name
|
@@ -1250,12 +1341,12 @@ module Aws::DeviceFarm
|
|
1250
1341
|
# @return [String]
|
1251
1342
|
#
|
1252
1343
|
# @!attribute [rw] instances
|
1253
|
-
# The instances
|
1344
|
+
# The instances that belong to this device.
|
1254
1345
|
# @return [Array<Types::DeviceInstance>]
|
1255
1346
|
#
|
1256
1347
|
# @!attribute [rw] availability
|
1257
|
-
#
|
1258
|
-
#
|
1348
|
+
# Indicates how likely a device is available for a test run. Currently
|
1349
|
+
# available in the ListDevices and GetDevice API methods.
|
1259
1350
|
# @return [String]
|
1260
1351
|
#
|
1261
1352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Device AWS API Documentation
|
@@ -1287,11 +1378,11 @@ module Aws::DeviceFarm
|
|
1287
1378
|
|
1288
1379
|
# Represents a device filter used to select a set of devices to be
|
1289
1380
|
# included in a test run. This data structure is passed in as the
|
1290
|
-
# `deviceSelectionConfiguration` parameter to ScheduleRun
|
1381
|
+
# `deviceSelectionConfiguration` parameter to `ScheduleRun`. For an
|
1291
1382
|
# example of the JSON request syntax, see ScheduleRun.
|
1292
1383
|
#
|
1293
|
-
# It is also passed in as the `filters` parameter to ListDevices
|
1294
|
-
# example of the JSON request syntax, see ListDevices.
|
1384
|
+
# It is also passed in as the `filters` parameter to `ListDevices`. For
|
1385
|
+
# an example of the JSON request syntax, see ListDevices.
|
1295
1386
|
#
|
1296
1387
|
# @note When making an API call, you may pass DeviceFilter
|
1297
1388
|
# data as a hash:
|
@@ -1311,85 +1402,84 @@ module Aws::DeviceFarm
|
|
1311
1402
|
#
|
1312
1403
|
# ARN
|
1313
1404
|
#
|
1314
|
-
# : The Amazon Resource Name (ARN) of the device
|
1315
|
-
#
|
1405
|
+
# : The Amazon Resource Name (ARN) of the device (for example,
|
1406
|
+
# `arn:aws:devicefarm:us-west-2::device:12345Example`).
|
1316
1407
|
#
|
1317
|
-
#
|
1408
|
+
# Supported operators: `EQUALS`, `IN`, `NOT_IN`
|
1318
1409
|
#
|
1319
1410
|
# PLATFORM
|
1320
1411
|
#
|
1321
|
-
# : The device platform. Valid values are
|
1412
|
+
# : The device platform. Valid values are ANDROID or IOS.
|
1322
1413
|
#
|
1323
|
-
#
|
1414
|
+
# Supported operators: `EQUALS`
|
1324
1415
|
#
|
1325
1416
|
# OS\_VERSION
|
1326
1417
|
#
|
1327
|
-
# : The operating system version
|
1418
|
+
# : The operating system version (for example, 10.3.2).
|
1328
1419
|
#
|
1329
|
-
#
|
1420
|
+
# Supported operators: `EQUALS`, `GREATER_THAN`,
|
1330
1421
|
# `GREATER_THAN_OR_EQUALS`, `IN`, `LESS_THAN`,
|
1331
1422
|
# `LESS_THAN_OR_EQUALS`, `NOT_IN`
|
1332
1423
|
#
|
1333
1424
|
# MODEL
|
1334
1425
|
#
|
1335
|
-
# : The device model
|
1426
|
+
# : The device model (for example, iPad 5th Gen).
|
1336
1427
|
#
|
1337
|
-
#
|
1428
|
+
# Supported operators: `CONTAINS`, `EQUALS`, `IN`, `NOT_IN`
|
1338
1429
|
#
|
1339
1430
|
# AVAILABILITY
|
1340
1431
|
#
|
1341
1432
|
# : The current availability of the device. Valid values are
|
1342
|
-
#
|
1343
|
-
# "TEMPORARY\_NOT\_AVAILABLE".
|
1433
|
+
# AVAILABLE, HIGHLY\_AVAILABLE, BUSY, or TEMPORARY\_NOT\_AVAILABLE.
|
1344
1434
|
#
|
1345
|
-
#
|
1435
|
+
# Supported operators: `EQUALS`
|
1346
1436
|
#
|
1347
1437
|
# FORM\_FACTOR
|
1348
1438
|
#
|
1349
|
-
# : The device form factor. Valid values are
|
1439
|
+
# : The device form factor. Valid values are PHONE or TABLET.
|
1350
1440
|
#
|
1351
|
-
#
|
1441
|
+
# Supported operators: `EQUALS`
|
1352
1442
|
#
|
1353
1443
|
# MANUFACTURER
|
1354
1444
|
#
|
1355
|
-
# : The device manufacturer
|
1445
|
+
# : The device manufacturer (for example, Apple).
|
1356
1446
|
#
|
1357
|
-
#
|
1447
|
+
# Supported operators: `EQUALS`, `IN`, `NOT_IN`
|
1358
1448
|
#
|
1359
1449
|
# REMOTE\_ACCESS\_ENABLED
|
1360
1450
|
#
|
1361
1451
|
# : Whether the device is enabled for remote access. Valid values are
|
1362
|
-
#
|
1452
|
+
# TRUE or FALSE.
|
1363
1453
|
#
|
1364
|
-
#
|
1454
|
+
# Supported operators: `EQUALS`
|
1365
1455
|
#
|
1366
1456
|
# REMOTE\_DEBUG\_ENABLED
|
1367
1457
|
#
|
1368
|
-
# :
|
1369
|
-
#
|
1458
|
+
# : Whether the device is enabled for remote debugging. Valid values
|
1459
|
+
# are TRUE or FALSE.
|
1370
1460
|
#
|
1371
|
-
#
|
1461
|
+
# Supported operators: `EQUALS`
|
1372
1462
|
#
|
1373
|
-
#
|
1374
|
-
#
|
1463
|
+
# Because remote debugging is [no longer supported][1], this filter
|
1464
|
+
# is ignored.
|
1375
1465
|
#
|
1376
1466
|
# INSTANCE\_ARN
|
1377
1467
|
#
|
1378
1468
|
# : The Amazon Resource Name (ARN) of the device instance.
|
1379
1469
|
#
|
1380
|
-
#
|
1470
|
+
# Supported operators: `EQUALS`, `IN`, `NOT_IN`
|
1381
1471
|
#
|
1382
1472
|
# INSTANCE\_LABELS
|
1383
1473
|
#
|
1384
1474
|
# : The label of the device instance.
|
1385
1475
|
#
|
1386
|
-
#
|
1476
|
+
# Supported operators: `CONTAINS`
|
1387
1477
|
#
|
1388
1478
|
# FLEET\_TYPE
|
1389
1479
|
#
|
1390
|
-
# : The fleet type. Valid values are
|
1480
|
+
# : The fleet type. Valid values are PUBLIC or PRIVATE.
|
1391
1481
|
#
|
1392
|
-
#
|
1482
|
+
# Supported operators: `EQUALS`
|
1393
1483
|
#
|
1394
1484
|
#
|
1395
1485
|
#
|
@@ -1398,8 +1488,7 @@ module Aws::DeviceFarm
|
|
1398
1488
|
#
|
1399
1489
|
# @!attribute [rw] operator
|
1400
1490
|
# Specifies how Device Farm compares the filter's attribute to the
|
1401
|
-
# value.
|
1402
|
-
# the attribute descriptions.
|
1491
|
+
# value. See the attribute descriptions.
|
1403
1492
|
# @return [String]
|
1404
1493
|
#
|
1405
1494
|
# @!attribute [rw] values
|
@@ -1414,14 +1503,14 @@ module Aws::DeviceFarm
|
|
1414
1503
|
#
|
1415
1504
|
# **Attribute Values**
|
1416
1505
|
#
|
1417
|
-
# * The PLATFORM attribute can be set to
|
1506
|
+
# * The PLATFORM attribute can be set to ANDROID or IOS.
|
1418
1507
|
#
|
1419
|
-
# * The AVAILABILITY attribute can be set to
|
1420
|
-
#
|
1508
|
+
# * The AVAILABILITY attribute can be set to AVAILABLE,
|
1509
|
+
# HIGHLY\_AVAILABLE, BUSY, or TEMPORARY\_NOT\_AVAILABLE.
|
1421
1510
|
#
|
1422
|
-
# * The FORM\_FACTOR attribute can be set to
|
1511
|
+
# * The FORM\_FACTOR attribute can be set to PHONE or TABLET.
|
1423
1512
|
#
|
1424
|
-
# * The FLEET\_TYPE attribute can be set to
|
1513
|
+
# * The FLEET\_TYPE attribute can be set to PUBLIC or PRIVATE.
|
1425
1514
|
# @return [Array<String>]
|
1426
1515
|
#
|
1427
1516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeviceFilter AWS API Documentation
|
@@ -1440,15 +1529,15 @@ module Aws::DeviceFarm
|
|
1440
1529
|
# @return [String]
|
1441
1530
|
#
|
1442
1531
|
# @!attribute [rw] device_arn
|
1443
|
-
# The
|
1532
|
+
# The ARN of the device.
|
1444
1533
|
# @return [String]
|
1445
1534
|
#
|
1446
1535
|
# @!attribute [rw] labels
|
1447
|
-
# An array of strings
|
1536
|
+
# An array of strings that describe the device instance.
|
1448
1537
|
# @return [Array<String>]
|
1449
1538
|
#
|
1450
1539
|
# @!attribute [rw] status
|
1451
|
-
# The status of the device instance. Valid values are listed
|
1540
|
+
# The status of the device instance. Valid values are listed here.
|
1452
1541
|
# @return [String]
|
1453
1542
|
#
|
1454
1543
|
# @!attribute [rw] udid
|
@@ -1456,7 +1545,7 @@ module Aws::DeviceFarm
|
|
1456
1545
|
# @return [String]
|
1457
1546
|
#
|
1458
1547
|
# @!attribute [rw] instance_profile
|
1459
|
-
# A object
|
1548
|
+
# A object that contains information about the instance profile.
|
1460
1549
|
# @return [Types::InstanceProfile]
|
1461
1550
|
#
|
1462
1551
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeviceInstance AWS API Documentation
|
@@ -1531,10 +1620,10 @@ module Aws::DeviceFarm
|
|
1531
1620
|
#
|
1532
1621
|
# @!attribute [rw] max_devices
|
1533
1622
|
# The number of devices that Device Farm can add to your device pool.
|
1534
|
-
# Device Farm adds devices that are available and
|
1535
|
-
#
|
1536
|
-
#
|
1537
|
-
#
|
1623
|
+
# Device Farm adds devices that are available and meet the criteria
|
1624
|
+
# that you assign for the `rules` parameter. Depending on how many
|
1625
|
+
# devices meet these constraints, your device pool might contain fewer
|
1626
|
+
# devices than the value for this parameter.
|
1538
1627
|
#
|
1539
1628
|
# By specifying the maximum number of devices, you can control the
|
1540
1629
|
# costs that you incur by running tests.
|
@@ -1555,8 +1644,7 @@ module Aws::DeviceFarm
|
|
1555
1644
|
# Represents a device pool compatibility result.
|
1556
1645
|
#
|
1557
1646
|
# @!attribute [rw] device
|
1558
|
-
# The device (phone or tablet)
|
1559
|
-
# about.
|
1647
|
+
# The device (phone or tablet) to return information about.
|
1560
1648
|
# @return [Types::Device]
|
1561
1649
|
#
|
1562
1650
|
# @!attribute [rw] compatible
|
@@ -1576,10 +1664,9 @@ module Aws::DeviceFarm
|
|
1576
1664
|
include Aws::Structure
|
1577
1665
|
end
|
1578
1666
|
|
1579
|
-
# Represents the device filters used in a test run
|
1580
|
-
#
|
1581
|
-
#
|
1582
|
-
# ScheduleRun.
|
1667
|
+
# Represents the device filters used in a test run and the maximum
|
1668
|
+
# number of devices to be included in the run. It is passed in as the
|
1669
|
+
# `deviceSelectionConfiguration` request parameter in ScheduleRun.
|
1583
1670
|
#
|
1584
1671
|
# @note When making an API call, you may pass DeviceSelectionConfiguration
|
1585
1672
|
# data as a hash:
|
@@ -1606,41 +1693,37 @@ module Aws::DeviceFarm
|
|
1606
1693
|
#
|
1607
1694
|
# Allowed values include:
|
1608
1695
|
#
|
1609
|
-
# * ARN: The Amazon Resource Name (ARN) of the device
|
1610
|
-
#
|
1696
|
+
# * ARN: The Amazon Resource Name (ARN) of the device (for example,
|
1697
|
+
# `arn:aws:devicefarm:us-west-2::device:12345Example`).
|
1611
1698
|
#
|
1612
|
-
# * PLATFORM: The device platform. Valid values are
|
1613
|
-
# "IOS".
|
1699
|
+
# * PLATFORM: The device platform. Valid values are ANDROID or IOS.
|
1614
1700
|
#
|
1615
|
-
# * OS\_VERSION: The operating system version
|
1616
|
-
# "10.3.2".
|
1701
|
+
# * OS\_VERSION: The operating system version (for example, 10.3.2).
|
1617
1702
|
#
|
1618
|
-
# * MODEL: The device model
|
1703
|
+
# * MODEL: The device model (for example, iPad 5th Gen).
|
1619
1704
|
#
|
1620
1705
|
# * AVAILABILITY: The current availability of the device. Valid
|
1621
|
-
# values are
|
1622
|
-
#
|
1706
|
+
# values are AVAILABLE, HIGHLY\_AVAILABLE, BUSY, or
|
1707
|
+
# TEMPORARY\_NOT\_AVAILABLE.
|
1623
1708
|
#
|
1624
|
-
# * FORM\_FACTOR: The device form factor. Valid values are
|
1625
|
-
#
|
1709
|
+
# * FORM\_FACTOR: The device form factor. Valid values are PHONE or
|
1710
|
+
# TABLET.
|
1626
1711
|
#
|
1627
|
-
# * MANUFACTURER: The device manufacturer
|
1712
|
+
# * MANUFACTURER: The device manufacturer (for example, Apple).
|
1628
1713
|
#
|
1629
1714
|
# * REMOTE\_ACCESS\_ENABLED: Whether the device is enabled for
|
1630
|
-
# remote access. Valid values are
|
1715
|
+
# remote access. Valid values are TRUE or FALSE.
|
1631
1716
|
#
|
1632
1717
|
# * REMOTE\_DEBUG\_ENABLED: Whether the device is enabled for remote
|
1633
|
-
# debugging. Valid values are
|
1634
|
-
#
|
1635
|
-
# supported][1].*
|
1718
|
+
# debugging. Valid values are TRUE or FALSE. Because remote
|
1719
|
+
# debugging is [no longer supported][1], this filter is ignored.
|
1636
1720
|
#
|
1637
1721
|
# * INSTANCE\_ARN: The Amazon Resource Name (ARN) of the device
|
1638
1722
|
# instance.
|
1639
1723
|
#
|
1640
1724
|
# * INSTANCE\_LABELS: The label of the device instance.
|
1641
1725
|
#
|
1642
|
-
# * FLEET\_TYPE: The fleet type. Valid values are
|
1643
|
-
# "PRIVATE".
|
1726
|
+
# * FLEET\_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE.
|
1644
1727
|
#
|
1645
1728
|
# * **Operator**
|
1646
1729
|
#
|
@@ -1672,17 +1755,14 @@ module Aws::DeviceFarm
|
|
1672
1755
|
#
|
1673
1756
|
# **Attribute Values**
|
1674
1757
|
#
|
1675
|
-
# * The PLATFORM attribute can be set to
|
1758
|
+
# * The PLATFORM attribute can be set to ANDROID or IOS.
|
1676
1759
|
#
|
1677
|
-
# * The AVAILABILITY attribute can be set to
|
1678
|
-
#
|
1679
|
-
# "TEMPORARY\_NOT\_AVAILABLE".
|
1760
|
+
# * The AVAILABILITY attribute can be set to AVAILABLE,
|
1761
|
+
# HIGHLY\_AVAILABLE, BUSY, or TEMPORARY\_NOT\_AVAILABLE.
|
1680
1762
|
#
|
1681
|
-
# * The FORM\_FACTOR attribute can be set to
|
1682
|
-
# "TABLET".
|
1763
|
+
# * The FORM\_FACTOR attribute can be set to PHONE or TABLET.
|
1683
1764
|
#
|
1684
|
-
# * The FLEET\_TYPE attribute can be set to
|
1685
|
-
# "PRIVATE".
|
1765
|
+
# * The FLEET\_TYPE attribute can be set to PUBLIC or PRIVATE.
|
1686
1766
|
#
|
1687
1767
|
#
|
1688
1768
|
#
|
@@ -1702,8 +1782,8 @@ module Aws::DeviceFarm
|
|
1702
1782
|
end
|
1703
1783
|
|
1704
1784
|
# Contains the run results requested by the device selection
|
1705
|
-
# configuration
|
1706
|
-
#
|
1785
|
+
# configuration and how many devices were returned. For an example of
|
1786
|
+
# the JSON response syntax, see ScheduleRun.
|
1707
1787
|
#
|
1708
1788
|
# @!attribute [rw] filters
|
1709
1789
|
# The filters in a device selection result.
|
@@ -1743,30 +1823,30 @@ module Aws::DeviceFarm
|
|
1743
1823
|
# }
|
1744
1824
|
#
|
1745
1825
|
# @!attribute [rw] job_timeout_minutes
|
1746
|
-
# The number of minutes a test run
|
1826
|
+
# The number of minutes a test run executes before it times out.
|
1747
1827
|
# @return [Integer]
|
1748
1828
|
#
|
1749
1829
|
# @!attribute [rw] accounts_cleanup
|
1750
|
-
# True if account cleanup is enabled at the beginning of the test
|
1751
|
-
#
|
1830
|
+
# True if account cleanup is enabled at the beginning of the test.
|
1831
|
+
# Otherwise, false.
|
1752
1832
|
# @return [Boolean]
|
1753
1833
|
#
|
1754
1834
|
# @!attribute [rw] app_packages_cleanup
|
1755
|
-
# True if app package cleanup is enabled at the beginning of the test
|
1756
|
-
#
|
1835
|
+
# True if app package cleanup is enabled at the beginning of the test.
|
1836
|
+
# Otherwise, false.
|
1757
1837
|
# @return [Boolean]
|
1758
1838
|
#
|
1759
1839
|
# @!attribute [rw] video_capture
|
1760
|
-
# Set to true to enable video capture
|
1840
|
+
# Set to true to enable video capture. Otherwise, set to false. The
|
1761
1841
|
# default is true.
|
1762
1842
|
# @return [Boolean]
|
1763
1843
|
#
|
1764
1844
|
# @!attribute [rw] skip_app_resign
|
1765
|
-
# When set to `true`, for private devices, Device Farm
|
1845
|
+
# When set to `true`, for private devices, Device Farm does not sign
|
1766
1846
|
# your app again. For public devices, Device Farm always signs your
|
1767
|
-
# apps again
|
1847
|
+
# apps again.
|
1768
1848
|
#
|
1769
|
-
# For more information about how Device Farm re-signs your
|
1849
|
+
# For more information about how Device Farm re-signs your apps, see
|
1770
1850
|
# [Do you modify my app?][1] in the *AWS Device Farm FAQs*.
|
1771
1851
|
#
|
1772
1852
|
#
|
@@ -1827,7 +1907,7 @@ module Aws::DeviceFarm
|
|
1827
1907
|
end
|
1828
1908
|
|
1829
1909
|
# @!attribute [rw] device_instance
|
1830
|
-
# An object
|
1910
|
+
# An object that contains information about your device instance.
|
1831
1911
|
# @return [Types::DeviceInstance]
|
1832
1912
|
#
|
1833
1913
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetDeviceInstanceResult AWS API Documentation
|
@@ -1894,44 +1974,43 @@ module Aws::DeviceFarm
|
|
1894
1974
|
#
|
1895
1975
|
# Allowed values include the following:
|
1896
1976
|
#
|
1897
|
-
# * BUILTIN\_FUZZ
|
1977
|
+
# * BUILTIN\_FUZZ.
|
1898
1978
|
#
|
1899
|
-
# * BUILTIN\_EXPLORER
|
1900
|
-
#
|
1901
|
-
#
|
1979
|
+
# * BUILTIN\_EXPLORER. For Android, an app explorer that traverses an
|
1980
|
+
# Android app, interacting with it and capturing screenshots at the
|
1981
|
+
# same time.
|
1902
1982
|
#
|
1903
|
-
# * APPIUM\_JAVA\_JUNIT
|
1983
|
+
# * APPIUM\_JAVA\_JUNIT.
|
1904
1984
|
#
|
1905
|
-
# * APPIUM\_JAVA\_TESTNG
|
1985
|
+
# * APPIUM\_JAVA\_TESTNG.
|
1906
1986
|
#
|
1907
|
-
# * APPIUM\_PYTHON
|
1987
|
+
# * APPIUM\_PYTHON.
|
1908
1988
|
#
|
1909
|
-
# * APPIUM\_NODE
|
1989
|
+
# * APPIUM\_NODE.
|
1910
1990
|
#
|
1911
|
-
# * APPIUM\_RUBY
|
1991
|
+
# * APPIUM\_RUBY.
|
1912
1992
|
#
|
1913
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT
|
1993
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT.
|
1914
1994
|
#
|
1915
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG
|
1916
|
-
# apps.
|
1995
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG.
|
1917
1996
|
#
|
1918
|
-
# * APPIUM\_WEB\_PYTHON
|
1997
|
+
# * APPIUM\_WEB\_PYTHON.
|
1919
1998
|
#
|
1920
|
-
# * APPIUM\_WEB\_NODE
|
1999
|
+
# * APPIUM\_WEB\_NODE.
|
1921
2000
|
#
|
1922
|
-
# * APPIUM\_WEB\_RUBY
|
2001
|
+
# * APPIUM\_WEB\_RUBY.
|
1923
2002
|
#
|
1924
|
-
# * CALABASH
|
2003
|
+
# * CALABASH.
|
1925
2004
|
#
|
1926
|
-
# * INSTRUMENTATION
|
2005
|
+
# * INSTRUMENTATION.
|
1927
2006
|
#
|
1928
|
-
# * UIAUTOMATION
|
2007
|
+
# * UIAUTOMATION.
|
1929
2008
|
#
|
1930
|
-
# * UIAUTOMATOR
|
2009
|
+
# * UIAUTOMATOR.
|
1931
2010
|
#
|
1932
|
-
# * XCTEST
|
2011
|
+
# * XCTEST.
|
1933
2012
|
#
|
1934
|
-
# * XCTEST\_UI
|
2013
|
+
# * XCTEST\_UI.
|
1935
2014
|
# @return [String]
|
1936
2015
|
#
|
1937
2016
|
# @!attribute [rw] test
|
@@ -1940,7 +2019,7 @@ module Aws::DeviceFarm
|
|
1940
2019
|
# @return [Types::ScheduleRunTest]
|
1941
2020
|
#
|
1942
2021
|
# @!attribute [rw] configuration
|
1943
|
-
# An object
|
2022
|
+
# An object that contains information about the settings for a run.
|
1944
2023
|
# @return [Types::ScheduleRunConfiguration]
|
1945
2024
|
#
|
1946
2025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetDevicePoolCompatibilityRequest AWS API Documentation
|
@@ -1995,7 +2074,7 @@ module Aws::DeviceFarm
|
|
1995
2074
|
# Represents the result of a get device pool request.
|
1996
2075
|
#
|
1997
2076
|
# @!attribute [rw] device_pool
|
1998
|
-
# An object
|
2077
|
+
# An object that contains information about the requested device pool.
|
1999
2078
|
# @return [Types::DevicePool]
|
2000
2079
|
#
|
2001
2080
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetDevicePoolResult AWS API Documentation
|
@@ -2028,7 +2107,7 @@ module Aws::DeviceFarm
|
|
2028
2107
|
# Represents the result of a get device request.
|
2029
2108
|
#
|
2030
2109
|
# @!attribute [rw] device
|
2031
|
-
# An object
|
2110
|
+
# An object that contains information about the requested device.
|
2032
2111
|
# @return [Types::Device]
|
2033
2112
|
#
|
2034
2113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetDeviceResult AWS API Documentation
|
@@ -2046,7 +2125,7 @@ module Aws::DeviceFarm
|
|
2046
2125
|
# }
|
2047
2126
|
#
|
2048
2127
|
# @!attribute [rw] arn
|
2049
|
-
# The Amazon Resource Name (ARN) of
|
2128
|
+
# The Amazon Resource Name (ARN) of an instance profile.
|
2050
2129
|
# @return [String]
|
2051
2130
|
#
|
2052
2131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetInstanceProfileRequest AWS API Documentation
|
@@ -2057,7 +2136,7 @@ module Aws::DeviceFarm
|
|
2057
2136
|
end
|
2058
2137
|
|
2059
2138
|
# @!attribute [rw] instance_profile
|
2060
|
-
# An object
|
2139
|
+
# An object that contains information about an instance profile.
|
2061
2140
|
# @return [Types::InstanceProfile]
|
2062
2141
|
#
|
2063
2142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetInstanceProfileResult AWS API Documentation
|
@@ -2090,7 +2169,7 @@ module Aws::DeviceFarm
|
|
2090
2169
|
# Represents the result of a get job request.
|
2091
2170
|
#
|
2092
2171
|
# @!attribute [rw] job
|
2093
|
-
# An object
|
2172
|
+
# An object that contains information about the requested job.
|
2094
2173
|
# @return [Types::Job]
|
2095
2174
|
#
|
2096
2175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetJobResult AWS API Documentation
|
@@ -2108,8 +2187,7 @@ module Aws::DeviceFarm
|
|
2108
2187
|
# }
|
2109
2188
|
#
|
2110
2189
|
# @!attribute [rw] arn
|
2111
|
-
# The
|
2112
|
-
# return information about.
|
2190
|
+
# The ARN of the network profile to return information about.
|
2113
2191
|
# @return [String]
|
2114
2192
|
#
|
2115
2193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetNetworkProfileRequest AWS API Documentation
|
@@ -2201,7 +2279,7 @@ module Aws::DeviceFarm
|
|
2201
2279
|
# Represents the result of a get project request.
|
2202
2280
|
#
|
2203
2281
|
# @!attribute [rw] project
|
2204
|
-
# The project
|
2282
|
+
# The project to get information about.
|
2205
2283
|
# @return [Types::Project]
|
2206
2284
|
#
|
2207
2285
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetProjectResult AWS API Documentation
|
@@ -2271,7 +2349,7 @@ module Aws::DeviceFarm
|
|
2271
2349
|
# Represents the result of a get run request.
|
2272
2350
|
#
|
2273
2351
|
# @!attribute [rw] run
|
2274
|
-
# The run
|
2352
|
+
# The run to get results from.
|
2275
2353
|
# @return [Types::Run]
|
2276
2354
|
#
|
2277
2355
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRunResult AWS API Documentation
|
@@ -2314,6 +2392,78 @@ module Aws::DeviceFarm
|
|
2314
2392
|
include Aws::Structure
|
2315
2393
|
end
|
2316
2394
|
|
2395
|
+
# @note When making an API call, you may pass GetTestGridProjectRequest
|
2396
|
+
# data as a hash:
|
2397
|
+
#
|
2398
|
+
# {
|
2399
|
+
# project_arn: "DeviceFarmArn", # required
|
2400
|
+
# }
|
2401
|
+
#
|
2402
|
+
# @!attribute [rw] project_arn
|
2403
|
+
# The ARN of the Selenium testing project, from either
|
2404
|
+
# CreateTestGridProject or ListTestGridProjects.
|
2405
|
+
# @return [String]
|
2406
|
+
#
|
2407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetTestGridProjectRequest AWS API Documentation
|
2408
|
+
#
|
2409
|
+
class GetTestGridProjectRequest < Struct.new(
|
2410
|
+
:project_arn)
|
2411
|
+
include Aws::Structure
|
2412
|
+
end
|
2413
|
+
|
2414
|
+
# @!attribute [rw] test_grid_project
|
2415
|
+
# A TestGridProject.
|
2416
|
+
# @return [Types::TestGridProject]
|
2417
|
+
#
|
2418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetTestGridProjectResult AWS API Documentation
|
2419
|
+
#
|
2420
|
+
class GetTestGridProjectResult < Struct.new(
|
2421
|
+
:test_grid_project)
|
2422
|
+
include Aws::Structure
|
2423
|
+
end
|
2424
|
+
|
2425
|
+
# @note When making an API call, you may pass GetTestGridSessionRequest
|
2426
|
+
# data as a hash:
|
2427
|
+
#
|
2428
|
+
# {
|
2429
|
+
# project_arn: "DeviceFarmArn",
|
2430
|
+
# session_id: "ResourceId",
|
2431
|
+
# session_arn: "DeviceFarmArn",
|
2432
|
+
# }
|
2433
|
+
#
|
2434
|
+
# @!attribute [rw] project_arn
|
2435
|
+
# The ARN for the project that this session belongs to. See
|
2436
|
+
# CreateTestGridProject and ListTestGridProjects.
|
2437
|
+
# @return [String]
|
2438
|
+
#
|
2439
|
+
# @!attribute [rw] session_id
|
2440
|
+
# An ID associated with this session.
|
2441
|
+
# @return [String]
|
2442
|
+
#
|
2443
|
+
# @!attribute [rw] session_arn
|
2444
|
+
# An ARN that uniquely identifies a TestGridSession.
|
2445
|
+
# @return [String]
|
2446
|
+
#
|
2447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetTestGridSessionRequest AWS API Documentation
|
2448
|
+
#
|
2449
|
+
class GetTestGridSessionRequest < Struct.new(
|
2450
|
+
:project_arn,
|
2451
|
+
:session_id,
|
2452
|
+
:session_arn)
|
2453
|
+
include Aws::Structure
|
2454
|
+
end
|
2455
|
+
|
2456
|
+
# @!attribute [rw] test_grid_session
|
2457
|
+
# The TestGridSession that was requested.
|
2458
|
+
# @return [Types::TestGridSession]
|
2459
|
+
#
|
2460
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetTestGridSessionResult AWS API Documentation
|
2461
|
+
#
|
2462
|
+
class GetTestGridSessionResult < Struct.new(
|
2463
|
+
:test_grid_session)
|
2464
|
+
include Aws::Structure
|
2465
|
+
end
|
2466
|
+
|
2317
2467
|
# Represents a request to the get test operation.
|
2318
2468
|
#
|
2319
2469
|
# @note When making an API call, you may pass GetTestRequest
|
@@ -2401,7 +2551,7 @@ module Aws::DeviceFarm
|
|
2401
2551
|
end
|
2402
2552
|
|
2403
2553
|
# @!attribute [rw] vpce_configuration
|
2404
|
-
# An object
|
2554
|
+
# An object that contains information about your VPC endpoint
|
2405
2555
|
# configuration.
|
2406
2556
|
# @return [Types::VPCEConfiguration]
|
2407
2557
|
#
|
@@ -2436,18 +2586,17 @@ module Aws::DeviceFarm
|
|
2436
2586
|
#
|
2437
2587
|
# Allowed values include:
|
2438
2588
|
#
|
2439
|
-
# * ARN
|
2589
|
+
# * ARN
|
2440
2590
|
#
|
2441
|
-
# * FORM\_FACTOR
|
2591
|
+
# * FORM\_FACTOR (for example, phone or tablet)
|
2442
2592
|
#
|
2443
|
-
# * MANUFACTURER
|
2593
|
+
# * MANUFACTURER
|
2444
2594
|
#
|
2445
|
-
# * PLATFORM
|
2595
|
+
# * PLATFORM (for example, Android or iOS)
|
2446
2596
|
#
|
2447
|
-
# * REMOTE\_ACCESS\_ENABLED
|
2448
|
-
# access.
|
2597
|
+
# * REMOTE\_ACCESS\_ENABLED
|
2449
2598
|
#
|
2450
|
-
# * APPIUM\_VERSION
|
2599
|
+
# * APPIUM\_VERSION
|
2451
2600
|
# @return [String]
|
2452
2601
|
#
|
2453
2602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/IncompatibilityMessage AWS API Documentation
|
@@ -2476,8 +2625,7 @@ module Aws::DeviceFarm
|
|
2476
2625
|
# @return [String]
|
2477
2626
|
#
|
2478
2627
|
# @!attribute [rw] app_arn
|
2479
|
-
# The
|
2480
|
-
# requesting information.
|
2628
|
+
# The ARN of the app about which you are requesting information.
|
2481
2629
|
# @return [String]
|
2482
2630
|
#
|
2483
2631
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/InstallToRemoteAccessSessionRequest AWS API Documentation
|
@@ -2509,21 +2657,21 @@ module Aws::DeviceFarm
|
|
2509
2657
|
# @return [String]
|
2510
2658
|
#
|
2511
2659
|
# @!attribute [rw] package_cleanup
|
2512
|
-
# When set to `true`, Device Farm
|
2513
|
-
#
|
2660
|
+
# When set to `true`, Device Farm removes app packages after a test
|
2661
|
+
# run. The default value is `false` for private devices.
|
2514
2662
|
# @return [Boolean]
|
2515
2663
|
#
|
2516
2664
|
# @!attribute [rw] exclude_app_packages_from_cleanup
|
2517
|
-
# An array of strings
|
2518
|
-
# not be cleaned up from the device after a test run
|
2665
|
+
# An array of strings containing the list of app packages that should
|
2666
|
+
# not be cleaned up from the device after a test run completes.
|
2519
2667
|
#
|
2520
|
-
# The list of packages is only
|
2668
|
+
# The list of packages is considered only if you set `packageCleanup`
|
2521
2669
|
# to `true`.
|
2522
2670
|
# @return [Array<String>]
|
2523
2671
|
#
|
2524
2672
|
# @!attribute [rw] reboot_after_use
|
2525
|
-
# When set to `true`, Device Farm
|
2526
|
-
#
|
2673
|
+
# When set to `true`, Device Farm reboots the instance after a test
|
2674
|
+
# run. The default value is `true`.
|
2527
2675
|
# @return [Boolean]
|
2528
2676
|
#
|
2529
2677
|
# @!attribute [rw] name
|
@@ -2546,6 +2694,20 @@ module Aws::DeviceFarm
|
|
2546
2694
|
include Aws::Structure
|
2547
2695
|
end
|
2548
2696
|
|
2697
|
+
# An internal exception was raised in the service. Contact
|
2698
|
+
# [aws-devicefarm-support@amazon.com](mailto:aws-devicefarm-support@amazon.com)
|
2699
|
+
# if you see this error.
|
2700
|
+
#
|
2701
|
+
# @!attribute [rw] message
|
2702
|
+
# @return [String]
|
2703
|
+
#
|
2704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/InternalServiceException AWS API Documentation
|
2705
|
+
#
|
2706
|
+
class InternalServiceException < Struct.new(
|
2707
|
+
:message)
|
2708
|
+
include Aws::Structure
|
2709
|
+
end
|
2710
|
+
|
2549
2711
|
# There was an error with the update request, or you do not have
|
2550
2712
|
# sufficient permissions to update this VPC endpoint configuration.
|
2551
2713
|
#
|
@@ -2574,44 +2736,43 @@ module Aws::DeviceFarm
|
|
2574
2736
|
#
|
2575
2737
|
# Allowed values include the following:
|
2576
2738
|
#
|
2577
|
-
# * BUILTIN\_FUZZ
|
2739
|
+
# * BUILTIN\_FUZZ
|
2578
2740
|
#
|
2579
|
-
# * BUILTIN\_EXPLORER
|
2580
|
-
#
|
2581
|
-
#
|
2741
|
+
# * BUILTIN\_EXPLORER. For Android, an app explorer that traverses an
|
2742
|
+
# Android app, interacting with it and capturing screenshots at the
|
2743
|
+
# same time.
|
2582
2744
|
#
|
2583
|
-
# * APPIUM\_JAVA\_JUNIT
|
2745
|
+
# * APPIUM\_JAVA\_JUNIT
|
2584
2746
|
#
|
2585
|
-
# * APPIUM\_JAVA\_TESTNG
|
2747
|
+
# * APPIUM\_JAVA\_TESTNG
|
2586
2748
|
#
|
2587
|
-
# * APPIUM\_PYTHON
|
2749
|
+
# * APPIUM\_PYTHON
|
2588
2750
|
#
|
2589
|
-
# * APPIUM\_NODE
|
2751
|
+
# * APPIUM\_NODE
|
2590
2752
|
#
|
2591
|
-
# * APPIUM\_RUBY
|
2753
|
+
# * APPIUM\_RUBY
|
2592
2754
|
#
|
2593
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT
|
2755
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT
|
2594
2756
|
#
|
2595
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG
|
2596
|
-
# apps.
|
2757
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG
|
2597
2758
|
#
|
2598
|
-
# * APPIUM\_WEB\_PYTHON
|
2759
|
+
# * APPIUM\_WEB\_PYTHON
|
2599
2760
|
#
|
2600
|
-
# * APPIUM\_WEB\_NODE
|
2761
|
+
# * APPIUM\_WEB\_NODE
|
2601
2762
|
#
|
2602
|
-
# * APPIUM\_WEB\_RUBY
|
2763
|
+
# * APPIUM\_WEB\_RUBY
|
2603
2764
|
#
|
2604
|
-
# * CALABASH
|
2765
|
+
# * CALABASH
|
2605
2766
|
#
|
2606
|
-
# * INSTRUMENTATION
|
2767
|
+
# * INSTRUMENTATION
|
2607
2768
|
#
|
2608
|
-
# * UIAUTOMATION
|
2769
|
+
# * UIAUTOMATION
|
2609
2770
|
#
|
2610
|
-
# * UIAUTOMATOR
|
2771
|
+
# * UIAUTOMATOR
|
2611
2772
|
#
|
2612
|
-
# * XCTEST
|
2773
|
+
# * XCTEST
|
2613
2774
|
#
|
2614
|
-
# * XCTEST\_UI
|
2775
|
+
# * XCTEST\_UI
|
2615
2776
|
# @return [String]
|
2616
2777
|
#
|
2617
2778
|
# @!attribute [rw] created
|
@@ -2623,23 +2784,23 @@ module Aws::DeviceFarm
|
|
2623
2784
|
#
|
2624
2785
|
# Allowed values include:
|
2625
2786
|
#
|
2626
|
-
# * PENDING
|
2787
|
+
# * PENDING
|
2627
2788
|
#
|
2628
|
-
# * PENDING\_CONCURRENCY
|
2789
|
+
# * PENDING\_CONCURRENCY
|
2629
2790
|
#
|
2630
|
-
# * PENDING\_DEVICE
|
2791
|
+
# * PENDING\_DEVICE
|
2631
2792
|
#
|
2632
|
-
# * PROCESSING
|
2793
|
+
# * PROCESSING
|
2633
2794
|
#
|
2634
|
-
# * SCHEDULING
|
2795
|
+
# * SCHEDULING
|
2635
2796
|
#
|
2636
|
-
# * PREPARING
|
2797
|
+
# * PREPARING
|
2637
2798
|
#
|
2638
|
-
# * RUNNING
|
2799
|
+
# * RUNNING
|
2639
2800
|
#
|
2640
|
-
# * COMPLETED
|
2801
|
+
# * COMPLETED
|
2641
2802
|
#
|
2642
|
-
# * STOPPING
|
2803
|
+
# * STOPPING
|
2643
2804
|
# @return [String]
|
2644
2805
|
#
|
2645
2806
|
# @!attribute [rw] result
|
@@ -2647,19 +2808,19 @@ module Aws::DeviceFarm
|
|
2647
2808
|
#
|
2648
2809
|
# Allowed values include:
|
2649
2810
|
#
|
2650
|
-
# * PENDING
|
2811
|
+
# * PENDING
|
2651
2812
|
#
|
2652
|
-
# * PASSED
|
2813
|
+
# * PASSED
|
2653
2814
|
#
|
2654
|
-
# * WARNED
|
2815
|
+
# * WARNED
|
2655
2816
|
#
|
2656
|
-
# * FAILED
|
2817
|
+
# * FAILED
|
2657
2818
|
#
|
2658
|
-
# * SKIPPED
|
2819
|
+
# * SKIPPED
|
2659
2820
|
#
|
2660
|
-
# * ERRORED
|
2821
|
+
# * ERRORED
|
2661
2822
|
#
|
2662
|
-
# * STOPPED
|
2823
|
+
# * STOPPED
|
2663
2824
|
# @return [String]
|
2664
2825
|
#
|
2665
2826
|
# @!attribute [rw] started
|
@@ -2683,7 +2844,7 @@ module Aws::DeviceFarm
|
|
2683
2844
|
# @return [Types::Device]
|
2684
2845
|
#
|
2685
2846
|
# @!attribute [rw] instance_arn
|
2686
|
-
# The
|
2847
|
+
# The ARN of the instance.
|
2687
2848
|
# @return [String]
|
2688
2849
|
#
|
2689
2850
|
# @!attribute [rw] device_minutes
|
@@ -2695,7 +2856,7 @@ module Aws::DeviceFarm
|
|
2695
2856
|
# @return [String]
|
2696
2857
|
#
|
2697
2858
|
# @!attribute [rw] video_capture
|
2698
|
-
# This value is set to true if video capture is enabled
|
2859
|
+
# This value is set to true if video capture is enabled. Otherwise, it
|
2699
2860
|
# is set to false.
|
2700
2861
|
# @return [Boolean]
|
2701
2862
|
#
|
@@ -2745,7 +2906,7 @@ module Aws::DeviceFarm
|
|
2745
2906
|
# }
|
2746
2907
|
#
|
2747
2908
|
# @!attribute [rw] arn
|
2748
|
-
# The
|
2909
|
+
# The run, job, suite, or test ARN.
|
2749
2910
|
# @return [String]
|
2750
2911
|
#
|
2751
2912
|
# @!attribute [rw] type
|
@@ -2753,11 +2914,11 @@ module Aws::DeviceFarm
|
|
2753
2914
|
#
|
2754
2915
|
# Allowed values include:
|
2755
2916
|
#
|
2756
|
-
# * FILE
|
2917
|
+
# * FILE
|
2757
2918
|
#
|
2758
|
-
# * LOG
|
2919
|
+
# * LOG
|
2759
2920
|
#
|
2760
|
-
# * SCREENSHOT
|
2921
|
+
# * SCREENSHOT
|
2761
2922
|
# @return [String]
|
2762
2923
|
#
|
2763
2924
|
# @!attribute [rw] next_token
|
@@ -2783,7 +2944,7 @@ module Aws::DeviceFarm
|
|
2783
2944
|
#
|
2784
2945
|
# @!attribute [rw] next_token
|
2785
2946
|
# If the number of items that are returned is significantly large,
|
2786
|
-
# this is an identifier that is also returned
|
2947
|
+
# this is an identifier that is also returned. It can be used in a
|
2787
2948
|
# subsequent call to this operation to return the next set of items in
|
2788
2949
|
# the list.
|
2789
2950
|
# @return [String]
|
@@ -2805,8 +2966,8 @@ module Aws::DeviceFarm
|
|
2805
2966
|
# }
|
2806
2967
|
#
|
2807
2968
|
# @!attribute [rw] max_results
|
2808
|
-
# An integer
|
2809
|
-
# in the API response.
|
2969
|
+
# An integer that specifies the maximum number of items you want to
|
2970
|
+
# return in the API response.
|
2810
2971
|
# @return [Integer]
|
2811
2972
|
#
|
2812
2973
|
# @!attribute [rw] next_token
|
@@ -2824,7 +2985,7 @@ module Aws::DeviceFarm
|
|
2824
2985
|
end
|
2825
2986
|
|
2826
2987
|
# @!attribute [rw] device_instances
|
2827
|
-
# An object
|
2988
|
+
# An object that contains information about your device instances.
|
2828
2989
|
# @return [Array<Types::DeviceInstance>]
|
2829
2990
|
#
|
2830
2991
|
# @!attribute [rw] next_token
|
@@ -2890,7 +3051,7 @@ module Aws::DeviceFarm
|
|
2890
3051
|
#
|
2891
3052
|
# @!attribute [rw] next_token
|
2892
3053
|
# If the number of items that are returned is significantly large,
|
2893
|
-
# this is an identifier that is also returned
|
3054
|
+
# this is an identifier that is also returned. It can be used in a
|
2894
3055
|
# subsequent call to this operation to return the next set of items in
|
2895
3056
|
# the list.
|
2896
3057
|
# @return [String]
|
@@ -2939,41 +3100,38 @@ module Aws::DeviceFarm
|
|
2939
3100
|
#
|
2940
3101
|
# Allowed values include:
|
2941
3102
|
#
|
2942
|
-
# * ARN: The Amazon Resource Name (ARN) of the device
|
2943
|
-
#
|
3103
|
+
# * ARN: The Amazon Resource Name (ARN) of the device (for example,
|
3104
|
+
# `arn:aws:devicefarm:us-west-2::device:12345Example`).
|
2944
3105
|
#
|
2945
|
-
# * PLATFORM: The device platform. Valid values are
|
2946
|
-
# "IOS".
|
3106
|
+
# * PLATFORM: The device platform. Valid values are ANDROID or IOS.
|
2947
3107
|
#
|
2948
|
-
# * OS\_VERSION: The operating system version
|
2949
|
-
# "10.3.2".
|
3108
|
+
# * OS\_VERSION: The operating system version (for example, 10.3.2).
|
2950
3109
|
#
|
2951
|
-
# * MODEL: The device model
|
3110
|
+
# * MODEL: The device model (for example, iPad 5th Gen).
|
2952
3111
|
#
|
2953
3112
|
# * AVAILABILITY: The current availability of the device. Valid
|
2954
|
-
# values are
|
2955
|
-
#
|
3113
|
+
# values are AVAILABLE, HIGHLY\_AVAILABLE, BUSY, or
|
3114
|
+
# TEMPORARY\_NOT\_AVAILABLE.
|
2956
3115
|
#
|
2957
|
-
# * FORM\_FACTOR: The device form factor. Valid values are
|
2958
|
-
#
|
3116
|
+
# * FORM\_FACTOR: The device form factor. Valid values are PHONE or
|
3117
|
+
# TABLET.
|
2959
3118
|
#
|
2960
|
-
# * MANUFACTURER: The device manufacturer
|
3119
|
+
# * MANUFACTURER: The device manufacturer (for example, Apple).
|
2961
3120
|
#
|
2962
3121
|
# * REMOTE\_ACCESS\_ENABLED: Whether the device is enabled for
|
2963
|
-
# remote access. Valid values are
|
3122
|
+
# remote access. Valid values are TRUE or FALSE.
|
2964
3123
|
#
|
2965
3124
|
# * REMOTE\_DEBUG\_ENABLED: Whether the device is enabled for remote
|
2966
|
-
# debugging. Valid values are
|
2967
|
-
#
|
2968
|
-
#
|
3125
|
+
# debugging. Valid values are TRUE or FALSE. Because remote
|
3126
|
+
# debugging is [no longer supported][1], this attribute is
|
3127
|
+
# ignored.
|
2969
3128
|
#
|
2970
3129
|
# * INSTANCE\_ARN: The Amazon Resource Name (ARN) of the device
|
2971
3130
|
# instance.
|
2972
3131
|
#
|
2973
3132
|
# * INSTANCE\_LABELS: The label of the device instance.
|
2974
3133
|
#
|
2975
|
-
# * FLEET\_TYPE: The fleet type. Valid values are
|
2976
|
-
# "PRIVATE".
|
3134
|
+
# * FLEET\_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE.
|
2977
3135
|
#
|
2978
3136
|
# * Operator: The filter operator.
|
2979
3137
|
#
|
@@ -2997,9 +3155,9 @@ module Aws::DeviceFarm
|
|
2997
3155
|
#
|
2998
3156
|
# * The other operators require an array with a single element.
|
2999
3157
|
#
|
3000
|
-
# * In a request, the AVAILABILITY attribute takes
|
3001
|
-
#
|
3002
|
-
#
|
3158
|
+
# * In a request, the AVAILABILITY attribute takes the following
|
3159
|
+
# values: AVAILABLE, HIGHLY\_AVAILABLE, BUSY, or
|
3160
|
+
# TEMPORARY\_NOT\_AVAILABLE.
|
3003
3161
|
#
|
3004
3162
|
#
|
3005
3163
|
#
|
@@ -3023,7 +3181,7 @@ module Aws::DeviceFarm
|
|
3023
3181
|
#
|
3024
3182
|
# @!attribute [rw] next_token
|
3025
3183
|
# If the number of items that are returned is significantly large,
|
3026
|
-
# this is an identifier that is also returned
|
3184
|
+
# this is an identifier that is also returned. It can be used in a
|
3027
3185
|
# subsequent call to this operation to return the next set of items in
|
3028
3186
|
# the list.
|
3029
3187
|
# @return [String]
|
@@ -3045,8 +3203,8 @@ module Aws::DeviceFarm
|
|
3045
3203
|
# }
|
3046
3204
|
#
|
3047
3205
|
# @!attribute [rw] max_results
|
3048
|
-
# An integer
|
3049
|
-
# in the API response.
|
3206
|
+
# An integer that specifies the maximum number of items you want to
|
3207
|
+
# return in the API response.
|
3050
3208
|
# @return [Integer]
|
3051
3209
|
#
|
3052
3210
|
# @!attribute [rw] next_token
|
@@ -3064,7 +3222,7 @@ module Aws::DeviceFarm
|
|
3064
3222
|
end
|
3065
3223
|
|
3066
3224
|
# @!attribute [rw] instance_profiles
|
3067
|
-
# An object
|
3225
|
+
# An object that contains information about your instance profiles.
|
3068
3226
|
# @return [Array<Types::InstanceProfile>]
|
3069
3227
|
#
|
3070
3228
|
# @!attribute [rw] next_token
|
@@ -3116,7 +3274,7 @@ module Aws::DeviceFarm
|
|
3116
3274
|
#
|
3117
3275
|
# @!attribute [rw] next_token
|
3118
3276
|
# If the number of items that are returned is significantly large,
|
3119
|
-
# this is an identifier that is also returned
|
3277
|
+
# this is an identifier that is also returned. It can be used in a
|
3120
3278
|
# subsequent call to this operation to return the next set of items in
|
3121
3279
|
# the list.
|
3122
3280
|
# @return [String]
|
@@ -3144,8 +3302,8 @@ module Aws::DeviceFarm
|
|
3144
3302
|
# @return [String]
|
3145
3303
|
#
|
3146
3304
|
# @!attribute [rw] type
|
3147
|
-
# The type of network profile
|
3148
|
-
#
|
3305
|
+
# The type of network profile to return information about. Valid
|
3306
|
+
# values are listed here.
|
3149
3307
|
# @return [String]
|
3150
3308
|
#
|
3151
3309
|
# @!attribute [rw] next_token
|
@@ -3286,7 +3444,7 @@ module Aws::DeviceFarm
|
|
3286
3444
|
# Represents the return values of the list of offerings.
|
3287
3445
|
#
|
3288
3446
|
# @!attribute [rw] offerings
|
3289
|
-
# A value
|
3447
|
+
# A value that represents the list offering results.
|
3290
3448
|
# @return [Array<Types::Offering>]
|
3291
3449
|
#
|
3292
3450
|
# @!attribute [rw] next_token
|
@@ -3341,7 +3499,7 @@ module Aws::DeviceFarm
|
|
3341
3499
|
#
|
3342
3500
|
# @!attribute [rw] next_token
|
3343
3501
|
# If the number of items that are returned is significantly large,
|
3344
|
-
# this is an identifier that is also returned
|
3502
|
+
# this is an identifier that is also returned. It can be used in a
|
3345
3503
|
# subsequent call to this operation to return the next set of items in
|
3346
3504
|
# the list.
|
3347
3505
|
# @return [String]
|
@@ -3388,7 +3546,7 @@ module Aws::DeviceFarm
|
|
3388
3546
|
# request to return information about the remote access session.
|
3389
3547
|
#
|
3390
3548
|
# @!attribute [rw] remote_access_sessions
|
3391
|
-
# A container
|
3549
|
+
# A container that represents the metadata from the service about each
|
3392
3550
|
# remote access session you are requesting.
|
3393
3551
|
# @return [Array<Types::RemoteAccessSession>]
|
3394
3552
|
#
|
@@ -3443,7 +3601,7 @@ module Aws::DeviceFarm
|
|
3443
3601
|
#
|
3444
3602
|
# @!attribute [rw] next_token
|
3445
3603
|
# If the number of items that are returned is significantly large,
|
3446
|
-
# this is an identifier that is also returned
|
3604
|
+
# this is an identifier that is also returned. It can be used in a
|
3447
3605
|
# subsequent call to this operation to return the next set of items in
|
3448
3606
|
# the list.
|
3449
3607
|
# @return [String]
|
@@ -3492,7 +3650,7 @@ module Aws::DeviceFarm
|
|
3492
3650
|
#
|
3493
3651
|
# @!attribute [rw] next_token
|
3494
3652
|
# If the number of items that are returned is significantly large,
|
3495
|
-
# this is an identifier that is also returned
|
3653
|
+
# this is an identifier that is also returned. It can be used in a
|
3496
3654
|
# subsequent call to this operation to return the next set of items in
|
3497
3655
|
# the list.
|
3498
3656
|
# @return [String]
|
@@ -3541,7 +3699,7 @@ module Aws::DeviceFarm
|
|
3541
3699
|
#
|
3542
3700
|
# @!attribute [rw] next_token
|
3543
3701
|
# If the number of items that are returned is significantly large,
|
3544
|
-
# this is an identifier that is also returned
|
3702
|
+
# this is an identifier that is also returned. It can be used in a
|
3545
3703
|
# subsequent call to this operation to return the next set of items in
|
3546
3704
|
# the list.
|
3547
3705
|
# @return [String]
|
@@ -3558,15 +3716,15 @@ module Aws::DeviceFarm
|
|
3558
3716
|
# data as a hash:
|
3559
3717
|
#
|
3560
3718
|
# {
|
3561
|
-
# resource_arn: "
|
3719
|
+
# resource_arn: "DeviceFarmArn", # required
|
3562
3720
|
# }
|
3563
3721
|
#
|
3564
3722
|
# @!attribute [rw] resource_arn
|
3565
|
-
# The Amazon Resource Name (ARN) of the resource
|
3566
|
-
# tags. You can associate tags with the following Device
|
3567
|
-
# resources: `PROJECT`, `RUN`, `NETWORK_PROFILE`,
|
3568
|
-
# `DEVICE_INSTANCE`, `SESSION`, `DEVICE_POOL`,
|
3569
|
-
# `VPCE_CONFIGURATION`.
|
3723
|
+
# The Amazon Resource Name (ARN) of the resource or resources for
|
3724
|
+
# which to list tags. You can associate tags with the following Device
|
3725
|
+
# Farm resources: `PROJECT`, `RUN`, `NETWORK_PROFILE`,
|
3726
|
+
# `INSTANCE_PROFILE`, `DEVICE_INSTANCE`, `SESSION`, `DEVICE_POOL`,
|
3727
|
+
# `DEVICE`, and `VPCE_CONFIGURATION`.
|
3570
3728
|
# @return [String]
|
3571
3729
|
#
|
3572
3730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTagsForResourceRequest AWS API Documentation
|
@@ -3579,8 +3737,7 @@ module Aws::DeviceFarm
|
|
3579
3737
|
# @!attribute [rw] tags
|
3580
3738
|
# The tags to add to the resource. A tag is an array of key-value
|
3581
3739
|
# pairs. Tag keys can have a maximum character length of 128
|
3582
|
-
# characters
|
3583
|
-
# characters.
|
3740
|
+
# characters. Tag values can have a maximum length of 256 characters.
|
3584
3741
|
# @return [Array<Types::Tag>]
|
3585
3742
|
#
|
3586
3743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTagsForResourceResponse AWS API Documentation
|
@@ -3590,6 +3747,223 @@ module Aws::DeviceFarm
|
|
3590
3747
|
include Aws::Structure
|
3591
3748
|
end
|
3592
3749
|
|
3750
|
+
# @note When making an API call, you may pass ListTestGridProjectsRequest
|
3751
|
+
# data as a hash:
|
3752
|
+
#
|
3753
|
+
# {
|
3754
|
+
# max_result: 1,
|
3755
|
+
# next_token: "PaginationToken",
|
3756
|
+
# }
|
3757
|
+
#
|
3758
|
+
# @!attribute [rw] max_result
|
3759
|
+
# Return no more than this number of results.
|
3760
|
+
# @return [Integer]
|
3761
|
+
#
|
3762
|
+
# @!attribute [rw] next_token
|
3763
|
+
# From a response, used to continue a paginated listing.
|
3764
|
+
# @return [String]
|
3765
|
+
#
|
3766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTestGridProjectsRequest AWS API Documentation
|
3767
|
+
#
|
3768
|
+
class ListTestGridProjectsRequest < Struct.new(
|
3769
|
+
:max_result,
|
3770
|
+
:next_token)
|
3771
|
+
include Aws::Structure
|
3772
|
+
end
|
3773
|
+
|
3774
|
+
# @!attribute [rw] test_grid_projects
|
3775
|
+
# The list of TestGridProjects, based on a
|
3776
|
+
# ListTestGridProjectsRequest.
|
3777
|
+
# @return [Array<Types::TestGridProject>]
|
3778
|
+
#
|
3779
|
+
# @!attribute [rw] next_token
|
3780
|
+
# Used for pagination. Pass into ListTestGridProjects to get more
|
3781
|
+
# results in a paginated request.
|
3782
|
+
# @return [String]
|
3783
|
+
#
|
3784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTestGridProjectsResult AWS API Documentation
|
3785
|
+
#
|
3786
|
+
class ListTestGridProjectsResult < Struct.new(
|
3787
|
+
:test_grid_projects,
|
3788
|
+
:next_token)
|
3789
|
+
include Aws::Structure
|
3790
|
+
end
|
3791
|
+
|
3792
|
+
# @note When making an API call, you may pass ListTestGridSessionActionsRequest
|
3793
|
+
# data as a hash:
|
3794
|
+
#
|
3795
|
+
# {
|
3796
|
+
# session_arn: "DeviceFarmArn", # required
|
3797
|
+
# max_result: 1,
|
3798
|
+
# next_token: "PaginationToken",
|
3799
|
+
# }
|
3800
|
+
#
|
3801
|
+
# @!attribute [rw] session_arn
|
3802
|
+
# The ARN of the session to retrieve.
|
3803
|
+
# @return [String]
|
3804
|
+
#
|
3805
|
+
# @!attribute [rw] max_result
|
3806
|
+
# The maximum number of sessions to return per response.
|
3807
|
+
# @return [Integer]
|
3808
|
+
#
|
3809
|
+
# @!attribute [rw] next_token
|
3810
|
+
# Pagination token.
|
3811
|
+
# @return [String]
|
3812
|
+
#
|
3813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTestGridSessionActionsRequest AWS API Documentation
|
3814
|
+
#
|
3815
|
+
class ListTestGridSessionActionsRequest < Struct.new(
|
3816
|
+
:session_arn,
|
3817
|
+
:max_result,
|
3818
|
+
:next_token)
|
3819
|
+
include Aws::Structure
|
3820
|
+
end
|
3821
|
+
|
3822
|
+
# @!attribute [rw] actions
|
3823
|
+
# The action taken by the session.
|
3824
|
+
# @return [Array<Types::TestGridSessionAction>]
|
3825
|
+
#
|
3826
|
+
# @!attribute [rw] next_token
|
3827
|
+
# Pagination token.
|
3828
|
+
# @return [String]
|
3829
|
+
#
|
3830
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTestGridSessionActionsResult AWS API Documentation
|
3831
|
+
#
|
3832
|
+
class ListTestGridSessionActionsResult < Struct.new(
|
3833
|
+
:actions,
|
3834
|
+
:next_token)
|
3835
|
+
include Aws::Structure
|
3836
|
+
end
|
3837
|
+
|
3838
|
+
# @note When making an API call, you may pass ListTestGridSessionArtifactsRequest
|
3839
|
+
# data as a hash:
|
3840
|
+
#
|
3841
|
+
# {
|
3842
|
+
# session_arn: "DeviceFarmArn", # required
|
3843
|
+
# type: "VIDEO", # accepts VIDEO, LOG
|
3844
|
+
# max_result: 1,
|
3845
|
+
# next_token: "PaginationToken",
|
3846
|
+
# }
|
3847
|
+
#
|
3848
|
+
# @!attribute [rw] session_arn
|
3849
|
+
# The ARN of a TestGridSession.
|
3850
|
+
# @return [String]
|
3851
|
+
#
|
3852
|
+
# @!attribute [rw] type
|
3853
|
+
# Limit results to a specified type of artifact.
|
3854
|
+
# @return [String]
|
3855
|
+
#
|
3856
|
+
# @!attribute [rw] max_result
|
3857
|
+
# The maximum number of results to be returned by a request.
|
3858
|
+
# @return [Integer]
|
3859
|
+
#
|
3860
|
+
# @!attribute [rw] next_token
|
3861
|
+
# Pagination token.
|
3862
|
+
# @return [String]
|
3863
|
+
#
|
3864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTestGridSessionArtifactsRequest AWS API Documentation
|
3865
|
+
#
|
3866
|
+
class ListTestGridSessionArtifactsRequest < Struct.new(
|
3867
|
+
:session_arn,
|
3868
|
+
:type,
|
3869
|
+
:max_result,
|
3870
|
+
:next_token)
|
3871
|
+
include Aws::Structure
|
3872
|
+
end
|
3873
|
+
|
3874
|
+
# @!attribute [rw] artifacts
|
3875
|
+
# A list of test grid session artifacts for a TestGridSession.
|
3876
|
+
# @return [Array<Types::TestGridSessionArtifact>]
|
3877
|
+
#
|
3878
|
+
# @!attribute [rw] next_token
|
3879
|
+
# Pagination token.
|
3880
|
+
# @return [String]
|
3881
|
+
#
|
3882
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTestGridSessionArtifactsResult AWS API Documentation
|
3883
|
+
#
|
3884
|
+
class ListTestGridSessionArtifactsResult < Struct.new(
|
3885
|
+
:artifacts,
|
3886
|
+
:next_token)
|
3887
|
+
include Aws::Structure
|
3888
|
+
end
|
3889
|
+
|
3890
|
+
# @note When making an API call, you may pass ListTestGridSessionsRequest
|
3891
|
+
# data as a hash:
|
3892
|
+
#
|
3893
|
+
# {
|
3894
|
+
# project_arn: "DeviceFarmArn", # required
|
3895
|
+
# status: "ACTIVE", # accepts ACTIVE, CLOSED, ERRORED
|
3896
|
+
# creation_time_after: Time.now,
|
3897
|
+
# creation_time_before: Time.now,
|
3898
|
+
# end_time_after: Time.now,
|
3899
|
+
# end_time_before: Time.now,
|
3900
|
+
# max_result: 1,
|
3901
|
+
# next_token: "PaginationToken",
|
3902
|
+
# }
|
3903
|
+
#
|
3904
|
+
# @!attribute [rw] project_arn
|
3905
|
+
# ARN of a TestGridProject.
|
3906
|
+
# @return [String]
|
3907
|
+
#
|
3908
|
+
# @!attribute [rw] status
|
3909
|
+
# Return only sessions in this state.
|
3910
|
+
# @return [String]
|
3911
|
+
#
|
3912
|
+
# @!attribute [rw] creation_time_after
|
3913
|
+
# Return only sessions created after this time.
|
3914
|
+
# @return [Time]
|
3915
|
+
#
|
3916
|
+
# @!attribute [rw] creation_time_before
|
3917
|
+
# Return only sessions created before this time.
|
3918
|
+
# @return [Time]
|
3919
|
+
#
|
3920
|
+
# @!attribute [rw] end_time_after
|
3921
|
+
# Return only sessions that ended after this time.
|
3922
|
+
# @return [Time]
|
3923
|
+
#
|
3924
|
+
# @!attribute [rw] end_time_before
|
3925
|
+
# Return only sessions that ended before this time.
|
3926
|
+
# @return [Time]
|
3927
|
+
#
|
3928
|
+
# @!attribute [rw] max_result
|
3929
|
+
# Return only this many results at a time.
|
3930
|
+
# @return [Integer]
|
3931
|
+
#
|
3932
|
+
# @!attribute [rw] next_token
|
3933
|
+
# Pagination token.
|
3934
|
+
# @return [String]
|
3935
|
+
#
|
3936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTestGridSessionsRequest AWS API Documentation
|
3937
|
+
#
|
3938
|
+
class ListTestGridSessionsRequest < Struct.new(
|
3939
|
+
:project_arn,
|
3940
|
+
:status,
|
3941
|
+
:creation_time_after,
|
3942
|
+
:creation_time_before,
|
3943
|
+
:end_time_after,
|
3944
|
+
:end_time_before,
|
3945
|
+
:max_result,
|
3946
|
+
:next_token)
|
3947
|
+
include Aws::Structure
|
3948
|
+
end
|
3949
|
+
|
3950
|
+
# @!attribute [rw] test_grid_sessions
|
3951
|
+
# The sessions that match the criteria in a
|
3952
|
+
# ListTestGridSessionsRequest.
|
3953
|
+
# @return [Array<Types::TestGridSession>]
|
3954
|
+
#
|
3955
|
+
# @!attribute [rw] next_token
|
3956
|
+
# Pagination token.
|
3957
|
+
# @return [String]
|
3958
|
+
#
|
3959
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListTestGridSessionsResult AWS API Documentation
|
3960
|
+
#
|
3961
|
+
class ListTestGridSessionsResult < Struct.new(
|
3962
|
+
:test_grid_sessions,
|
3963
|
+
:next_token)
|
3964
|
+
include Aws::Structure
|
3965
|
+
end
|
3966
|
+
|
3593
3967
|
# Represents a request to the list tests operation.
|
3594
3968
|
#
|
3595
3969
|
# @note When making an API call, you may pass ListTestsRequest
|
@@ -3626,7 +4000,7 @@ module Aws::DeviceFarm
|
|
3626
4000
|
#
|
3627
4001
|
# @!attribute [rw] next_token
|
3628
4002
|
# If the number of items that are returned is significantly large,
|
3629
|
-
# this is an identifier that is also returned
|
4003
|
+
# this is an identifier that is also returned. It can be used in a
|
3630
4004
|
# subsequent call to this operation to return the next set of items in
|
3631
4005
|
# the list.
|
3632
4006
|
# @return [String]
|
@@ -3674,24 +4048,24 @@ module Aws::DeviceFarm
|
|
3674
4048
|
#
|
3675
4049
|
# Allowed values include:
|
3676
4050
|
#
|
3677
|
-
# * PENDING
|
4051
|
+
# * PENDING
|
3678
4052
|
#
|
3679
|
-
# * PASSED
|
4053
|
+
# * PASSED
|
3680
4054
|
#
|
3681
|
-
# * WARNED
|
4055
|
+
# * WARNED
|
3682
4056
|
#
|
3683
|
-
# * FAILED
|
4057
|
+
# * FAILED
|
3684
4058
|
#
|
3685
|
-
# * SKIPPED
|
4059
|
+
# * SKIPPED
|
3686
4060
|
#
|
3687
|
-
# * ERRORED
|
4061
|
+
# * ERRORED
|
3688
4062
|
#
|
3689
|
-
# * STOPPED
|
4063
|
+
# * STOPPED
|
3690
4064
|
# @return [Hash<String,Array<Types::UniqueProblem>>]
|
3691
4065
|
#
|
3692
4066
|
# @!attribute [rw] next_token
|
3693
4067
|
# If the number of items that are returned is significantly large,
|
3694
|
-
# this is an identifier that is also returned
|
4068
|
+
# this is an identifier that is also returned. It can be used in a
|
3695
4069
|
# subsequent call to this operation to return the next set of items in
|
3696
4070
|
# the list.
|
3697
4071
|
# @return [String]
|
@@ -3725,85 +4099,69 @@ module Aws::DeviceFarm
|
|
3725
4099
|
#
|
3726
4100
|
# Must be one of the following values:
|
3727
4101
|
#
|
3728
|
-
# * ANDROID\_APP
|
4102
|
+
# * ANDROID\_APP
|
3729
4103
|
#
|
3730
|
-
# * IOS\_APP
|
4104
|
+
# * IOS\_APP
|
3731
4105
|
#
|
3732
|
-
# * WEB\_APP
|
4106
|
+
# * WEB\_APP
|
3733
4107
|
#
|
3734
|
-
# * EXTERNAL\_DATA
|
4108
|
+
# * EXTERNAL\_DATA
|
3735
4109
|
#
|
3736
|
-
# * APPIUM\_JAVA\_JUNIT\_TEST\_PACKAGE
|
3737
|
-
# package upload.
|
4110
|
+
# * APPIUM\_JAVA\_JUNIT\_TEST\_PACKAGE
|
3738
4111
|
#
|
3739
|
-
# * APPIUM\_JAVA\_TESTNG\_TEST\_PACKAGE
|
3740
|
-
# package upload.
|
4112
|
+
# * APPIUM\_JAVA\_TESTNG\_TEST\_PACKAGE
|
3741
4113
|
#
|
3742
|
-
# * APPIUM\_PYTHON\_TEST\_PACKAGE
|
3743
|
-
# upload.
|
4114
|
+
# * APPIUM\_PYTHON\_TEST\_PACKAGE
|
3744
4115
|
#
|
3745
|
-
# * APPIUM\_NODE\_TEST\_PACKAGE
|
3746
|
-
# upload.
|
4116
|
+
# * APPIUM\_NODE\_TEST\_PACKAGE
|
3747
4117
|
#
|
3748
|
-
# * APPIUM\_RUBY\_TEST\_PACKAGE
|
4118
|
+
# * APPIUM\_RUBY\_TEST\_PACKAGE
|
3749
4119
|
#
|
3750
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_PACKAGE
|
3751
|
-
# package upload for a web app.
|
4120
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_PACKAGE
|
3752
4121
|
#
|
3753
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_PACKAGE
|
3754
|
-
# test package upload for a web app.
|
4122
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_PACKAGE
|
3755
4123
|
#
|
3756
|
-
# * APPIUM\_WEB\_PYTHON\_TEST\_PACKAGE
|
3757
|
-
# upload for a web app.
|
4124
|
+
# * APPIUM\_WEB\_PYTHON\_TEST\_PACKAGE
|
3758
4125
|
#
|
3759
|
-
# * APPIUM\_WEB\_NODE\_TEST\_PACKAGE
|
3760
|
-
# upload for a web app.
|
4126
|
+
# * APPIUM\_WEB\_NODE\_TEST\_PACKAGE
|
3761
4127
|
#
|
3762
|
-
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
3763
|
-
# upload for a web app.
|
4128
|
+
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
3764
4129
|
#
|
3765
|
-
# * CALABASH\_TEST\_PACKAGE
|
4130
|
+
# * CALABASH\_TEST\_PACKAGE
|
3766
4131
|
#
|
3767
|
-
# * INSTRUMENTATION\_TEST\_PACKAGE
|
4132
|
+
# * INSTRUMENTATION\_TEST\_PACKAGE
|
3768
4133
|
#
|
3769
|
-
# * UIAUTOMATION\_TEST\_PACKAGE
|
4134
|
+
# * UIAUTOMATION\_TEST\_PACKAGE
|
3770
4135
|
#
|
3771
|
-
# * UIAUTOMATOR\_TEST\_PACKAGE
|
4136
|
+
# * UIAUTOMATOR\_TEST\_PACKAGE
|
3772
4137
|
#
|
3773
|
-
# * XCTEST\_TEST\_PACKAGE
|
4138
|
+
# * XCTEST\_TEST\_PACKAGE
|
3774
4139
|
#
|
3775
|
-
# * XCTEST\_UI\_TEST\_PACKAGE
|
4140
|
+
# * XCTEST\_UI\_TEST\_PACKAGE
|
3776
4141
|
#
|
3777
|
-
# * APPIUM\_JAVA\_JUNIT\_TEST\_SPEC
|
3778
|
-
# upload.
|
4142
|
+
# * APPIUM\_JAVA\_JUNIT\_TEST\_SPEC
|
3779
4143
|
#
|
3780
|
-
# * APPIUM\_JAVA\_TESTNG\_TEST\_SPEC
|
3781
|
-
# upload.
|
4144
|
+
# * APPIUM\_JAVA\_TESTNG\_TEST\_SPEC
|
3782
4145
|
#
|
3783
|
-
# * APPIUM\_PYTHON\_TEST\_SPEC
|
4146
|
+
# * APPIUM\_PYTHON\_TEST\_SPEC
|
3784
4147
|
#
|
3785
|
-
# * APPIUM\_NODE\_TEST\_SPEC
|
4148
|
+
# * APPIUM\_NODE\_TEST\_SPEC
|
3786
4149
|
#
|
3787
|
-
# * APPIUM\_RUBY\_TEST\_SPEC
|
4150
|
+
# * APPIUM\_RUBY\_TEST\_SPEC
|
3788
4151
|
#
|
3789
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_SPEC
|
3790
|
-
# spec upload for a web app.
|
4152
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_SPEC
|
3791
4153
|
#
|
3792
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_SPEC
|
3793
|
-
# spec upload for a web app.
|
4154
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_SPEC
|
3794
4155
|
#
|
3795
|
-
# * APPIUM\_WEB\_PYTHON\_TEST\_SPEC
|
3796
|
-
# for a web app.
|
4156
|
+
# * APPIUM\_WEB\_PYTHON\_TEST\_SPEC
|
3797
4157
|
#
|
3798
|
-
# * APPIUM\_WEB\_NODE\_TEST\_SPEC
|
3799
|
-
# for a web app.
|
4158
|
+
# * APPIUM\_WEB\_NODE\_TEST\_SPEC
|
3800
4159
|
#
|
3801
|
-
# * APPIUM\_WEB\_RUBY\_TEST\_SPEC
|
3802
|
-
# a web app.
|
4160
|
+
# * APPIUM\_WEB\_RUBY\_TEST\_SPEC
|
3803
4161
|
#
|
3804
|
-
# * INSTRUMENTATION\_TEST\_SPEC
|
4162
|
+
# * INSTRUMENTATION\_TEST\_SPEC
|
3805
4163
|
#
|
3806
|
-
# * XCTEST\_UI\_TEST\_SPEC
|
4164
|
+
# * XCTEST\_UI\_TEST\_SPEC
|
3807
4165
|
# @return [String]
|
3808
4166
|
#
|
3809
4167
|
# @!attribute [rw] next_token
|
@@ -3829,7 +4187,7 @@ module Aws::DeviceFarm
|
|
3829
4187
|
#
|
3830
4188
|
# @!attribute [rw] next_token
|
3831
4189
|
# If the number of items that are returned is significantly large,
|
3832
|
-
# this is an identifier that is also returned
|
4190
|
+
# this is an identifier that is also returned. It can be used in a
|
3833
4191
|
# subsequent call to this operation to return the next set of items in
|
3834
4192
|
# the list.
|
3835
4193
|
# @return [String]
|
@@ -3851,8 +4209,8 @@ module Aws::DeviceFarm
|
|
3851
4209
|
# }
|
3852
4210
|
#
|
3853
4211
|
# @!attribute [rw] max_results
|
3854
|
-
# An integer
|
3855
|
-
# in the API response.
|
4212
|
+
# An integer that specifies the maximum number of items you want to
|
4213
|
+
# return in the API response.
|
3856
4214
|
# @return [Integer]
|
3857
4215
|
#
|
3858
4216
|
# @!attribute [rw] next_token
|
@@ -3870,8 +4228,8 @@ module Aws::DeviceFarm
|
|
3870
4228
|
end
|
3871
4229
|
|
3872
4230
|
# @!attribute [rw] vpce_configurations
|
3873
|
-
# An array of `VPCEConfiguration` objects
|
3874
|
-
# your VPC endpoint configuration.
|
4231
|
+
# An array of `VPCEConfiguration` objects that contain information
|
4232
|
+
# about your VPC endpoint configuration.
|
3875
4233
|
# @return [Array<Types::VPCEConfiguration>]
|
3876
4234
|
#
|
3877
4235
|
# @!attribute [rw] next_token
|
@@ -3889,7 +4247,7 @@ module Aws::DeviceFarm
|
|
3889
4247
|
end
|
3890
4248
|
|
3891
4249
|
# Represents a latitude and longitude pair, expressed in geographic
|
3892
|
-
# coordinate system degrees (for example 47.6204, -122.3491).
|
4250
|
+
# coordinate system degrees (for example, 47.6204, -122.3491).
|
3893
4251
|
#
|
3894
4252
|
# Elevation is currently not supported.
|
3895
4253
|
#
|
@@ -3917,7 +4275,7 @@ module Aws::DeviceFarm
|
|
3917
4275
|
include Aws::Structure
|
3918
4276
|
end
|
3919
4277
|
|
3920
|
-
# A number
|
4278
|
+
# A number that represents the monetary amount for an offering or
|
3921
4279
|
# transaction.
|
3922
4280
|
#
|
3923
4281
|
# @!attribute [rw] amount
|
@@ -3926,7 +4284,7 @@ module Aws::DeviceFarm
|
|
3926
4284
|
#
|
3927
4285
|
# @!attribute [rw] currency_code
|
3928
4286
|
# The currency code of a monetary amount. For example, `USD` means
|
3929
|
-
#
|
4287
|
+
# U.S. dollars.
|
3930
4288
|
# @return [String]
|
3931
4289
|
#
|
3932
4290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/MonetaryAmount AWS API Documentation
|
@@ -3953,7 +4311,7 @@ module Aws::DeviceFarm
|
|
3953
4311
|
# @return [String]
|
3954
4312
|
#
|
3955
4313
|
# @!attribute [rw] type
|
3956
|
-
# The type of network profile. Valid values are listed
|
4314
|
+
# The type of network profile. Valid values are listed here.
|
3957
4315
|
# @return [String]
|
3958
4316
|
#
|
3959
4317
|
# @!attribute [rw] uplink_bandwidth_bits
|
@@ -4048,15 +4406,15 @@ module Aws::DeviceFarm
|
|
4048
4406
|
# @return [String]
|
4049
4407
|
#
|
4050
4408
|
# @!attribute [rw] description
|
4051
|
-
# A string
|
4409
|
+
# A string that describes the offering.
|
4052
4410
|
# @return [String]
|
4053
4411
|
#
|
4054
4412
|
# @!attribute [rw] type
|
4055
|
-
# The type of offering (
|
4413
|
+
# The type of offering (for example, `RECURRING`) for a device.
|
4056
4414
|
# @return [String]
|
4057
4415
|
#
|
4058
4416
|
# @!attribute [rw] platform
|
4059
|
-
# The platform of the device (
|
4417
|
+
# The platform of the device (for example, `ANDROID` or `IOS`).
|
4060
4418
|
# @return [String]
|
4061
4419
|
#
|
4062
4420
|
# @!attribute [rw] recurring_charges
|
@@ -4081,7 +4439,7 @@ module Aws::DeviceFarm
|
|
4081
4439
|
# @return [String]
|
4082
4440
|
#
|
4083
4441
|
# @!attribute [rw] description
|
4084
|
-
# A string
|
4442
|
+
# A string that describes the offering promotion.
|
4085
4443
|
# @return [String]
|
4086
4444
|
#
|
4087
4445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/OfferingPromotion AWS API Documentation
|
@@ -4180,19 +4538,19 @@ module Aws::DeviceFarm
|
|
4180
4538
|
#
|
4181
4539
|
# Allowed values include:
|
4182
4540
|
#
|
4183
|
-
# * PENDING
|
4541
|
+
# * PENDING
|
4184
4542
|
#
|
4185
|
-
# * PASSED
|
4543
|
+
# * PASSED
|
4186
4544
|
#
|
4187
|
-
# * WARNED
|
4545
|
+
# * WARNED
|
4188
4546
|
#
|
4189
|
-
# * FAILED
|
4547
|
+
# * FAILED
|
4190
4548
|
#
|
4191
|
-
# * SKIPPED
|
4549
|
+
# * SKIPPED
|
4192
4550
|
#
|
4193
|
-
# * ERRORED
|
4551
|
+
# * ERRORED
|
4194
4552
|
#
|
4195
|
-
# * STOPPED
|
4553
|
+
# * STOPPED
|
4196
4554
|
# @return [String]
|
4197
4555
|
#
|
4198
4556
|
# @!attribute [rw] message
|
@@ -4242,8 +4600,8 @@ module Aws::DeviceFarm
|
|
4242
4600
|
# @return [String]
|
4243
4601
|
#
|
4244
4602
|
# @!attribute [rw] default_job_timeout_minutes
|
4245
|
-
# The default number of minutes (at the project level) a test run
|
4246
|
-
#
|
4603
|
+
# The default number of minutes (at the project level) a test run
|
4604
|
+
# executes before it times out. The default value is 150 minutes.
|
4247
4605
|
# @return [Integer]
|
4248
4606
|
#
|
4249
4607
|
# @!attribute [rw] created
|
@@ -4276,8 +4634,7 @@ module Aws::DeviceFarm
|
|
4276
4634
|
# @return [String]
|
4277
4635
|
#
|
4278
4636
|
# @!attribute [rw] quantity
|
4279
|
-
# The number of device slots
|
4280
|
-
# request.
|
4637
|
+
# The number of device slots to purchase in an offering request.
|
4281
4638
|
# @return [Integer]
|
4282
4639
|
#
|
4283
4640
|
# @!attribute [rw] offering_promotion_id
|
@@ -4293,7 +4650,7 @@ module Aws::DeviceFarm
|
|
4293
4650
|
include Aws::Structure
|
4294
4651
|
end
|
4295
4652
|
|
4296
|
-
# The result of the purchase offering (
|
4653
|
+
# The result of the purchase offering (for example, success or failure).
|
4297
4654
|
#
|
4298
4655
|
# @!attribute [rw] offering_transaction
|
4299
4656
|
# Represents the offering transaction for the purchase result.
|
@@ -4320,22 +4677,22 @@ module Aws::DeviceFarm
|
|
4320
4677
|
# }
|
4321
4678
|
#
|
4322
4679
|
# @!attribute [rw] wifi
|
4323
|
-
# True if Wi-Fi is enabled at the beginning of the test
|
4680
|
+
# True if Wi-Fi is enabled at the beginning of the test. Otherwise,
|
4324
4681
|
# false.
|
4325
4682
|
# @return [Boolean]
|
4326
4683
|
#
|
4327
4684
|
# @!attribute [rw] bluetooth
|
4328
|
-
# True if Bluetooth is enabled at the beginning of the test
|
4329
|
-
#
|
4685
|
+
# True if Bluetooth is enabled at the beginning of the test.
|
4686
|
+
# Otherwise, false.
|
4330
4687
|
# @return [Boolean]
|
4331
4688
|
#
|
4332
4689
|
# @!attribute [rw] nfc
|
4333
|
-
# True if NFC is enabled at the beginning of the test
|
4690
|
+
# True if NFC is enabled at the beginning of the test. Otherwise,
|
4334
4691
|
# false.
|
4335
4692
|
# @return [Boolean]
|
4336
4693
|
#
|
4337
4694
|
# @!attribute [rw] gps
|
4338
|
-
# True if GPS is enabled at the beginning of the test
|
4695
|
+
# True if GPS is enabled at the beginning of the test. Otherwise,
|
4339
4696
|
# false.
|
4340
4697
|
# @return [Boolean]
|
4341
4698
|
#
|
@@ -4349,14 +4706,14 @@ module Aws::DeviceFarm
|
|
4349
4706
|
include Aws::Structure
|
4350
4707
|
end
|
4351
4708
|
|
4352
|
-
# Specifies whether charges for devices
|
4709
|
+
# Specifies whether charges for devices are recurring.
|
4353
4710
|
#
|
4354
4711
|
# @!attribute [rw] cost
|
4355
4712
|
# The cost of the recurring charge.
|
4356
4713
|
# @return [Types::MonetaryAmount]
|
4357
4714
|
#
|
4358
4715
|
# @!attribute [rw] frequency
|
4359
|
-
# The frequency in which charges
|
4716
|
+
# The frequency in which charges recur.
|
4360
4717
|
# @return [String]
|
4361
4718
|
#
|
4362
4719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/RecurringCharge AWS API Documentation
|
@@ -4385,42 +4742,42 @@ module Aws::DeviceFarm
|
|
4385
4742
|
# The status of the remote access session. Can be any of the
|
4386
4743
|
# following:
|
4387
4744
|
#
|
4388
|
-
# * PENDING
|
4745
|
+
# * PENDING.
|
4389
4746
|
#
|
4390
|
-
# * PENDING\_CONCURRENCY
|
4747
|
+
# * PENDING\_CONCURRENCY.
|
4391
4748
|
#
|
4392
|
-
# * PENDING\_DEVICE
|
4749
|
+
# * PENDING\_DEVICE.
|
4393
4750
|
#
|
4394
|
-
# * PROCESSING
|
4751
|
+
# * PROCESSING.
|
4395
4752
|
#
|
4396
|
-
# * SCHEDULING
|
4753
|
+
# * SCHEDULING.
|
4397
4754
|
#
|
4398
|
-
# * PREPARING
|
4755
|
+
# * PREPARING.
|
4399
4756
|
#
|
4400
|
-
# * RUNNING
|
4757
|
+
# * RUNNING.
|
4401
4758
|
#
|
4402
|
-
# * COMPLETED
|
4759
|
+
# * COMPLETED.
|
4403
4760
|
#
|
4404
|
-
# * STOPPING
|
4761
|
+
# * STOPPING.
|
4405
4762
|
# @return [String]
|
4406
4763
|
#
|
4407
4764
|
# @!attribute [rw] result
|
4408
4765
|
# The result of the remote access session. Can be any of the
|
4409
4766
|
# following:
|
4410
4767
|
#
|
4411
|
-
# * PENDING
|
4768
|
+
# * PENDING.
|
4412
4769
|
#
|
4413
|
-
# * PASSED
|
4770
|
+
# * PASSED.
|
4414
4771
|
#
|
4415
|
-
# * WARNED
|
4772
|
+
# * WARNED.
|
4416
4773
|
#
|
4417
|
-
# * FAILED
|
4774
|
+
# * FAILED.
|
4418
4775
|
#
|
4419
|
-
# * SKIPPED
|
4776
|
+
# * SKIPPED.
|
4420
4777
|
#
|
4421
|
-
# * ERRORED
|
4778
|
+
# * ERRORED.
|
4422
4779
|
#
|
4423
|
-
# * STOPPED
|
4780
|
+
# * STOPPED.
|
4424
4781
|
# @return [String]
|
4425
4782
|
#
|
4426
4783
|
# @!attribute [rw] message
|
@@ -4440,14 +4797,14 @@ module Aws::DeviceFarm
|
|
4440
4797
|
# @return [Types::Device]
|
4441
4798
|
#
|
4442
4799
|
# @!attribute [rw] instance_arn
|
4443
|
-
# The
|
4800
|
+
# The ARN of the instance.
|
4444
4801
|
# @return [String]
|
4445
4802
|
#
|
4446
4803
|
# @!attribute [rw] remote_debug_enabled
|
4447
4804
|
# This flag is set to `true` if remote debugging is enabled for the
|
4448
4805
|
# remote access session.
|
4449
4806
|
#
|
4450
|
-
#
|
4807
|
+
# Remote debugging is [no longer supported][1].
|
4451
4808
|
#
|
4452
4809
|
#
|
4453
4810
|
#
|
@@ -4460,8 +4817,7 @@ module Aws::DeviceFarm
|
|
4460
4817
|
# @return [Boolean]
|
4461
4818
|
#
|
4462
4819
|
# @!attribute [rw] remote_record_app_arn
|
4463
|
-
# The
|
4464
|
-
# remote access session.
|
4820
|
+
# The ARN for the app to be recorded in the remote access session.
|
4465
4821
|
# @return [String]
|
4466
4822
|
#
|
4467
4823
|
# @!attribute [rw] host_address
|
@@ -4469,7 +4825,7 @@ module Aws::DeviceFarm
|
|
4469
4825
|
# debug devices. Only returned if remote debugging is enabled for the
|
4470
4826
|
# remote access session.
|
4471
4827
|
#
|
4472
|
-
#
|
4828
|
+
# Remote debugging is [no longer supported][1].
|
4473
4829
|
#
|
4474
4830
|
#
|
4475
4831
|
#
|
@@ -4481,7 +4837,7 @@ module Aws::DeviceFarm
|
|
4481
4837
|
# returned if remote debugging is enabled for the remote access
|
4482
4838
|
# session.
|
4483
4839
|
#
|
4484
|
-
#
|
4840
|
+
# Remote debugging is [no longer supported][1].
|
4485
4841
|
#
|
4486
4842
|
#
|
4487
4843
|
#
|
@@ -4491,7 +4847,7 @@ module Aws::DeviceFarm
|
|
4491
4847
|
# @!attribute [rw] billing_method
|
4492
4848
|
# The billing method of the remote access session. Possible values
|
4493
4849
|
# include `METERED` or `UNMETERED`. For more information about metered
|
4494
|
-
# devices, see [AWS Device Farm terminology][1].
|
4850
|
+
# devices, see [AWS Device Farm terminology][1].
|
4495
4851
|
#
|
4496
4852
|
#
|
4497
4853
|
#
|
@@ -4511,7 +4867,7 @@ module Aws::DeviceFarm
|
|
4511
4867
|
# Unique device identifier for the remote device. Only returned if
|
4512
4868
|
# remote debugging is enabled for the remote access session.
|
4513
4869
|
#
|
4514
|
-
#
|
4870
|
+
# Remote debugging is [no longer supported][1].
|
4515
4871
|
#
|
4516
4872
|
#
|
4517
4873
|
#
|
@@ -4522,25 +4878,25 @@ module Aws::DeviceFarm
|
|
4522
4878
|
# The interaction mode of the remote access session. Valid values are:
|
4523
4879
|
#
|
4524
4880
|
# * INTERACTIVE: You can interact with the iOS device by viewing,
|
4525
|
-
# touching, and rotating the screen. You
|
4881
|
+
# touching, and rotating the screen. You cannot run XCUITest
|
4526
4882
|
# framework-based tests in this mode.
|
4527
4883
|
#
|
4528
|
-
# * NO\_VIDEO: You are connected to the device but cannot interact
|
4884
|
+
# * NO\_VIDEO: You are connected to the device, but cannot interact
|
4529
4885
|
# with it or view the screen. This mode has the fastest test
|
4530
|
-
# execution speed. You
|
4886
|
+
# execution speed. You can run XCUITest framework-based tests in
|
4531
4887
|
# this mode.
|
4532
4888
|
#
|
4533
|
-
# * VIDEO\_ONLY: You can view the screen but cannot touch or rotate
|
4534
|
-
# it. You
|
4889
|
+
# * VIDEO\_ONLY: You can view the screen, but cannot touch or rotate
|
4890
|
+
# it. You can run XCUITest framework-based tests and watch the
|
4535
4891
|
# screen in this mode.
|
4536
4892
|
# @return [String]
|
4537
4893
|
#
|
4538
4894
|
# @!attribute [rw] skip_app_resign
|
4539
|
-
# When set to `true`, for private devices, Device Farm
|
4895
|
+
# When set to `true`, for private devices, Device Farm does not sign
|
4540
4896
|
# your app again. For public devices, Device Farm always signs your
|
4541
|
-
# apps again
|
4897
|
+
# apps again.
|
4542
4898
|
#
|
4543
|
-
# For more information about how Device Farm re-signs your
|
4899
|
+
# For more information about how Device Farm re-signs your apps, see
|
4544
4900
|
# [Do you modify my app?][1] in the *AWS Device Farm FAQs*.
|
4545
4901
|
#
|
4546
4902
|
#
|
@@ -4575,7 +4931,7 @@ module Aws::DeviceFarm
|
|
4575
4931
|
include Aws::Structure
|
4576
4932
|
end
|
4577
4933
|
|
4578
|
-
# A request
|
4934
|
+
# A request that represents an offering renewal.
|
4579
4935
|
#
|
4580
4936
|
# @note When making an API call, you may pass RenewOfferingRequest
|
4581
4937
|
# data as a hash:
|
@@ -4655,90 +5011,88 @@ module Aws::DeviceFarm
|
|
4655
5011
|
#
|
4656
5012
|
# : The Appium version for the test.
|
4657
5013
|
#
|
4658
|
-
#
|
5014
|
+
# Supported operators: `CONTAINS`
|
4659
5015
|
#
|
4660
5016
|
# ARN
|
4661
5017
|
#
|
4662
|
-
# : The Amazon Resource Name (ARN) of the device
|
4663
|
-
#
|
5018
|
+
# : The Amazon Resource Name (ARN) of the device (for example,
|
5019
|
+
# `arn:aws:devicefarm:us-west-2::device:12345Example`.
|
4664
5020
|
#
|
4665
|
-
#
|
5021
|
+
# Supported operators: `EQUALS`, `IN`, `NOT_IN`
|
4666
5022
|
#
|
4667
5023
|
# AVAILABILITY
|
4668
5024
|
#
|
4669
5025
|
# : The current availability of the device. Valid values are
|
4670
|
-
#
|
4671
|
-
# "TEMPORARY\_NOT\_AVAILABLE".
|
5026
|
+
# AVAILABLE, HIGHLY\_AVAILABLE, BUSY, or TEMPORARY\_NOT\_AVAILABLE.
|
4672
5027
|
#
|
4673
|
-
#
|
5028
|
+
# Supported operators: `EQUALS`
|
4674
5029
|
#
|
4675
5030
|
# FLEET\_TYPE
|
4676
5031
|
#
|
4677
|
-
# : The fleet type. Valid values are
|
5032
|
+
# : The fleet type. Valid values are PUBLIC or PRIVATE.
|
4678
5033
|
#
|
4679
|
-
#
|
5034
|
+
# Supported operators: `EQUALS`
|
4680
5035
|
#
|
4681
5036
|
# FORM\_FACTOR
|
4682
5037
|
#
|
4683
|
-
# : The device form factor. Valid values are
|
5038
|
+
# : The device form factor. Valid values are PHONE or TABLET.
|
4684
5039
|
#
|
4685
|
-
#
|
5040
|
+
# Supported operators: `EQUALS`, `IN`, `NOT_IN`
|
4686
5041
|
#
|
4687
5042
|
# INSTANCE\_ARN
|
4688
5043
|
#
|
4689
5044
|
# : The Amazon Resource Name (ARN) of the device instance.
|
4690
5045
|
#
|
4691
|
-
#
|
5046
|
+
# Supported operators: `IN`, `NOT_IN`
|
4692
5047
|
#
|
4693
5048
|
# INSTANCE\_LABELS
|
4694
5049
|
#
|
4695
5050
|
# : The label of the device instance.
|
4696
5051
|
#
|
4697
|
-
#
|
5052
|
+
# Supported operators: `CONTAINS`
|
4698
5053
|
#
|
4699
5054
|
# MANUFACTURER
|
4700
5055
|
#
|
4701
|
-
# : The device manufacturer
|
5056
|
+
# : The device manufacturer (for example, Apple).
|
4702
5057
|
#
|
4703
|
-
#
|
5058
|
+
# Supported operators: `EQUALS`, `IN`, `NOT_IN`
|
4704
5059
|
#
|
4705
5060
|
# MODEL
|
4706
5061
|
#
|
4707
|
-
# : The device model, such as
|
4708
|
-
# Pixel".
|
5062
|
+
# : The device model, such as Apple iPad Air 2 or Google Pixel.
|
4709
5063
|
#
|
4710
|
-
#
|
5064
|
+
# Supported operators: `CONTAINS`, `EQUALS`, `IN`, `NOT_IN`
|
4711
5065
|
#
|
4712
5066
|
# OS\_VERSION
|
4713
5067
|
#
|
4714
|
-
# : The operating system version
|
5068
|
+
# : The operating system version (for example, 10.3.2).
|
4715
5069
|
#
|
4716
|
-
#
|
5070
|
+
# Supported operators: `EQUALS`, `GREATER_THAN`,
|
4717
5071
|
# `GREATER_THAN_OR_EQUALS`, `IN`, `LESS_THAN`,
|
4718
5072
|
# `LESS_THAN_OR_EQUALS`, `NOT_IN`
|
4719
5073
|
#
|
4720
5074
|
# PLATFORM
|
4721
5075
|
#
|
4722
|
-
# : The device platform. Valid values are
|
5076
|
+
# : The device platform. Valid values are ANDROID or IOS.
|
4723
5077
|
#
|
4724
|
-
#
|
5078
|
+
# Supported operators: `EQUALS`, `IN`, `NOT_IN`
|
4725
5079
|
#
|
4726
5080
|
# REMOTE\_ACCESS\_ENABLED
|
4727
5081
|
#
|
4728
5082
|
# : Whether the device is enabled for remote access. Valid values are
|
4729
|
-
#
|
5083
|
+
# TRUE or FALSE.
|
4730
5084
|
#
|
4731
|
-
#
|
5085
|
+
# Supported operators: `EQUALS`
|
4732
5086
|
#
|
4733
5087
|
# REMOTE\_DEBUG\_ENABLED
|
4734
5088
|
#
|
4735
5089
|
# : Whether the device is enabled for remote debugging. Valid values
|
4736
|
-
# are
|
5090
|
+
# are TRUE or FALSE.
|
4737
5091
|
#
|
4738
|
-
#
|
5092
|
+
# Supported operators: `EQUALS`
|
4739
5093
|
#
|
4740
|
-
#
|
4741
|
-
#
|
5094
|
+
# Because remote debugging is [no longer supported][1], this filter
|
5095
|
+
# is ignored.
|
4742
5096
|
#
|
4743
5097
|
#
|
4744
5098
|
#
|
@@ -4765,7 +5119,7 @@ module Aws::DeviceFarm
|
|
4765
5119
|
end
|
4766
5120
|
|
4767
5121
|
# Represents a test run on a set of devices with a given app package,
|
4768
|
-
# test parameters,
|
5122
|
+
# test parameters, and so on.
|
4769
5123
|
#
|
4770
5124
|
# @!attribute [rw] arn
|
4771
5125
|
# The run's ARN.
|
@@ -4780,44 +5134,46 @@ module Aws::DeviceFarm
|
|
4780
5134
|
#
|
4781
5135
|
# Must be one of the following values:
|
4782
5136
|
#
|
4783
|
-
# * BUILTIN\_FUZZ
|
5137
|
+
# * BUILTIN\_FUZZ
|
5138
|
+
#
|
5139
|
+
# * BUILTIN\_EXPLORER
|
4784
5140
|
#
|
4785
|
-
#
|
4786
|
-
#
|
4787
|
-
# the same time.
|
5141
|
+
# <note markdown="1"> For Android, an app explorer that traverses an Android app,
|
5142
|
+
# interacting with it and capturing screenshots at the same time.
|
4788
5143
|
#
|
4789
|
-
#
|
5144
|
+
# </note>
|
4790
5145
|
#
|
4791
|
-
# * APPIUM\_JAVA\
|
5146
|
+
# * APPIUM\_JAVA\_JUNIT
|
4792
5147
|
#
|
4793
|
-
# * APPIUM\
|
5148
|
+
# * APPIUM\_JAVA\_TESTNG
|
4794
5149
|
#
|
4795
|
-
# * APPIUM\
|
5150
|
+
# * APPIUM\_PYTHON
|
4796
5151
|
#
|
4797
|
-
# * APPIUM\
|
5152
|
+
# * APPIUM\_NODE
|
4798
5153
|
#
|
4799
|
-
# * APPIUM\
|
5154
|
+
# * APPIUM\_RUBY
|
4800
5155
|
#
|
4801
|
-
# * APPIUM\_WEB\_JAVA\
|
4802
|
-
# apps.
|
5156
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT
|
4803
5157
|
#
|
4804
|
-
# * APPIUM\_WEB\
|
5158
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG
|
4805
5159
|
#
|
4806
|
-
# * APPIUM\_WEB\
|
5160
|
+
# * APPIUM\_WEB\_PYTHON
|
4807
5161
|
#
|
4808
|
-
# * APPIUM\_WEB\
|
5162
|
+
# * APPIUM\_WEB\_NODE
|
4809
5163
|
#
|
4810
|
-
# *
|
5164
|
+
# * APPIUM\_WEB\_RUBY
|
4811
5165
|
#
|
4812
|
-
# *
|
5166
|
+
# * CALABASH
|
4813
5167
|
#
|
4814
|
-
# *
|
5168
|
+
# * INSTRUMENTATION
|
4815
5169
|
#
|
4816
|
-
# *
|
5170
|
+
# * UIAUTOMATION
|
4817
5171
|
#
|
4818
|
-
# *
|
5172
|
+
# * UIAUTOMATOR
|
4819
5173
|
#
|
4820
|
-
# * XCTEST
|
5174
|
+
# * XCTEST
|
5175
|
+
#
|
5176
|
+
# * XCTEST\_UI
|
4821
5177
|
# @return [String]
|
4822
5178
|
#
|
4823
5179
|
# @!attribute [rw] platform
|
@@ -4825,9 +5181,9 @@ module Aws::DeviceFarm
|
|
4825
5181
|
#
|
4826
5182
|
# Allowed values include:
|
4827
5183
|
#
|
4828
|
-
# * ANDROID
|
5184
|
+
# * ANDROID
|
4829
5185
|
#
|
4830
|
-
# * IOS
|
5186
|
+
# * IOS
|
4831
5187
|
# @return [String]
|
4832
5188
|
#
|
4833
5189
|
# @!attribute [rw] created
|
@@ -4839,23 +5195,23 @@ module Aws::DeviceFarm
|
|
4839
5195
|
#
|
4840
5196
|
# Allowed values include:
|
4841
5197
|
#
|
4842
|
-
# * PENDING
|
5198
|
+
# * PENDING
|
4843
5199
|
#
|
4844
|
-
# * PENDING\_CONCURRENCY
|
5200
|
+
# * PENDING\_CONCURRENCY
|
4845
5201
|
#
|
4846
|
-
# * PENDING\_DEVICE
|
5202
|
+
# * PENDING\_DEVICE
|
4847
5203
|
#
|
4848
|
-
# * PROCESSING
|
5204
|
+
# * PROCESSING
|
4849
5205
|
#
|
4850
|
-
# * SCHEDULING
|
5206
|
+
# * SCHEDULING
|
4851
5207
|
#
|
4852
|
-
# * PREPARING
|
5208
|
+
# * PREPARING
|
4853
5209
|
#
|
4854
|
-
# * RUNNING
|
5210
|
+
# * RUNNING
|
4855
5211
|
#
|
4856
|
-
# * COMPLETED
|
5212
|
+
# * COMPLETED
|
4857
5213
|
#
|
4858
|
-
# * STOPPING
|
5214
|
+
# * STOPPING
|
4859
5215
|
# @return [String]
|
4860
5216
|
#
|
4861
5217
|
# @!attribute [rw] result
|
@@ -4863,19 +5219,19 @@ module Aws::DeviceFarm
|
|
4863
5219
|
#
|
4864
5220
|
# Allowed values include:
|
4865
5221
|
#
|
4866
|
-
# * PENDING
|
5222
|
+
# * PENDING
|
4867
5223
|
#
|
4868
|
-
# * PASSED
|
5224
|
+
# * PASSED
|
4869
5225
|
#
|
4870
|
-
# * WARNED
|
5226
|
+
# * WARNED
|
4871
5227
|
#
|
4872
|
-
# * FAILED
|
5228
|
+
# * FAILED
|
4873
5229
|
#
|
4874
|
-
# * SKIPPED
|
5230
|
+
# * SKIPPED
|
4875
5231
|
#
|
4876
|
-
# * ERRORED
|
5232
|
+
# * ERRORED
|
4877
5233
|
#
|
4878
|
-
# * STOPPED
|
5234
|
+
# * STOPPED
|
4879
5235
|
# @return [String]
|
4880
5236
|
#
|
4881
5237
|
# @!attribute [rw] started
|
@@ -4906,6 +5262,12 @@ module Aws::DeviceFarm
|
|
4906
5262
|
# Specifies the billing method for a test run: `metered` or
|
4907
5263
|
# `unmetered`. If the parameter is not specified, the default value is
|
4908
5264
|
# `metered`.
|
5265
|
+
#
|
5266
|
+
# <note markdown="1"> If you have unmetered device slots, you must set this to `unmetered`
|
5267
|
+
# to use them. Otherwise, the run is counted toward metered device
|
5268
|
+
# minutes.
|
5269
|
+
#
|
5270
|
+
# </note>
|
4909
5271
|
# @return [String]
|
4910
5272
|
#
|
4911
5273
|
# @!attribute [rw] device_minutes
|
@@ -4918,7 +5280,7 @@ module Aws::DeviceFarm
|
|
4918
5280
|
# @return [Types::NetworkProfile]
|
4919
5281
|
#
|
4920
5282
|
# @!attribute [rw] parsing_result_url
|
4921
|
-
# Read-only URL for an object in S3 bucket where you can get the
|
5283
|
+
# Read-only URL for an object in an S3 bucket where you can get the
|
4922
5284
|
# parsing results of the test package. If the test package doesn't
|
4923
5285
|
# parse, the reason why it doesn't parse appears in the file that
|
4924
5286
|
# this URL points to.
|
@@ -4946,7 +5308,7 @@ module Aws::DeviceFarm
|
|
4946
5308
|
# @return [Integer]
|
4947
5309
|
#
|
4948
5310
|
# @!attribute [rw] job_timeout_minutes
|
4949
|
-
# The number of minutes the job
|
5311
|
+
# The number of minutes the job executes before it times out.
|
4950
5312
|
# @return [Integer]
|
4951
5313
|
#
|
4952
5314
|
# @!attribute [rw] device_pool_arn
|
@@ -4974,11 +5336,11 @@ module Aws::DeviceFarm
|
|
4974
5336
|
# @return [String]
|
4975
5337
|
#
|
4976
5338
|
# @!attribute [rw] skip_app_resign
|
4977
|
-
# When set to `true`, for private devices, Device Farm
|
5339
|
+
# When set to `true`, for private devices, Device Farm does not sign
|
4978
5340
|
# your app again. For public devices, Device Farm always signs your
|
4979
|
-
# apps again
|
5341
|
+
# apps again.
|
4980
5342
|
#
|
4981
|
-
# For more information about how Device Farm re-signs your
|
5343
|
+
# For more information about how Device Farm re-signs your apps, see
|
4982
5344
|
# [Do you modify my app?][1] in the *AWS Device Farm FAQs*.
|
4983
5345
|
#
|
4984
5346
|
#
|
@@ -5085,8 +5447,8 @@ module Aws::DeviceFarm
|
|
5085
5447
|
# @return [String]
|
5086
5448
|
#
|
5087
5449
|
# @!attribute [rw] url
|
5088
|
-
# The
|
5089
|
-
#
|
5450
|
+
# The presigned Amazon S3 URL that can be used with a GET request to
|
5451
|
+
# download the sample's file.
|
5090
5452
|
# @return [String]
|
5091
5453
|
#
|
5092
5454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Sample AWS API Documentation
|
@@ -5130,8 +5492,8 @@ module Aws::DeviceFarm
|
|
5130
5492
|
#
|
5131
5493
|
# @!attribute [rw] extra_data_package_arn
|
5132
5494
|
# The ARN of the extra data for the run. The extra data is a .zip file
|
5133
|
-
# that AWS Device Farm
|
5134
|
-
#
|
5495
|
+
# that AWS Device Farm extracts to external data for Android or the
|
5496
|
+
# app's sandbox for iOS.
|
5135
5497
|
# @return [String]
|
5136
5498
|
#
|
5137
5499
|
# @!attribute [rw] network_profile_arn
|
@@ -5147,8 +5509,7 @@ module Aws::DeviceFarm
|
|
5147
5509
|
# @return [Types::Location]
|
5148
5510
|
#
|
5149
5511
|
# @!attribute [rw] vpce_configuration_arns
|
5150
|
-
# An array of
|
5151
|
-
# configurations.
|
5512
|
+
# An array of ARNs for your VPC endpoint configurations.
|
5152
5513
|
# @return [Array<String>]
|
5153
5514
|
#
|
5154
5515
|
# @!attribute [rw] customer_artifact_paths
|
@@ -5161,14 +5522,20 @@ module Aws::DeviceFarm
|
|
5161
5522
|
# @return [Types::Radios]
|
5162
5523
|
#
|
5163
5524
|
# @!attribute [rw] auxiliary_apps
|
5164
|
-
# A list of
|
5165
|
-
#
|
5525
|
+
# A list of upload ARNs for app packages to be installed with your
|
5526
|
+
# app.
|
5166
5527
|
# @return [Array<String>]
|
5167
5528
|
#
|
5168
5529
|
# @!attribute [rw] billing_method
|
5169
5530
|
# Specifies the billing method for a test run: `metered` or
|
5170
5531
|
# `unmetered`. If the parameter is not specified, the default value is
|
5171
5532
|
# `metered`.
|
5533
|
+
#
|
5534
|
+
# <note markdown="1"> If you have purchased unmetered device slots, you must set this
|
5535
|
+
# parameter to `unmetered` to make use of them. Otherwise, your run
|
5536
|
+
# counts against your metered time.
|
5537
|
+
#
|
5538
|
+
# </note>
|
5172
5539
|
# @return [String]
|
5173
5540
|
#
|
5174
5541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ScheduleRunConfiguration AWS API Documentation
|
@@ -5252,7 +5619,8 @@ module Aws::DeviceFarm
|
|
5252
5619
|
# @return [String]
|
5253
5620
|
#
|
5254
5621
|
# @!attribute [rw] app_arn
|
5255
|
-
# The ARN of
|
5622
|
+
# The ARN of an application package to run tests against, created with
|
5623
|
+
# CreateUpload. See ListUploads.
|
5256
5624
|
# @return [String]
|
5257
5625
|
#
|
5258
5626
|
# @!attribute [rw] device_pool_arn
|
@@ -5261,8 +5629,8 @@ module Aws::DeviceFarm
|
|
5261
5629
|
#
|
5262
5630
|
# @!attribute [rw] device_selection_configuration
|
5263
5631
|
# The filter criteria used to dynamically select a set of devices for
|
5264
|
-
# a test run
|
5265
|
-
#
|
5632
|
+
# a test run and the maximum number of devices to be included in the
|
5633
|
+
# run.
|
5266
5634
|
#
|
5267
5635
|
# Either <b> <code>devicePoolArn</code> </b> or <b>
|
5268
5636
|
# <code>deviceSelectionConfiguration</code> </b> is required in a
|
@@ -5313,9 +5681,9 @@ module Aws::DeviceFarm
|
|
5313
5681
|
include Aws::Structure
|
5314
5682
|
end
|
5315
5683
|
|
5316
|
-
# Represents test settings. This data structure is passed in as the
|
5317
|
-
#
|
5318
|
-
#
|
5684
|
+
# Represents test settings. This data structure is passed in as the test
|
5685
|
+
# parameter to ScheduleRun. For an example of the JSON request syntax,
|
5686
|
+
# see ScheduleRun.
|
5319
5687
|
#
|
5320
5688
|
# @note When making an API call, you may pass ScheduleRunTest
|
5321
5689
|
# data as a hash:
|
@@ -5335,48 +5703,47 @@ module Aws::DeviceFarm
|
|
5335
5703
|
#
|
5336
5704
|
# Must be one of the following values:
|
5337
5705
|
#
|
5338
|
-
# * BUILTIN\_FUZZ
|
5706
|
+
# * BUILTIN\_FUZZ
|
5339
5707
|
#
|
5340
|
-
# * BUILTIN\_EXPLORER
|
5341
|
-
#
|
5342
|
-
#
|
5708
|
+
# * BUILTIN\_EXPLORER. For Android, an app explorer that traverses an
|
5709
|
+
# Android app, interacting with it and capturing screenshots at the
|
5710
|
+
# same time.
|
5343
5711
|
#
|
5344
|
-
# * APPIUM\_JAVA\_JUNIT
|
5712
|
+
# * APPIUM\_JAVA\_JUNIT
|
5345
5713
|
#
|
5346
|
-
# * APPIUM\_JAVA\_TESTNG
|
5714
|
+
# * APPIUM\_JAVA\_TESTNG
|
5347
5715
|
#
|
5348
|
-
# * APPIUM\_PYTHON
|
5716
|
+
# * APPIUM\_PYTHON
|
5349
5717
|
#
|
5350
|
-
# * APPIUM\_NODE
|
5718
|
+
# * APPIUM\_NODE
|
5351
5719
|
#
|
5352
|
-
# * APPIUM\_RUBY
|
5720
|
+
# * APPIUM\_RUBY
|
5353
5721
|
#
|
5354
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT
|
5722
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT
|
5355
5723
|
#
|
5356
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG
|
5357
|
-
# apps.
|
5724
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG
|
5358
5725
|
#
|
5359
|
-
# * APPIUM\_WEB\_PYTHON
|
5726
|
+
# * APPIUM\_WEB\_PYTHON
|
5360
5727
|
#
|
5361
|
-
# * APPIUM\_WEB\_NODE
|
5728
|
+
# * APPIUM\_WEB\_NODE
|
5362
5729
|
#
|
5363
|
-
# * APPIUM\_WEB\_RUBY
|
5730
|
+
# * APPIUM\_WEB\_RUBY
|
5364
5731
|
#
|
5365
|
-
# * CALABASH
|
5732
|
+
# * CALABASH
|
5366
5733
|
#
|
5367
|
-
# * INSTRUMENTATION
|
5734
|
+
# * INSTRUMENTATION
|
5368
5735
|
#
|
5369
|
-
# * UIAUTOMATION
|
5736
|
+
# * UIAUTOMATION
|
5370
5737
|
#
|
5371
|
-
# * UIAUTOMATOR
|
5738
|
+
# * UIAUTOMATOR
|
5372
5739
|
#
|
5373
|
-
# * XCTEST
|
5740
|
+
# * XCTEST
|
5374
5741
|
#
|
5375
|
-
# * XCTEST\_UI
|
5742
|
+
# * XCTEST\_UI
|
5376
5743
|
# @return [String]
|
5377
5744
|
#
|
5378
5745
|
# @!attribute [rw] test_package_arn
|
5379
|
-
# The ARN of the uploaded test
|
5746
|
+
# The ARN of the uploaded test to be run.
|
5380
5747
|
# @return [String]
|
5381
5748
|
#
|
5382
5749
|
# @!attribute [rw] test_spec_arn
|
@@ -5394,35 +5761,34 @@ module Aws::DeviceFarm
|
|
5394
5761
|
#
|
5395
5762
|
# For all tests:
|
5396
5763
|
#
|
5397
|
-
# *
|
5398
|
-
# default. Set this parameter to
|
5764
|
+
# * `app_performance_monitoring`\: Performance monitoring is enabled
|
5765
|
+
# by default. Set this parameter to false to disable it.
|
5399
5766
|
#
|
5400
5767
|
# ^
|
5401
5768
|
#
|
5402
5769
|
# For Calabash tests:
|
5403
5770
|
#
|
5404
|
-
# * profile: A cucumber profile
|
5771
|
+
# * profile: A cucumber profile (for example, `my_profile_name`).
|
5405
5772
|
#
|
5406
5773
|
# * tags: You can limit execution to features or scenarios that have
|
5407
|
-
# (or don't have) certain tags
|
5408
|
-
#
|
5774
|
+
# (or don't have) certain tags (for example, @smoke or
|
5775
|
+
# @smoke,~@wip).
|
5409
5776
|
#
|
5410
5777
|
# For Appium tests (all types):
|
5411
5778
|
#
|
5412
5779
|
# * appium\_version: The Appium version. Currently supported values
|
5413
|
-
# are
|
5780
|
+
# are 1.6.5 (and later), latest, and default.
|
5414
5781
|
#
|
5415
|
-
# *
|
5416
|
-
#
|
5782
|
+
# * latest runs the latest Appium version supported by Device Farm
|
5783
|
+
# (1.9.1).
|
5417
5784
|
#
|
5418
|
-
# * For
|
5419
|
-
#
|
5420
|
-
#
|
5421
|
-
# later.
|
5785
|
+
# * For default, Device Farm selects a compatible version of Appium
|
5786
|
+
# for the device. The current behavior is to run 1.7.2 on Android
|
5787
|
+
# devices and iOS 9 and earlier and 1.7.2 for iOS 10 and later.
|
5422
5788
|
#
|
5423
5789
|
# * This behavior is subject to change.
|
5424
5790
|
#
|
5425
|
-
# For
|
5791
|
+
# For fuzz tests (Android only):
|
5426
5792
|
#
|
5427
5793
|
# * event\_count: The number of events, between 1 and 10000, that the
|
5428
5794
|
# UI fuzz test should perform.
|
@@ -5435,46 +5801,46 @@ module Aws::DeviceFarm
|
|
5435
5801
|
#
|
5436
5802
|
# For Explorer tests:
|
5437
5803
|
#
|
5438
|
-
# * username: A
|
5439
|
-
# form. If not supplied, no
|
5804
|
+
# * username: A user name to use if the Explorer encounters a login
|
5805
|
+
# form. If not supplied, no user name is inserted.
|
5440
5806
|
#
|
5441
5807
|
# * password: A password to use if the Explorer encounters a login
|
5442
|
-
# form. If not supplied, no password
|
5808
|
+
# form. If not supplied, no password is inserted.
|
5443
5809
|
#
|
5444
5810
|
# For Instrumentation:
|
5445
5811
|
#
|
5446
5812
|
# * filter: A test filter string. Examples:
|
5447
5813
|
#
|
5448
|
-
# * Running a single test case:
|
5814
|
+
# * Running a single test case: `com.android.abc.Test1`
|
5449
5815
|
#
|
5450
|
-
# * Running a single test:
|
5816
|
+
# * Running a single test: `com.android.abc.Test1#smoke`
|
5451
5817
|
#
|
5452
5818
|
# * Running multiple tests:
|
5453
|
-
#
|
5819
|
+
# `com.android.abc.Test1,com.android.abc.Test2`
|
5454
5820
|
#
|
5455
5821
|
# For XCTest and XCTestUI:
|
5456
5822
|
#
|
5457
5823
|
# * filter: A test filter string. Examples:
|
5458
5824
|
#
|
5459
|
-
# * Running a single test class:
|
5825
|
+
# * Running a single test class: `LoginTests`
|
5460
5826
|
#
|
5461
|
-
# * Running a multiple test classes:
|
5827
|
+
# * Running a multiple test classes: `LoginTests,SmokeTests`
|
5462
5828
|
#
|
5463
|
-
# * Running a single test:
|
5829
|
+
# * Running a single test: `LoginTests/testValid`
|
5464
5830
|
#
|
5465
5831
|
# * Running multiple tests:
|
5466
|
-
#
|
5832
|
+
# `LoginTests/testValid,LoginTests/testInvalid`
|
5467
5833
|
#
|
5468
5834
|
# For UIAutomator:
|
5469
5835
|
#
|
5470
5836
|
# * filter: A test filter string. Examples:
|
5471
5837
|
#
|
5472
|
-
# * Running a single test case:
|
5838
|
+
# * Running a single test case: `com.android.abc.Test1`
|
5473
5839
|
#
|
5474
|
-
# * Running a single test:
|
5840
|
+
# * Running a single test: `com.android.abc.Test1#smoke`
|
5475
5841
|
#
|
5476
5842
|
# * Running multiple tests:
|
5477
|
-
#
|
5843
|
+
# `com.android.abc.Test1,com.android.abc.Test2`
|
5478
5844
|
# @return [Hash<String,String>]
|
5479
5845
|
#
|
5480
5846
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ScheduleRunTest AWS API Documentation
|
@@ -5509,8 +5875,8 @@ module Aws::DeviceFarm
|
|
5509
5875
|
# }
|
5510
5876
|
#
|
5511
5877
|
# @!attribute [rw] arn
|
5512
|
-
# Represents the Amazon Resource Name (ARN) of the Device Farm job
|
5513
|
-
#
|
5878
|
+
# Represents the Amazon Resource Name (ARN) of the Device Farm job to
|
5879
|
+
# stop.
|
5514
5880
|
# @return [String]
|
5515
5881
|
#
|
5516
5882
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopJobRequest AWS API Documentation
|
@@ -5541,8 +5907,7 @@ module Aws::DeviceFarm
|
|
5541
5907
|
# }
|
5542
5908
|
#
|
5543
5909
|
# @!attribute [rw] arn
|
5544
|
-
# The Amazon Resource Name (ARN) of the remote access session
|
5545
|
-
# to stop.
|
5910
|
+
# The Amazon Resource Name (ARN) of the remote access session to stop.
|
5546
5911
|
# @return [String]
|
5547
5912
|
#
|
5548
5913
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRemoteAccessSessionRequest AWS API Documentation
|
@@ -5556,7 +5921,7 @@ module Aws::DeviceFarm
|
|
5556
5921
|
# access session when AWS Device Farm stops the session.
|
5557
5922
|
#
|
5558
5923
|
# @!attribute [rw] remote_access_session
|
5559
|
-
# A container
|
5924
|
+
# A container that represents the metadata from the service about the
|
5560
5925
|
# remote access session you are stopping.
|
5561
5926
|
# @return [Types::RemoteAccessSession]
|
5562
5927
|
#
|
@@ -5577,8 +5942,8 @@ module Aws::DeviceFarm
|
|
5577
5942
|
# }
|
5578
5943
|
#
|
5579
5944
|
# @!attribute [rw] arn
|
5580
|
-
# Represents the Amazon Resource Name (ARN) of the Device Farm run
|
5581
|
-
#
|
5945
|
+
# Represents the Amazon Resource Name (ARN) of the Device Farm run to
|
5946
|
+
# stop.
|
5582
5947
|
# @return [String]
|
5583
5948
|
#
|
5584
5949
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRunRequest AWS API Documentation
|
@@ -5616,44 +5981,47 @@ module Aws::DeviceFarm
|
|
5616
5981
|
#
|
5617
5982
|
# Must be one of the following values:
|
5618
5983
|
#
|
5619
|
-
# * BUILTIN\_FUZZ
|
5984
|
+
# * BUILTIN\_FUZZ
|
5985
|
+
#
|
5986
|
+
# * BUILTIN\_EXPLORER
|
5987
|
+
#
|
5988
|
+
# <note markdown="1"> Only available for Android; an app explorer that traverses an
|
5989
|
+
# Android app, interacting with it and capturing screenshots at the
|
5990
|
+
# same time.
|
5620
5991
|
#
|
5621
|
-
#
|
5622
|
-
# an Android app, interacting with it and capturing screenshots at
|
5623
|
-
# the same time.
|
5992
|
+
# </note>
|
5624
5993
|
#
|
5625
|
-
# * APPIUM\_JAVA\_JUNIT
|
5994
|
+
# * APPIUM\_JAVA\_JUNIT
|
5626
5995
|
#
|
5627
|
-
# * APPIUM\_JAVA\_TESTNG
|
5996
|
+
# * APPIUM\_JAVA\_TESTNG
|
5628
5997
|
#
|
5629
|
-
# * APPIUM\_PYTHON
|
5998
|
+
# * APPIUM\_PYTHON
|
5630
5999
|
#
|
5631
|
-
# * APPIUM\_NODE
|
6000
|
+
# * APPIUM\_NODE
|
5632
6001
|
#
|
5633
|
-
# * APPIUM\_RUBY
|
6002
|
+
# * APPIUM\_RUBY
|
5634
6003
|
#
|
5635
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT
|
6004
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT
|
5636
6005
|
#
|
5637
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG
|
5638
|
-
# apps.
|
6006
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG
|
5639
6007
|
#
|
5640
|
-
# * APPIUM\_WEB\_PYTHON
|
6008
|
+
# * APPIUM\_WEB\_PYTHON
|
5641
6009
|
#
|
5642
|
-
# * APPIUM\_WEB\_NODE
|
6010
|
+
# * APPIUM\_WEB\_NODE
|
5643
6011
|
#
|
5644
|
-
# * APPIUM\_WEB\_RUBY
|
6012
|
+
# * APPIUM\_WEB\_RUBY
|
5645
6013
|
#
|
5646
|
-
# * CALABASH
|
6014
|
+
# * CALABASH
|
5647
6015
|
#
|
5648
|
-
# * INSTRUMENTATION
|
6016
|
+
# * INSTRUMENTATION
|
5649
6017
|
#
|
5650
|
-
# * UIAUTOMATION
|
6018
|
+
# * UIAUTOMATION
|
5651
6019
|
#
|
5652
|
-
# * UIAUTOMATOR
|
6020
|
+
# * UIAUTOMATOR
|
5653
6021
|
#
|
5654
|
-
# * XCTEST
|
6022
|
+
# * XCTEST
|
5655
6023
|
#
|
5656
|
-
# * XCTEST\_UI
|
6024
|
+
# * XCTEST\_UI
|
5657
6025
|
# @return [String]
|
5658
6026
|
#
|
5659
6027
|
# @!attribute [rw] created
|
@@ -5665,23 +6033,23 @@ module Aws::DeviceFarm
|
|
5665
6033
|
#
|
5666
6034
|
# Allowed values include:
|
5667
6035
|
#
|
5668
|
-
# * PENDING
|
6036
|
+
# * PENDING
|
5669
6037
|
#
|
5670
|
-
# * PENDING\_CONCURRENCY
|
6038
|
+
# * PENDING\_CONCURRENCY
|
5671
6039
|
#
|
5672
|
-
# * PENDING\_DEVICE
|
6040
|
+
# * PENDING\_DEVICE
|
5673
6041
|
#
|
5674
|
-
# * PROCESSING
|
6042
|
+
# * PROCESSING
|
5675
6043
|
#
|
5676
|
-
# * SCHEDULING
|
6044
|
+
# * SCHEDULING
|
5677
6045
|
#
|
5678
|
-
# * PREPARING
|
6046
|
+
# * PREPARING
|
5679
6047
|
#
|
5680
|
-
# * RUNNING
|
6048
|
+
# * RUNNING
|
5681
6049
|
#
|
5682
|
-
# * COMPLETED
|
6050
|
+
# * COMPLETED
|
5683
6051
|
#
|
5684
|
-
# * STOPPING
|
6052
|
+
# * STOPPING
|
5685
6053
|
# @return [String]
|
5686
6054
|
#
|
5687
6055
|
# @!attribute [rw] result
|
@@ -5689,19 +6057,19 @@ module Aws::DeviceFarm
|
|
5689
6057
|
#
|
5690
6058
|
# Allowed values include:
|
5691
6059
|
#
|
5692
|
-
# * PENDING
|
6060
|
+
# * PENDING
|
5693
6061
|
#
|
5694
|
-
# * PASSED
|
6062
|
+
# * PASSED
|
5695
6063
|
#
|
5696
|
-
# * WARNED
|
6064
|
+
# * WARNED
|
5697
6065
|
#
|
5698
|
-
# * FAILED
|
6066
|
+
# * FAILED
|
5699
6067
|
#
|
5700
|
-
# * SKIPPED
|
6068
|
+
# * SKIPPED
|
5701
6069
|
#
|
5702
|
-
# * ERRORED
|
6070
|
+
# * ERRORED
|
5703
6071
|
#
|
5704
|
-
# * STOPPED
|
6072
|
+
# * STOPPED
|
5705
6073
|
# @return [String]
|
5706
6074
|
#
|
5707
6075
|
# @!attribute [rw] started
|
@@ -5745,8 +6113,7 @@ module Aws::DeviceFarm
|
|
5745
6113
|
# The metadata that you apply to a resource to help you categorize and
|
5746
6114
|
# organize it. Each tag consists of a key and an optional value, both of
|
5747
6115
|
# which you define. Tag keys can have a maximum character length of 128
|
5748
|
-
# characters
|
5749
|
-
# characters.
|
6116
|
+
# characters. Tag values can have a maximum length of 256 characters.
|
5750
6117
|
#
|
5751
6118
|
# @note When making an API call, you may pass Tag
|
5752
6119
|
# data as a hash:
|
@@ -5757,14 +6124,14 @@ module Aws::DeviceFarm
|
|
5757
6124
|
# }
|
5758
6125
|
#
|
5759
6126
|
# @!attribute [rw] key
|
5760
|
-
# One part of a key-value pair that
|
6127
|
+
# One part of a key-value pair that makes up a tag. A `key` is a
|
5761
6128
|
# general label that acts like a category for more specific tag
|
5762
6129
|
# values.
|
5763
6130
|
# @return [String]
|
5764
6131
|
#
|
5765
6132
|
# @!attribute [rw] value
|
5766
|
-
# The optional part of a key-value pair that
|
5767
|
-
# acts as a descriptor
|
6133
|
+
# The optional part of a key-value pair that makes up a tag. A `value`
|
6134
|
+
# acts as a descriptor in a tag category (key).
|
5768
6135
|
# @return [String]
|
5769
6136
|
#
|
5770
6137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Tag AWS API Documentation
|
@@ -5812,7 +6179,7 @@ module Aws::DeviceFarm
|
|
5812
6179
|
# data as a hash:
|
5813
6180
|
#
|
5814
6181
|
# {
|
5815
|
-
# resource_arn: "
|
6182
|
+
# resource_arn: "DeviceFarmArn", # required
|
5816
6183
|
# tags: [ # required
|
5817
6184
|
# {
|
5818
6185
|
# key: "TagKey", # required
|
@@ -5822,8 +6189,8 @@ module Aws::DeviceFarm
|
|
5822
6189
|
# }
|
5823
6190
|
#
|
5824
6191
|
# @!attribute [rw] resource_arn
|
5825
|
-
# The Amazon Resource Name (ARN) of the resource
|
5826
|
-
# tags. You can associate tags with the following Device Farm
|
6192
|
+
# The Amazon Resource Name (ARN) of the resource or resources to which
|
6193
|
+
# to add tags. You can associate tags with the following Device Farm
|
5827
6194
|
# resources: `PROJECT`, `RUN`, `NETWORK_PROFILE`, `INSTANCE_PROFILE`,
|
5828
6195
|
# `DEVICE_INSTANCE`, `SESSION`, `DEVICE_POOL`, `DEVICE`, and
|
5829
6196
|
# `VPCE_CONFIGURATION`.
|
@@ -5832,8 +6199,7 @@ module Aws::DeviceFarm
|
|
5832
6199
|
# @!attribute [rw] tags
|
5833
6200
|
# The tags to add to the resource. A tag is an array of key-value
|
5834
6201
|
# pairs. Tag keys can have a maximum character length of 128
|
5835
|
-
# characters
|
5836
|
-
# characters.
|
6202
|
+
# characters. Tag values can have a maximum length of 256 characters.
|
5837
6203
|
# @return [Array<Types::Tag>]
|
5838
6204
|
#
|
5839
6205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/TagResourceRequest AWS API Documentation
|
@@ -5863,44 +6229,46 @@ module Aws::DeviceFarm
|
|
5863
6229
|
#
|
5864
6230
|
# Must be one of the following values:
|
5865
6231
|
#
|
5866
|
-
# * BUILTIN\_FUZZ
|
6232
|
+
# * BUILTIN\_FUZZ
|
5867
6233
|
#
|
5868
|
-
# * BUILTIN\_EXPLORER
|
5869
|
-
# an Android app, interacting with it and capturing screenshots at
|
5870
|
-
# the same time.
|
6234
|
+
# * BUILTIN\_EXPLORER
|
5871
6235
|
#
|
5872
|
-
#
|
6236
|
+
# <note markdown="1"> For Android, an app explorer that traverses an Android app,
|
6237
|
+
# interacting with it and capturing screenshots at the same time.
|
5873
6238
|
#
|
5874
|
-
#
|
6239
|
+
# </note>
|
5875
6240
|
#
|
5876
|
-
# * APPIUM\
|
6241
|
+
# * APPIUM\_JAVA\_JUNIT
|
5877
6242
|
#
|
5878
|
-
# * APPIUM\
|
6243
|
+
# * APPIUM\_JAVA\_TESTNG
|
5879
6244
|
#
|
5880
|
-
# * APPIUM\
|
6245
|
+
# * APPIUM\_PYTHON
|
5881
6246
|
#
|
5882
|
-
# * APPIUM\
|
6247
|
+
# * APPIUM\_NODE
|
5883
6248
|
#
|
5884
|
-
# * APPIUM\
|
5885
|
-
# apps.
|
6249
|
+
# * APPIUM\_RUBY
|
5886
6250
|
#
|
5887
|
-
# * APPIUM\_WEB\
|
6251
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT
|
5888
6252
|
#
|
5889
|
-
# * APPIUM\_WEB\
|
6253
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG
|
5890
6254
|
#
|
5891
|
-
# * APPIUM\_WEB\
|
6255
|
+
# * APPIUM\_WEB\_PYTHON
|
5892
6256
|
#
|
5893
|
-
# *
|
6257
|
+
# * APPIUM\_WEB\_NODE
|
5894
6258
|
#
|
5895
|
-
# *
|
6259
|
+
# * APPIUM\_WEB\_RUBY
|
5896
6260
|
#
|
5897
|
-
# *
|
6261
|
+
# * CALABASH
|
5898
6262
|
#
|
5899
|
-
# *
|
6263
|
+
# * INSTRUMENTATION
|
5900
6264
|
#
|
5901
|
-
# *
|
6265
|
+
# * UIAUTOMATION
|
5902
6266
|
#
|
5903
|
-
# *
|
6267
|
+
# * UIAUTOMATOR
|
6268
|
+
#
|
6269
|
+
# * XCTEST
|
6270
|
+
#
|
6271
|
+
# * XCTEST\_UI
|
5904
6272
|
# @return [String]
|
5905
6273
|
#
|
5906
6274
|
# @!attribute [rw] created
|
@@ -5912,23 +6280,23 @@ module Aws::DeviceFarm
|
|
5912
6280
|
#
|
5913
6281
|
# Allowed values include:
|
5914
6282
|
#
|
5915
|
-
# * PENDING
|
6283
|
+
# * PENDING
|
5916
6284
|
#
|
5917
|
-
# * PENDING\_CONCURRENCY
|
6285
|
+
# * PENDING\_CONCURRENCY
|
5918
6286
|
#
|
5919
|
-
# * PENDING\_DEVICE
|
6287
|
+
# * PENDING\_DEVICE
|
5920
6288
|
#
|
5921
|
-
# * PROCESSING
|
6289
|
+
# * PROCESSING
|
5922
6290
|
#
|
5923
|
-
# * SCHEDULING
|
6291
|
+
# * SCHEDULING
|
5924
6292
|
#
|
5925
|
-
# * PREPARING
|
6293
|
+
# * PREPARING
|
5926
6294
|
#
|
5927
|
-
# * RUNNING
|
6295
|
+
# * RUNNING
|
5928
6296
|
#
|
5929
|
-
# * COMPLETED
|
6297
|
+
# * COMPLETED
|
5930
6298
|
#
|
5931
|
-
# * STOPPING
|
6299
|
+
# * STOPPING
|
5932
6300
|
# @return [String]
|
5933
6301
|
#
|
5934
6302
|
# @!attribute [rw] result
|
@@ -5936,19 +6304,19 @@ module Aws::DeviceFarm
|
|
5936
6304
|
#
|
5937
6305
|
# Allowed values include:
|
5938
6306
|
#
|
5939
|
-
# * PENDING
|
6307
|
+
# * PENDING
|
5940
6308
|
#
|
5941
|
-
# * PASSED
|
6309
|
+
# * PASSED
|
5942
6310
|
#
|
5943
|
-
# * WARNED
|
6311
|
+
# * WARNED
|
5944
6312
|
#
|
5945
|
-
# * FAILED
|
6313
|
+
# * FAILED
|
5946
6314
|
#
|
5947
|
-
# * SKIPPED
|
6315
|
+
# * SKIPPED
|
5948
6316
|
#
|
5949
|
-
# * ERRORED
|
6317
|
+
# * ERRORED
|
5950
6318
|
#
|
5951
|
-
# * STOPPED
|
6319
|
+
# * STOPPED
|
5952
6320
|
# @return [String]
|
5953
6321
|
#
|
5954
6322
|
# @!attribute [rw] started
|
@@ -5989,6 +6357,138 @@ module Aws::DeviceFarm
|
|
5989
6357
|
include Aws::Structure
|
5990
6358
|
end
|
5991
6359
|
|
6360
|
+
# A Selenium testing project. Projects are used to collect and collate
|
6361
|
+
# sessions.
|
6362
|
+
#
|
6363
|
+
# @!attribute [rw] arn
|
6364
|
+
# The ARN for the project.
|
6365
|
+
# @return [String]
|
6366
|
+
#
|
6367
|
+
# @!attribute [rw] name
|
6368
|
+
# A human-readable name for the project.
|
6369
|
+
# @return [String]
|
6370
|
+
#
|
6371
|
+
# @!attribute [rw] description
|
6372
|
+
# A human-readable description for the project.
|
6373
|
+
# @return [String]
|
6374
|
+
#
|
6375
|
+
# @!attribute [rw] created
|
6376
|
+
# When the project was created.
|
6377
|
+
# @return [Time]
|
6378
|
+
#
|
6379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/TestGridProject AWS API Documentation
|
6380
|
+
#
|
6381
|
+
class TestGridProject < Struct.new(
|
6382
|
+
:arn,
|
6383
|
+
:name,
|
6384
|
+
:description,
|
6385
|
+
:created)
|
6386
|
+
include Aws::Structure
|
6387
|
+
end
|
6388
|
+
|
6389
|
+
# A TestGridSession is a single instance of a browser launched from the
|
6390
|
+
# URL provided by a call to CreateTestGridUrl.
|
6391
|
+
#
|
6392
|
+
# @!attribute [rw] arn
|
6393
|
+
# The ARN of the session.
|
6394
|
+
# @return [String]
|
6395
|
+
#
|
6396
|
+
# @!attribute [rw] status
|
6397
|
+
# The state of the session.
|
6398
|
+
# @return [String]
|
6399
|
+
#
|
6400
|
+
# @!attribute [rw] created
|
6401
|
+
# The time that the session was started.
|
6402
|
+
# @return [Time]
|
6403
|
+
#
|
6404
|
+
# @!attribute [rw] ended
|
6405
|
+
# The time the session ended.
|
6406
|
+
# @return [Time]
|
6407
|
+
#
|
6408
|
+
# @!attribute [rw] billing_minutes
|
6409
|
+
# The number of billed minutes that were used for this session.
|
6410
|
+
# @return [Float]
|
6411
|
+
#
|
6412
|
+
# @!attribute [rw] selenium_properties
|
6413
|
+
# A JSON object of options and parameters passed to the Selenium
|
6414
|
+
# WebDriver.
|
6415
|
+
# @return [String]
|
6416
|
+
#
|
6417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/TestGridSession AWS API Documentation
|
6418
|
+
#
|
6419
|
+
class TestGridSession < Struct.new(
|
6420
|
+
:arn,
|
6421
|
+
:status,
|
6422
|
+
:created,
|
6423
|
+
:ended,
|
6424
|
+
:billing_minutes,
|
6425
|
+
:selenium_properties)
|
6426
|
+
include Aws::Structure
|
6427
|
+
end
|
6428
|
+
|
6429
|
+
# An action taken by a TestGridSession browser instance.
|
6430
|
+
#
|
6431
|
+
# @!attribute [rw] action
|
6432
|
+
# The action taken by the session.
|
6433
|
+
# @return [String]
|
6434
|
+
#
|
6435
|
+
# @!attribute [rw] started
|
6436
|
+
# The time that the session invoked the action.
|
6437
|
+
# @return [Time]
|
6438
|
+
#
|
6439
|
+
# @!attribute [rw] duration
|
6440
|
+
# The time, in milliseconds, that the action took to complete in the
|
6441
|
+
# browser.
|
6442
|
+
# @return [Integer]
|
6443
|
+
#
|
6444
|
+
# @!attribute [rw] status_code
|
6445
|
+
# HTTP status code returned to the browser when the action was taken.
|
6446
|
+
# @return [String]
|
6447
|
+
#
|
6448
|
+
# @!attribute [rw] request_method
|
6449
|
+
# HTTP method that the browser used to make the request.
|
6450
|
+
# @return [String]
|
6451
|
+
#
|
6452
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/TestGridSessionAction AWS API Documentation
|
6453
|
+
#
|
6454
|
+
class TestGridSessionAction < Struct.new(
|
6455
|
+
:action,
|
6456
|
+
:started,
|
6457
|
+
:duration,
|
6458
|
+
:status_code,
|
6459
|
+
:request_method)
|
6460
|
+
include Aws::Structure
|
6461
|
+
end
|
6462
|
+
|
6463
|
+
# Artifacts are video and other files that are produced in the process
|
6464
|
+
# of running a browser in an automated context.
|
6465
|
+
#
|
6466
|
+
# <note markdown="1"> Video elements might be broken up into multiple artifacts as they grow
|
6467
|
+
# in size during creation.
|
6468
|
+
#
|
6469
|
+
# </note>
|
6470
|
+
#
|
6471
|
+
# @!attribute [rw] filename
|
6472
|
+
# The file name of the artifact.
|
6473
|
+
# @return [String]
|
6474
|
+
#
|
6475
|
+
# @!attribute [rw] type
|
6476
|
+
# The kind of artifact.
|
6477
|
+
# @return [String]
|
6478
|
+
#
|
6479
|
+
# @!attribute [rw] url
|
6480
|
+
# A semi-stable URL to the content of the object.
|
6481
|
+
# @return [String]
|
6482
|
+
#
|
6483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/TestGridSessionArtifact AWS API Documentation
|
6484
|
+
#
|
6485
|
+
class TestGridSessionArtifact < Struct.new(
|
6486
|
+
:filename,
|
6487
|
+
:type,
|
6488
|
+
:url)
|
6489
|
+
include Aws::Structure
|
6490
|
+
end
|
6491
|
+
|
5992
6492
|
# The list of tags on the repository is over the limit. The maximum
|
5993
6493
|
# number of tags that can be applied to a repository is 50.
|
5994
6494
|
#
|
@@ -6048,16 +6548,16 @@ module Aws::DeviceFarm
|
|
6048
6548
|
# data as a hash:
|
6049
6549
|
#
|
6050
6550
|
# {
|
6051
|
-
# resource_arn: "
|
6551
|
+
# resource_arn: "DeviceFarmArn", # required
|
6052
6552
|
# tag_keys: ["TagKey"], # required
|
6053
6553
|
# }
|
6054
6554
|
#
|
6055
6555
|
# @!attribute [rw] resource_arn
|
6056
|
-
# The Amazon Resource Name (ARN) of the resource
|
6057
|
-
# delete tags. You can associate tags with the following
|
6058
|
-
# resources: `PROJECT`, `RUN`, `NETWORK_PROFILE`,
|
6059
|
-
# `DEVICE_INSTANCE`, `SESSION`, `DEVICE_POOL`,
|
6060
|
-
# `VPCE_CONFIGURATION`.
|
6556
|
+
# The Amazon Resource Name (ARN) of the resource or resources from
|
6557
|
+
# which to delete tags. You can associate tags with the following
|
6558
|
+
# Device Farm resources: `PROJECT`, `RUN`, `NETWORK_PROFILE`,
|
6559
|
+
# `INSTANCE_PROFILE`, `DEVICE_INSTANCE`, `SESSION`, `DEVICE_POOL`,
|
6560
|
+
# `DEVICE`, and `VPCE_CONFIGURATION`.
|
6061
6561
|
# @return [String]
|
6062
6562
|
#
|
6063
6563
|
# @!attribute [rw] tag_keys
|
@@ -6090,8 +6590,8 @@ module Aws::DeviceFarm
|
|
6090
6590
|
# @return [String]
|
6091
6591
|
#
|
6092
6592
|
# @!attribute [rw] profile_arn
|
6093
|
-
# The
|
6094
|
-
#
|
6593
|
+
# The ARN of the profile that you want to associate with the device
|
6594
|
+
# instance.
|
6095
6595
|
# @return [String]
|
6096
6596
|
#
|
6097
6597
|
# @!attribute [rw] labels
|
@@ -6109,7 +6609,7 @@ module Aws::DeviceFarm
|
|
6109
6609
|
end
|
6110
6610
|
|
6111
6611
|
# @!attribute [rw] device_instance
|
6112
|
-
# An object
|
6612
|
+
# An object that contains information about your device instance.
|
6113
6613
|
# @return [Types::DeviceInstance]
|
6114
6614
|
#
|
6115
6615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateDeviceInstanceResult AWS API Documentation
|
@@ -6140,23 +6640,22 @@ module Aws::DeviceFarm
|
|
6140
6640
|
# }
|
6141
6641
|
#
|
6142
6642
|
# @!attribute [rw] arn
|
6143
|
-
# The Amazon Resource Name (ARN) of the Device Farm device pool
|
6144
|
-
#
|
6643
|
+
# The Amazon Resource Name (ARN) of the Device Farm device pool to
|
6644
|
+
# update.
|
6145
6645
|
# @return [String]
|
6146
6646
|
#
|
6147
6647
|
# @!attribute [rw] name
|
6148
|
-
# A string
|
6149
|
-
# update.
|
6648
|
+
# A string that represents the name of the device pool to update.
|
6150
6649
|
# @return [String]
|
6151
6650
|
#
|
6152
6651
|
# @!attribute [rw] description
|
6153
|
-
# A description of the device pool
|
6652
|
+
# A description of the device pool to update.
|
6154
6653
|
# @return [String]
|
6155
6654
|
#
|
6156
6655
|
# @!attribute [rw] rules
|
6157
|
-
# Represents the rules
|
6158
|
-
#
|
6159
|
-
#
|
6656
|
+
# Represents the rules to modify for the device pool. Updating rules
|
6657
|
+
# is optional. If you update rules for your request, the update
|
6658
|
+
# replaces the existing rules.
|
6160
6659
|
# @return [Array<Types::Rule>]
|
6161
6660
|
#
|
6162
6661
|
# @!attribute [rw] max_devices
|
@@ -6178,8 +6677,8 @@ module Aws::DeviceFarm
|
|
6178
6677
|
# If you set this parameter to `true`, the `maxDevices` parameter does
|
6179
6678
|
# not apply, and Device Farm does not limit the number of devices that
|
6180
6679
|
# it adds to your device pool. In this case, Device Farm adds all
|
6181
|
-
# available devices that meet the criteria
|
6182
|
-
#
|
6680
|
+
# available devices that meet the criteria specified in the `rules`
|
6681
|
+
# parameter.
|
6183
6682
|
#
|
6184
6683
|
# If you use this parameter in your request, you cannot use the
|
6185
6684
|
# `maxDevices` parameter in the same request.
|
@@ -6240,8 +6739,8 @@ module Aws::DeviceFarm
|
|
6240
6739
|
# @return [Boolean]
|
6241
6740
|
#
|
6242
6741
|
# @!attribute [rw] exclude_app_packages_from_cleanup
|
6243
|
-
# An array of strings
|
6244
|
-
# not be cleaned up from the device after a test run is over.
|
6742
|
+
# An array of strings that specifies the list of app packages that
|
6743
|
+
# should not be cleaned up from the device after a test run is over.
|
6245
6744
|
#
|
6246
6745
|
# The list of packages is only considered if you set `packageCleanup`
|
6247
6746
|
# to `true`.
|
@@ -6265,7 +6764,7 @@ module Aws::DeviceFarm
|
|
6265
6764
|
end
|
6266
6765
|
|
6267
6766
|
# @!attribute [rw] instance_profile
|
6268
|
-
# An object
|
6767
|
+
# An object that contains information about your instance profile.
|
6269
6768
|
# @return [Types::InstanceProfile]
|
6270
6769
|
#
|
6271
6770
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateInstanceProfileResult AWS API Documentation
|
@@ -6309,8 +6808,8 @@ module Aws::DeviceFarm
|
|
6309
6808
|
# @return [String]
|
6310
6809
|
#
|
6311
6810
|
# @!attribute [rw] type
|
6312
|
-
# The type of network profile
|
6313
|
-
#
|
6811
|
+
# The type of network profile to return information about. Valid
|
6812
|
+
# values are listed here.
|
6314
6813
|
# @return [String]
|
6315
6814
|
#
|
6316
6815
|
# @!attribute [rw] uplink_bandwidth_bits
|
@@ -6394,18 +6893,17 @@ module Aws::DeviceFarm
|
|
6394
6893
|
# }
|
6395
6894
|
#
|
6396
6895
|
# @!attribute [rw] arn
|
6397
|
-
# The Amazon Resource Name (ARN) of the project whose name
|
6398
|
-
# update.
|
6896
|
+
# The Amazon Resource Name (ARN) of the project whose name to update.
|
6399
6897
|
# @return [String]
|
6400
6898
|
#
|
6401
6899
|
# @!attribute [rw] name
|
6402
|
-
# A string
|
6900
|
+
# A string that represents the new name of the project that you are
|
6403
6901
|
# updating.
|
6404
6902
|
# @return [String]
|
6405
6903
|
#
|
6406
6904
|
# @!attribute [rw] default_job_timeout_minutes
|
6407
|
-
# The number of minutes a test run in the project
|
6408
|
-
#
|
6905
|
+
# The number of minutes a test run in the project executes before it
|
6906
|
+
# times out.
|
6409
6907
|
# @return [Integer]
|
6410
6908
|
#
|
6411
6909
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateProjectRequest AWS API Documentation
|
@@ -6420,7 +6918,7 @@ module Aws::DeviceFarm
|
|
6420
6918
|
# Represents the result of an update project request.
|
6421
6919
|
#
|
6422
6920
|
# @!attribute [rw] project
|
6423
|
-
# The project
|
6921
|
+
# The project to update.
|
6424
6922
|
# @return [Types::Project]
|
6425
6923
|
#
|
6426
6924
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateProjectResult AWS API Documentation
|
@@ -6430,6 +6928,47 @@ module Aws::DeviceFarm
|
|
6430
6928
|
include Aws::Structure
|
6431
6929
|
end
|
6432
6930
|
|
6931
|
+
# @note When making an API call, you may pass UpdateTestGridProjectRequest
|
6932
|
+
# data as a hash:
|
6933
|
+
#
|
6934
|
+
# {
|
6935
|
+
# project_arn: "DeviceFarmArn", # required
|
6936
|
+
# name: "ResourceName",
|
6937
|
+
# description: "ResourceDescription",
|
6938
|
+
# }
|
6939
|
+
#
|
6940
|
+
# @!attribute [rw] project_arn
|
6941
|
+
# ARN of the project to update.
|
6942
|
+
# @return [String]
|
6943
|
+
#
|
6944
|
+
# @!attribute [rw] name
|
6945
|
+
# Human-readable name for the project.
|
6946
|
+
# @return [String]
|
6947
|
+
#
|
6948
|
+
# @!attribute [rw] description
|
6949
|
+
# Human-readable description for the project.
|
6950
|
+
# @return [String]
|
6951
|
+
#
|
6952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateTestGridProjectRequest AWS API Documentation
|
6953
|
+
#
|
6954
|
+
class UpdateTestGridProjectRequest < Struct.new(
|
6955
|
+
:project_arn,
|
6956
|
+
:name,
|
6957
|
+
:description)
|
6958
|
+
include Aws::Structure
|
6959
|
+
end
|
6960
|
+
|
6961
|
+
# @!attribute [rw] test_grid_project
|
6962
|
+
# The project, including updated information.
|
6963
|
+
# @return [Types::TestGridProject]
|
6964
|
+
#
|
6965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateTestGridProjectResult AWS API Documentation
|
6966
|
+
#
|
6967
|
+
class UpdateTestGridProjectResult < Struct.new(
|
6968
|
+
:test_grid_project)
|
6969
|
+
include Aws::Structure
|
6970
|
+
end
|
6971
|
+
|
6433
6972
|
# @note When making an API call, you may pass UpdateUploadRequest
|
6434
6973
|
# data as a hash:
|
6435
6974
|
#
|
@@ -6445,18 +6984,18 @@ module Aws::DeviceFarm
|
|
6445
6984
|
# @return [String]
|
6446
6985
|
#
|
6447
6986
|
# @!attribute [rw] name
|
6448
|
-
# The upload's test spec file name. The name
|
6449
|
-
#
|
6450
|
-
# or `.yml` file extension.
|
6987
|
+
# The upload's test spec file name. The name must not contain any
|
6988
|
+
# forward slashes (/). The test spec file name must end with the
|
6989
|
+
# `.yaml` or `.yml` file extension.
|
6451
6990
|
# @return [String]
|
6452
6991
|
#
|
6453
6992
|
# @!attribute [rw] content_type
|
6454
|
-
# The upload's content type (for example,
|
6993
|
+
# The upload's content type (for example, `application/x-yaml`).
|
6455
6994
|
# @return [String]
|
6456
6995
|
#
|
6457
6996
|
# @!attribute [rw] edit_content
|
6458
|
-
# Set to true if the YAML file has changed and
|
6459
|
-
#
|
6997
|
+
# Set to true if the YAML file has changed and must be updated.
|
6998
|
+
# Otherwise, set to false.
|
6460
6999
|
# @return [Boolean]
|
6461
7000
|
#
|
6462
7001
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateUploadRequest AWS API Documentation
|
@@ -6497,23 +7036,22 @@ module Aws::DeviceFarm
|
|
6497
7036
|
# @return [String]
|
6498
7037
|
#
|
6499
7038
|
# @!attribute [rw] vpce_configuration_name
|
6500
|
-
# The friendly name you give to your VPC endpoint configuration
|
7039
|
+
# The friendly name you give to your VPC endpoint configuration to
|
6501
7040
|
# manage your configurations more easily.
|
6502
7041
|
# @return [String]
|
6503
7042
|
#
|
6504
7043
|
# @!attribute [rw] vpce_service_name
|
6505
|
-
# The name of the VPC endpoint service running
|
7044
|
+
# The name of the VPC endpoint service running in your AWS account
|
6506
7045
|
# that you want Device Farm to test.
|
6507
7046
|
# @return [String]
|
6508
7047
|
#
|
6509
7048
|
# @!attribute [rw] service_dns_name
|
6510
7049
|
# The DNS (domain) name used to connect to your private service in
|
6511
|
-
# your
|
6512
|
-
# Internet.
|
7050
|
+
# your VPC. The DNS name must not already be in use on the internet.
|
6513
7051
|
# @return [String]
|
6514
7052
|
#
|
6515
7053
|
# @!attribute [rw] vpce_configuration_description
|
6516
|
-
# An optional description
|
7054
|
+
# An optional description that provides details about your VPC
|
6517
7055
|
# endpoint configuration.
|
6518
7056
|
# @return [String]
|
6519
7057
|
#
|
@@ -6529,7 +7067,7 @@ module Aws::DeviceFarm
|
|
6529
7067
|
end
|
6530
7068
|
|
6531
7069
|
# @!attribute [rw] vpce_configuration
|
6532
|
-
# An object
|
7070
|
+
# An object that contains information about your VPC endpoint
|
6533
7071
|
# configuration.
|
6534
7072
|
# @return [Types::VPCEConfiguration]
|
6535
7073
|
#
|
@@ -6560,85 +7098,69 @@ module Aws::DeviceFarm
|
|
6560
7098
|
#
|
6561
7099
|
# Must be one of the following values:
|
6562
7100
|
#
|
6563
|
-
# * ANDROID\_APP
|
7101
|
+
# * ANDROID\_APP
|
6564
7102
|
#
|
6565
|
-
# * IOS\_APP
|
7103
|
+
# * IOS\_APP
|
6566
7104
|
#
|
6567
|
-
# * WEB\_APP
|
7105
|
+
# * WEB\_APP
|
6568
7106
|
#
|
6569
|
-
# * EXTERNAL\_DATA
|
7107
|
+
# * EXTERNAL\_DATA
|
6570
7108
|
#
|
6571
|
-
# * APPIUM\_JAVA\_JUNIT\_TEST\_PACKAGE
|
6572
|
-
# package upload.
|
7109
|
+
# * APPIUM\_JAVA\_JUNIT\_TEST\_PACKAGE
|
6573
7110
|
#
|
6574
|
-
# * APPIUM\_JAVA\_TESTNG\_TEST\_PACKAGE
|
6575
|
-
# package upload.
|
7111
|
+
# * APPIUM\_JAVA\_TESTNG\_TEST\_PACKAGE
|
6576
7112
|
#
|
6577
|
-
# * APPIUM\_PYTHON\_TEST\_PACKAGE
|
6578
|
-
# upload.
|
7113
|
+
# * APPIUM\_PYTHON\_TEST\_PACKAGE
|
6579
7114
|
#
|
6580
|
-
# * APPIUM\_NODE\_TEST\_PACKAGE
|
6581
|
-
# upload.
|
7115
|
+
# * APPIUM\_NODE\_TEST\_PACKAGE
|
6582
7116
|
#
|
6583
|
-
# * APPIUM\_RUBY\_TEST\_PACKAGE
|
7117
|
+
# * APPIUM\_RUBY\_TEST\_PACKAGE
|
6584
7118
|
#
|
6585
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_PACKAGE
|
6586
|
-
# package upload for web apps.
|
7119
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_PACKAGE
|
6587
7120
|
#
|
6588
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_PACKAGE
|
6589
|
-
# test package upload for web apps.
|
7121
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_PACKAGE
|
6590
7122
|
#
|
6591
|
-
# * APPIUM\_WEB\_PYTHON\_TEST\_PACKAGE
|
6592
|
-
# upload for web apps.
|
7123
|
+
# * APPIUM\_WEB\_PYTHON\_TEST\_PACKAGE
|
6593
7124
|
#
|
6594
|
-
# * APPIUM\_WEB\_NODE\_TEST\_PACKAGE
|
6595
|
-
# upload for web apps.
|
7125
|
+
# * APPIUM\_WEB\_NODE\_TEST\_PACKAGE
|
6596
7126
|
#
|
6597
|
-
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
6598
|
-
# upload for web apps.
|
7127
|
+
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
6599
7128
|
#
|
6600
|
-
# * CALABASH\_TEST\_PACKAGE
|
7129
|
+
# * CALABASH\_TEST\_PACKAGE
|
6601
7130
|
#
|
6602
|
-
# * INSTRUMENTATION\_TEST\_PACKAGE
|
7131
|
+
# * INSTRUMENTATION\_TEST\_PACKAGE
|
6603
7132
|
#
|
6604
|
-
# * UIAUTOMATION\_TEST\_PACKAGE
|
7133
|
+
# * UIAUTOMATION\_TEST\_PACKAGE
|
6605
7134
|
#
|
6606
|
-
# * UIAUTOMATOR\_TEST\_PACKAGE
|
7135
|
+
# * UIAUTOMATOR\_TEST\_PACKAGE
|
6607
7136
|
#
|
6608
|
-
# * XCTEST\_TEST\_PACKAGE
|
7137
|
+
# * XCTEST\_TEST\_PACKAGE
|
6609
7138
|
#
|
6610
|
-
# * XCTEST\_UI\_TEST\_PACKAGE
|
7139
|
+
# * XCTEST\_UI\_TEST\_PACKAGE
|
6611
7140
|
#
|
6612
|
-
# * APPIUM\_JAVA\_JUNIT\_TEST\_SPEC
|
6613
|
-
# upload.
|
7141
|
+
# * APPIUM\_JAVA\_JUNIT\_TEST\_SPEC
|
6614
7142
|
#
|
6615
|
-
# * APPIUM\_JAVA\_TESTNG\_TEST\_SPEC
|
6616
|
-
# upload.
|
7143
|
+
# * APPIUM\_JAVA\_TESTNG\_TEST\_SPEC
|
6617
7144
|
#
|
6618
|
-
# * APPIUM\_PYTHON\_TEST\_SPEC
|
7145
|
+
# * APPIUM\_PYTHON\_TEST\_SPEC
|
6619
7146
|
#
|
6620
|
-
# * APPIUM\_NODE\_TEST\_SPEC
|
7147
|
+
# * APPIUM\_NODE\_TEST\_SPEC
|
6621
7148
|
#
|
6622
|
-
# * APPIUM\_RUBY\_TEST\_SPEC
|
7149
|
+
# * APPIUM\_RUBY\_TEST\_SPEC
|
6623
7150
|
#
|
6624
|
-
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_SPEC
|
6625
|
-
# spec upload for a web app.
|
7151
|
+
# * APPIUM\_WEB\_JAVA\_JUNIT\_TEST\_SPEC
|
6626
7152
|
#
|
6627
|
-
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_SPEC
|
6628
|
-
# spec upload for a web app.
|
7153
|
+
# * APPIUM\_WEB\_JAVA\_TESTNG\_TEST\_SPEC
|
6629
7154
|
#
|
6630
|
-
# * APPIUM\_WEB\_PYTHON\_TEST\_SPEC
|
6631
|
-
# for a web app.
|
7155
|
+
# * APPIUM\_WEB\_PYTHON\_TEST\_SPEC
|
6632
7156
|
#
|
6633
|
-
# * APPIUM\_WEB\_NODE\_TEST\_SPEC
|
6634
|
-
# for a web app.
|
7157
|
+
# * APPIUM\_WEB\_NODE\_TEST\_SPEC
|
6635
7158
|
#
|
6636
|
-
# * APPIUM\_WEB\_RUBY\_TEST\_SPEC
|
6637
|
-
# a web app.
|
7159
|
+
# * APPIUM\_WEB\_RUBY\_TEST\_SPEC
|
6638
7160
|
#
|
6639
|
-
# * INSTRUMENTATION\_TEST\_SPEC
|
7161
|
+
# * INSTRUMENTATION\_TEST\_SPEC
|
6640
7162
|
#
|
6641
|
-
# * XCTEST\_UI\_TEST\_SPEC
|
7163
|
+
# * XCTEST\_UI\_TEST\_SPEC
|
6642
7164
|
# @return [String]
|
6643
7165
|
#
|
6644
7166
|
# @!attribute [rw] status
|
@@ -6646,18 +7168,18 @@ module Aws::DeviceFarm
|
|
6646
7168
|
#
|
6647
7169
|
# Must be one of the following values:
|
6648
7170
|
#
|
6649
|
-
# * FAILED
|
7171
|
+
# * FAILED
|
6650
7172
|
#
|
6651
|
-
# * INITIALIZED
|
7173
|
+
# * INITIALIZED
|
6652
7174
|
#
|
6653
|
-
# * PROCESSING
|
7175
|
+
# * PROCESSING
|
6654
7176
|
#
|
6655
|
-
# * SUCCEEDED
|
7177
|
+
# * SUCCEEDED
|
6656
7178
|
# @return [String]
|
6657
7179
|
#
|
6658
7180
|
# @!attribute [rw] url
|
6659
|
-
# The
|
6660
|
-
#
|
7181
|
+
# The presigned Amazon S3 URL that was used to store a file using a
|
7182
|
+
# PUT request.
|
6661
7183
|
# @return [String]
|
6662
7184
|
#
|
6663
7185
|
# @!attribute [rw] metadata
|
@@ -6668,7 +7190,7 @@ module Aws::DeviceFarm
|
|
6668
7190
|
#
|
6669
7191
|
# @!attribute [rw] content_type
|
6670
7192
|
# The upload's content type (for example,
|
6671
|
-
#
|
7193
|
+
# `application/octet-stream`).
|
6672
7194
|
# @return [String]
|
6673
7195
|
#
|
6674
7196
|
# @!attribute [rw] message
|
@@ -6707,12 +7229,12 @@ module Aws::DeviceFarm
|
|
6707
7229
|
# @return [String]
|
6708
7230
|
#
|
6709
7231
|
# @!attribute [rw] vpce_configuration_name
|
6710
|
-
# The friendly name you give to your VPC endpoint configuration
|
7232
|
+
# The friendly name you give to your VPC endpoint configuration to
|
6711
7233
|
# manage your configurations more easily.
|
6712
7234
|
# @return [String]
|
6713
7235
|
#
|
6714
7236
|
# @!attribute [rw] vpce_service_name
|
6715
|
-
# The name of the VPC endpoint service running
|
7237
|
+
# The name of the VPC endpoint service running in your AWS account
|
6716
7238
|
# that you want Device Farm to test.
|
6717
7239
|
# @return [String]
|
6718
7240
|
#
|
@@ -6722,7 +7244,7 @@ module Aws::DeviceFarm
|
|
6722
7244
|
# @return [String]
|
6723
7245
|
#
|
6724
7246
|
# @!attribute [rw] vpce_configuration_description
|
6725
|
-
# An optional description
|
7247
|
+
# An optional description that provides details about your VPC
|
6726
7248
|
# endpoint configuration.
|
6727
7249
|
# @return [String]
|
6728
7250
|
#
|