aws-sdk-devicefarm 1.72.0 → 1.74.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devicefarm/client.rb +33 -40
- data/lib/aws-sdk-devicefarm/types.rb +0 -129
- data/lib/aws-sdk-devicefarm.rb +1 -1
- data/sig/client.rbs +4 -3
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +6 -6
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28ccc5623a2b487d04be433782217a1f75909a3bbbb02d57860844d05a20fb75
|
|
4
|
+
data.tar.gz: abaa76b579ad53d0988a5a6f912543b3fe350f9aaee2628208a7d6aadeab7203
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 353e25c87522973d3dcd7f3375eafca3242d3c840ef726f0ae3b8838046836508f91f2badb100faa0db58dd3b983572ad520e1d2a9da559b7fc246e09e7c3704
|
|
7
|
+
data.tar.gz: 14286b52faf518d18f2dab4cd42025a4e5e44102a3c8b6d7f05b77b1a16d64d31060162b118804f3f9352da3f38ef00d3f95f0aa7eaf6065b5e6c3881e6f4ef7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.74.0 (2024-09-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.73.0 (2024-08-28)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release removed support for Calabash, UI Automation, Built-in Explorer, remote access record, remote access replay, and web performance profile framework in ScheduleRun API.
|
|
13
|
+
|
|
4
14
|
1.72.0 (2024-07-08)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.74.0
|
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
|
36
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
37
38
|
|
|
@@ -83,6 +84,7 @@ module Aws::DeviceFarm
|
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
|
87
89
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
88
90
|
add_plugin(Aws::DeviceFarm::Plugins::Endpoints)
|
|
@@ -337,6 +339,16 @@ module Aws::DeviceFarm
|
|
|
337
339
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
338
340
|
# requests are made, and retries are disabled.
|
|
339
341
|
#
|
|
342
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
|
343
|
+
# Allows you to provide a telemetry provider, which is used to
|
|
344
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
|
345
|
+
# will not record or emit any telemetry data. The SDK supports the
|
|
346
|
+
# following telemetry providers:
|
|
347
|
+
#
|
|
348
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
|
349
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
|
350
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
|
351
|
+
#
|
|
340
352
|
# @option options [Aws::TokenProvider] :token_provider
|
|
341
353
|
# A Bearer Token Provider. This can be an instance of any one of the
|
|
342
354
|
# following classes:
|
|
@@ -1071,14 +1083,8 @@ module Aws::DeviceFarm
|
|
|
1071
1083
|
#
|
|
1072
1084
|
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
|
1073
1085
|
#
|
|
1074
|
-
# * CALABASH\_TEST\_PACKAGE
|
|
1075
|
-
#
|
|
1076
1086
|
# * INSTRUMENTATION\_TEST\_PACKAGE
|
|
1077
1087
|
#
|
|
1078
|
-
# * UIAUTOMATION\_TEST\_PACKAGE
|
|
1079
|
-
#
|
|
1080
|
-
# * UIAUTOMATOR\_TEST\_PACKAGE
|
|
1081
|
-
#
|
|
1082
1088
|
# * XCTEST\_TEST\_PACKAGE
|
|
1083
1089
|
#
|
|
1084
1090
|
# * XCTEST\_UI\_TEST\_PACKAGE
|
|
@@ -1759,10 +1765,6 @@ module Aws::DeviceFarm
|
|
|
1759
1765
|
#
|
|
1760
1766
|
# * BUILTIN\_FUZZ.
|
|
1761
1767
|
#
|
|
1762
|
-
# * BUILTIN\_EXPLORER. For Android, an app explorer that traverses an
|
|
1763
|
-
# Android app, interacting with it and capturing screenshots at the
|
|
1764
|
-
# same time.
|
|
1765
|
-
#
|
|
1766
1768
|
# * APPIUM\_JAVA\_JUNIT.
|
|
1767
1769
|
#
|
|
1768
1770
|
# * APPIUM\_JAVA\_TESTNG.
|
|
@@ -1783,14 +1785,8 @@ module Aws::DeviceFarm
|
|
|
1783
1785
|
#
|
|
1784
1786
|
# * APPIUM\_WEB\_RUBY.
|
|
1785
1787
|
#
|
|
1786
|
-
# * CALABASH.
|
|
1787
|
-
#
|
|
1788
1788
|
# * INSTRUMENTATION.
|
|
1789
1789
|
#
|
|
1790
|
-
# * UIAUTOMATION.
|
|
1791
|
-
#
|
|
1792
|
-
# * UIAUTOMATOR.
|
|
1793
|
-
#
|
|
1794
1790
|
# * XCTEST.
|
|
1795
1791
|
#
|
|
1796
1792
|
# * XCTEST\_UI.
|
|
@@ -1830,9 +1826,9 @@ module Aws::DeviceFarm
|
|
|
1830
1826
|
# resp = client.get_device_pool_compatibility({
|
|
1831
1827
|
# device_pool_arn: "AmazonResourceName", # required
|
|
1832
1828
|
# app_arn: "AmazonResourceName",
|
|
1833
|
-
# test_type: "BUILTIN_FUZZ", # accepts BUILTIN_FUZZ,
|
|
1829
|
+
# test_type: "BUILTIN_FUZZ", # accepts BUILTIN_FUZZ, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_NODE, APPIUM_RUBY, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, APPIUM_WEB_NODE, APPIUM_WEB_RUBY, INSTRUMENTATION, XCTEST, XCTEST_UI
|
|
1834
1830
|
# test: {
|
|
1835
|
-
# type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ,
|
|
1831
|
+
# type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_NODE, APPIUM_RUBY, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, APPIUM_WEB_NODE, APPIUM_WEB_RUBY, INSTRUMENTATION, XCTEST, XCTEST_UI
|
|
1836
1832
|
# test_package_arn: "AmazonResourceName",
|
|
1837
1833
|
# test_spec_arn: "AmazonResourceName",
|
|
1838
1834
|
# filter: "Filter",
|
|
@@ -2029,7 +2025,7 @@ module Aws::DeviceFarm
|
|
|
2029
2025
|
#
|
|
2030
2026
|
# resp.job.arn #=> String
|
|
2031
2027
|
# resp.job.name #=> String
|
|
2032
|
-
# resp.job.type #=> String, one of "BUILTIN_FUZZ", "
|
|
2028
|
+
# resp.job.type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
2033
2029
|
# resp.job.created #=> Time
|
|
2034
2030
|
# resp.job.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
2035
2031
|
# resp.job.result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
|
|
@@ -2418,7 +2414,6 @@ module Aws::DeviceFarm
|
|
|
2418
2414
|
# {
|
|
2419
2415
|
# run: {
|
|
2420
2416
|
# name: "My Test Run",
|
|
2421
|
-
# type: "BUILTIN_EXPLORER",
|
|
2422
2417
|
# arn: "arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE",
|
|
2423
2418
|
# billing_method: "METERED",
|
|
2424
2419
|
# completed_jobs: 0,
|
|
@@ -2454,7 +2449,7 @@ module Aws::DeviceFarm
|
|
|
2454
2449
|
#
|
|
2455
2450
|
# resp.run.arn #=> String
|
|
2456
2451
|
# resp.run.name #=> String
|
|
2457
|
-
# resp.run.type #=> String, one of "BUILTIN_FUZZ", "
|
|
2452
|
+
# resp.run.type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
2458
2453
|
# resp.run.platform #=> String, one of "ANDROID", "IOS"
|
|
2459
2454
|
# resp.run.created #=> Time
|
|
2460
2455
|
# resp.run.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
@@ -2566,7 +2561,7 @@ module Aws::DeviceFarm
|
|
|
2566
2561
|
#
|
|
2567
2562
|
# resp.suite.arn #=> String
|
|
2568
2563
|
# resp.suite.name #=> String
|
|
2569
|
-
# resp.suite.type #=> String, one of "BUILTIN_FUZZ", "
|
|
2564
|
+
# resp.suite.type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
2570
2565
|
# resp.suite.created #=> Time
|
|
2571
2566
|
# resp.suite.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
2572
2567
|
# resp.suite.result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
|
|
@@ -2627,7 +2622,7 @@ module Aws::DeviceFarm
|
|
|
2627
2622
|
#
|
|
2628
2623
|
# resp.test.arn #=> String
|
|
2629
2624
|
# resp.test.name #=> String
|
|
2630
|
-
# resp.test.type #=> String, one of "BUILTIN_FUZZ", "
|
|
2625
|
+
# resp.test.type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
2631
2626
|
# resp.test.created #=> Time
|
|
2632
2627
|
# resp.test.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
2633
2628
|
# resp.test.result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
|
|
@@ -3350,7 +3345,7 @@ module Aws::DeviceFarm
|
|
|
3350
3345
|
# resp.jobs #=> Array
|
|
3351
3346
|
# resp.jobs[0].arn #=> String
|
|
3352
3347
|
# resp.jobs[0].name #=> String
|
|
3353
|
-
# resp.jobs[0].type #=> String, one of "BUILTIN_FUZZ", "
|
|
3348
|
+
# resp.jobs[0].type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
3354
3349
|
# resp.jobs[0].created #=> Time
|
|
3355
3350
|
# resp.jobs[0].status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
3356
3351
|
# resp.jobs[0].result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
|
|
@@ -4005,7 +4000,6 @@ module Aws::DeviceFarm
|
|
|
4005
4000
|
# runs: [
|
|
4006
4001
|
# {
|
|
4007
4002
|
# name: "My Test Run",
|
|
4008
|
-
# type: "BUILTIN_EXPLORER",
|
|
4009
4003
|
# arn: "arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE",
|
|
4010
4004
|
# billing_method: "METERED",
|
|
4011
4005
|
# completed_jobs: 0,
|
|
@@ -4044,7 +4038,7 @@ module Aws::DeviceFarm
|
|
|
4044
4038
|
# resp.runs #=> Array
|
|
4045
4039
|
# resp.runs[0].arn #=> String
|
|
4046
4040
|
# resp.runs[0].name #=> String
|
|
4047
|
-
# resp.runs[0].type #=> String, one of "BUILTIN_FUZZ", "
|
|
4041
|
+
# resp.runs[0].type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
4048
4042
|
# resp.runs[0].platform #=> String, one of "ANDROID", "IOS"
|
|
4049
4043
|
# resp.runs[0].created #=> Time
|
|
4050
4044
|
# resp.runs[0].status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
@@ -4225,7 +4219,7 @@ module Aws::DeviceFarm
|
|
|
4225
4219
|
# resp.suites #=> Array
|
|
4226
4220
|
# resp.suites[0].arn #=> String
|
|
4227
4221
|
# resp.suites[0].name #=> String
|
|
4228
|
-
# resp.suites[0].type #=> String, one of "BUILTIN_FUZZ", "
|
|
4222
|
+
# resp.suites[0].type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
4229
4223
|
# resp.suites[0].created #=> Time
|
|
4230
4224
|
# resp.suites[0].status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
4231
4225
|
# resp.suites[0].result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
|
|
@@ -4535,7 +4529,7 @@ module Aws::DeviceFarm
|
|
|
4535
4529
|
# resp.tests #=> Array
|
|
4536
4530
|
# resp.tests[0].arn #=> String
|
|
4537
4531
|
# resp.tests[0].name #=> String
|
|
4538
|
-
# resp.tests[0].type #=> String, one of "BUILTIN_FUZZ", "
|
|
4532
|
+
# resp.tests[0].type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
4539
4533
|
# resp.tests[0].created #=> Time
|
|
4540
4534
|
# resp.tests[0].status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
4541
4535
|
# resp.tests[0].result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
|
|
@@ -4712,14 +4706,8 @@ module Aws::DeviceFarm
|
|
|
4712
4706
|
#
|
|
4713
4707
|
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
|
4714
4708
|
#
|
|
4715
|
-
# * CALABASH\_TEST\_PACKAGE
|
|
4716
|
-
#
|
|
4717
4709
|
# * INSTRUMENTATION\_TEST\_PACKAGE
|
|
4718
4710
|
#
|
|
4719
|
-
# * UIAUTOMATION\_TEST\_PACKAGE
|
|
4720
|
-
#
|
|
4721
|
-
# * UIAUTOMATOR\_TEST\_PACKAGE
|
|
4722
|
-
#
|
|
4723
4711
|
# * XCTEST\_TEST\_PACKAGE
|
|
4724
4712
|
#
|
|
4725
4713
|
# * XCTEST\_UI\_TEST\_PACKAGE
|
|
@@ -5100,7 +5088,7 @@ module Aws::DeviceFarm
|
|
|
5100
5088
|
# },
|
|
5101
5089
|
# name: "Name",
|
|
5102
5090
|
# test: { # required
|
|
5103
|
-
# type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ,
|
|
5091
|
+
# type: "BUILTIN_FUZZ", # required, accepts BUILTIN_FUZZ, APPIUM_JAVA_JUNIT, APPIUM_JAVA_TESTNG, APPIUM_PYTHON, APPIUM_NODE, APPIUM_RUBY, APPIUM_WEB_JAVA_JUNIT, APPIUM_WEB_JAVA_TESTNG, APPIUM_WEB_PYTHON, APPIUM_WEB_NODE, APPIUM_WEB_RUBY, INSTRUMENTATION, XCTEST, XCTEST_UI
|
|
5104
5092
|
# test_package_arn: "AmazonResourceName",
|
|
5105
5093
|
# test_spec_arn: "AmazonResourceName",
|
|
5106
5094
|
# filter: "Filter",
|
|
@@ -5144,7 +5132,7 @@ module Aws::DeviceFarm
|
|
|
5144
5132
|
#
|
|
5145
5133
|
# resp.run.arn #=> String
|
|
5146
5134
|
# resp.run.name #=> String
|
|
5147
|
-
# resp.run.type #=> String, one of "BUILTIN_FUZZ", "
|
|
5135
|
+
# resp.run.type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
5148
5136
|
# resp.run.platform #=> String, one of "ANDROID", "IOS"
|
|
5149
5137
|
# resp.run.created #=> Time
|
|
5150
5138
|
# resp.run.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
@@ -5247,7 +5235,7 @@ module Aws::DeviceFarm
|
|
|
5247
5235
|
#
|
|
5248
5236
|
# resp.job.arn #=> String
|
|
5249
5237
|
# resp.job.name #=> String
|
|
5250
|
-
# resp.job.type #=> String, one of "BUILTIN_FUZZ", "
|
|
5238
|
+
# resp.job.type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
5251
5239
|
# resp.job.created #=> Time
|
|
5252
5240
|
# resp.job.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
5253
5241
|
# resp.job.result #=> String, one of "PENDING", "PASSED", "WARNED", "FAILED", "SKIPPED", "ERRORED", "STOPPED"
|
|
@@ -5445,7 +5433,7 @@ module Aws::DeviceFarm
|
|
|
5445
5433
|
#
|
|
5446
5434
|
# resp.run.arn #=> String
|
|
5447
5435
|
# resp.run.name #=> String
|
|
5448
|
-
# resp.run.type #=> String, one of "BUILTIN_FUZZ", "
|
|
5436
|
+
# resp.run.type #=> String, one of "BUILTIN_FUZZ", "APPIUM_JAVA_JUNIT", "APPIUM_JAVA_TESTNG", "APPIUM_PYTHON", "APPIUM_NODE", "APPIUM_RUBY", "APPIUM_WEB_JAVA_JUNIT", "APPIUM_WEB_JAVA_TESTNG", "APPIUM_WEB_PYTHON", "APPIUM_WEB_NODE", "APPIUM_WEB_RUBY", "INSTRUMENTATION", "XCTEST", "XCTEST_UI"
|
|
5449
5437
|
# resp.run.platform #=> String, one of "ANDROID", "IOS"
|
|
5450
5438
|
# resp.run.created #=> Time
|
|
5451
5439
|
# resp.run.status #=> String, one of "PENDING", "PENDING_CONCURRENCY", "PENDING_DEVICE", "PROCESSING", "SCHEDULING", "PREPARING", "RUNNING", "COMPLETED", "STOPPING"
|
|
@@ -6146,14 +6134,19 @@ module Aws::DeviceFarm
|
|
|
6146
6134
|
# @api private
|
|
6147
6135
|
def build_request(operation_name, params = {})
|
|
6148
6136
|
handlers = @handlers.for(operation_name)
|
|
6137
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
|
6138
|
+
Aws::Telemetry.module_to_tracer_name('Aws::DeviceFarm')
|
|
6139
|
+
)
|
|
6149
6140
|
context = Seahorse::Client::RequestContext.new(
|
|
6150
6141
|
operation_name: operation_name,
|
|
6151
6142
|
operation: config.api.operation(operation_name),
|
|
6152
6143
|
client: self,
|
|
6153
6144
|
params: params,
|
|
6154
|
-
config: config
|
|
6145
|
+
config: config,
|
|
6146
|
+
tracer: tracer
|
|
6147
|
+
)
|
|
6155
6148
|
context[:gem_name] = 'aws-sdk-devicefarm'
|
|
6156
|
-
context[:gem_version] = '1.
|
|
6149
|
+
context[:gem_version] = '1.74.0'
|
|
6157
6150
|
Seahorse::Client::Request.new(handlers, context)
|
|
6158
6151
|
end
|
|
6159
6152
|
|
|
@@ -127,16 +127,6 @@ module Aws::DeviceFarm
|
|
|
127
127
|
# * EXERCISER\_MONKEY\_OUTPUT: the artifact (log) generated by an
|
|
128
128
|
# Android fuzz test.
|
|
129
129
|
#
|
|
130
|
-
# * CALABASH\_JSON\_OUTPUT
|
|
131
|
-
#
|
|
132
|
-
# * CALABASH\_PRETTY\_OUTPUT
|
|
133
|
-
#
|
|
134
|
-
# * CALABASH\_STANDARD\_OUTPUT
|
|
135
|
-
#
|
|
136
|
-
# * CALABASH\_JAVA\_XML\_OUTPUT
|
|
137
|
-
#
|
|
138
|
-
# * AUTOMATION\_OUTPUT
|
|
139
|
-
#
|
|
140
130
|
# * APPIUM\_SERVER\_OUTPUT
|
|
141
131
|
#
|
|
142
132
|
# * APPIUM\_JAVA\_OUTPUT
|
|
@@ -147,10 +137,6 @@ module Aws::DeviceFarm
|
|
|
147
137
|
#
|
|
148
138
|
# * APPIUM\_PYTHON\_XML\_OUTPUT
|
|
149
139
|
#
|
|
150
|
-
# * EXPLORER\_EVENT\_LOG
|
|
151
|
-
#
|
|
152
|
-
# * EXPLORER\_SUMMARY\_LOG
|
|
153
|
-
#
|
|
154
140
|
# * APPLICATION\_CRASH\_REPORT
|
|
155
141
|
#
|
|
156
142
|
# * XCTEST\_LOG
|
|
@@ -776,14 +762,8 @@ module Aws::DeviceFarm
|
|
|
776
762
|
#
|
|
777
763
|
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
|
778
764
|
#
|
|
779
|
-
# * CALABASH\_TEST\_PACKAGE
|
|
780
|
-
#
|
|
781
765
|
# * INSTRUMENTATION\_TEST\_PACKAGE
|
|
782
766
|
#
|
|
783
|
-
# * UIAUTOMATION\_TEST\_PACKAGE
|
|
784
|
-
#
|
|
785
|
-
# * UIAUTOMATOR\_TEST\_PACKAGE
|
|
786
|
-
#
|
|
787
767
|
# * XCTEST\_TEST\_PACKAGE
|
|
788
768
|
#
|
|
789
769
|
# * XCTEST\_UI\_TEST\_PACKAGE
|
|
@@ -1762,10 +1742,6 @@ module Aws::DeviceFarm
|
|
|
1762
1742
|
#
|
|
1763
1743
|
# * BUILTIN\_FUZZ.
|
|
1764
1744
|
#
|
|
1765
|
-
# * BUILTIN\_EXPLORER. For Android, an app explorer that traverses an
|
|
1766
|
-
# Android app, interacting with it and capturing screenshots at the
|
|
1767
|
-
# same time.
|
|
1768
|
-
#
|
|
1769
1745
|
# * APPIUM\_JAVA\_JUNIT.
|
|
1770
1746
|
#
|
|
1771
1747
|
# * APPIUM\_JAVA\_TESTNG.
|
|
@@ -1786,14 +1762,8 @@ module Aws::DeviceFarm
|
|
|
1786
1762
|
#
|
|
1787
1763
|
# * APPIUM\_WEB\_RUBY.
|
|
1788
1764
|
#
|
|
1789
|
-
# * CALABASH.
|
|
1790
|
-
#
|
|
1791
1765
|
# * INSTRUMENTATION.
|
|
1792
1766
|
#
|
|
1793
|
-
# * UIAUTOMATION.
|
|
1794
|
-
#
|
|
1795
|
-
# * UIAUTOMATOR.
|
|
1796
|
-
#
|
|
1797
1767
|
# * XCTEST.
|
|
1798
1768
|
#
|
|
1799
1769
|
# * XCTEST\_UI.
|
|
@@ -2448,10 +2418,6 @@ module Aws::DeviceFarm
|
|
|
2448
2418
|
#
|
|
2449
2419
|
# * BUILTIN\_FUZZ
|
|
2450
2420
|
#
|
|
2451
|
-
# * BUILTIN\_EXPLORER. For Android, an app explorer that traverses an
|
|
2452
|
-
# Android app, interacting with it and capturing screenshots at the
|
|
2453
|
-
# same time.
|
|
2454
|
-
#
|
|
2455
2421
|
# * APPIUM\_JAVA\_JUNIT
|
|
2456
2422
|
#
|
|
2457
2423
|
# * APPIUM\_JAVA\_TESTNG
|
|
@@ -2472,14 +2438,8 @@ module Aws::DeviceFarm
|
|
|
2472
2438
|
#
|
|
2473
2439
|
# * APPIUM\_WEB\_RUBY
|
|
2474
2440
|
#
|
|
2475
|
-
# * CALABASH
|
|
2476
|
-
#
|
|
2477
2441
|
# * INSTRUMENTATION
|
|
2478
2442
|
#
|
|
2479
|
-
# * UIAUTOMATION
|
|
2480
|
-
#
|
|
2481
|
-
# * UIAUTOMATOR
|
|
2482
|
-
#
|
|
2483
2443
|
# * XCTEST
|
|
2484
2444
|
#
|
|
2485
2445
|
# * XCTEST\_UI
|
|
@@ -3683,14 +3643,8 @@ module Aws::DeviceFarm
|
|
|
3683
3643
|
#
|
|
3684
3644
|
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
|
3685
3645
|
#
|
|
3686
|
-
# * CALABASH\_TEST\_PACKAGE
|
|
3687
|
-
#
|
|
3688
3646
|
# * INSTRUMENTATION\_TEST\_PACKAGE
|
|
3689
3647
|
#
|
|
3690
|
-
# * UIAUTOMATION\_TEST\_PACKAGE
|
|
3691
|
-
#
|
|
3692
|
-
# * UIAUTOMATOR\_TEST\_PACKAGE
|
|
3693
|
-
#
|
|
3694
3648
|
# * XCTEST\_TEST\_PACKAGE
|
|
3695
3649
|
#
|
|
3696
3650
|
# * XCTEST\_UI\_TEST\_PACKAGE
|
|
@@ -4675,13 +4629,6 @@ module Aws::DeviceFarm
|
|
|
4675
4629
|
#
|
|
4676
4630
|
# * BUILTIN\_FUZZ
|
|
4677
4631
|
#
|
|
4678
|
-
# * BUILTIN\_EXPLORER
|
|
4679
|
-
#
|
|
4680
|
-
# <note markdown="1"> For Android, an app explorer that traverses an Android app,
|
|
4681
|
-
# interacting with it and capturing screenshots at the same time.
|
|
4682
|
-
#
|
|
4683
|
-
# </note>
|
|
4684
|
-
#
|
|
4685
4632
|
# * APPIUM\_JAVA\_JUNIT
|
|
4686
4633
|
#
|
|
4687
4634
|
# * APPIUM\_JAVA\_TESTNG
|
|
@@ -4702,14 +4649,8 @@ module Aws::DeviceFarm
|
|
|
4702
4649
|
#
|
|
4703
4650
|
# * APPIUM\_WEB\_RUBY
|
|
4704
4651
|
#
|
|
4705
|
-
# * CALABASH
|
|
4706
|
-
#
|
|
4707
4652
|
# * INSTRUMENTATION
|
|
4708
4653
|
#
|
|
4709
|
-
# * UIAUTOMATION
|
|
4710
|
-
#
|
|
4711
|
-
# * UIAUTOMATOR
|
|
4712
|
-
#
|
|
4713
4654
|
# * XCTEST
|
|
4714
4655
|
#
|
|
4715
4656
|
# * XCTEST\_UI
|
|
@@ -5155,10 +5096,6 @@ module Aws::DeviceFarm
|
|
|
5155
5096
|
#
|
|
5156
5097
|
# * BUILTIN\_FUZZ
|
|
5157
5098
|
#
|
|
5158
|
-
# * BUILTIN\_EXPLORER. For Android, an app explorer that traverses an
|
|
5159
|
-
# Android app, interacting with it and capturing screenshots at the
|
|
5160
|
-
# same time.
|
|
5161
|
-
#
|
|
5162
5099
|
# * APPIUM\_JAVA\_JUNIT
|
|
5163
5100
|
#
|
|
5164
5101
|
# * APPIUM\_JAVA\_TESTNG
|
|
@@ -5179,14 +5116,8 @@ module Aws::DeviceFarm
|
|
|
5179
5116
|
#
|
|
5180
5117
|
# * APPIUM\_WEB\_RUBY
|
|
5181
5118
|
#
|
|
5182
|
-
# * CALABASH
|
|
5183
|
-
#
|
|
5184
5119
|
# * INSTRUMENTATION
|
|
5185
5120
|
#
|
|
5186
|
-
# * UIAUTOMATION
|
|
5187
|
-
#
|
|
5188
|
-
# * UIAUTOMATOR
|
|
5189
|
-
#
|
|
5190
5121
|
# * XCTEST
|
|
5191
5122
|
#
|
|
5192
5123
|
# * XCTEST\_UI
|
|
@@ -5216,14 +5147,6 @@ module Aws::DeviceFarm
|
|
|
5216
5147
|
#
|
|
5217
5148
|
# ^
|
|
5218
5149
|
#
|
|
5219
|
-
# For Calabash tests:
|
|
5220
|
-
#
|
|
5221
|
-
# * profile: A cucumber profile (for example, `my_profile_name`).
|
|
5222
|
-
#
|
|
5223
|
-
# * tags: You can limit execution to features or scenarios that have
|
|
5224
|
-
# (or don't have) certain tags (for example, @smoke or
|
|
5225
|
-
# @smoke,~@wip).
|
|
5226
|
-
#
|
|
5227
5150
|
# For Appium tests (all types):
|
|
5228
5151
|
#
|
|
5229
5152
|
# * appium\_version: The Appium version. Currently supported values
|
|
@@ -5249,14 +5172,6 @@ module Aws::DeviceFarm
|
|
|
5249
5172
|
# * seed: A seed to use for randomizing the UI fuzz test. Using the
|
|
5250
5173
|
# same seed value between tests ensures identical event sequences.
|
|
5251
5174
|
#
|
|
5252
|
-
# For Explorer tests:
|
|
5253
|
-
#
|
|
5254
|
-
# * username: A user name to use if the Explorer encounters a login
|
|
5255
|
-
# form. If not supplied, no user name is inserted.
|
|
5256
|
-
#
|
|
5257
|
-
# * password: A password to use if the Explorer encounters a login
|
|
5258
|
-
# form. If not supplied, no password is inserted.
|
|
5259
|
-
#
|
|
5260
5175
|
# For Instrumentation:
|
|
5261
5176
|
#
|
|
5262
5177
|
# * filter: A test filter string. Examples:
|
|
@@ -5280,17 +5195,6 @@ module Aws::DeviceFarm
|
|
|
5280
5195
|
#
|
|
5281
5196
|
# * Running multiple tests:
|
|
5282
5197
|
# `LoginTests/testValid,LoginTests/testInvalid`
|
|
5283
|
-
#
|
|
5284
|
-
# For UIAutomator:
|
|
5285
|
-
#
|
|
5286
|
-
# * filter: A test filter string. Examples:
|
|
5287
|
-
#
|
|
5288
|
-
# * Running a single test case: `com.android.abc.Test1`
|
|
5289
|
-
#
|
|
5290
|
-
# * Running a single test: `com.android.abc.Test1#smoke`
|
|
5291
|
-
#
|
|
5292
|
-
# * Running multiple tests:
|
|
5293
|
-
# `com.android.abc.Test1,com.android.abc.Test2`
|
|
5294
5198
|
# @return [Hash<String,String>]
|
|
5295
5199
|
#
|
|
5296
5200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ScheduleRunTest AWS API Documentation
|
|
@@ -5420,14 +5324,6 @@ module Aws::DeviceFarm
|
|
|
5420
5324
|
#
|
|
5421
5325
|
# * BUILTIN\_FUZZ
|
|
5422
5326
|
#
|
|
5423
|
-
# * BUILTIN\_EXPLORER
|
|
5424
|
-
#
|
|
5425
|
-
# <note markdown="1"> Only available for Android; an app explorer that traverses an
|
|
5426
|
-
# Android app, interacting with it and capturing screenshots at the
|
|
5427
|
-
# same time.
|
|
5428
|
-
#
|
|
5429
|
-
# </note>
|
|
5430
|
-
#
|
|
5431
5327
|
# * APPIUM\_JAVA\_JUNIT
|
|
5432
5328
|
#
|
|
5433
5329
|
# * APPIUM\_JAVA\_TESTNG
|
|
@@ -5448,14 +5344,8 @@ module Aws::DeviceFarm
|
|
|
5448
5344
|
#
|
|
5449
5345
|
# * APPIUM\_WEB\_RUBY
|
|
5450
5346
|
#
|
|
5451
|
-
# * CALABASH
|
|
5452
|
-
#
|
|
5453
5347
|
# * INSTRUMENTATION
|
|
5454
5348
|
#
|
|
5455
|
-
# * UIAUTOMATION
|
|
5456
|
-
#
|
|
5457
|
-
# * UIAUTOMATOR
|
|
5458
|
-
#
|
|
5459
5349
|
# * XCTEST
|
|
5460
5350
|
#
|
|
5461
5351
|
# * XCTEST\_UI
|
|
@@ -5652,13 +5542,6 @@ module Aws::DeviceFarm
|
|
|
5652
5542
|
#
|
|
5653
5543
|
# * BUILTIN\_FUZZ
|
|
5654
5544
|
#
|
|
5655
|
-
# * BUILTIN\_EXPLORER
|
|
5656
|
-
#
|
|
5657
|
-
# <note markdown="1"> For Android, an app explorer that traverses an Android app,
|
|
5658
|
-
# interacting with it and capturing screenshots at the same time.
|
|
5659
|
-
#
|
|
5660
|
-
# </note>
|
|
5661
|
-
#
|
|
5662
5545
|
# * APPIUM\_JAVA\_JUNIT
|
|
5663
5546
|
#
|
|
5664
5547
|
# * APPIUM\_JAVA\_TESTNG
|
|
@@ -5679,14 +5562,8 @@ module Aws::DeviceFarm
|
|
|
5679
5562
|
#
|
|
5680
5563
|
# * APPIUM\_WEB\_RUBY
|
|
5681
5564
|
#
|
|
5682
|
-
# * CALABASH
|
|
5683
|
-
#
|
|
5684
5565
|
# * INSTRUMENTATION
|
|
5685
5566
|
#
|
|
5686
|
-
# * UIAUTOMATION
|
|
5687
|
-
#
|
|
5688
|
-
# * UIAUTOMATOR
|
|
5689
|
-
#
|
|
5690
5567
|
# * XCTEST
|
|
5691
5568
|
#
|
|
5692
5569
|
# * XCTEST\_UI
|
|
@@ -6507,14 +6384,8 @@ module Aws::DeviceFarm
|
|
|
6507
6384
|
#
|
|
6508
6385
|
# * APPIUM\_WEB\_RUBY\_TEST\_PACKAGE
|
|
6509
6386
|
#
|
|
6510
|
-
# * CALABASH\_TEST\_PACKAGE
|
|
6511
|
-
#
|
|
6512
6387
|
# * INSTRUMENTATION\_TEST\_PACKAGE
|
|
6513
6388
|
#
|
|
6514
|
-
# * UIAUTOMATION\_TEST\_PACKAGE
|
|
6515
|
-
#
|
|
6516
|
-
# * UIAUTOMATOR\_TEST\_PACKAGE
|
|
6517
|
-
#
|
|
6518
6389
|
# * XCTEST\_TEST\_PACKAGE
|
|
6519
6390
|
#
|
|
6520
6391
|
# * XCTEST\_UI\_TEST\_PACKAGE
|
data/lib/aws-sdk-devicefarm.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -51,6 +51,7 @@ module Aws
|
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
|
52
52
|
?simple_json: bool,
|
|
53
53
|
?stub_responses: untyped,
|
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
|
54
55
|
?token_provider: untyped,
|
|
55
56
|
?use_dualstack_endpoint: bool,
|
|
56
57
|
?use_fips_endpoint: bool,
|
|
@@ -352,9 +353,9 @@ module Aws
|
|
|
352
353
|
def get_device_pool_compatibility: (
|
|
353
354
|
device_pool_arn: ::String,
|
|
354
355
|
?app_arn: ::String,
|
|
355
|
-
?test_type: ("BUILTIN_FUZZ" | "
|
|
356
|
+
?test_type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI"),
|
|
356
357
|
?test: {
|
|
357
|
-
type: ("BUILTIN_FUZZ" | "
|
|
358
|
+
type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI"),
|
|
358
359
|
test_package_arn: ::String?,
|
|
359
360
|
test_spec_arn: ::String?,
|
|
360
361
|
filter: ::String?,
|
|
@@ -878,7 +879,7 @@ module Aws
|
|
|
878
879
|
},
|
|
879
880
|
?name: ::String,
|
|
880
881
|
test: {
|
|
881
|
-
type: ("BUILTIN_FUZZ" | "
|
|
882
|
+
type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI"),
|
|
882
883
|
test_package_arn: ::String?,
|
|
883
884
|
test_spec_arn: ::String?,
|
|
884
885
|
filter: ::String?,
|
data/sig/resource.rbs
CHANGED
|
@@ -51,6 +51,7 @@ module Aws
|
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
|
52
52
|
?simple_json: bool,
|
|
53
53
|
?stub_responses: untyped,
|
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
|
54
55
|
?token_provider: untyped,
|
|
55
56
|
?use_dualstack_endpoint: bool,
|
|
56
57
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
|
@@ -383,7 +383,7 @@ module Aws::DeviceFarm
|
|
|
383
383
|
class GetDevicePoolCompatibilityRequest
|
|
384
384
|
attr_accessor device_pool_arn: ::String
|
|
385
385
|
attr_accessor app_arn: ::String
|
|
386
|
-
attr_accessor test_type: ("BUILTIN_FUZZ" | "
|
|
386
|
+
attr_accessor test_type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI")
|
|
387
387
|
attr_accessor test: Types::ScheduleRunTest
|
|
388
388
|
attr_accessor configuration: Types::ScheduleRunConfiguration
|
|
389
389
|
SENSITIVE: []
|
|
@@ -594,7 +594,7 @@ module Aws::DeviceFarm
|
|
|
594
594
|
class Job
|
|
595
595
|
attr_accessor arn: ::String
|
|
596
596
|
attr_accessor name: ::String
|
|
597
|
-
attr_accessor type: ("BUILTIN_FUZZ" | "
|
|
597
|
+
attr_accessor type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI")
|
|
598
598
|
attr_accessor created: ::Time
|
|
599
599
|
attr_accessor status: ("PENDING" | "PENDING_CONCURRENCY" | "PENDING_DEVICE" | "PROCESSING" | "SCHEDULING" | "PREPARING" | "RUNNING" | "COMPLETED" | "STOPPING")
|
|
600
600
|
attr_accessor result: ("PENDING" | "PASSED" | "WARNED" | "FAILED" | "SKIPPED" | "ERRORED" | "STOPPED")
|
|
@@ -1087,7 +1087,7 @@ module Aws::DeviceFarm
|
|
|
1087
1087
|
class Run
|
|
1088
1088
|
attr_accessor arn: ::String
|
|
1089
1089
|
attr_accessor name: ::String
|
|
1090
|
-
attr_accessor type: ("BUILTIN_FUZZ" | "
|
|
1090
|
+
attr_accessor type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI")
|
|
1091
1091
|
attr_accessor platform: ("ANDROID" | "IOS")
|
|
1092
1092
|
attr_accessor created: ::Time
|
|
1093
1093
|
attr_accessor status: ("PENDING" | "PENDING_CONCURRENCY" | "PENDING_DEVICE" | "PROCESSING" | "SCHEDULING" | "PREPARING" | "RUNNING" | "COMPLETED" | "STOPPING")
|
|
@@ -1158,7 +1158,7 @@ module Aws::DeviceFarm
|
|
|
1158
1158
|
end
|
|
1159
1159
|
|
|
1160
1160
|
class ScheduleRunTest
|
|
1161
|
-
attr_accessor type: ("BUILTIN_FUZZ" | "
|
|
1161
|
+
attr_accessor type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI")
|
|
1162
1162
|
attr_accessor test_package_arn: ::String
|
|
1163
1163
|
attr_accessor test_spec_arn: ::String
|
|
1164
1164
|
attr_accessor filter: ::String
|
|
@@ -1204,7 +1204,7 @@ module Aws::DeviceFarm
|
|
|
1204
1204
|
class Suite
|
|
1205
1205
|
attr_accessor arn: ::String
|
|
1206
1206
|
attr_accessor name: ::String
|
|
1207
|
-
attr_accessor type: ("BUILTIN_FUZZ" | "
|
|
1207
|
+
attr_accessor type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI")
|
|
1208
1208
|
attr_accessor created: ::Time
|
|
1209
1209
|
attr_accessor status: ("PENDING" | "PENDING_CONCURRENCY" | "PENDING_DEVICE" | "PROCESSING" | "SCHEDULING" | "PREPARING" | "RUNNING" | "COMPLETED" | "STOPPING")
|
|
1210
1210
|
attr_accessor result: ("PENDING" | "PASSED" | "WARNED" | "FAILED" | "SKIPPED" | "ERRORED" | "STOPPED")
|
|
@@ -1246,7 +1246,7 @@ module Aws::DeviceFarm
|
|
|
1246
1246
|
class Test
|
|
1247
1247
|
attr_accessor arn: ::String
|
|
1248
1248
|
attr_accessor name: ::String
|
|
1249
|
-
attr_accessor type: ("BUILTIN_FUZZ" | "
|
|
1249
|
+
attr_accessor type: ("BUILTIN_FUZZ" | "APPIUM_JAVA_JUNIT" | "APPIUM_JAVA_TESTNG" | "APPIUM_PYTHON" | "APPIUM_NODE" | "APPIUM_RUBY" | "APPIUM_WEB_JAVA_JUNIT" | "APPIUM_WEB_JAVA_TESTNG" | "APPIUM_WEB_PYTHON" | "APPIUM_WEB_NODE" | "APPIUM_WEB_RUBY" | "INSTRUMENTATION" | "XCTEST" | "XCTEST_UI")
|
|
1250
1250
|
attr_accessor created: ::Time
|
|
1251
1251
|
attr_accessor status: ("PENDING" | "PENDING_CONCURRENCY" | "PENDING_DEVICE" | "PROCESSING" | "SCHEDULING" | "PREPARING" | "RUNNING" | "COMPLETED" | "STOPPING")
|
|
1252
1252
|
attr_accessor result: ("PENDING" | "PASSED" | "WARNED" | "FAILED" | "SKIPPED" | "ERRORED" | "STOPPED")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-devicefarm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.74.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.203.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.203.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|