google-apis-testing_v1 0.49.0 → 0.51.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: 54a97921729b353798d0ce92d42ead947af8ee2da896b9215b72d5f02b64cf3a
4
- data.tar.gz: ac385759df41310090b5ea1ea94eae6d21db971af11e0dd2d268aa9f258bb8de
3
+ metadata.gz: 440e78130a202544e8ff47c951d6be8b92e2f2252dce81faedfde27c3e0bcb5f
4
+ data.tar.gz: 9d35948e5c06cce2da45b3fbc65c752b91c5b32b724ef3bda711f2577c8ae700
5
5
  SHA512:
6
- metadata.gz: 38f8dab538be21e6d7251889262ab60c2706adebbd2d4e81fdc8ebf01f7c8a8c9ac593a99e4beb7d670728e50c7831282fb6efb6989480ad2be5ddea06b4d3ac
7
- data.tar.gz: 98be3a0faeaaad0902d6182ff856198f59b9226e5cb554bf62faac031526a8acaab196eea273b4e1f436eb729ee23241c9874f50463ce0b520562b702f3f1563
6
+ metadata.gz: 424f909725df7963b236255ae2e4608c29b45acb01b2ed247f9f873b428986a59cd7728cf2e1f417efb743c66db4d354f49b804346fc01efa8bab878c2e1f345
7
+ data.tar.gz: f178326381d7fb36f9922548206eed19ddeacd7a009a4f14d0dd7677ad940ed1bda16201f1111678e720dfcf8b3b121a2f865d5025a419830037aab1c108c29a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.51.0 (2024-11-17)
4
+
5
+ * Regenerated from discovery document revision 20241105
6
+
7
+ ### v0.50.0 (2024-09-22)
8
+
9
+ * Regenerated from discovery document revision 20240917
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.49.0 (2024-05-19)
4
13
 
5
14
  * Regenerated using generator version 0.15.0
@@ -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)
@@ -708,11 +714,16 @@ module Google
708
714
  # @return [Array<Google::Apis::TestingV1::UsesFeature>]
709
715
  attr_accessor :uses_feature
710
716
 
711
- # Permissions declared to be used by the application
717
+ #
712
718
  # Corresponds to the JSON property `usesPermission`
713
719
  # @return [Array<String>]
714
720
  attr_accessor :uses_permission
715
721
 
722
+ # Permissions declared to be used by the application
723
+ # Corresponds to the JSON property `usesPermissionTags`
724
+ # @return [Array<Google::Apis::TestingV1::UsesPermissionTag>]
725
+ attr_accessor :uses_permission_tags
726
+
716
727
  # Version number used internally by the app.
717
728
  # Corresponds to the JSON property `versionCode`
718
729
  # @return [Fixnum]
@@ -739,6 +750,7 @@ module Google
739
750
  @target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
740
751
  @uses_feature = args[:uses_feature] if args.key?(:uses_feature)
741
752
  @uses_permission = args[:uses_permission] if args.key?(:uses_permission)
753
+ @uses_permission_tags = args[:uses_permission_tags] if args.key?(:uses_permission_tags)
742
754
  @version_code = args[:version_code] if args.key?(:version_code)
743
755
  @version_name = args[:version_name] if args.key?(:version_name)
744
756
  end
@@ -1760,6 +1772,26 @@ module Google
1760
1772
  end
1761
1773
  end
1762
1774
 
1775
+ # Lab specific information for a device.
1776
+ class LabInfo
1777
+ include Google::Apis::Core::Hashable
1778
+
1779
+ # Lab name where the device is hosted. If empty, the device is hosted in a
1780
+ # Google owned lab.
1781
+ # Corresponds to the JSON property `name`
1782
+ # @return [String]
1783
+ attr_accessor :name
1784
+
1785
+ def initialize(**args)
1786
+ update!(**args)
1787
+ end
1788
+
1789
+ # Update properties of this object
1790
+ def update!(**args)
1791
+ @name = args[:name] if args.key?(:name)
1792
+ end
1793
+ end
1794
+
1763
1795
  # Specifies an intent that starts the main launcher activity.
