google-apis-androidpublisher_v3 0.47.0 → 0.49.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53851f0d42c71e9d6ea7cff25e399dbe9ee66d9099b872e085f49c2b0d276999
4
- data.tar.gz: 2ec3037dc1e4bad8eef2a2ca7e61fbd34e21314976fcb3ea802808b430aaa8d5
3
+ metadata.gz: a82cc5be2470ffdbd8bcc24e1ac364585c6ab1ffc5ee1e2aa978ae866222b2e5
4
+ data.tar.gz: 03e33acf821a36a2d2855928f75bea653e5bd45180cfaad4e92c32c6952dd93f
5
5
  SHA512:
6
- metadata.gz: a37b03d64ba106b198a0742dd10af6dbf09e464bcdd3212890f5602b399c641fd6947f30086c2d009e2b092714a6fa2f8e711d32299120e8ed820799982c07b4
7
- data.tar.gz: 1c2b67963c78b2b8379cffa2bc27f92905d6bc2aa396b3cb12feaba6e6987b2cea7d5f7f210f0bf0302b3a429dcb7da8c464e902cbe66d237ca4836923847d02
6
+ metadata.gz: 4a856f499bf2c172c27b5c5fb7b211529099c4dc0c0234a28a580cea0c3e4070e51cc261616b8ae85bbe854d70a7ffd5869a0772f04d4bcf4a43e0052231eb70
7
+ data.tar.gz: 7af6fc37261c3e07dff7f27f202bae043823331317afde775366c87a20dc4694e4fa94dcab545731f9645e37672703ce991856f353286cdd57e6a82557a6cd53
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.49.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230821
6
+
7
+ ### v0.48.0 (2023-08-13)
8
+
9
+ * Regenerated from discovery document revision 20230806
10
+
3
11
  ### v0.47.0 (2023-08-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20230803
@@ -2590,6 +2590,13 @@ module Google
2590
2590
  # @return [String]
2591
2591
  attr_accessor :eea_withdrawal_right_type
2592
2592
 
2593
+ # Whether this in-app product is declared as a product representing a tokenized
2594
+ # digital asset.
2595
+ # Corresponds to the JSON property `isTokenizedDigitalAsset`
2596
+ # @return [Boolean]
2597
+ attr_accessor :is_tokenized_digital_asset
2598
+ alias_method :is_tokenized_digital_asset?, :is_tokenized_digital_asset
2599
+
2593
2600
  # A mapping from region code to tax rate details. The keys are region codes as
2594
2601
  # defined by Unicode's "CLDR".
2595
2602
  # Corresponds to the JSON property `taxRateInfoByRegionCode`
@@ -2603,6 +2610,7 @@ module Google
2603
2610
  # Update properties of this object
2604
2611
  def update!(**args)
2605
2612
  @eea_withdrawal_right_type = args[:eea_withdrawal_right_type] if args.key?(:eea_withdrawal_right_type)
2613
+ @is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
2606
2614
  @tax_rate_info_by_region_code = args[:tax_rate_info_by_region_code] if args.key?(:tax_rate_info_by_region_code)
2607
2615
  end
2608
2616
  end
@@ -4781,6 +4789,13 @@ module Google
4781
4789
  # @return [String]
4782
4790
  attr_accessor :eea_withdrawal_right_type
4783
4791
 
4792
+ # Whether this subscription is declared as a product representing a tokenized
4793
+ # digital asset.
4794
+ # Corresponds to the JSON property `isTokenizedDigitalAsset`
4795
+ # @return [Boolean]
4796
+ attr_accessor :is_tokenized_digital_asset
4797
+ alias_method :is_tokenized_digital_asset?, :is_tokenized_digital_asset
4798
+
4784
4799
  # A mapping from region code to tax rate details. The keys are region codes as
4785
4800
  # defined by Unicode's "CLDR".
4786
4801
  # Corresponds to the JSON property `taxRateInfoByRegionCode`
@@ -4794,10 +4809,45 @@ module Google
4794
4809
  # Update properties of this object
4795
4810
  def update!(**args)
4796
4811
  @eea_withdrawal_right_type = args[:eea_withdrawal_right_type] if args.key?(:eea_withdrawal_right_type)
4812
+ @is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
4797
4813
  @tax_rate_info_by_region_code = args[:tax_rate_info_by_region_code] if args.key?(:tax_rate_info_by_region_code)
4798
4814
  end
4799
4815
  end
4800
4816
 
