Skip to content

Commit ad4e963

Browse files
feat: Automated regeneration of adexchangebuyer2 v2beta1 client (#26630)
Auto-created at 2026-06-10 22:17:41 +0000 using the toys pull request generator.
1 parent 7072ecf commit ad4e963

9 files changed

Lines changed: 24 additions & 11 deletions

File tree

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,6 +1052,8 @@
10521052
"/adexchangebuyer2:v2beta1/ClientUserInvitation/email": email
10531053
"/adexchangebuyer2:v2beta1/ClientUserInvitation/invitationId": invitation_id
10541054
"/adexchangebuyer2:v2beta1/CompleteSetupRequest": complete_setup_request
1055+
"/adexchangebuyer2:v2beta1/CompleteSetupRequest/externalDealIds": external_deal_ids
1056+
"/adexchangebuyer2:v2beta1/CompleteSetupRequest/externalDealIds/external_deal_id": external_deal_id
10551057
"/adexchangebuyer2:v2beta1/ContactInformation": contact_information
10561058
"/adexchangebuyer2:v2beta1/ContactInformation/email": email
10571059
"/adexchangebuyer2:v2beta1/ContactInformation/name": name

generated/google-apis-adexchangebuyer2_v2beta1/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-adexchangebuyer2_v2beta1
22

3+
### v0.30.0 (2026-06-10)
4+
5+
* Regenerated from discovery document revision 20260602
6+
* Regenerated using generator version 0.19.0
7+
38
### v0.29.0 (2025-05-04)
49

510
* Regenerated using generator version 0.17.0

generated/google-apis-adexchangebuyer2_v2beta1/OVERVIEW.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The [product documentation](https://developers.google.com/authorized-buyers/apis
8383

8484
## Supported Ruby versions
8585

86-
This library is supported on Ruby 3.1+.
86+
This library is supported on Ruby 3.2+.
8787

8888
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
8989

generated/google-apis-adexchangebuyer2_v2beta1/google-apis-adexchangebuyer2_v2beta1.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
2828
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
2929
gem.require_paths = ["lib"]
3030

31-
gem.required_ruby_version = '>= 3.1'
31+
gem.required_ruby_version = '>= 3.2'
3232
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
3333
end

generated/google-apis-adexchangebuyer2_v2beta1/lib/google/apis/adexchangebuyer2_v2beta1.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ module Google
2121
module Apis
2222
# Ad Exchange Buyer API II
2323
#
24-
# Accesses the latest features for managing Authorized Buyers accounts, Real-
25-
# Time Bidding configurations and auction metrics, and Marketplace programmatic
26-
# deals.
24+
# Access the latest features for managing Authorized Buyers accounts, Real-Time
25+
# Bidding configurations and auction metrics, and Marketplace programmatic deals.
2726
#
2827
# @see https://developers.google.com/authorized-buyers/apis/reference/rest/
2928
module Adexchangebuyer2V2beta1

generated/google-apis-adexchangebuyer2_v2beta1/lib/google/apis/adexchangebuyer2_v2beta1/classes.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -585,12 +585,19 @@ def update!(**args)
585585
class CompleteSetupRequest
586586
include Google::Apis::Core::Hashable
587587

588+
# The external deal ids of the deals to mark as setup completed. If empty, all
589+
# the deals in the proposal will be marked as setup completed.
590+
# Corresponds to the JSON property `externalDealIds`
591+
# @return [Array<String>]
592+
attr_accessor :external_deal_ids
593+
588594
def initialize(**args)
589595
update!(**args)
590596
end
591597

592598
# Update properties of this object
593599
def update!(**args)
600+
@external_deal_ids = args[:external_deal_ids] if args.key?(:external_deal_ids)
594601
end
595602
end
596603

generated/google-apis-adexchangebuyer2_v2beta1/lib/google/apis/adexchangebuyer2_v2beta1/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module Adexchangebuyer2V2beta1
1818
# Version of the google-apis-adexchangebuyer2_v2beta1 gem
19-
GEM_VERSION = "0.29.0"
19+
GEM_VERSION = "0.30.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.19.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20241002"
25+
REVISION = "20260602"
2626
end
2727
end
2828
end

generated/google-apis-adexchangebuyer2_v2beta1/lib/google/apis/adexchangebuyer2_v2beta1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
828828
class CompleteSetupRequest
829829
# @private
830830
class Representation < Google::Apis::Core::JsonRepresentation
831+
collection :external_deal_ids, as: 'externalDealIds'
831832
end
832833
end
833834

generated/google-apis-adexchangebuyer2_v2beta1/lib/google/apis/adexchangebuyer2_v2beta1/service.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ module Apis
2222
module Adexchangebuyer2V2beta1
2323
# Ad Exchange Buyer API II
2424
#
25-
# Accesses the latest features for managing Authorized Buyers accounts, Real-
26-
# Time Bidding configurations and auction metrics, and Marketplace programmatic
27-
# deals.
25+
# Access the latest features for managing Authorized Buyers accounts, Real-Time
26+
# Bidding configurations and auction metrics, and Marketplace programmatic deals.
2827
#
2928
# @example
3029
# require 'google/apis/adexchangebuyer2_v2beta1'

0 commit comments

Comments
 (0)