1764
1796
  class LauncherActivityIntent
1765
1797
  include Google::Apis::Core::Hashable
@@ -3158,6 +3190,32 @@ module Google
3158
3190
  end
3159
3191
  end
3160
3192
 
3193
+ # The tag within a manifest. https://developer.android.com/guide/topics/manifest/
3194
+ # uses-permission-element.html
3195
+ class UsesPermissionTag
3196
+ include Google::Apis::Core::Hashable
3197
+
3198
+ # The android:name value
3199
+ # Corresponds to the JSON property `maxSdkVersion`
3200
+ # @return [Fixnum]
3201
+ attr_accessor :max_sdk_version
3202
+
3203
+ # The android:name value
3204
+ # Corresponds to the JSON property `name`
3205
+ # @return [String]
3206
+ attr_accessor :name
3207
+
3208
+ def initialize(**args)
3209
+ update!(**args)
3210
+ end
3211
+
3212
+ # Update properties of this object
3213
+ def update!(**args)
3214
+ @max_sdk_version = args[:max_sdk_version] if args.key?(:max_sdk_version)
3215
+ @name = args[:name] if args.key?(:name)
3216
+ end
3217
+ end
3218
+
3161
3219
  # An Xcode version that an iOS version is compatible with.
3162
3220
  class XcodeVersion
3163
3221
  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.49.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240315"
25
+ REVISION = "20241105"
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
 
@@ -526,6 +532,12 @@ module Google
526
532
  include Google::Apis::Core::JsonObjectSupport
527
533
  end
528
534
 
535
+ class UsesPermissionTag
536
+ class Representation < Google::Apis::Core::JsonRepresentation; end
537
+
538
+ include Google::Apis::Core::JsonObjectSupport
539
+ end
540
+
529
541
  class XcodeVersion
530
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
543
 
@@ -607,6 +619,8 @@ module Google
607
619
  property :form, as: 'form'
608
620
  property :form_factor, as: 'formFactor'
609
621
  property :id, as: 'id'
622
+ property :lab_info, as: 'labInfo', class: Google::Apis::TestingV1::LabInfo, decorator: Google::Apis::TestingV1::LabInfo::Representation
623
+
610
624
  property :low_fps_video_recording, as: 'lowFpsVideoRecording'
611
625
  property :manufacturer, as: 'manufacturer'
612
626
  property :name, as: 'name'
@@ -715,6 +729,8 @@ module Google
715
729
  collection :uses_feature, as: 'usesFeature', class: Google::Apis::TestingV1::UsesFeature, decorator: Google::Apis::TestingV1::UsesFeature::Representation
716
730
 
717
731
  collection :uses_permission, as: 'usesPermission'
732
+ collection :uses_permission_tags, as: 'usesPermissionTags', class: Google::Apis::TestingV1::UsesPermissionTag, decorator: Google::Apis::TestingV1::UsesPermissionTag::Representation
733
+
718
734
  property :version_code, :numeric_string => true, as: 'versionCode'
719
735
  property :version_name, as: 'versionName'
720
736
  end
@@ -1029,6 +1045,13 @@ module Google
1029
1045
  end
1030
1046
  end
1031
1047
 
1048
+ class LabInfo
1049
+ # @private
1050
+ class Representation < Google::Apis::Core::JsonRepresentation
1051
+ property :name, as: 'name'
1052
+ end
1053
+ end
1054
+
1032
1055
  class LauncherActivityIntent
1033
1056
  # @private
1034
1057
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1433,6 +1456,14 @@ module Google
1433
1456
  end
1434
1457
  end
1435
1458
 
1459
+ class UsesPermissionTag
1460
+ # @private
1461
+ class Representation < Google::Apis::Core::JsonRepresentation
1462
+ property :max_sdk_version, as: 'maxSdkVersion'
1463
+ property :name, as: 'name'
1464
+ end
1465
+ end
1466
+
1436
1467
  class XcodeVersion
1437
1468
  # @private
1438
1469
  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.49.0
4
+ version: 0.51.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-05-26 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.51.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Testing API V1