4817
+ # Options for system APKs.
4818
+ class SystemApkOptions
4819
+ include Google::Apis::Core::Hashable
4820
+
4821
+ # Whether to use the rotated key for signing the system APK.
4822
+ # Corresponds to the JSON property `rotated`
4823
+ # @return [Boolean]
4824
+ attr_accessor :rotated
4825
+ alias_method :rotated?, :rotated
4826
+
4827
+ # Whether system APK was generated with uncompressed dex files.
4828
+ # Corresponds to the JSON property `uncompressedDexFiles`
4829
+ # @return [Boolean]
4830
+ attr_accessor :uncompressed_dex_files
4831
+ alias_method :uncompressed_dex_files?, :uncompressed_dex_files
4832
+
4833
+ # Whether system APK was generated with uncompressed native libraries.
4834
+ # Corresponds to the JSON property `uncompressedNativeLibraries`
4835
+ # @return [Boolean]
4836
+ attr_accessor :uncompressed_native_libraries
4837
+ alias_method :uncompressed_native_libraries?, :uncompressed_native_libraries
4838
+
4839
+ def initialize(**args)
4840
+ update!(**args)
4841
+ end
4842
+
4843
+ # Update properties of this object
4844
+ def update!(**args)
4845
+ @rotated = args[:rotated] if args.key?(:rotated)
4846
+ @uncompressed_dex_files = args[:uncompressed_dex_files] if args.key?(:uncompressed_dex_files)
4847
+ @uncompressed_native_libraries = args[:uncompressed_native_libraries] if args.key?(:uncompressed_native_libraries)
4848
+ end
4849
+ end
4850
+
4801
4851
  # Response to list previously created system APK variants.
4802
4852
  class SystemApksListResponse
4803
4853
  include Google::Apis::Core::Hashable
@@ -5527,6 +5577,11 @@ module Google
5527
5577
  # @return [Google::Apis::AndroidpublisherV3::DeviceSpec]
5528
5578
  attr_accessor :device_spec
5529
5579
 
5580
+ # Options for system APKs.
5581
+ # Corresponds to the JSON property `options`
5582
+ # @return [Google::Apis::AndroidpublisherV3::SystemApkOptions]
5583
+ attr_accessor :options
5584
+
5530
5585
  # Output only. The ID of a previously created system APK variant.
5531
5586
  # Corresponds to the JSON property `variantId`
5532
5587
  # @return [Fixnum]
@@ -5539,6 +5594,7 @@ module Google
5539
5594
  # Update properties of this object
5540
5595
  def update!(**args)
5541
5596
  @device_spec = args[:device_spec] if args.key?(:device_spec)
5597
+ @options = args[:options] if args.key?(:options)
5542
5598
  @variant_id = args[:variant_id] if args.key?(:variant_id)
5543
5599
  end
5544
5600
  end
@@ -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.47.0"
19
+ GEM_VERSION = "0.49.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 = "20230803"
25
+ REVISION = "20230821"
26
26
  end
27
27
  end
28
28
  end
@@ -880,6 +880,12 @@ module Google
880
880
  include Google::Apis::Core::JsonObjectSupport
881
881
  end
882
882
 
883
+ class SystemApkOptions
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
883
889
  class SystemApksListResponse
884
890
  class Representation < Google::Apis::Core::JsonRepresentation; end
885
891
 
@@ -1849,6 +1855,7 @@ module Google
1849
1855
  # @private
1850
1856
  class Representation < Google::Apis::Core::JsonRepresentation
1851
1857
  property :eea_withdrawal_right_type, as: 'eeaWithdrawalRightType'
1858
+ property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
1852
1859
  hash :tax_rate_info_by_region_code, as: 'taxRateInfoByRegionCode', class: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo::Representation
1853
1860
 
1854
1861
  end
@@ -2467,11 +2474,21 @@ module Google
2467
2474
  # @private
2468
2475
  class Representation < Google::Apis::Core::JsonRepresentation
2469
2476
  property :eea_withdrawal_right_type, as: 'eeaWithdrawalRightType'
2477
+ property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
2470
2478
  hash :tax_rate_info_by_region_code, as: 'taxRateInfoByRegionCode', class: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo::Representation
2471
2479
 
2472
2480
  end
2473
2481
  end
2474
2482
 
2483
+ class SystemApkOptions
2484
+ # @private
2485
+ class Representation < Google::Apis::Core::JsonRepresentation
2486
+ property :rotated, as: 'rotated'
2487
+ property :uncompressed_dex_files, as: 'uncompressedDexFiles'
2488
+ property :uncompressed_native_libraries, as: 'uncompressedNativeLibraries'
2489
+ end
2490
+ end
2491
+
2475
2492
  class SystemApksListResponse
