google-apis-testing_v1 0.29.0 → 0.31.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: cb4fc09535992ba7e44b4cf54c0926ba931387fb2353a2232964c977c70bca2c
4
- data.tar.gz: e43721b804249e649938edecb5f279388760560ec37a4c1e60900aceb070727c
3
+ metadata.gz: 9c30c67fba1777dd891f054be183b9962dfdfe3d6bcea299b04508e29edae56a
4
+ data.tar.gz: efda3490f14984c608a3c4700a79a279d379e08a2463cc33a4fce842f48bdc22
5
5
  SHA512:
6
- metadata.gz: fc97ed3a2fb4e0b85bb585f5c8f3b1a01fc786e20dff258a6cd4e72c72749b347d840800851e27efd7268df24502e845dfa909cb0fbea0d5f81262f57c7b17f9
7
- data.tar.gz: c3ff07c7dce913a8a86dda6f09f458c5bbc9b9b21b7baebc22324f2eaff1cee207df61b60236149693287c60503167e9a312cdc8cf6ee6d45b474306a1981559
6
+ metadata.gz: 5d0efe756f95ae170d8b32bbe82eaf6c017351f7b214a131b5af920f40fdbd1823bfb53d5c19ebaecf59972ab9644e882810094f6281bad9a883432cd6543317
7
+ data.tar.gz: 3ad1adc35f80351fbd6c2449b3f33036bd646a18b30b279e61c23022a414d27540b94fcd15fb46b00177dbfbc0a857ba29d1be463aa66318bcb2f5d356da5da5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.31.0 (2023-03-05)
4
+
5
+ * Regenerated using generator version 0.12.0
6
+
7
+ ### v0.30.0 (2023-01-29)
8
+
9
+ * Regenerated from discovery document revision 20230124
10
+
3
11
  ### v0.29.0 (2023-01-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20230103
@@ -316,6 +316,11 @@ module Google
316
316
  # @return [String]
317
317
  attr_accessor :name
318
318
 
319
+ # Version-specific information of an Android model.
320
+ # Corresponds to the JSON property `perVersionInfo`
321
+ # @return [Array<Google::Apis::TestingV1::PerAndroidVersionInfo>]
322
+ attr_accessor :per_version_info
323
+
319
324
  # Screen density in DPI. This corresponds to ro.sf.lcd_density
320
325
  # Corresponds to the JSON property `screenDensity`
321
326
  # @return [Fixnum]
@@ -370,6 +375,7 @@ module Google
370
375
  @low_fps_video_recording = args[:low_fps_video_recording] if args.key?(:low_fps_video_recording)
371
376
  @manufacturer = args[:manufacturer] if args.key?(:manufacturer)
372
377
  @name = args[:name] if args.key?(:name)
378
+ @per_version_info = args[:per_version_info] if args.key?(:per_version_info)
373
379
  @screen_density = args[:screen_density] if args.key?(:screen_density)
374
380
  @screen_x = args[:screen_x] if args.key?(:screen_x)
375
381
  @screen_y = args[:screen_y] if args.key?(:screen_y)
@@ -1330,6 +1336,11 @@ module Google
1330
1336
  # @return [String]
1331
1337
  attr_accessor :name
1332
1338
 
1339
+ # Version-specific information of an iOS model.
1340
+ # Corresponds to the JSON property `perVersionInfo`
1341
+ # @return [Array<Google::Apis::TestingV1::PerIosVersionInfo>]
1342
+ attr_accessor :per_version_info
1343
+
1333
1344
  # Screen density in DPI.
1334
1345
  # Corresponds to the JSON property `screenDensity`
1335
1346
  # @return [Fixnum]
@@ -1365,6 +1376,7 @@ module Google
1365
1376
  @form_factor = args[:form_factor] if args.key?(:form_factor)
1366
1377
  @id = args[:id] if args.key?(:id)
1367
1378
  @name = args[:name] if args.key?(:name)
1379
+ @per_version_info = args[:per_version_info] if args.key?(:per_version_info)
1368
1380
  @screen_density = args[:screen_density] if args.key?(:screen_density)
1369
1381
  @screen_x = args[:screen_x] if args.key?(:screen_x)
1370
1382
  @screen_y = args[:screen_y] if args.key?(:screen_y)
@@ -1782,6 +1794,56 @@ module Google
1782
1794
  end
1783
1795
  end
1784
1796
 
