google-apis-paymentsresellersubscription_v1 0.45.0 → 0.47.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: 5f9b69cfe4bc84e9eb1d7092c367789e1517ba439d65186931f66eede2749b3c
4
- data.tar.gz: dd3cd5d8fe04ea39ce31cbff44c76998be1f23d6e44b2ee4a3c083e2bbe4f929
3
+ metadata.gz: e9e261fff3ebdeac9e64a9647457e5d43eaaa54684cb28033993f8c2ba020bcf
4
+ data.tar.gz: 51baa59a0f80651e914520cee0a1d139637796849e1037f64bfeec2e255fbbd9
5
5
  SHA512:
6
- metadata.gz: 4bf85fa29fd5222436b127c581eb44a8c0a6eb8eee02ec2bed9e02032b7e10c2db77da7be72f7bb7b9d1c5601fcd0ef8b8e28f36cf19b156821f6436bb538f88
7
- data.tar.gz: 610687facfc086b722b6d0e2899e74dd4c605fd61f1a304a1f6e82c772905922883820ae43438947b79963fab336db2465de27cd324878dd0c7e84bc872bce92
6
+ metadata.gz: ecf996c7592046b6fe3e518a812d92f797047ea59f25dcdb559490dff6fb6e0705d0b7f64922fadefc70f2408cac04903e5b5925c683980dcde2c96daa1f1fda
7
+ data.tar.gz: 40c3d8d6bd0b50db9aecdc34d9d9f8652658dcdf854130aa905d3bd10b00a770de9c582f28fe1165558a6e29bbd64c4a9f9d6f4953ba62fa3aaedd47ec651570
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-paymentsresellersubscription_v1
2
2
 
3
+ ### v0.47.0 (2025-03-09)
4
+
5
+ * Regenerated from discovery document revision 20250302
6
+
7
+ ### v0.46.0 (2025-02-26)
8
+
9
+ * Regenerated from discovery document revision 20250212
10
+ * Regenerated using generator version 0.16.0
11
+
3
12
  ### v0.45.0 (2024-12-15)
4
13
 
5
14
  * Regenerated from discovery document revision 20241211
@@ -502,6 +502,35 @@ module Google
502
502
  end
503
503
  end
504
504
 
505
+ # Payload specific for Google Home products.
506
+ class GoogleCloudPaymentsResellerSubscriptionV1GoogleHomePayload
507
+ include Google::Apis::Core::Hashable
508
+
509
+ # Output only. Output only. This identifies whether the subscription is attached
510
+ # to a Google Home structure.
511
+ # Corresponds to the JSON property `attachedToGoogleStructure`
512
+ # @return [Boolean]
513
+ attr_accessor :attached_to_google_structure
514
+ alias_method :attached_to_google_structure?, :attached_to_google_structure
515
+
516
+ # Optional. This identifies the structure ID on partner side that the
517
+ # subscription should be applied to. Only required when the partner requires
518
+ # structure mapping.
519
+ # Corresponds to the JSON property `partnerStructureId`
520
+ # @return [String]
521
+ attr_accessor :partner_structure_id
522
+
523
+ def initialize(**args)
524
+ update!(**args)
525
+ end
526
+
527
+ # Update properties of this object
528
+ def update!(**args)
529
+ @attached_to_google_structure = args[:attached_to_google_structure] if args.key?(:attached_to_google_structure)
530
+ @partner_structure_id = args[:partner_structure_id] if args.key?(:partner_structure_id)
531
+ end
532
+ end
533
+
505
534
  # Payload specific to Google One products.
506
535
  class GoogleCloudPaymentsResellerSubscriptionV1GoogleOnePayload
507
536
  include Google::Apis::Core::Hashable
@@ -729,6 +758,11 @@ module Google
729
758
  class GoogleCloudPaymentsResellerSubscriptionV1ProductPayload
730
759
  include Google::Apis::Core::Hashable
731
760
 
761
+ # Payload specific for Google Home products.
762
+ # Corresponds to the JSON property `googleHomePayload`
763
+ # @return [Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1GoogleHomePayload]
764
+ attr_accessor :google_home_payload
765
+
732
766
  # Payload specific to Google One products.
733
767
  # Corresponds to the JSON property `googleOnePayload`
734
768
  # @return [Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1GoogleOnePayload]
@@ -745,6 +779,7 @@ module Google
745
779
 
746
780
  # Update properties of this object
747
781
  def update!(**args)
782
+ @google_home_payload = args[:google_home_payload] if args.key?(:google_home_payload)
748
783
  @google_one_payload = args[:google_one_payload] if args.key?(:google_one_payload)
749
784
  @youtube_payload = args[:youtube_payload] if args.key?(:youtube_payload)
750
785
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PaymentsresellersubscriptionV1
18
18
  # Version of the google-apis-paymentsresellersubscription_v1 gem
19
- GEM_VERSION = "0.45.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241211"
25
+ REVISION = "20250302"
26
26
  end
27
27
  end
28
28
  end
@@ -124,6 +124,12 @@ module Google
124
124
  include Google::Apis::Core::JsonObjectSupport
125
125
  end
126
126
 
127
+ class GoogleCloudPaymentsResellerSubscriptionV1GoogleHomePayload
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
127
133
  class GoogleCloudPaymentsResellerSubscriptionV1GoogleOnePayload
128
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
135
 
@@ -433,6 +439,14 @@ module Google
433
439
  end
434
440
  end
435
441
 
442
+ class GoogleCloudPaymentsResellerSubscriptionV1GoogleHomePayload
443
+ # @private
444
+ class Representation < Google::Apis::Core::JsonRepresentation
445
+ property :attached_to_google_structure, as: 'attachedToGoogleStructure'
446
+ property :partner_structure_id, as: 'partnerStructureId'
447
+ end
448
+ end
449
+
436
450
  class GoogleCloudPaymentsResellerSubscriptionV1GoogleOnePayload
437
451
  # @private
438
452
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -508,6 +522,8 @@ module Google
508
522
  class GoogleCloudPaymentsResellerSubscriptionV1ProductPayload
509
523
  # @private
510
524
  class Representation < Google::Apis::Core::JsonRepresentation
525
+ property :google_home_payload, as: 'googleHomePayload', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1GoogleHomePayload, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1GoogleHomePayload::Representation
526
+
511
527
  property :google_one_payload, as: 'googleOnePayload', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1GoogleOnePayload, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1GoogleOnePayload::Representation
512
528
 
513
529
  property :youtube_payload, as: 'youtubePayload', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1YoutubePayload, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1YoutubePayload::Representation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-paymentsresellersubscription_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-03-09 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-paymentsresellersubscription_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-paymentsresellersubscription_v1/v0.45.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-paymentsresellersubscription_v1/v0.47.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-paymentsresellersubscription_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Payments Reseller Subscription API V1
82
79
  test_files: []