aws-sdk-devicefarm 1.85.0 → 1.87.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24ddd732724835a78de296e6954c21558a1e0674c3d4bd4ccecf254451c63c43
4
- data.tar.gz: 904947f2635b6edfc8079eaa1eed6827389b7952baa8e26ac8f33365b82a507f
3
+ metadata.gz: 8e9ef6b7949476fec644f7a45565f3977ba0e6c69b84abcc19463c03a8b3f37e
4
+ data.tar.gz: 192fdb098a57a53bf43b361f933ff626f3c227cd13ddeb37b6d7a79ebae2f298
5
5
  SHA512:
6
- metadata.gz: 89665d1e0d23dbb3c908cc3b487a5b50ff251874b891e4045837709854fa985cb831e32b3dd4a8a3da79536d72364f8870277dd3ebbd98211f44179cc4d18b2b
7
- data.tar.gz: e94e41f3dca95f0256ef41a6cba1865898f16d54c24597e16b57cbba5f6701af3e8147f5bf88b72dc03d89a9d17bb14a4b47113dcd51a14f324b73a750a560cc
6
+ metadata.gz: 682b29a254e6061531913fc576530cfcbd8e7159dd41713cd57c601ba8728ad4e38d14ce1ce445f7816752f9c66d34e08e0014ec7ddf172c126b4c095e7d15da
7
+ data.tar.gz: cef1c4dbc315f59dc2c03301aa5f54a8b0cac5cee8bbf447f754036c84e9916d643792333f6db8d19f6a95b67890e5c2120bdcda304666b5cf8b425121b2f313
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.87.0 (2025-05-05)
5
+ ------------------
6
+
7
+ * Feature - Add an optional parameter to the GetDevicePoolCompatibility API to pass in project information to check device pool compatibility.
8
+
9
+ 1.86.0 (2025-05-01)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.85.0 (2025-02-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.85.0
1
+ 1.87.0
@@ -1836,6 +1836,10 @@ module Aws::DeviceFarm
1836
1836
  # @option params [Types::ScheduleRunConfiguration] :configuration
1837
1837
  # An object that contains information about the settings for a run.
1838
1838
  #
1839
+ # @option params [String] :project_arn
1840
+ # The ARN of the project for which you want to check device pool
1841
+ # compatibility.
1842
+ #
1839
1843
  # @return [Types::GetDevicePoolCompatibilityResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1840
1844
  #
1841
1845
  # * {Types::GetDevicePoolCompatibilityResult#compatible_devices #compatible_devices} => Array<Types::DevicePoolCompatibilityResult>
@@ -1902,6 +1906,7 @@ module Aws::DeviceFarm
1902
1906
  # auxiliary_apps: ["AmazonResourceName"],
1903
1907
  # billing_method: "METERED", # accepts METERED, UNMETERED
1904
1908
  # },
1909
+ # project_arn: "AmazonResourceName",
1905
1910
  # })
1906
1911
  #
1907
1912
  # @example Response structure
@@ -6205,7 +6210,7 @@ module Aws::DeviceFarm
6205
6210
  tracer: tracer
6206
6211
  )
6207
6212
  context[:gem_name] = 'aws-sdk-devicefarm'
6208
- context[:gem_version] = '1.85.0'
6213
+ context[:gem_version] = '1.87.0'
6209
6214
  Seahorse::Client::Request.new(handlers, context)
6210
6215
  end
6211
6216
 
@@ -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
@@ -54,7 +54,7 @@ module Aws::DeviceFarm
54
54
  autoload :EndpointProvider, 'aws-sdk-devicefarm/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-devicefarm/endpoints'
56
56
 
57
- GEM_VERSION = '1.85.0'
57
+ GEM_VERSION = '1.87.0'
58
58
 
59
59
  end
60
60
 
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
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-devicefarm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.85.0
4
+ version: 1.87.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-02-25 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-core
@@ -77,7 +76,6 @@ licenses:
77
76
  metadata:
78
77
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-devicefarm
79
78
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-devicefarm/CHANGELOG.md
80
- post_install_message:
81
79
  rdoc_options: []
82
80
  require_paths:
83
81
  - lib
@@ -92,8 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
90
  - !ruby/object:Gem::Version
93
91
  version: '0'
94
92
  requirements: []
95
- rubygems_version: 3.4.10
96
- signing_key:
93
+ rubygems_version: 3.6.7
97
94
  specification_version: 4
98
95
  summary: AWS SDK for Ruby - AWS Device Farm
99
96
  test_files: []