1797
+ # A version-specific information of an Android model.
1798
+ class PerAndroidVersionInfo
1799
+ include Google::Apis::Core::Hashable
1800
+
1801
+ # The number of online devices for an Android version.
1802
+ # Corresponds to the JSON property `deviceCapacity`
1803
+ # @return [String]
1804
+ attr_accessor :device_capacity
1805
+
1806
+ # An Android version.
1807
+ # Corresponds to the JSON property `versionId`
1808
+ # @return [String]
1809
+ attr_accessor :version_id
1810
+
1811
+ def initialize(**args)
1812
+ update!(**args)
1813
+ end
1814
+
1815
+ # Update properties of this object
1816
+ def update!(**args)
1817
+ @device_capacity = args[:device_capacity] if args.key?(:device_capacity)
1818
+ @version_id = args[:version_id] if args.key?(:version_id)
1819
+ end
1820
+ end
1821
+
1822
+ # A version-specific information of an iOS model.
1823
+ class PerIosVersionInfo
1824
+ include Google::Apis::Core::Hashable
1825
+
1826
+ # The number of online devices for an iOS version.
1827
+ # Corresponds to the JSON property `deviceCapacity`
1828
+ # @return [String]
1829
+ attr_accessor :device_capacity
1830
+
1831
+ # An iOS version.
1832
+ # Corresponds to the JSON property `versionId`
1833
+ # @return [String]
1834
+ attr_accessor :version_id
1835
+
1836
+ def initialize(**args)
1837
+ update!(**args)
1838
+ end
1839
+
1840
+ # Update properties of this object
1841
+ def update!(**args)
1842
+ @device_capacity = args[:device_capacity] if args.key?(:device_capacity)
1843
+ @version_id = args[:version_id] if args.key?(:version_id)
1844
+ end
1845
+ end
1846
+
1785
1847
  # The currently provided software environment on the devices under test.
1786
1848
  class ProvidedSoftwareCatalog
1787
1849
  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.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230103"
25
+ REVISION = "20230124"
26
26
  end
27
27
  end
28
28
  end
@@ -316,6 +316,18 @@ module Google
316
316
  include Google::Apis::Core::JsonObjectSupport
317
317
  end
318
318
 
319
+ class PerAndroidVersionInfo
320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
321
+
322
+ include Google::Apis::Core::JsonObjectSupport
323
+ end
324
+
325
+ class PerIosVersionInfo
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
319
331
  class ProvidedSoftwareCatalog
320
332
  class Representation < Google::Apis::Core::JsonRepresentation; end
321
333
 
@@ -532,6 +544,8 @@ module Google
532
544
  property :low_fps_video_recording, as: 'lowFpsVideoRecording'
533
545
  property :manufacturer, as: 'manufacturer'
534
546
  property :name, as: 'name'
547
+ collection :per_version_info, as: 'perVersionInfo', class: Google::Apis::TestingV1::PerAndroidVersionInfo, decorator: Google::Apis::TestingV1::PerAndroidVersionInfo::Representation
548
+
535
549
  property :screen_density, as: 'screenDensity'
536
550
  property :screen_x, as: 'screenX'
537
551
  property :screen_y, as: 'screenY'
@@ -831,6 +845,8 @@ module Google
831
845
  property :form_factor, as: 'formFactor'
832
846
  property :id, as: 'id'
833
847
  property :name, as: 'name'
848
+ collection :per_version_info, as: 'perVersionInfo', class: Google::Apis::TestingV1::PerIosVersionInfo, decorator: Google::Apis::TestingV1::PerIosVersionInfo::Representation
849
+
834
850
  property :screen_density, as: 'screenDensity'
835
851
  property :screen_x, as: 'screenX'
836
852
  property :screen_y, as: 'screenY'
@@ -965,6 +981,22 @@ module Google
965
981
  end
966
982
  end
967
983
 
984
+ class PerAndroidVersionInfo
985
+ # @private
986
+ class Representation < Google::Apis::Core::JsonRepresentation
987
+ property :device_capacity, as: 'deviceCapacity'
988
+ property :version_id, as: 'versionId'
989
+ end
990
+ end
991
+
992
+ class PerIosVersionInfo
993
+ # @private
994
+ class Representation < Google::Apis::Core::JsonRepresentation
995
+ property :device_capacity, as: 'deviceCapacity'
996
+ property :version_id, as: 'versionId'
997
+ end
998
+ end
999
+
968
1000
  class ProvidedSoftwareCatalog
969
1001
  # @private
970
1002
  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.29.0
4
+ version: 0.31.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: 2023-01-08 00:00:00.000000000 Z
11
+ date: 2023-03-05 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.9.1
19
+ version: 0.11.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.9.1
29
+ version: 0.11.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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.31.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: []