google-apis-androidpublisher_v3 0.33.0 → 0.34.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: 20da7c73cfad980bcd1c044e133198874d6d2de999dafc7c1a05929b991ac901
|
4
|
+
data.tar.gz: 290d0d06875de8be4cad922614b80e6fd3e5248866620b43886f98dce2d40c41
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6e85a427e268ef3a2c7f7ee3b9733278d854e9de9af52fb8cb8372d384b330b3da2ebf40fcfb846970db63b90c80981e2f396b9e3a38883795fe016d912a5e1
|
7
|
+
data.tar.gz: 11e0f6f3a82fb2b0fcc28d419d7a517a0c437cc9eb8f43984b20d6d893ff540620fdccc42764a5706b704042f828ba9573e5b4ac14b5bc3c844ab0eda0ec1d65
|
data/CHANGELOG.md
CHANGED
@@ -1100,6 +1100,11 @@ module Google
|
|
1100
1100
|
# @return [Google::Apis::AndroidpublisherV3::DeviceTierSet]
|
1101
1101
|
attr_accessor :device_tier_set
|
1102
1102
|
|
1103
|
+
# Definition of user country sets for the app.
|
1104
|
+
# Corresponds to the JSON property `userCountrySets`
|
1105
|
+
# @return [Array<Google::Apis::AndroidpublisherV3::UserCountrySet>]
|
1106
|
+
attr_accessor :user_country_sets
|
1107
|
+
|
1103
1108
|
def initialize(**args)
|
1104
1109
|
update!(**args)
|
1105
1110
|
end
|
@@ -1109,6 +1114,7 @@ module Google
|
|
1109
1114
|
@device_groups = args[:device_groups] if args.key?(:device_groups)
|
1110
1115
|
@device_tier_config_id = args[:device_tier_config_id] if args.key?(:device_tier_config_id)
|
1111
1116
|
@device_tier_set = args[:device_tier_set] if args.key?(:device_tier_set)
|
1117
|
+
@user_country_sets = args[:user_country_sets] if args.key?(:user_country_sets)
|
1112
1118
|
end
|
1113
1119
|
end
|
1114
1120
|
|
@@ -4421,6 +4427,33 @@ module Google
|
|
4421
4427
|
end
|
4422
4428
|
end
|
4423
4429
|
|
4430
|
+
# A set of user countries. A country set determines what variation of app
|
4431
|
+
# content gets served to a specific location.
|
4432
|
+
class UserCountrySet
|
4433
|
+
include Google::Apis::Core::Hashable
|
4434
|
+
|
4435
|
+
# List of country codes representing countries. A Country code is represented in
|
4436
|
+
# ISO 3166 alpha-2 format. For Example:- "IT" for Italy, "GE" for Georgia.
|
4437
|
+
# Corresponds to the JSON property `countryCodes`
|
4438
|
+
# @return [Array<String>]
|
4439
|
+
attr_accessor :country_codes
|
4440
|
+
|
4441
|
+
# Country set name.
|
4442
|
+
# Corresponds to the JSON property `name`
|
4443
|
+
# @return [String]
|
4444
|
+
attr_accessor :name
|
4445
|
+
|
4446
|
+
def initialize(**args)
|
4447
|
+
update!(**args)
|
4448
|
+
end
|
4449
|
+
|
4450
|
+
# Update properties of this object
|
4451
|
+
def update!(**args)
|
4452
|
+
@country_codes = args[:country_codes] if args.key?(:country_codes)
|
4453
|
+
@name = args[:name] if args.key?(:name)
|
4454
|
+
end
|
4455
|
+
end
|
4456
|
+
|
4424
4457
|
# Information specific to cancellations initiated by users.
|
4425
4458
|
class UserInitiatedCancellation
|
4426
4459
|
include Google::Apis::Core::Hashable
|
@@ -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.34.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 = "
|
25
|
+
REVISION = "20230208"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -790,6 +790,12 @@ module Google
|
|
790
790
|
include Google::Apis::Core::JsonObjectSupport
|
791
791
|
end
|
792
792
|
|
793
|
+
class UserCountrySet
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
|
+
|
796
|
+
include Google::Apis::Core::JsonObjectSupport
|
797
|
+
end
|
798
|
+
|
793
799
|
class UserInitiatedCancellation
|
794
800
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
801
|
|
@@ -1167,6 +1173,8 @@ module Google
|
|
1167
1173
|
property :device_tier_config_id, :numeric_string => true, as: 'deviceTierConfigId'
|
1168
1174
|
property :device_tier_set, as: 'deviceTierSet', class: Google::Apis::AndroidpublisherV3::DeviceTierSet, decorator: Google::Apis::AndroidpublisherV3::DeviceTierSet::Representation
|
1169
1175
|
|
1176
|
+
collection :user_country_sets, as: 'userCountrySets', class: Google::Apis::AndroidpublisherV3::UserCountrySet, decorator: Google::Apis::AndroidpublisherV3::UserCountrySet::Representation
|
1177
|
+
|
1170
1178
|
end
|
1171
1179
|
end
|
1172
1180
|
|
@@ -2090,6 +2098,14 @@ module Google
|
|
2090
2098
|
end
|
2091
2099
|
end
|
2092
2100
|
|
2101
|
+
class UserCountrySet
|
2102
|
+
# @private
|
2103
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2104
|
+
collection :country_codes, as: 'countryCodes'
|
2105
|
+
property :name, as: 'name'
|
2106
|
+
end
|
2107
|
+
end
|
2108
|
+
|
2093
2109
|
class UserInitiatedCancellation
|
2094
2110
|
# @private
|
2095
2111
|
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.34.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-
|
11
|
+
date: 2023-02-12 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.34.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: []
|