google-apis-androidpublisher_v3 0.41.0 → 0.43.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: 34eef0171a9b433aa17991bb47b958f553ebaf3ee927d3eadf83ed9504aaef01
4
- data.tar.gz: 0a33e4964eab11ced8e169c9bee4ce313790b18929afa161d24ce4791853932d
3
+ metadata.gz: f54b0e23b9825b7cd1c6efa2aa0c7d541b1ac9cd1920fd28b0392f9fda3e4a92
4
+ data.tar.gz: da661a43d7ba1de8559b5fba6ccaab4f6b8a7d34bfeca4e66a400bd0e2e9b6f2
5
5
  SHA512:
6
- metadata.gz: 37105a336b475b789945e525b6f7015550b82f6adf01eaffc342f37c882f80230c3c51eaa94f6fe4b8ddc5feeae693b3ef9d2a2dc32ad33473e82454e4928b56
7
- data.tar.gz: 9c66cda5436f72e78104d5e302367f6543923adde9d6f7beb4a6df1280f3d2ff84c80c51ece9f2aab7849c078a905755aec5c417b4cb701ad2504e713b3af82b
6
+ metadata.gz: b149fea6c2c5f951814e49ae89d23b50164ecd5dd0c3290abc1af91aa475f29b4036198c4f01edcec68462ae21149e9c0181d62070142129d8f7bcc2023a9beb
7
+ data.tar.gz: f7ce98d9c1bd44174e13f28ed79d7856a77518941a11d6df394b7d460510f4751caa5def946e466dd797fe6743ad9f52cb320f1124e0322427ebacc311e859b9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.43.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230606
6
+
7
+ ### v0.42.0 (2023-05-14)
8
+
9
+ * Regenerated from discovery document revision 20230511
10
+
3
11
  ### v0.41.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230425
@@ -722,6 +722,25 @@ module Google
722
722
  end
723
723
  end
724
724
 
725
+ # Information related to deferred item replacement.
726
+ class DeferredItemReplacement
727
+ include Google::Apis::Core::Hashable
728
+
729
+ # The product_id going to replace the existing product_id.
730
+ # Corresponds to the JSON property `productId`
731
+ # @return [String]
732
+ attr_accessor :product_id
733
+
734
+ def initialize(**args)
735
+ update!(**args)
736
+ end
737
+
738
+ # Update properties of this object
739
+ def update!(**args)
740
+ @product_id = args[:product_id] if args.key?(:product_id)
741
+ end
742
+ end
743
+
725
744
  # Represents a deobfuscation file.
726
745
  class DeobfuscationFile
727
746
  include Google::Apis::Core::Hashable
@@ -2302,7 +2321,11 @@ module Google
2302
2321
  # @return [Array<Google::Apis::AndroidpublisherV3::RegionalPriceMigrationConfig>]
2303
2322
  attr_accessor :regional_price_migrations
2304
2323
 
2305
- # The version of the available regions being used for the specified resource.
2324
+ # The version of the available regions being used for the specified resource. A
2325
+ # string representing the version of available regions being used for the
2326
+ # specified resource. Regional prices for the resource have to be specified
2327
+ # according to the information published in [this article](https://support.
2328
+ # google.com/googleplay/android-developer/answer/10532353).
2306
2329
  # Corresponds to the JSON property `regionsVersion`
2307
2330
  # @return [Google::Apis::AndroidpublisherV3::RegionsVersion]
2308
2331
  attr_accessor :regions_version
@@ -3094,12 +3117,15 @@ module Google
3094
3117
  end
3095
3118
  end
3096
3119
 
3097
- # The version of the available regions being used for the specified resource.
3120
+ # The version of the available regions being used for the specified resource. A
3121
+ # string representing the version of available regions being used for the
3122
+ # specified resource. Regional prices for the resource have to be specified
3123
+ # according to the information published in [this article](https://support.
3124
+ # google.com/googleplay/android-developer/answer/10532353).
3098
3125
  class RegionsVersion
3099
3126
  include Google::Apis::Core::Hashable
3100
3127
 
3101
- # Required. A string representing version of the available regions being used
3102
- # for the specified resource. The current version is 2022/02.
3128
+ # Required. The latest version is 2022/02.
3103
3129
  # Corresponds to the JSON property `version`
3104
3130
  # @return [String]
3105
3131
  attr_accessor :version
@@ -3940,6 +3966,11 @@ module Google
3940
3966
  # @return [Google::Apis::AndroidpublisherV3::AutoRenewingPlan]
3941
3967
  attr_accessor :auto_renewing_plan
3942
3968
 
3969
+ # Information related to deferred item replacement.
3970
+ # Corresponds to the JSON property `deferredItemReplacement`
3971
+ # @return [Google::Apis::AndroidpublisherV3::DeferredItemReplacement]
3972
+ attr_accessor :deferred_item_replacement
3973
+
3943
3974
  # Time at which the subscription expired or will expire unless the access is
