aws-sdk-devicefarm 1.86.0 → 1.88.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 +7 -3
- data/lib/aws-sdk-devicefarm/client_api.rb +1 -0
- data/lib/aws-sdk-devicefarm/types.rb +7 -1
- data/lib/aws-sdk-devicefarm.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71d949952fb96114e71460ee9f8a033158c1a8e7eb2afbc90e7fa8f984cc2c8c
|
4
|
+
data.tar.gz: 14cc929de46df659789968e19db06c52726f6ab44350cbe323a39bd4b0c7d202
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05ff7a359e9d4b9354f9a6aaafc46b32da4786a719f10aef92f34d16df28827adb1a637ccf26ff15080db12c2ed543f9ef80d9705c667c993748a6c94389a970
|
7
|
+
data.tar.gz: 661cc907171459af526ab092e34d2d3d96213fcddcce4f081b33f3813dea585f06a9689d34bae01e954eb1655c45f0c834c9058d1f2d86c474316c76e3225b5f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.88.0 (2025-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.87.0 (2025-05-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add an optional parameter to the GetDevicePoolCompatibility API to pass in project information to check device pool compatibility.
|
13
|
+
|
4
14
|
1.86.0 (2025-05-01)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.88.0
|
@@ -200,8 +200,7 @@ module Aws::DeviceFarm
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -1836,6 +1835,10 @@ module Aws::DeviceFarm
|
|
1836
1835
|
# @option params [Types::ScheduleRunConfiguration] :configuration
|
1837
1836
|
# An object that contains information about the settings for a run.
|
1838
1837
|
#
|
1838
|
+
# @option params [String] :project_arn
|
1839
|
+
# The ARN of the project for which you want to check device pool
|
1840
|
+
# compatibility.
|
1841
|
+
#
|
1839
1842
|
# @return [Types::GetDevicePoolCompatibilityResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1840
1843
|
#
|
1841
1844
|
# * {Types::GetDevicePoolCompatibilityResult#compatible_devices #compatible_devices} => Array<Types::DevicePoolCompatibilityResult>
|
@@ -1902,6 +1905,7 @@ module Aws::DeviceFarm
|
|
1902
1905
|
# auxiliary_apps: ["AmazonResourceName"],
|
1903
1906
|
# billing_method: "METERED", # accepts METERED, UNMETERED
|
1904
1907
|
# },
|
1908
|
+
# project_arn: "AmazonResourceName",
|
1905
1909
|
# })
|
1906
1910
|
#
|
1907
1911
|
# @example Response structure
|
@@ -6205,7 +6209,7 @@ module Aws::DeviceFarm
|
|
6205
6209
|
tracer: tracer
|
6206
6210
|
)
|
6207
6211
|
context[:gem_name] = 'aws-sdk-devicefarm'
|
6208
|
-
context[:gem_version] = '1.
|
6212
|
+
context[:gem_version] = '1.88.0'
|
6209
6213
|
Seahorse::Client::Request.new(handlers, context)
|
6210
6214
|
end
|
6211
6215
|
|
@@ -652,6 +652,7 @@ module Aws::DeviceFarm
|
|
652
652
|
GetDevicePoolCompatibilityRequest.add_member(:test_type, Shapes::ShapeRef.new(shape: TestType, location_name: "testType"))
|
653
653
|
GetDevicePoolCompatibilityRequest.add_member(:test, Shapes::ShapeRef.new(shape: ScheduleRunTest, location_name: "test"))
|
654
654
|
GetDevicePoolCompatibilityRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: ScheduleRunConfiguration, location_name: "configuration"))
|
655
|
+
GetDevicePoolCompatibilityRequest.add_member(:project_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "projectArn"))
|
655
656
|
GetDevicePoolCompatibilityRequest.struct_class = Types::GetDevicePoolCompatibilityRequest
|
656
657
|
|
657
658
|
GetDevicePoolCompatibilityResult.add_member(:compatible_devices, Shapes::ShapeRef.new(shape: DevicePoolCompatibilityResults, location_name: "compatibleDevices"))
|
@@ -1801,6 +1801,11 @@ module Aws::DeviceFarm
|
|
1801
1801
|
# An object that contains information about the settings for a run.
|
1802
1802
|
# @return [Types::ScheduleRunConfiguration]
|
1803
1803
|
#
|
1804
|
+
# @!attribute [rw] project_arn
|
1805
|
+
# The ARN of the project for which you want to check device pool
|
1806
|
+
# compatibility.
|
1807
|
+
# @return [String]
|
1808
|
+
#
|
1804
1809
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetDevicePoolCompatibilityRequest AWS API Documentation
|
1805
1810
|
#
|
1806
1811
|
class GetDevicePoolCompatibilityRequest < Struct.new(
|
@@ -1808,7 +1813,8 @@ module Aws::DeviceFarm
|
|
1808
1813
|
:app_arn,
|
1809
1814
|
:test_type,
|
1810
1815
|
:test,
|
1811
|
-
:configuration
|
1816
|
+
:configuration,
|
1817
|
+
:project_arn)
|
1812
1818
|
SENSITIVE = []
|
1813
1819
|
include Aws::Structure
|
1814
1820
|
end
|
data/lib/aws-sdk-devicefarm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -394,7 +394,8 @@ module Aws
|
|
394
394
|
}?,
|
395
395
|
auxiliary_apps: Array[::String]?,
|
396
396
|
billing_method: ("METERED" | "UNMETERED")?
|
397
|
-
}
|
397
|
+
},
|
398
|
+
?project_arn: ::String
|
398
399
|
) -> _GetDevicePoolCompatibilityResponseSuccess
|
399
400
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDevicePoolCompatibilityResponseSuccess
|
400
401
|
|
data/sig/types.rbs
CHANGED
@@ -393,6 +393,7 @@ module Aws::DeviceFarm
|
|
393
393
|
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")
|
394
394
|
attr_accessor test: Types::ScheduleRunTest
|
395
395
|
attr_accessor configuration: Types::ScheduleRunConfiguration
|
396
|
+
attr_accessor project_arn: ::String
|
396
397
|
SENSITIVE: []
|
397
398
|
end
|
398
399
|
|