google-apis-testing_v1 0.50.0 → 0.52.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: 78b2ffb8562b83e3f0b5e0f55e05325bab55719e0ea142213fb98dade7cbf2e6
|
4
|
+
data.tar.gz: 7c9819edc5003a42b799857b1aa92578416b9ef91b9d51dbe51285ac7f43206e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d36ff3aef7e5a62e7e679055acc0a1eee11fd17cfcb1512a844d5099501e08e2c35ccdd4e826b400e9a1b5846962f600040884a993d5f51fdf31d7c10a74e885
|
7
|
+
data.tar.gz: ef033d6339f6c5a2eec692437471c9ad0406084b658eef9755d2bd4d64491df10b4f529763b4be1dbf78608af982ff3a1c01cfa3e4a69fbbad596158e54b8901
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-testing_v1
|
2
2
|
|
3
|
+
### v0.52.0 (2025-03-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250304
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.51.0 (2024-11-17)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241105
|
11
|
+
|
3
12
|
### v0.50.0 (2024-09-22)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240917
|
@@ -714,11 +714,16 @@ module Google
|
|
714
714
|
# @return [Array<Google::Apis::TestingV1::UsesFeature>]
|
715
715
|
attr_accessor :uses_feature
|
716
716
|
|
717
|
-
#
|
717
|
+
#
|
718
718
|
# Corresponds to the JSON property `usesPermission`
|
719
719
|
# @return [Array<String>]
|
720
720
|
attr_accessor :uses_permission
|
721
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
|
+
|
722
727
|
# Version number used internally by the app.
|
723
728
|
# Corresponds to the JSON property `versionCode`
|
724
729
|
# @return [Fixnum]
|
@@ -745,6 +750,7 @@ module Google
|
|
745
750
|
@target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
|
746
751
|
@uses_feature = args[:uses_feature] if args.key?(:uses_feature)
|
747
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)
|
748
754
|
@version_code = args[:version_code] if args.key?(:version_code)
|
749
755
|
@version_name = args[:version_name] if args.key?(:version_name)
|
750
756
|
end
|
@@ -1776,6 +1782,12 @@ module Google
|
|
1776
1782
|
# @return [String]
|
1777
1783
|
attr_accessor :name
|
1778
1784
|
|
1785
|
+
# The Unicode country/region code (CLDR) of the lab where the device is hosted.
|
1786
|
+
# E.g. "US" for United States, "CH" for Switzerland.
|
1787
|
+
# Corresponds to the JSON property `regionCode`
|
1788
|
+
# @return [String]
|
1789
|
+
attr_accessor :region_code
|
1790
|
+
|
1779
1791
|
def initialize(**args)
|
1780
1792
|
update!(**args)
|
1781
1793
|
end
|
@@ -1783,6 +1795,7 @@ module Google
|
|
1783
1795
|
# Update properties of this object
|
1784
1796
|
def update!(**args)
|
1785
1797
|
@name = args[:name] if args.key?(:name)
|
1798
|
+
@region_code = args[:region_code] if args.key?(:region_code)
|
1786
1799
|
end
|
1787
1800
|
end
|
1788
1801
|
|
@@ -3184,6 +3197,32 @@ module Google
|
|
3184
3197
|
end
|
3185
3198
|
end
|
3186
3199
|
|
3200
|
+
# The tag within a manifest. https://developer.android.com/guide/topics/manifest/
|
3201
|
+
# uses-permission-element.html
|
3202
|
+
class UsesPermissionTag
|
3203
|
+
include Google::Apis::Core::Hashable
|
3204
|
+
|
3205
|
+
# The android:name value
|
3206
|
+
# Corresponds to the JSON property `maxSdkVersion`
|
3207
|
+
# @return [Fixnum]
|
3208
|
+
attr_accessor :max_sdk_version
|
3209
|
+
|
3210
|
+
# The android:name value
|
3211
|
+
# Corresponds to the JSON property `name`
|
3212
|
+
# @return [String]
|
3213
|
+
attr_accessor :name
|
3214
|
+
|
3215
|
+
def initialize(**args)
|
3216
|
+
update!(**args)
|
3217
|
+
end
|
3218
|
+
|
3219
|
+
# Update properties of this object
|
3220
|
+
def update!(**args)
|
3221
|
+
@max_sdk_version = args[:max_sdk_version] if args.key?(:max_sdk_version)
|
3222
|
+
@name = args[:name] if args.key?(:name)
|
3223
|
+
end
|
3224
|
+
end
|
3225
|
+
|
3187
3226
|
# An Xcode version that an iOS version is compatible with.
|
3188
3227
|
class XcodeVersion
|
3189
3228
|
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.52.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250304"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -532,6 +532,12 @@ module Google
|
|
532
532
|
include Google::Apis::Core::JsonObjectSupport
|
533
533
|
end
|
534
534
|
|
535
|
+
class UsesPermissionTag
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
|
+
|
538
|
+
include Google::Apis::Core::JsonObjectSupport
|
539
|
+
end
|
540
|
+
|
535
541
|
class XcodeVersion
|
536
542
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
543
|
|
@@ -723,6 +729,8 @@ module Google
|
|
723
729
|
collection :uses_feature, as: 'usesFeature', class: Google::Apis::TestingV1::UsesFeature, decorator: Google::Apis::TestingV1::UsesFeature::Representation
|
724
730
|
|
725
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
|
+
|
726
734
|
property :version_code, :numeric_string => true, as: 'versionCode'
|
727
735
|
property :version_name, as: 'versionName'
|
728
736
|
end
|
@@ -1041,6 +1049,7 @@ module Google
|
|
1041
1049
|
# @private
|
1042
1050
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1043
1051
|
property :name, as: 'name'
|
1052
|
+
property :region_code, as: 'regionCode'
|
1044
1053
|
end
|
1045
1054
|
end
|
1046
1055
|
|
@@ -1448,6 +1457,14 @@ module Google
|
|
1448
1457
|
end
|
1449
1458
|
end
|
1450
1459
|
|
1460
|
+
class UsesPermissionTag
|
1461
|
+
# @private
|
1462
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1463
|
+
property :max_sdk_version, as: 'maxSdkVersion'
|
1464
|
+
property :name, as: 'name'
|
1465
|
+
end
|
1466
|
+
end
|
1467
|
+
|
1451
1468
|
class XcodeVersion
|
1452
1469
|
# @private
|
1453
1470
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.52.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-09 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.52.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Testing API V1
|
82
79
|
test_files: []
|