google-apis-authorizedbuyersmarketplace_v1 0.35.0 → 0.37.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: 574a7b84a695ef2e87bce2c2e759c6f866d28b9cd4106b6e648dc1e049018d7b
4
- data.tar.gz: 717fa143d4896a38a54784f184dae832f4931214903d5d1c53951c8d42b55e91
3
+ metadata.gz: d4867eecac57d972a1df71fee7fe307c747df0df34d74bd4f2fccc442a65fca1
4
+ data.tar.gz: 043a31cb48dcd1327d05b2dfbee0780c9c1e150e260843b04699ec3f01ad98f9
5
5
  SHA512:
6
- metadata.gz: 2b47728701b5e448d02a5800a31acdd542b55834607249adfa588399974feb89c65fad412f14f8523fc9742c282835422be54bbafb386d124b24f2b7bf59dfd8
7
- data.tar.gz: 61f0c17102bf1286e3dd2d1ec1277f866630e8153d62e7fd80b3cfdc5addb996e1edb5842429345e1d0f1b8e3bdcbeb9fe5d912dad3f7f6ee6d4da0732bca95d
6
+ metadata.gz: ed0dae1f5e8d28650b02a6fd8ad6222518d081779bc21e706f99fdc330ce7eb4be85b9b113440751068ba7ae7503177f65e595f9bbd6e29338660a4704d33a7c
7
+ data.tar.gz: fd1dad861263bb239ccc306e867dc25e5b9af940ca4b26c295583fac1c54a09d8c43971215540766f32f31963b29718d44c174b4670807949359c82d2acff7f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-authorizedbuyersmarketplace_v1
2
2
 
3
+ ### v0.37.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251211
6
+
7
+ ### v0.36.0 (2025-11-23)
8
+
9
+ * Regenerated from discovery document revision 20251119
10
+
3
11
  ### v0.35.0 (2025-11-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20251104
@@ -182,6 +182,11 @@ module Google
182
182
  # @return [Array<String>]
183
183
  attr_accessor :eligible_seat_ids
184
184
 
185
+ # Represents an amount of money with its currency type.
186
+ # Corresponds to the JSON property `floorPriceCpm`
187
+ # @return [Google::Apis::AuthorizedbuyersmarketplaceV1::Money]
188
+ attr_accessor :floor_price_cpm
189
+
185
190
  # Immutable. The unique identifier for the auction package. Format: `buyers/`
186
191
  # accountId`/auctionPackages/`auctionPackageId`` The auction_package_id part of
187
192
  # name is sent in the BidRequest to all RTB bidders and is returned as deal_id
@@ -230,6 +235,7 @@ module Google
230
235
  @description = args[:description] if args.key?(:description)
231
236
  @display_name = args[:display_name] if args.key?(:display_name)
232
237
  @eligible_seat_ids = args[:eligible_seat_ids] if args.key?(:eligible_seat_ids)
238
+ @floor_price_cpm = args[:floor_price_cpm] if args.key?(:floor_price_cpm)
233
239
  @name = args[:name] if args.key?(:name)
234
240
  @subscribed_buyers = args[:subscribed_buyers] if args.key?(:subscribed_buyers)
235
241
  @subscribed_clients = args[:subscribed_clients] if args.key?(:subscribed_clients)
@@ -1296,6 +1302,26 @@ module Google
1296
1302
  # @return [String]
1297
1303
  attr_accessor :account_id
1298
1304
 
1305
+ # Output only. The ancestor names of the media planner. Format: `mediaPlanners/`
1306
+ # mediaPlannerAccountId`` Can be used to filter the response of the
1307
+ # mediaPlanners.list method.
1308
+ # Corresponds to the JSON property `ancestorNames`
1309
+ # @return [Array<String>]
1310
+ attr_accessor :ancestor_names
1311
+
1312
+ # Output only. The display name of the media planner. Can be used to filter the
1313
+ # response of the mediaPlanners.list method.
1314
+ # Corresponds to the JSON property `displayName`
1315
+ # @return [String]
1316
+ attr_accessor :display_name
1317
+
1318
+ # Identifier. The unique resource name of the media planner. Format: `
1319
+ # mediaPlanners/`mediaPlannerAccountId`` Can be used to filter the response of
1320
+ # the mediaPlanners.list method.
1321
+ # Corresponds to the JSON property `name`
1322
+ # @return [String]
1323
+ attr_accessor :name
1324
+
1299
1325
  def initialize(**args)
1300
1326
  update!(**args)
1301
1327
  end
@@ -1303,6 +1329,9 @@ module Google
1303
1329
  # Update properties of this object
1304
1330
  def update!(**args)
1305
1331
  @account_id = args[:account_id] if args.key?(:account_id)
1332
+ @ancestor_names = args[:ancestor_names] if args.key?(:ancestor_names)
1333
+ @display_name = args[:display_name] if args.key?(:display_name)
1334
+ @name = args[:name] if args.key?(:name)
1306
1335
  end
1307
1336
  end
1308
1337
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AuthorizedbuyersmarketplaceV1
18
18
  # Version of the google-apis-authorizedbuyersmarketplace_v1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251104"
25
+ REVISION = "20251211"
26
26
  end
27
27
  end
28
28
  end
@@ -464,6 +464,8 @@ module Google
464
464
  property :description, as: 'description'
465
465
  property :display_name, as: 'displayName'
466
466
  collection :eligible_seat_ids, as: 'eligibleSeatIds'
467
+ property :floor_price_cpm, as: 'floorPriceCpm', class: Google::Apis::AuthorizedbuyersmarketplaceV1::Money, decorator: Google::Apis::AuthorizedbuyersmarketplaceV1::Money::Representation
468
+
467
469
  property :name, as: 'name'
468
470
  collection :subscribed_buyers, as: 'subscribedBuyers'
469
471
  collection :subscribed_clients, as: 'subscribedClients'
@@ -783,6 +785,9 @@ module Google
783
785
  # @private
784
786
  class Representation < Google::Apis::Core::JsonRepresentation
785
787
  property :account_id, as: 'accountId'
788
+ collection :ancestor_names, as: 'ancestorNames'
789
+ property :display_name, as: 'displayName'
790
+ property :name, as: 'name'
786
791
  end
787
792
  end
788
793
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-authorizedbuyersmarketplace_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-authorizedbuyersmarketplace_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-authorizedbuyersmarketplace_v1/v0.35.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-authorizedbuyersmarketplace_v1/v0.37.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-authorizedbuyersmarketplace_v1
62
62
  rdoc_options: []
63
63
  require_paths: