google-apis-androidpublisher_v3 0.32.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/androidpublisher_v3/classes.rb +34 -1
- data/lib/google/apis/androidpublisher_v3/gem_version.rb +3 -3
- data/lib/google/apis/androidpublisher_v3/representations.rb +16 -0
- data/lib/google/apis/androidpublisher_v3/service.rb +4 -4
- metadata +4 -4
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
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
2
2
|
|
3
|
+
### v0.34.0 (2023-02-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230208
|
6
|
+
|
7
|
+
### v0.33.0 (2023-01-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230123
|
10
|
+
* Regenerated using generator version 0.11.1
|
11
|
+
|
3
12
|
### v0.32.0 (2022-11-19)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221108
|
@@ -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
|
|
@@ -2817,7 +2823,7 @@ module Google
|
|
2817
2823
|
include Google::Apis::Core::Hashable
|
2818
2824
|
|
2819
2825
|
# Required. A string representing version of the available regions being used
|
2820
|
-
# for the specified resource. The current version is 2022/
|
2826
|
+
# for the specified resource. The current version is 2022/02.
|
2821
2827
|
# Corresponds to the JSON property `version`
|
2822
2828
|
# @return [String]
|
2823
2829
|
attr_accessor :version
|
@@ -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
|
-
GENERATOR_VERSION = "0.11.
|
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
|
@@ -2137,7 +2137,7 @@ module Google
|
|
2137
2137
|
# resource.
|
2138
2138
|
# @param [String] regions_version_version
|
2139
2139
|
# Required. A string representing version of the available regions being used
|
2140
|
-
# for the specified resource. The current version is 2022/
|
2140
|
+
# for the specified resource. The current version is 2022/02.
|
2141
2141
|
# @param [String] fields
|
2142
2142
|
# Selector specifying which fields to include in a partial response.
|
2143
2143
|
# @param [String] quota_user
|
@@ -2292,7 +2292,7 @@ module Google
|
|
2292
2292
|
# @param [Google::Apis::AndroidpublisherV3::Subscription] subscription_object
|
2293
2293
|
# @param [String] regions_version_version
|
2294
2294
|
# Required. A string representing version of the available regions being used
|
2295
|
-
# for the specified resource. The current version is 2022/
|
2295
|
+
# for the specified resource. The current version is 2022/02.
|
2296
2296
|
# @param [String] update_mask
|
2297
2297
|
# Required. The list of fields to be updated.
|
2298
2298
|
# @param [String] fields
|
@@ -2548,7 +2548,7 @@ module Google
|
|
2548
2548
|
# see the documentation of the offer_id field on the SubscriptionOffer resource.
|
2549
2549
|
# @param [String] regions_version_version
|
2550
2550
|
# Required. A string representing version of the available regions being used
|
2551
|
-
# for the specified resource. The current version is 2022/
|
2551
|
+
# for the specified resource. The current version is 2022/02.
|
2552
2552
|
# @param [String] fields
|
2553
2553
|
# Selector specifying which fields to include in a partial response.
|
2554
2554
|
# @param [String] quota_user
|
@@ -2767,7 +2767,7 @@ module Google
|
|
2767
2767
|
# @param [Google::Apis::AndroidpublisherV3::SubscriptionOffer] subscription_offer_object
|
2768
2768
|
# @param [String] regions_version_version
|
2769
2769
|
# Required. A string representing version of the available regions being used
|
2770
|
-
# for the specified resource. The current version is 2022/
|
2770
|
+
# for the specified resource. The current version is 2022/02.
|
2771
2771
|
# @param [String] update_mask
|
2772
2772
|
# Required. The list of fields to be updated.
|
2773
2773
|
# @param [String] fields
|
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:
|
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: []
|
@@ -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.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Play Android Developer API V3
|