Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252735,6 +252735,8 @@
"/displayvideo:v2/Advertiser/containsEuPoliticalAds": contains_eu_political_ads
"/displayvideo:v2/Advertiser/creativeConfig": creative_config
"/displayvideo:v2/Advertiser/dataAccessConfig": data_access_config
"/displayvideo:v2/Advertiser/defaultBusinessName": default_business_name
"/displayvideo:v2/Advertiser/defaultLogoAssetId": default_logo_asset_id
"/displayvideo:v2/Advertiser/displayName": display_name
"/displayvideo:v2/Advertiser/entityStatus": entity_status
"/displayvideo:v2/Advertiser/generalConfig": general_config
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-displayvideo_v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-displayvideo_v2

### v0.62.0 (2026-07-19)

* Regenerated from discovery document revision 20260714

### v0.61.0 (2026-07-12)

* Regenerated from discovery document revision 20260630
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,21 @@ class Advertiser
# @return [Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig]
attr_accessor :data_access_config

# Optional. The default business name for the advertiser. This is the value used
# by YouTube and Demand Gen ads under this advertiser if a business name is not
# provided.
# Corresponds to the JSON property `defaultBusinessName`
# @return [String]
attr_accessor :default_business_name

# Optional. The asset ID of the default logo image for the advertiser. This is
# the asset ID that will be used by YouTube and Demand ads under this advertiser
# if a logo asset is not provided. You must use advertisers.adAssets.upload to
# upload this asset using the API.
# Corresponds to the JSON property `defaultLogoAssetId`
# @return [Fixnum]
attr_accessor :default_logo_asset_id

# Required. The display name of the advertiser. Must be UTF-8 encoded with a
# maximum size of 240 bytes.
# Corresponds to the JSON property `displayName`
Expand Down Expand Up @@ -234,6 +249,8 @@ def update!(**args)
@contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
@creative_config = args[:creative_config] if args.key?(:creative_config)
@data_access_config = args[:data_access_config] if args.key?(:data_access_config)
@default_business_name = args[:default_business_name] if args.key?(:default_business_name)
@default_logo_asset_id = args[:default_logo_asset_id] if args.key?(:default_logo_asset_id)
@display_name = args[:display_name] if args.key?(:display_name)
@entity_status = args[:entity_status] if args.key?(:entity_status)
@general_config = args[:general_config] if args.key?(:general_config)
Expand Down Expand Up @@ -10352,9 +10369,7 @@ class ThirdPartyMeasurementConfigs
# Optional. The third-party vendors measuring brand lift. The following third-
# party vendors are applicable: * `THIRD_PARTY_VENDOR_DYNATA` * `
# THIRD_PARTY_VENDOR_KANTAR` * `THIRD_PARTY_VENDOR_INTAGE` * `
# THIRD_PARTY_VENDOR_NIELSEN` * `THIRD_PARTY_VENDOR_MACROMILL` *Warning*:
# Starting **July 13, 2026**, this field will no longer support `
# THIRD_PARTY_VENDOR_NIELSEN`.
# THIRD_PARTY_VENDOR_MACROMILL`
# Corresponds to the JSON property `brandLiftVendorConfigs`
# @return [Array<Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig>]
attr_accessor :brand_lift_vendor_configs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DisplayvideoV2
# Version of the google-apis-displayvideo_v2 gem
GEM_VERSION = "0.61.0"
GEM_VERSION = "0.62.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.19.0"

# Revision of the discovery document this client was generated from
REVISION = "20260630"
REVISION = "20260714"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1871,6 +1871,8 @@ class Representation < Google::Apis::Core::JsonRepresentation

property :data_access_config, as: 'dataAccessConfig', class: Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig::Representation

property :default_business_name, as: 'defaultBusinessName'
property :default_logo_asset_id, :numeric_string => true, as: 'defaultLogoAssetId'
property :display_name, as: 'displayName'
property :entity_status, as: 'entityStatus'
property :general_config, as: 'generalConfig', class: Google::Apis::DisplayvideoV2::AdvertiserGeneralConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserGeneralConfig::Representation
Expand Down
Loading