google-apis-testing_v1 0.48.0 → 0.50.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10b236d9cf272d8d50e4eb317ea13ff690d8f8a7948b4e3c21d5da29228c9bb1
|
4
|
+
data.tar.gz: 2b308cdc93b880a3b5752958741059f18c6b54f70f93800c16a4c0c23237d227
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f4b2cd31fb9eb85ad7d38ec8512853d98ec1f200eaa8125886179e5a2196804e83cde870ff3bd711f8de9d3bed93dbfe5ea586130f7e8d16c2cac1acbdf3482
|
7
|
+
data.tar.gz: d6501fa02d2493673e4244f0db76fa6e132aee90c2cd661d4930355a67424a41e4b0535704f11bcd18e1d7b90fd168617c202c5ab69b8ef7307b36b1b73f0909
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-testing_v1
|
2
2
|
|
3
|
+
### v0.50.0 (2024-09-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240917
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.49.0 (2024-05-19)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.15.0
|
11
|
+
|
3
12
|
### v0.48.0 (2024-03-24)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240315
|
@@ -298,6 +298,11 @@ module Google
|
|
298
298
|
# @return [String]
|
299
299
|
attr_accessor :id
|
300
300
|
|
301
|
+
# Lab specific information for a device.
|
302
|
+
# Corresponds to the JSON property `labInfo`
|
303
|
+
# @return [Google::Apis::TestingV1::LabInfo]
|
304
|
+
attr_accessor :lab_info
|
305
|
+
|
301
306
|
# True if and only if tests with this model are recorded by stitching together
|
302
307
|
# screenshots. See use_low_spec_video_recording in device config.
|
303
308
|
# Corresponds to the JSON property `lowFpsVideoRecording`
|
@@ -372,6 +377,7 @@ module Google
|
|
372
377
|
@form = args[:form] if args.key?(:form)
|
373
378
|
@form_factor = args[:form_factor] if args.key?(:form_factor)
|
374
379
|
@id = args[:id] if args.key?(:id)
|
380
|
+
@lab_info = args[:lab_info] if args.key?(:lab_info)
|
375
381
|
@low_fps_video_recording = args[:low_fps_video_recording] if args.key?(:low_fps_video_recording)
|
376
382
|
@manufacturer = args[:manufacturer] if args.key?(:manufacturer)
|
377
383
|
@name = args[:name] if args.key?(:name)
|
@@ -1760,6 +1766,26 @@ module Google
|
|
1760
1766
|
end
|
1761
1767
|
end
|
1762
1768
|
|
1769
|
+
# Lab specific information for a device.
|
1770
|
+
class LabInfo
|
1771
|
+
include Google::Apis::Core::Hashable
|
1772
|
+
|
1773
|
+
# Lab name where the device is hosted. If empty, the device is hosted in a
|
1774
|
+
# Google owned lab.
|
1775
|
+
# Corresponds to the JSON property `name`
|
1776
|
+
# @return [String]
|
1777
|
+
attr_accessor :name
|
1778
|
+
|
1779
|
+
def initialize(**args)
|
1780
|
+
update!(**args)
|
1781
|
+
end
|
1782
|
+
|
1783
|
+
# Update properties of this object
|
1784
|
+
def update!(**args)
|
1785
|
+
@name = args[:name] if args.key?(:name)
|
1786
|
+
end
|
1787
|
+
end
|
1788
|
+
|
1763
1789
|
# Specifies an intent that starts the main launcher activity.
|
1764
1790
|
class LauncherActivityIntent
|
1765
1791
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TestingV1
|
18
18
|
# Version of the google-apis-testing_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.50.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240917"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -298,6 +298,12 @@ module Google
|
|
298
298
|
include Google::Apis::Core::JsonObjectSupport
|
299
299
|
end
|
300
300
|
|
301
|
+
class LabInfo
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
301
307
|
class LauncherActivityIntent
|
302
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
309
|
|
@@ -607,6 +613,8 @@ module Google
|
|
607
613
|
property :form, as: 'form'
|
608
614
|
property :form_factor, as: 'formFactor'
|
609
615
|
property :id, as: 'id'
|
616
|
+
property :lab_info, as: 'labInfo', class: Google::Apis::TestingV1::LabInfo, decorator: Google::Apis::TestingV1::LabInfo::Representation
|
617
|
+
|
610
618
|
property :low_fps_video_recording, as: 'lowFpsVideoRecording'
|
611
619
|
property :manufacturer, as: 'manufacturer'
|
612
620
|
property :name, as: 'name'
|
@@ -1029,6 +1037,13 @@ module Google
|
|
1029
1037
|
end
|
1030
1038
|
end
|
1031
1039
|
|
1040
|
+
class LabInfo
|
1041
|
+
# @private
|
1042
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1043
|
+
property :name, as: 'name'
|
1044
|
+
end
|
1045
|
+
end
|
1046
|
+
|
1032
1047
|
class LauncherActivityIntent
|
1033
1048
|
# @private
|
1034
1049
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-testing_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.50.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.50.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|