3944
3975
  # extended (ex. renews).
3945
3976
  # Corresponds to the JSON property `expiryTime`
@@ -3968,6 +3999,7 @@ module Google
3968
3999
  # Update properties of this object
3969
4000
  def update!(**args)
3970
4001
  @auto_renewing_plan = args[:auto_renewing_plan] if args.key?(:auto_renewing_plan)
4002
+ @deferred_item_replacement = args[:deferred_item_replacement] if args.key?(:deferred_item_replacement)
3971
4003
  @expiry_time = args[:expiry_time] if args.key?(:expiry_time)
3972
4004
  @offer_details = args[:offer_details] if args.key?(:offer_details)
3973
4005
  @prepaid_plan = args[:prepaid_plan] if args.key?(:prepaid_plan)
@@ -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.41.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230425"
25
+ REVISION = "20230606"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class DeferredItemReplacement
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class DeobfuscationFile
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -1114,6 +1120,13 @@ module Google
1114
1120
  end
1115
1121
  end
1116
1122
 
1123
+ class DeferredItemReplacement
1124
+ # @private
1125
+ class Representation < Google::Apis::Core::JsonRepresentation
1126
+ property :product_id, as: 'productId'
1127
+ end
1128
+ end
1129
+
1117
1130
  class DeobfuscationFile
1118
1131
  # @private
1119
1132
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2026,6 +2039,8 @@ module Google
2026
2039
  class Representation < Google::Apis::Core::JsonRepresentation
2027
2040
  property :auto_renewing_plan, as: 'autoRenewingPlan', class: Google::Apis::AndroidpublisherV3::AutoRenewingPlan, decorator: Google::Apis::AndroidpublisherV3::AutoRenewingPlan::Representation
2028
2041
 
2042
+ property :deferred_item_replacement, as: 'deferredItemReplacement', class: Google::Apis::AndroidpublisherV3::DeferredItemReplacement, decorator: Google::Apis::AndroidpublisherV3::DeferredItemReplacement::Representation
2043
+
2029
2044
  property :expiry_time, as: 'expiryTime'
2030
2045
  property :offer_details, as: 'offerDetails', class: Google::Apis::AndroidpublisherV3::OfferDetails, decorator: Google::Apis::AndroidpublisherV3::OfferDetails::Representation
2031
2046
 
@@ -2245,8 +2245,7 @@ module Google
2245
2245
  # format, see the documentation of the product_id field on the Subscription
2246
2246
  # resource.
2247
2247
  # @param [String] regions_version_version
2248
- # Required. A string representing version of the available regions being used
2249
- # for the specified resource. The current version is 2022/02.
2248
+ # Required. The latest version is 2022/02.
2250
2249
  # @param [String] fields
2251
2250
  # Selector specifying which fields to include in a partial response.
2252
2251
  # @param [String] quota_user
@@ -2400,8 +2399,7 @@ module Google
2400
2399
  # and be between 1 and 40 (inclusive) characters in length.
2401
2400
  # @param [Google::Apis::AndroidpublisherV3::Subscription] subscription_object
2402
2401
  # @param [String] regions_version_version
2403
- # Required. A string representing version of the available regions being used
2404
- # for the specified resource. The current version is 2022/02.
2402
+ # Required. The latest version is 2022/02.
2405
2403
  # @param [String] update_mask
2406
2404
  # Required. The list of fields to be updated.
2407
2405
  # @param [String] fields
@@ -2656,8 +2654,7 @@ module Google
2656
2654
  # Required. The ID to use for the offer. For the requirements on this format,
2657
2655
  # see the documentation of the offer_id field on the SubscriptionOffer resource.
2658
2656
  # @param [String] regions_version_version
2659
- # Required. A string representing version of the available regions being used
2660
- # for the specified resource. The current version is 2022/02.
2657
+ # Required. The latest version is 2022/02.
2661
2658
  # @param [String] fields
2662
2659
  # Selector specifying which fields to include in a partial response.
2663
2660
  # @param [String] quota_user
@@ -2875,8 +2872,7 @@ module Google
2875
2872
  # within the base plan.
2876
2873
  # @param [Google::Apis::AndroidpublisherV3::SubscriptionOffer] subscription_offer_object
2877
2874
  # @param [String] regions_version_version
2878
- # Required. A string representing version of the available regions being used
2879
- # for the specified resource. The current version is 2022/02.
2875
+ # Required. The latest version is 2022/02.
2880
2876
  # @param [String] update_mask
2881
2877
  # Required. The list of fields to be updated.
2882
2878
  # @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.41.0
4
+ version: 0.43.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-04-30 00:00:00.000000000 Z
11
+ date: 2023-06-11 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.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.43.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: []