google-apis-authorizedbuyersmarketplace_v1alpha 0.2.0 → 0.4.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: 7620a4dec50aa45ef60bdb7f7fab826c6ed934fc54308d77ac2061068c7f3a6f
4
- data.tar.gz: 6b47e486a8588e042a7d1892d6dd109e7f5852afef5622c4a813abc566f421e3
3
+ metadata.gz: d83a9e1d5aa057f04827fce4aa4ff35fc2590f1eacac519f14dd370a04d5d57b
4
+ data.tar.gz: 8097d25272daca22270249e4951fd47e32e0f384eda2b5f1e7740e9450368069
5
5
  SHA512:
6
- metadata.gz: 1907827232fae1072346b4f189ef5b3d3c9f7ffa54aaa1c261c403512b85408d3120cdbc09e42924df7317bcbc6a0880cdd4b65cee3e7d6d58ff768294c1b054
7
- data.tar.gz: 33d8c92659a19ebba497a87cfb02b4912f15a3997588267b58d4cb7014d77982e41e4255bb5f372290808a5a8d70453a16ede020412fa4154b06f1cda990f1be
6
+ metadata.gz: 65a0e18171a2b5e16be1b653c7b33768aaea874475cb560c6e7c4450d3cda07e9bffaff5b00e96794d99112bd6cc82458a2a082bded64a6a0b244762b76953bf
7
+ data.tar.gz: 5ecbfda2402327a95601d3291c993589e326994f2cf62ed66652a17e7c05efa46fddd0e4692a12727d72afed8b6e7ec90b6b9c0477ed203987f05c10231e06fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-authorizedbuyersmarketplace_v1alpha
2
2
 
3
+ ### v0.4.0 (2025-01-19)
4
+
5
+ * Regenerated from discovery document revision 20250113
6
+
7
+ ### v0.3.0 (2025-01-12)
8
+
9
+ * Regenerated from discovery document revision 20250107
10
+ * Regenerated using generator version 0.16.0
11
+
3
12
  ### v0.2.0 (2024-12-02)
4
13
 
5
14
  * Regenerated from discovery document revision 20241120
@@ -171,6 +171,13 @@ module Google
171
171
  # @return [String]
172
172
  attr_accessor :creator
173
173
 
174
+ # Output only. If set, this field contains the DSP specific seat id set by the
175
+ # media planner account that is considered the owner of this deal. The seat ID
176
+ # is in the calling DSP's namespace.
177
+ # Corresponds to the JSON property `dealOwnerSeatId`
178
+ # @return [String]
179
+ attr_accessor :deal_owner_seat_id
180
+
174
181
  # Output only. A description of the auction package.
175
182
  # Corresponds to the JSON property `description`
176
183
  # @return [String]
@@ -181,9 +188,9 @@ module Google
181
188
  # @return [String]
182
189
  attr_accessor :display_name
183
190
 
184
- # Output only. If set, this field contains the list of DSP specific seat ids set
185
- # by media planners that are eligible to transact on this deal. The seat ID is
186
- # in the calling DSP's namespace.
191
+ # Output only. If set, this field identifies a seat that the media planner
192
+ # selected as the owner of this auction package. This is a seat ID in the DSP's
193
+ # namespace that was provided to the media planner.
187
194
  # Corresponds to the JSON property `eligibleSeatIds`
188
195
  # @return [Array<String>]
189
196
  attr_accessor :eligible_seat_ids
@@ -232,6 +239,7 @@ module Google
232
239
  def update!(**args)
233
240
  @create_time = args[:create_time] if args.key?(:create_time)
234
241
  @creator = args[:creator] if args.key?(:creator)
242
+ @deal_owner_seat_id = args[:deal_owner_seat_id] if args.key?(:deal_owner_seat_id)
235
243
  @description = args[:description] if args.key?(:description)
236
244
  @display_name = args[:display_name] if args.key?(:display_name)
237
245
  @eligible_seat_ids = args[:eligible_seat_ids] if args.key?(:eligible_seat_ids)
@@ -1632,8 +1640,7 @@ module Google
1632
1640
  end
1633
1641
  end
1634
1642
 
1635
- # Buyers are allowed to store certain types of private data in a proposal or
1636
- # deal.
1643
+ # Buyers are allowed to store certain types of private data in a proposal.
1637
1644
  class PrivateData
1638
1645
  include Google::Apis::Core::Hashable
1639
1646
 
@@ -1733,8 +1740,7 @@ module Google
1733
1740
  # @return [Array<Google::Apis::AuthorizedbuyersmarketplaceV1alpha::Contact>]
1734
1741
  attr_accessor :buyer_contacts
1735
1742
 
1736
- # Buyers are allowed to store certain types of private data in a proposal or
1737
- # deal.
1743
+ # Buyers are allowed to store certain types of private data in a proposal.
1738
1744
  # Corresponds to the JSON property `buyerPrivateData`
1739
1745
  # @return [Google::Apis::AuthorizedbuyersmarketplaceV1alpha::PrivateData]
1740
1746
  attr_accessor :buyer_private_data
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AuthorizedbuyersmarketplaceV1alpha
18
18
  # Version of the google-apis-authorizedbuyersmarketplace_v1alpha gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.4.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 = "20241120"
25
+ REVISION = "20250113"
26
26
  end
27
27
  end
28
28
  end
@@ -490,6 +490,7 @@ module Google
490
490
  class Representation < Google::Apis::Core::JsonRepresentation
491
491
  property :create_time, as: 'createTime'
492
492
  property :creator, as: 'creator'
493
+ property :deal_owner_seat_id, as: 'dealOwnerSeatId'
493
494
  property :description, as: 'description'
494
495
  property :display_name, as: 'displayName'
495
496
  collection :eligible_seat_ids, as: 'eligibleSeatIds'
@@ -1498,7 +1498,8 @@ module Google
1498
1498
  # the UpdateProposalRequest.update_mask will be updated; Fields noted as '
1499
1499
  # Immutable' or 'Output only' yet specified in the UpdateProposalRequest.
1500
1500
  # update_mask will be ignored and left unchanged. Updating a private auction
1501
- # proposal is not allowed and will result in an error.
1501
+ # proposal is only allowed for buyer private data, all other fields are
1502
+ # immutable.
1502
1503
  # @param [String] name
1503
1504
  # Immutable. The name of the proposal serving as a unique identifier. Format:
1504
1505
  # buyers/`accountId`/proposals/`proposalId`
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-authorizedbuyersmarketplace_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.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-04 00:00:00.000000000 Z
10
+ date: 2025-03-02 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-authorizedbuyersmarketplace_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-authorizedbuyersmarketplace_v1alpha/v0.2.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-authorizedbuyersmarketplace_v1alpha/v0.4.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-authorizedbuyersmarketplace_v1alpha
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.22
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Authorized Buyers Marketplace API V1alpha
82
79
  test_files: []