2476
2493
  # @private
2477
2494
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2689,6 +2706,8 @@ module Google
2689
2706
  class Representation < Google::Apis::Core::JsonRepresentation
2690
2707
  property :device_spec, as: 'deviceSpec', class: Google::Apis::AndroidpublisherV3::DeviceSpec, decorator: Google::Apis::AndroidpublisherV3::DeviceSpec::Representation
2691
2708
 
2709
+ property :options, as: 'options', class: Google::Apis::AndroidpublisherV3::SystemApkOptions, decorator: Google::Apis::AndroidpublisherV3::SystemApkOptions::Representation
2710
+
2692
2711
  property :variant_id, as: 'variantId'
2693
2712
  end
2694
2713
  end
@@ -1841,10 +1841,10 @@ module Google
1841
1841
  execute_or_queue_command(command, &block)
1842
1842
  end
1843
1843
 
1844
- # Deletes an in-app product (i.e. a managed product or a subscription). This
1845
- # method should no longer be used to delete subscriptions. See [this article](
1846
- # https://android-developers.googleblog.com/2023/06/changes-to-google-play-
1847
- # developer-api-june-2023.html) for more information.
1844
+ # Deletes an in-app product (a managed product or a subscription). This method
1845
+ # should no longer be used to delete subscriptions. See [this article](https://
1846
+ # android-developers.googleblog.com/2023/06/changes-to-google-play-developer-api-
1847
+ # june-2023.html) for more information.
1848
1848
  # @param [String] package_name
1849
1849
  # Package name of the app.
1850
1850
  # @param [String] sku
@@ -1911,10 +1911,10 @@ module Google
1911
1911
  execute_or_queue_command(command, &block)
1912
1912
  end
1913
1913
 
1914
- # Creates an in-app product (i.e. a managed product or a subscription). This
1915
- # method should no longer be used to create subscriptions. See [this article](
1916
- # https://android-developers.googleblog.com/2023/06/changes-to-google-play-
1917
- # developer-api-june-2023.html) for more information.
1914
+ # Creates an in-app product (a managed product or a subscription). This method
1915
+ # should no longer be used to create subscriptions. See [this article](https://
1916
+ # android-developers.googleblog.com/2023/06/changes-to-google-play-developer-api-
1917
+ # june-2023.html) for more information.
1918
1918
  # @param [String] package_name
1919
1919
  # Package name of the app.
1920
1920
  # @param [Google::Apis::AndroidpublisherV3::InAppProduct] in_app_product_object
@@ -1997,10 +1997,10 @@ module Google
1997
1997
  execute_or_queue_command(command, &block)
1998
1998
  end
1999
1999
 
2000
- # Patches an in-app product (i.e. a managed product or a subscription). This
2001
- # method should no longer be used to update subscriptions. See [this article](
2002
- # https://android-developers.googleblog.com/2023/06/changes-to-google-play-
2003
- # developer-api-june-2023.html) for more information.
2000
+ # Patches an in-app product (a managed product or a subscription). This method
2001
+ # should no longer be used to update subscriptions. See [this article](https://
2002
+ # android-developers.googleblog.com/2023/06/changes-to-google-play-developer-api-
2003
+ # june-2023.html) for more information.
2004
2004
  # @param [String] package_name
2005
2005
  # Package name of the app.
2006
2006
  # @param [String] sku
@@ -2041,10 +2041,10 @@ module Google
2041
2041
  execute_or_queue_command(command, &block)
2042
2042
  end
2043
2043
 
2044
- # Updates an in-app product (i.e. a managed product or a subscription). This
2045
- # method should no longer be used to update subscriptions. See [this article](
2046
- # https://android-developers.googleblog.com/2023/06/changes-to-google-play-
2047
- # developer-api-june-2023.html) for more information.
2044
+ # Updates an in-app product (a managed product or a subscription). This method
2045
+ # should no longer be used to update subscriptions. See [this article](https://
2046
+ # android-developers.googleblog.com/2023/06/changes-to-google-play-developer-api-
2047
+ # june-2023.html) for more information.
2048
2048
  # @param [String] package_name
2049
2049
  # Package name of the app.
2050
2050
  # @param [String] sku
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.47.0
4
+ version: 0.49.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-08-06 00:00:00.000000000 Z
11
+ date: 2023-08-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.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.49.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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Play Android Developer API V3