google-apis-androidpublisher_v3 0.73.0 → 0.74.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: ef4b2e82ecc6e0aedd392ec12410331fc8b7258e4128f68afad96abb7411e8a2
|
|
4
|
+
data.tar.gz: 5fe164cc74e05cf38a530d6605be25267d8aa300921911e0276b4e47958caffb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59c0f3ff69539a2d621e284f9a26485552bc4d6844ba732ff954520b984016e40810052747640c081a103e5727a720611ccf26f1933d0d38234763d9fefba43a
|
|
7
|
+
data.tar.gz: fef6653825d9cf0073276f64c09122ab4709a41db3249d4afd0d00be0a164a86b3c0526c4dacc751b45c314bc38d67208bcf7773027ac2e35a5a5e9cc7ccdc70
|
data/CHANGELOG.md
CHANGED
|
@@ -1930,6 +1930,12 @@ module Google
|
|
|
1930
1930
|
# @return [Array<Google::Apis::AndroidpublisherV3::SystemFeature>]
|
|
1931
1931
|
attr_accessor :required_system_features
|
|
1932
1932
|
|
|
1933
|
+
# Optional. The SoCs included by this selector. Only works for Android S+
|
|
1934
|
+
# devices.
|
|
1935
|
+
# Corresponds to the JSON property `systemOnChips`
|
|
1936
|
+
# @return [Array<Google::Apis::AndroidpublisherV3::SystemOnChip>]
|
|
1937
|
+
attr_accessor :system_on_chips
|
|
1938
|
+
|
|
1933
1939
|
def initialize(**args)
|
|
1934
1940
|
update!(**args)
|
|
1935
1941
|
end
|
|
@@ -1941,6 +1947,7 @@ module Google
|
|
|
1941
1947
|
@forbidden_system_features = args[:forbidden_system_features] if args.key?(:forbidden_system_features)
|
|
1942
1948
|
@included_device_ids = args[:included_device_ids] if args.key?(:included_device_ids)
|
|
1943
1949
|
@required_system_features = args[:required_system_features] if args.key?(:required_system_features)
|
|
1950
|
+
@system_on_chips = args[:system_on_chips] if args.key?(:system_on_chips)
|
|
1944
1951
|
end
|
|
1945
1952
|
end
|
|
1946
1953
|
|
|
@@ -6321,6 +6328,36 @@ module Google
|
|
|
6321
6328
|
end
|
|
6322
6329
|
end
|
|
6323
6330
|
|
|
6331
|
+
# Representation of a System-on-Chip (SoC) of an Android device. Can be used to
|
|
6332
|
+
# target S+ devices.
|
|
6333
|
+
class SystemOnChip
|
|
6334
|
+
include Google::Apis::Core::Hashable
|
|
6335
|
+
|
|
6336
|
+
# Required. The designer of the SoC, eg. "Google" Value of build property "ro.
|
|
6337
|
+
# soc.manufacturer" https://developer.android.com/reference/android/os/Build#
|
|
6338
|
+
# SOC_MANUFACTURER Required.
|
|
6339
|
+
# Corresponds to the JSON property `manufacturer`
|
|
6340
|
+
# @return [String]
|
|
6341
|
+
attr_accessor :manufacturer
|
|
6342
|
+
|
|
6343
|
+
# Required. The model of the SoC, eg. "Tensor" Value of build property "ro.soc.
|
|
6344
|
+
# model" https://developer.android.com/reference/android/os/Build#SOC_MODEL
|
|
6345
|
+
# Required.
|
|
6346
|
+
# Corresponds to the JSON property `model`
|
|
6347
|
+
# @return [String]
|
|
6348
|
+
attr_accessor :model
|
|
6349
|
+
|
|
6350
|
+
def initialize(**args)
|
|
6351
|
+
update!(**args)
|
|
6352
|
+
end
|
|
6353
|
+
|
|
6354
|
+
# Update properties of this object
|
|
6355
|
+
def update!(**args)
|
|
6356
|
+
@manufacturer = args[:manufacturer] if args.key?(:manufacturer)
|
|
6357
|
+
@model = args[:model] if args.key?(:model)
|
|
6358
|
+
end
|
|
6359
|
+
end
|
|
6360
|
+
|
|
6324
6361
|
# Targeting details for a recovery action such as regions, android sdk levels,
|
|
6325
6362
|
# app versions etc.
|
|
6326
6363
|
class Targeting
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AndroidpublisherV3
|
|
18
18
|
# Version of the google-apis-androidpublisher_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.74.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20241016"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1216,6 +1216,12 @@ module Google
|
|
|
1216
1216
|
include Google::Apis::Core::JsonObjectSupport
|
|
1217
1217
|
end
|
|
1218
1218
|
|
|
1219
|
+
class SystemOnChip
|
|
1220
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1221
|
+
|
|
1222
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1219
1225
|
class Targeting
|
|
1220
1226
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1221
1227
|
|
|
@@ -2056,6 +2062,8 @@ module Google
|
|
|
2056
2062
|
|
|
2057
2063
|
collection :required_system_features, as: 'requiredSystemFeatures', class: Google::Apis::AndroidpublisherV3::SystemFeature, decorator: Google::Apis::AndroidpublisherV3::SystemFeature::Representation
|
|
2058
2064
|
|
|
2065
|
+
collection :system_on_chips, as: 'systemOnChips', class: Google::Apis::AndroidpublisherV3::SystemOnChip, decorator: Google::Apis::AndroidpublisherV3::SystemOnChip::Representation
|
|
2066
|
+
|
|
2059
2067
|
end
|
|
2060
2068
|
end
|
|
2061
2069
|
|
|
@@ -3331,6 +3339,14 @@ module Google
|
|
|
3331
3339
|
end
|
|
3332
3340
|
end
|
|
3333
3341
|
|
|
3342
|
+
class SystemOnChip
|
|
3343
|
+
# @private
|
|
3344
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3345
|
+
property :manufacturer, as: 'manufacturer'
|
|
3346
|
+
property :model, as: 'model'
|
|
3347
|
+
end
|
|
3348
|
+
end
|
|
3349
|
+
|
|
3334
3350
|
class Targeting
|
|
3335
3351
|
# @private
|
|
3336
3352
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-androidpublisher_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.74.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-10-
|
|
11
|
+
date: 2024-10-27 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-androidpublisher_v3/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.74.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|