google-apis-testing_v1 0.29.0 → 0.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb4fc09535992ba7e44b4cf54c0926ba931387fb2353a2232964c977c70bca2c
4
- data.tar.gz: e43721b804249e649938edecb5f279388760560ec37a4c1e60900aceb070727c
3
+ metadata.gz: 805799bc9295f9537aaf77c7bfda1d346141fdc33b5ca0dff22a777fb00d136c
4
+ data.tar.gz: 4e943bd50a3af3b2b2b1ef01365fb9ff2ab7ad570e6a6b0d416d13a8a102b508
5
5
  SHA512:
6
- metadata.gz: fc97ed3a2fb4e0b85bb585f5c8f3b1a01fc786e20dff258a6cd4e72c72749b347d840800851e27efd7268df24502e845dfa909cb0fbea0d5f81262f57c7b17f9
7
- data.tar.gz: c3ff07c7dce913a8a86dda6f09f458c5bbc9b9b21b7baebc22324f2eaff1cee207df61b60236149693287c60503167e9a312cdc8cf6ee6d45b474306a1981559
6
+ metadata.gz: 82c6c350d7fce4ba15016f83f99e25eeb8c8902a5fe3c4f2cbb134eb9fda47ce2d62ac787961eb9575cb5d98addc86c894db12536aa9aaf50e820174ea08de3a
7
+ data.tar.gz: fd1aa58fa1a60af3af6ae8407ab2d6f85551f3b86c4cb5aec0eb1cab1996ae00095e75289274ae3bacbd5bc9e4c769fb879575dd61d95adbe559cbde90fe6376
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.30.0 (2023-01-29)
4
+
5
+ * Regenerated from discovery document revision 20230124
6
+
3
7
  ### v0.29.0 (2023-01-08)
4
8
 
5
9
  * 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.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.1"
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.30.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-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.30.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: []