google-apis-displayvideo_v3 0.42.0 → 0.44.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: 1858a55fbfa9580b95b8d6df4e9e0e63cd06c4cc35dca09a73e9546ec848e099
4
- data.tar.gz: 1cb7dc01e2be7657a2246ef14bc3729db7bf33c8e8cf9b8ba5ac9db08d7d7148
3
+ metadata.gz: c2e26a0047f5d4465abf68a241973788ce84ae62e6ca527aa70b02ecf18c9e6d
4
+ data.tar.gz: 15fe5f5142876d0596dce2fc0e6d15b292d492205a205322e7d2dcdbeb3cbd13
5
5
  SHA512:
6
- metadata.gz: 75795f6df0e0e5633e41b2015a88274402a0979b155450f13d19d1028014530f44f341ec8360b253dd0cf8423c3e94789966a5269a0183fa42f8e321115ba2dc
7
- data.tar.gz: b12b0c0f9e4ea7017111952995ed8efdd86f117236550ba1314a15768e96f81d54f817181e8731202c44e1b929f99cfff2519a5301843ca6b6c68385212a278f
6
+ metadata.gz: 21551b88dd5f5af2527e88ab3670aa8c4147756d9e7ad3fb4b352ca0c45fa58fcc81ad2444bb45f90c8a8f00c63593682c4cc746a8221b553fb06e47ae728d60
7
+ data.tar.gz: b0404dbb2669666c5f85e9f99c26ad5393aed3afd823f41535c2e4be785daa82cc9fc9e4618f7c1fee37478f8d886034a4cfb7006c9cb54cfd4643f552ac8cd3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-displayvideo_v3
2
2
 
3
+ ### v0.44.0 (2026-07-19)
4
+
5
+ * Regenerated from discovery document revision 20260714
6
+
7
+ ### v0.43.0 (2026-06-21)
8
+
9
+ * Regenerated from discovery document revision 20260617
10
+
3
11
  ### v0.42.0 (2026-06-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20260606
@@ -1194,6 +1194,21 @@ module Google
1194
1194
  # @return [Google::Apis::DisplayvideoV3::AdvertiserDataAccessConfig]
1195
1195
  attr_accessor :data_access_config
1196
1196
 
1197
+ # Optional. The default business name for the advertiser. This is the value used
1198
+ # by YouTube and Demand Gen ads under this advertiser if a business name is not
1199
+ # provided.
1200
+ # Corresponds to the JSON property `defaultBusinessName`
1201
+ # @return [String]
1202
+ attr_accessor :default_business_name
1203
+
1204
+ # Optional. The asset ID of the default logo image for the advertiser. This is
1205
+ # the asset ID that will be used by YouTube and Demand ads under this advertiser
1206
+ # if a logo asset is not provided. You must use advertisers.adAssets.upload to
1207
+ # upload this asset using the API.
1208
+ # Corresponds to the JSON property `defaultLogoAssetId`
1209
+ # @return [Fixnum]
1210
+ attr_accessor :default_logo_asset_id
1211
+
1197
1212
  # Required. The display name of the advertiser. Must be UTF-8 encoded with a
1198
1213
  # maximum size of 240 bytes.
1199
1214
  # Corresponds to the JSON property `displayName`
@@ -1264,6 +1279,8 @@ module Google
1264
1279
  @contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
1265
1280
  @creative_config = args[:creative_config] if args.key?(:creative_config)
1266
1281
  @data_access_config = args[:data_access_config] if args.key?(:data_access_config)
1282
+ @default_business_name = args[:default_business_name] if args.key?(:default_business_name)
1283
+ @default_logo_asset_id = args[:default_logo_asset_id] if args.key?(:default_logo_asset_id)
1267
1284
  @display_name = args[:display_name] if args.key?(:display_name)
1268
1285
  @entity_status = args[:entity_status] if args.key?(:entity_status)
1269
1286
  @general_config = args[:general_config] if args.key?(:general_config)
@@ -4629,117 +4646,6 @@ module Google
4629
4646
  end
4630
4647
  end
4631
4648
 
4632
- # User consent status.
4633
- class Consent
4634
- include Google::Apis::Core::Hashable
4635
-
4636
- # Represents consent for ad personalization.
4637
- # Corresponds to the JSON property `adPersonalization`
4638
- # @return [String]
4639
- attr_accessor :ad_personalization
4640
-
4641
- # Represents consent for ad user data.
4642
- # Corresponds to the JSON property `adUserData`
4643
- # @return [String]
4644
- attr_accessor :ad_user_data
4645
-
4646
- def initialize(**args)
4647
- update!(**args)
4648
- end
4649
-
4650
- # Update properties of this object
4651
- def update!(**args)
4652
- @ad_personalization = args[:ad_personalization] if args.key?(:ad_personalization)
4653
- @ad_user_data = args[:ad_user_data] if args.key?(:ad_user_data)
4654
- end
4655
- end
4656
-
4657
- # Contact information defining a Customer Match audience member.
4658
- class ContactInfo
4659
- include Google::Apis::Core::Hashable
4660
-
4661
- # Country code of the member. Must also be set with the following fields: *
4662
- # hashed_first_name * hashed_last_name * zip_codes
4663
- # Corresponds to the JSON property `countryCode`
4664
- # @return [String]
4665
- attr_accessor :country_code
4666
-
4667
- # A list of SHA256 hashed email of the member. Before hashing, remove all
4668
- # whitespace and make sure the string is all lowercase.
4669
- # Corresponds to the JSON property `hashedEmails`
4670
- # @return [Array<String>]
4671
- attr_accessor :hashed_emails
4672
-
4673
- # SHA256 hashed first name of the member. Before hashing, remove all whitespace
4674
- # and make sure the string is all lowercase. Must also be set with the following
4675
- # fields: * country_code * hashed_last_name * zip_codes
4676
- # Corresponds to the JSON property `hashedFirstName`
4677
- # @return [String]
4678
- attr_accessor :hashed_first_name
4679
-
4680
- # SHA256 hashed last name of the member. Before hashing, remove all whitespace
4681
- # and make sure the string is all lowercase. Must also be set with the following
4682
- # fields: * country_code * hashed_first_name * zip_codes
4683
- # Corresponds to the JSON property `hashedLastName`
4684
- # @return [String]
4685
- attr_accessor :hashed_last_name
4686
-
4687
- # A list of SHA256 hashed phone numbers of the member. Before hashing, all phone
4688
- # numbers must be formatted using the [E.164 format](//en.wikipedia.org/wiki/E.
4689
- # 164) and include the country calling code.
4690
- # Corresponds to the JSON property `hashedPhoneNumbers`
4691
- # @return [Array<String>]
4692
- attr_accessor :hashed_phone_numbers
4693
-
4694
- # A list of zip codes of the member. Must also be set with the following fields:
4695
- # * country_code * hashed_first_name * hashed_last_name
4696
- # Corresponds to the JSON property `zipCodes`
4697
- # @return [Array<String>]
4698
- attr_accessor :zip_codes
4699
-
4700
- def initialize(**args)
4701
- update!(**args)
4702
- end
4703
-
4704
- # Update properties of this object
4705
- def update!(**args)
4706
- @country_code = args[:country_code] if args.key?(:country_code)
4707
- @hashed_emails = args[:hashed_emails] if args.key?(:hashed_emails)
4708
- @hashed_first_name = args[:hashed_first_name] if args.key?(:hashed_first_name)
4709
- @hashed_last_name = args[:hashed_last_name] if args.key?(:hashed_last_name)
4710
- @hashed_phone_numbers = args[:hashed_phone_numbers] if args.key?(:hashed_phone_numbers)
4711
- @zip_codes = args[:zip_codes] if args.key?(:zip_codes)
4712
- end
4713
- end
4714
-
4715
- # Wrapper message for a list of contact information defining Customer Match
4716
- # audience members.
4717
- class ContactInfoList
4718
- include Google::Apis::Core::Hashable
4719
-
4720
- # User consent status.
4721
- # Corresponds to the JSON property `consent`
4722
- # @return [Google::Apis::DisplayvideoV3::Consent]
4723
- attr_accessor :consent
4724
-
4725
- # A list of ContactInfo objects defining Customer Match audience members. The
4726
- # size of members after splitting the contact_infos mustn't be greater than 500,
4727
- # 000.
4728
- # Corresponds to the JSON property `contactInfos`
4729
- # @return [Array<Google::Apis::DisplayvideoV3::ContactInfo>]
4730
- attr_accessor :contact_infos
4731
-
4732
- def initialize(**args)
4733
- update!(**args)
4734
- end
4735
-
4736
- # Update properties of this object
4737
- def update!(**args)
4738
- @consent = args[:consent] if args.key?(:consent)
4739
- @contact_infos = args[:contact_infos] if args.key?(:contact_infos)
4740
- end
4741
- end
4742
-
4743
4649
  # Details for content duration assigned targeting option. This will be populated
4744
4650
  # in the content_duration_details field when targeting_type is `
4745
4651
  # TARGETING_TYPE_CONTENT_DURATION`. Explicitly targeting all options is not
@@ -5090,9 +4996,7 @@ module Google
5090
4996
  # attribution model will determine how conversions are counted. The Primary
5091
4997
  # model can be set by you for a floodlight config or group. More details [here](
5092
4998
  # https://support.google.com/displayvideo/answer/7409983). Only applicable to
5093
- # Demand Gen line items. Retrieval and management of Demand Gen resources is
5094
- # currently in beta. This field will begin rolling out to all partners on *June
5095
- # 10, 2026* and be available to all partners on *June 24, 2026*.
4999
+ # Demand Gen line items.
5096
5000
  # Corresponds to the JSON property `primaryAttributionModelId`
5097
5001
  # @return [Fixnum]
5098
5002
  attr_accessor :primary_attribution_model_id
@@ -6336,7 +6240,9 @@ module Google
6336
6240
  class DemandGenCarouselAd
6337
6241
  include Google::Apis::Core::Hashable
6338
6242
 
6339
- # Required. The business name shown on the ad.
6243
+ # Optional. The business name shown on the ad. This setting is required unless a
6244
+ # default value is set at the advertiser level. If left unset, the default value
6245
+ # will be applied.
6340
6246
  # Corresponds to the JSON property `businessName`
6341
6247
  # @return [String]
6342
6248
  attr_accessor :business_name
@@ -6411,7 +6317,9 @@ module Google
6411
6317
  class DemandGenImageAd
6412
6318
  include Google::Apis::Core::Hashable
6413
6319
 
6414
- # Required. The business name shown on the ad.
6320
+ # Optional. The business name shown on the ad. This setting is required unless a
6321
+ # default value is set at the advertiser level. If left unset, the default value
6322
+ # will be applied.
6415
6323
  # Corresponds to the JSON property `businessName`
6416
6324
  # @return [String]
6417
6325
  attr_accessor :business_name
@@ -6454,7 +6362,9 @@ module Google
6454
6362
  # @return [Array<String>]
6455
6363
  attr_accessor :headlines
6456
6364
 
6457
- # The list of logo images shown on the ad.
6365
+ # The list of logo images shown on the ad. This setting is required unless a
6366
+ # default value is set at the advertiser level. If left unset, the default value
6367
+ # will be applied.
6458
6368
  # Corresponds to the JSON property `logoImages`
6459
6369
  # @return [Array<Google::Apis::DisplayvideoV3::ImageAsset>]
6460
6370
  attr_accessor :logo_images
@@ -6511,7 +6421,9 @@ module Google
6511
6421
  class DemandGenProductAd
6512
6422
  include Google::Apis::Core::Hashable
6513
6423
 
6514
- # Required. The business name shown on the ad.
6424
+ # Optional. The business name shown on the ad. This setting is required unless a
6425
+ # default value is set at the advertiser level. If left unset, the default value
6426
+ # will be applied.
6515
6427
  # Corresponds to the JSON property `businessName`
6516
6428
  # @return [String]
6517
6429
  attr_accessor :business_name
@@ -6636,7 +6548,9 @@ module Google
6636
6548
  class DemandGenVideoAd
6637
6549
  include Google::Apis::Core::Hashable
6638
6550
 
6639
- # Required. The business name shown on the ad.
6551
+ # Optional. The business name shown on the ad. This setting is required unless a
6552
+ # default value is set at the advertiser level. If left unset, the default value
6553
+ # will be applied.
6640
6554
  # Corresponds to the JSON property `businessName`
6641
6555
  # @return [String]
6642
6556
  attr_accessor :business_name
@@ -7194,73 +7108,6 @@ module Google
7194
7108
  end
7195
7109
  end
7196
7110
 
7197
- # Request message for FirstAndThirdPartyAudienceService.EditCustomerMatchMembers.
7198
- class EditCustomerMatchMembersRequest
7199
- include Google::Apis::Core::Hashable
7200
-
7201
- # Wrapper message for a list of contact information defining Customer Match
7202
- # audience members.
7203
- # Corresponds to the JSON property `addedContactInfoList`
7204
- # @return [Google::Apis::DisplayvideoV3::ContactInfoList]
7205
- attr_accessor :added_contact_info_list
7206
-
7207
- # Wrapper message for a list of mobile device IDs defining Customer Match
7208
- # audience members.
7209
- # Corresponds to the JSON property `addedMobileDeviceIdList`
7210
- # @return [Google::Apis::DisplayvideoV3::MobileDeviceIdList]
7211
- attr_accessor :added_mobile_device_id_list
7212
-
7213
- # Required. The ID of the owner advertiser of the updated Customer Match
7214
- # FirstAndThirdPartyAudience.
7215
- # Corresponds to the JSON property `advertiserId`
7216
- # @return [Fixnum]
7217
- attr_accessor :advertiser_id
7218
-
7219
- # Wrapper message for a list of contact information defining Customer Match
7220
- # audience members.
7221
- # Corresponds to the JSON property `removedContactInfoList`
7222
- # @return [Google::Apis::DisplayvideoV3::ContactInfoList]
7223
- attr_accessor :removed_contact_info_list
7224
-
7225
- # Wrapper message for a list of mobile device IDs defining Customer Match
7226
- # audience members.
7227
- # Corresponds to the JSON property `removedMobileDeviceIdList`
7228
- # @return [Google::Apis::DisplayvideoV3::MobileDeviceIdList]
7229
- attr_accessor :removed_mobile_device_id_list
7230
-
7231
- def initialize(**args)
7232
- update!(**args)
7233
- end
7234
-
7235
- # Update properties of this object
7236
- def update!(**args)
7237
- @added_contact_info_list = args[:added_contact_info_list] if args.key?(:added_contact_info_list)
7238
- @added_mobile_device_id_list = args[:added_mobile_device_id_list] if args.key?(:added_mobile_device_id_list)
7239
- @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
7240
- @removed_contact_info_list = args[:removed_contact_info_list] if args.key?(:removed_contact_info_list)
7241
- @removed_mobile_device_id_list = args[:removed_mobile_device_id_list] if args.key?(:removed_mobile_device_id_list)
7242
- end
7243
- end
7244
-
7245
- # The response of FirstAndThirdPartyAudienceService.EditCustomerMatchMembers.
7246
- class EditCustomerMatchMembersResponse
7247
- include Google::Apis::Core::Hashable
7248
-
7249
- # Required. The ID of the updated Customer Match FirstAndThirdPartyAudience.
7250
- # Corresponds to the JSON property `firstAndThirdPartyAudienceId`
7251
- # @return [Fixnum]
7252
- attr_accessor :first_and_third_party_audience_id
7253
-
7254
- def initialize(**args)
7255
- update!(**args)
7256
- end
7257
-
7258
- # Update properties of this object
7259
- def update!(**args)
7260
- @first_and_third_party_audience_id = args[:first_and_third_party_audience_id] if args.key?(:first_and_third_party_audience_id)
7261
- end
7262
- end
7263
-
7264
7111
  # Request message for GuaranteedOrderService.EditGuaranteedOrderReadAccessors.
7265
7112
  class EditGuaranteedOrderReadAccessorsRequest
7266
7113
  include Google::Apis::Core::Hashable
@@ -7553,162 +7400,6 @@ module Google
7553
7400
  end
7554
7401
  end
7555
7402
 
7556
- # Describes a first or third party audience list used for targeting. First party
7557
- # audiences are created via usage of client data. Third party audiences are
7558
- # provided by Third Party data providers and can only be licensed to customers.
7559
- class FirstAndThirdPartyAudience
7560
- include Google::Apis::Core::Hashable
7561
-
7562
- # Output only. The estimated audience size for the Display network in the past
7563
- # month. If the size is less than 1000, the number will be hidden and 0 will be
7564
- # returned due to privacy reasons. Otherwise, the number will be rounded off to
7565
- # two significant digits. Only returned in GET request.
7566
- # Corresponds to the JSON property `activeDisplayAudienceSize`
7567
- # @return [Fixnum]
7568
- attr_accessor :active_display_audience_size
7569
-
7570
- # The app_id matches with the type of the mobile_device_ids being uploaded. Only
7571
- # applicable to audience_type `CUSTOMER_MATCH_DEVICE_ID`
7572
- # Corresponds to the JSON property `appId`
7573
- # @return [String]
7574
- attr_accessor :app_id
7575
-
7576
- # Output only. The source of the audience.
7577
- # Corresponds to the JSON property `audienceSource`
7578
- # @return [String]
7579
- attr_accessor :audience_source
7580
-
7581
- # The type of the audience.
7582
- # Corresponds to the JSON property `audienceType`
7583
- # @return [String]
7584
- attr_accessor :audience_type
7585
-
7586
- # Wrapper message for a list of contact information defining Customer Match
7587
- # audience members.
7588
- # Corresponds to the JSON property `contactInfoList`
7589
- # @return [Google::Apis::DisplayvideoV3::ContactInfoList]
7590
- attr_accessor :contact_info_list
7591
-
7592
- # The user-provided description of the audience. Only applicable to first party
7593
- # audiences.
7594
- # Corresponds to the JSON property `description`
7595
- # @return [String]
7596
- attr_accessor :description
7597
-
7598
- # Output only. The estimated audience size for the Display network. If the size
7599
- # is less than 1000, the number will be hidden and 0 will be returned due to
7600
- # privacy reasons. Otherwise, the number will be rounded off to two significant
7601
- # digits. Only returned in GET request.
7602
- # Corresponds to the JSON property `displayAudienceSize`
7603
- # @return [Fixnum]
7604
- attr_accessor :display_audience_size
7605
-
7606
- # Output only. The estimated desktop audience size in Display network. If the
7607
- # size is less than 1000, the number will be hidden and 0 will be returned due
7608
- # to privacy reasons. Otherwise, the number will be rounded off to two
7609
- # significant digits. Only applicable to first party audiences. Only returned in
7610
- # GET request.
7611
- # Corresponds to the JSON property `displayDesktopAudienceSize`
7612
- # @return [Fixnum]
7613
- attr_accessor :display_desktop_audience_size
7614
-
7615
- # Output only. The estimated mobile app audience size in Display network. If the
7616
- # size is less than 1000, the number will be hidden and 0 will be returned due
7617
- # to privacy reasons. Otherwise, the number will be rounded off to two
7618
- # significant digits. Only applicable to first party audiences. Only returned in
7619
- # GET request.
7620
- # Corresponds to the JSON property `displayMobileAppAudienceSize`
7621
- # @return [Fixnum]
7622
- attr_accessor :display_mobile_app_audience_size
7623
-
7624
- # Output only. The estimated mobile web audience size in Display network. If the
7625
- # size is less than 1000, the number will be hidden and 0 will be returned due
7626
- # to privacy reasons. Otherwise, the number will be rounded off to two
7627
- # significant digits. Only applicable to first party audiences. Only returned in
7628
- # GET request.
7629
- # Corresponds to the JSON property `displayMobileWebAudienceSize`
7630
- # @return [Fixnum]
7631
- attr_accessor :display_mobile_web_audience_size
7632
-
7633
- # The display name of the first and third party audience.
7634
- # Corresponds to the JSON property `displayName`
7635
- # @return [String]
7636
- attr_accessor :display_name
7637
-
7638
- # Output only. The unique ID of the first and third party audience. Assigned by
7639
- # the system.
7640
- # Corresponds to the JSON property `firstAndThirdPartyAudienceId`
7641
- # @return [Fixnum]
7642
- attr_accessor :first_and_third_party_audience_id
7643
-
7644
- # Whether the audience is a first or third party audience.
7645
- # Corresponds to the JSON property `firstAndThirdPartyAudienceType`
7646
- # @return [String]
7647
- attr_accessor :first_and_third_party_audience_type
7648
-
7649
- # Output only. The estimated audience size for Gmail network. If the size is
7650
- # less than 1000, the number will be hidden and 0 will be returned due to
7651
- # privacy reasons. Otherwise, the number will be rounded off to two significant
7652
- # digits. Only applicable to first party audiences. Only returned in GET request.
7653
- # Corresponds to the JSON property `gmailAudienceSize`
7654
- # @return [Fixnum]
7655
- attr_accessor :gmail_audience_size
7656
-
7657
- # The duration in days that an entry remains in the audience after the
7658
- # qualifying event. The set value must be greater than 0 and less than or equal
7659
- # to 540. Only applicable to first party audiences. This field is required if
7660
- # one of the following audience_type is used: * `CUSTOMER_MATCH_CONTACT_INFO` * `
7661
- # CUSTOMER_MATCH_DEVICE_ID`
7662
- # Corresponds to the JSON property `membershipDurationDays`
7663
- # @return [Fixnum]
7664
- attr_accessor :membership_duration_days
7665
-
7666
- # Wrapper message for a list of mobile device IDs defining Customer Match
7667
- # audience members.
7668
- # Corresponds to the JSON property `mobileDeviceIdList`
7669
- # @return [Google::Apis::DisplayvideoV3::MobileDeviceIdList]
7670
- attr_accessor :mobile_device_id_list
7671
-
7672
- # Output only. The resource name of the first and third party audience.
7673
- # Corresponds to the JSON property `name`
7674
- # @return [String]
7675
- attr_accessor :name
7676
-
7677
- # Output only. The estimated audience size for YouTube network. If the size is
7678
- # less than 1000, the number will be hidden and 0 will be returned due to
7679
- # privacy reasons. Otherwise, the number will be rounded off to two significant
7680
- # digits. Only applicable to first party audiences. Only returned in GET request.
7681
- # Corresponds to the JSON property `youtubeAudienceSize`
7682
- # @return [Fixnum]
7683
- attr_accessor :youtube_audience_size
7684
-
7685
- def initialize(**args)
7686
- update!(**args)
7687
- end
7688
-
7689
- # Update properties of this object
7690
- def update!(**args)
7691
- @active_display_audience_size = args[:active_display_audience_size] if args.key?(:active_display_audience_size)
7692
- @app_id = args[:app_id] if args.key?(:app_id)
7693
- @audience_source = args[:audience_source] if args.key?(:audience_source)
7694
- @audience_type = args[:audience_type] if args.key?(:audience_type)
7695
- @contact_info_list = args[:contact_info_list] if args.key?(:contact_info_list)
7696
- @description = args[:description] if args.key?(:description)
7697
- @display_audience_size = args[:display_audience_size] if args.key?(:display_audience_size)
7698
- @display_desktop_audience_size = args[:display_desktop_audience_size] if args.key?(:display_desktop_audience_size)
7699
- @display_mobile_app_audience_size = args[:display_mobile_app_audience_size] if args.key?(:display_mobile_app_audience_size)
7700
- @display_mobile_web_audience_size = args[:display_mobile_web_audience_size] if args.key?(:display_mobile_web_audience_size)
7701
- @display_name = args[:display_name] if args.key?(:display_name)
7702
- @first_and_third_party_audience_id = args[:first_and_third_party_audience_id] if args.key?(:first_and_third_party_audience_id)
7703
- @first_and_third_party_audience_type = args[:first_and_third_party_audience_type] if args.key?(:first_and_third_party_audience_type)
7704
- @gmail_audience_size = args[:gmail_audience_size] if args.key?(:gmail_audience_size)
7705
- @membership_duration_days = args[:membership_duration_days] if args.key?(:membership_duration_days)
7706
- @mobile_device_id_list = args[:mobile_device_id_list] if args.key?(:mobile_device_id_list)
7707
- @name = args[:name] if args.key?(:name)
7708
- @youtube_audience_size = args[:youtube_audience_size] if args.key?(:youtube_audience_size)
7709
- end
7710
- end
7711
-
7712
7403
  # Details of first and third party audience group. All first and third party
7713
7404
  # audience targeting settings are logically ‘OR’ of each other.
7714
7405
  class FirstAndThirdPartyAudienceGroup
@@ -10011,34 +9702,6 @@ module Google
10011
9702
  end
10012
9703
  end
10013
9704
 
10014
- #
10015
- class ListFirstAndThirdPartyAudiencesResponse
10016
- include Google::Apis::Core::Hashable
10017
-
10018
- # The list of first and third party audiences. Audience size properties will not
10019
- # be included. This list will be absent if empty.
10020
- # Corresponds to the JSON property `firstAndThirdPartyAudiences`
10021
- # @return [Array<Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience>]
10022
- attr_accessor :first_and_third_party_audiences
10023
-
10024
- # A token to retrieve the next page of results. Pass this value in the
10025
- # page_token field in the subsequent call to `ListFirstAndThirdPartyAudiences`
10026
- # method to retrieve the next page of results.
10027
- # Corresponds to the JSON property `nextPageToken`
10028
- # @return [String]
10029
- attr_accessor :next_page_token
10030
-
10031
- def initialize(**args)
10032
- update!(**args)
10033
- end
10034
-
10035
- # Update properties of this object
10036
- def update!(**args)
10037
- @first_and_third_party_audiences = args[:first_and_third_party_audiences] if args.key?(:first_and_third_party_audiences)
10038
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
10039
- end
10040
- end
10041
-
10042
9705
  #
10043
9706
  class ListFloodlightActivitiesResponse
10044
9707
  include Google::Apis::Core::Hashable
@@ -10765,33 +10428,6 @@ module Google
10765
10428
  end
10766
10429
  end
10767
10430
 
10768
- # Wrapper message for a list of mobile device IDs defining Customer Match
10769
- # audience members.
10770
- class MobileDeviceIdList
10771
- include Google::Apis::Core::Hashable
10772
-
10773
- # User consent status.
10774
- # Corresponds to the JSON property `consent`
10775
- # @return [Google::Apis::DisplayvideoV3::Consent]
10776
- attr_accessor :consent
10777
-
10778
- # A list of mobile device IDs defining Customer Match audience members. The size
10779
- # of mobile_device_ids mustn't be greater than 500,000.
10780
- # Corresponds to the JSON property `mobileDeviceIds`
10781
- # @return [Array<String>]
10782
- attr_accessor :mobile_device_ids
10783
-
10784
- def initialize(**args)
10785
- update!(**args)
10786
- end
10787
-
10788
- # Update properties of this object
10789
- def update!(**args)
10790
- @consent = args[:consent] if args.key?(:consent)
10791
- @mobile_device_ids = args[:mobile_device_ids] if args.key?(:mobile_device_ids)
10792
- end
10793
- end
10794
-
10795
10431
  # Details for native content position assigned targeting option. This will be
10796
10432
  # populated in the native_content_position_details field when targeting_type is `
10797
10433
  # TARGETING_TYPE_NATIVE_CONTENT_POSITION`. Explicitly targeting all options is
@@ -12735,10 +12371,7 @@ module Google
12735
12371
  alias_method :enable_optimized_targeting?, :enable_optimized_targeting
12736
12372
 
12737
12373
  # Optional. Whether to exclude demographic expansion for Optimized Targeting.
12738
- # This field can only be set for Demand Gen ad groups. Retrieval and management
12739
- # of Demand Gen resources is currently in beta. This field will begin rolling
12740
- # out to all partners on *June 10, 2026* and be available to all partners on *
12741
- # June 24, 2026*.
12374
+ # This field can only be set for Demand Gen ad groups.
12742
12375
  # Corresponds to the JSON property `excludeDemographicExpansion`
12743
12376
  # @return [Boolean]
12744
12377
  attr_accessor :exclude_demographic_expansion
@@ -13067,7 +12700,7 @@ module Google
13067
12700
  # Optional. The third-party vendors measuring brand lift. The following third-
13068
12701
  # party vendors are applicable: * `THIRD_PARTY_VENDOR_DYNATA` * `
13069
12702
  # THIRD_PARTY_VENDOR_KANTAR` * `THIRD_PARTY_VENDOR_INTAGE` * `
13070
- # THIRD_PARTY_VENDOR_NIELSEN` * `THIRD_PARTY_VENDOR_MACROMILL`
12703
+ # THIRD_PARTY_VENDOR_MACROMILL`
13071
12704
  # Corresponds to the JSON property `brandLiftVendorConfigs`
13072
12705
  # @return [Array<Google::Apis::DisplayvideoV3::ThirdPartyVendorConfig>]
13073
12706
  attr_accessor :brand_lift_vendor_configs
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DisplayvideoV3
18
18
  # Version of the google-apis-displayvideo_v3 gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.44.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260606"
25
+ REVISION = "20260714"
26
26
  end
27
27
  end
28
28
  end
@@ -700,24 +700,6 @@ module Google
700
700
  include Google::Apis::Core::JsonObjectSupport
701
701
  end
702
702
 
703
- class Consent
704
- class Representation < Google::Apis::Core::JsonRepresentation; end
705
-
706
- include Google::Apis::Core::JsonObjectSupport
707
- end
708
-
709
- class ContactInfo
710
- class Representation < Google::Apis::Core::JsonRepresentation; end
711
-
712
- include Google::Apis::Core::JsonObjectSupport
713
- end
714
-
715
- class ContactInfoList
716
- class Representation < Google::Apis::Core::JsonRepresentation; end
717
-
718
- include Google::Apis::Core::JsonObjectSupport
719
- end
720
-
721
703
  class ContentDurationAssignedTargetingOptionDetails
722
704
  class Representation < Google::Apis::Core::JsonRepresentation; end
723
705
 
@@ -1066,18 +1048,6 @@ module Google
1066
1048
  include Google::Apis::Core::JsonObjectSupport
1067
1049
  end
1068
1050
 
1069
- class EditCustomerMatchMembersRequest
1070
- class Representation < Google::Apis::Core::JsonRepresentation; end
1071
-
1072
- include Google::Apis::Core::JsonObjectSupport
1073
- end
1074
-
1075
- class EditCustomerMatchMembersResponse
1076
- class Representation < Google::Apis::Core::JsonRepresentation; end
1077
-
1078
- include Google::Apis::Core::JsonObjectSupport
1079
- end
1080
-
1081
1051
  class EditGuaranteedOrderReadAccessorsRequest
1082
1052
  class Representation < Google::Apis::Core::JsonRepresentation; end
1083
1053
 
@@ -1144,12 +1114,6 @@ module Google
1144
1114
  include Google::Apis::Core::JsonObjectSupport
1145
1115
  end
1146
1116
 
1147
- class FirstAndThirdPartyAudience
1148
- class Representation < Google::Apis::Core::JsonRepresentation; end
1149
-
1150
- include Google::Apis::Core::JsonObjectSupport
1151
- end
1152
-
1153
1117
  class FirstAndThirdPartyAudienceGroup
1154
1118
  class Representation < Google::Apis::Core::JsonRepresentation; end
1155
1119
 
@@ -1480,12 +1444,6 @@ module Google
1480
1444
  include Google::Apis::Core::JsonObjectSupport
1481
1445
  end
1482
1446
 
1483
- class ListFirstAndThirdPartyAudiencesResponse
1484
- class Representation < Google::Apis::Core::JsonRepresentation; end
1485
-
1486
- include Google::Apis::Core::JsonObjectSupport
1487
- end
1488
-
1489
1447
  class ListFloodlightActivitiesResponse
1490
1448
  class Representation < Google::Apis::Core::JsonRepresentation; end
1491
1449
 
@@ -1624,12 +1582,6 @@ module Google
1624
1582
  include Google::Apis::Core::JsonObjectSupport
1625
1583
  end
1626
1584
 
1627
- class MobileDeviceIdList
1628
- class Representation < Google::Apis::Core::JsonRepresentation; end
1629
-
1630
- include Google::Apis::Core::JsonObjectSupport
1631
- end
1632
-
1633
1585
  class NativeContentPositionAssignedTargetingOptionDetails
1634
1586
  class Representation < Google::Apis::Core::JsonRepresentation; end
1635
1587
 
@@ -2516,6 +2468,8 @@ module Google
2516
2468
 
2517
2469
  property :data_access_config, as: 'dataAccessConfig', class: Google::Apis::DisplayvideoV3::AdvertiserDataAccessConfig, decorator: Google::Apis::DisplayvideoV3::AdvertiserDataAccessConfig::Representation
2518
2470
 
2471
+ property :default_business_name, as: 'defaultBusinessName'
2472
+ property :default_logo_asset_id, :numeric_string => true, as: 'defaultLogoAssetId'
2519
2473
  property :display_name, as: 'displayName'
2520
2474
  property :entity_status, as: 'entityStatus'
2521
2475
  property :general_config, as: 'generalConfig', class: Google::Apis::DisplayvideoV3::AdvertiserGeneralConfig, decorator: Google::Apis::DisplayvideoV3::AdvertiserGeneralConfig::Representation
@@ -3449,36 +3403,6 @@ module Google
3449
3403
  end
3450
3404
  end
3451
3405
 
3452
- class Consent
3453
- # @private
3454
- class Representation < Google::Apis::Core::JsonRepresentation
3455
- property :ad_personalization, as: 'adPersonalization'
3456
- property :ad_user_data, as: 'adUserData'
3457
- end
3458
- end
3459
-
3460
- class ContactInfo
3461
- # @private
3462
- class Representation < Google::Apis::Core::JsonRepresentation
3463
- property :country_code, as: 'countryCode'
3464
- collection :hashed_emails, as: 'hashedEmails'
3465
- property :hashed_first_name, as: 'hashedFirstName'
3466
- property :hashed_last_name, as: 'hashedLastName'
3467
- collection :hashed_phone_numbers, as: 'hashedPhoneNumbers'
3468
- collection :zip_codes, as: 'zipCodes'
3469
- end
3470
- end
3471
-
3472
- class ContactInfoList
3473
- # @private
3474
- class Representation < Google::Apis::Core::JsonRepresentation
3475
- property :consent, as: 'consent', class: Google::Apis::DisplayvideoV3::Consent, decorator: Google::Apis::DisplayvideoV3::Consent::Representation
3476
-
3477
- collection :contact_infos, as: 'contactInfos', class: Google::Apis::DisplayvideoV3::ContactInfo, decorator: Google::Apis::DisplayvideoV3::ContactInfo::Representation
3478
-
3479
- end
3480
- end
3481
-
3482
3406
  class ContentDurationAssignedTargetingOptionDetails
3483
3407
  # @private
3484
3408
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4101,28 +4025,6 @@ module Google
4101
4025
  end
4102
4026
  end
4103
4027
 
4104
- class EditCustomerMatchMembersRequest
4105
- # @private
4106
- class Representation < Google::Apis::Core::JsonRepresentation
4107
- property :added_contact_info_list, as: 'addedContactInfoList', class: Google::Apis::DisplayvideoV3::ContactInfoList, decorator: Google::Apis::DisplayvideoV3::ContactInfoList::Representation
4108
-
4109
- property :added_mobile_device_id_list, as: 'addedMobileDeviceIdList', class: Google::Apis::DisplayvideoV3::MobileDeviceIdList, decorator: Google::Apis::DisplayvideoV3::MobileDeviceIdList::Representation
4110
-
4111
- property :advertiser_id, :numeric_string => true, as: 'advertiserId'
4112
- property :removed_contact_info_list, as: 'removedContactInfoList', class: Google::Apis::DisplayvideoV3::ContactInfoList, decorator: Google::Apis::DisplayvideoV3::ContactInfoList::Representation
4113
-
4114
- property :removed_mobile_device_id_list, as: 'removedMobileDeviceIdList', class: Google::Apis::DisplayvideoV3::MobileDeviceIdList, decorator: Google::Apis::DisplayvideoV3::MobileDeviceIdList::Representation
4115
-
4116
- end
4117
- end
4118
-
4119
- class EditCustomerMatchMembersResponse
4120
- # @private
4121
- class Representation < Google::Apis::Core::JsonRepresentation
4122
- property :first_and_third_party_audience_id, :numeric_string => true, as: 'firstAndThirdPartyAudienceId'
4123
- end
4124
- end
4125
-
4126
4028
  class EditGuaranteedOrderReadAccessorsRequest
4127
4029
  # @private
4128
4030
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4211,32 +4113,6 @@ module Google
4211
4113
  end
4212
4114
  end
4213
4115
 
4214
- class FirstAndThirdPartyAudience
4215
- # @private
4216
- class Representation < Google::Apis::Core::JsonRepresentation
4217
- property :active_display_audience_size, :numeric_string => true, as: 'activeDisplayAudienceSize'
4218
- property :app_id, as: 'appId'
4219
- property :audience_source, as: 'audienceSource'
4220
- property :audience_type, as: 'audienceType'
4221
- property :contact_info_list, as: 'contactInfoList', class: Google::Apis::DisplayvideoV3::ContactInfoList, decorator: Google::Apis::DisplayvideoV3::ContactInfoList::Representation
4222
-
4223
- property :description, as: 'description'
4224
- property :display_audience_size, :numeric_string => true, as: 'displayAudienceSize'
4225
- property :display_desktop_audience_size, :numeric_string => true, as: 'displayDesktopAudienceSize'
4226
- property :display_mobile_app_audience_size, :numeric_string => true, as: 'displayMobileAppAudienceSize'
4227
- property :display_mobile_web_audience_size, :numeric_string => true, as: 'displayMobileWebAudienceSize'
4228
- property :display_name, as: 'displayName'
4229
- property :first_and_third_party_audience_id, :numeric_string => true, as: 'firstAndThirdPartyAudienceId'
4230
- property :first_and_third_party_audience_type, as: 'firstAndThirdPartyAudienceType'
4231
- property :gmail_audience_size, :numeric_string => true, as: 'gmailAudienceSize'
4232
- property :membership_duration_days, :numeric_string => true, as: 'membershipDurationDays'
4233
- property :mobile_device_id_list, as: 'mobileDeviceIdList', class: Google::Apis::DisplayvideoV3::MobileDeviceIdList, decorator: Google::Apis::DisplayvideoV3::MobileDeviceIdList::Representation
4234
-
4235
- property :name, as: 'name'
4236
- property :youtube_audience_size, :numeric_string => true, as: 'youtubeAudienceSize'
4237
- end
4238
- end
4239
-
4240
4116
  class FirstAndThirdPartyAudienceGroup
4241
4117
  # @private
4242
4118
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4835,15 +4711,6 @@ module Google
4835
4711
  end
4836
4712
  end
4837
4713
 
4838
- class ListFirstAndThirdPartyAudiencesResponse
4839
- # @private
4840
- class Representation < Google::Apis::Core::JsonRepresentation
4841
- collection :first_and_third_party_audiences, as: 'firstAndThirdPartyAudiences', class: Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience, decorator: Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience::Representation
4842
-
4843
- property :next_page_token, as: 'nextPageToken'
4844
- end
4845
- end
4846
-
4847
4714
  class ListFloodlightActivitiesResponse
4848
4715
  # @private
4849
4716
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5061,15 +4928,6 @@ module Google
5061
4928
  end
5062
4929
  end
5063
4930
 
5064
- class MobileDeviceIdList
5065
- # @private
5066
- class Representation < Google::Apis::Core::JsonRepresentation
5067
- property :consent, as: 'consent', class: Google::Apis::DisplayvideoV3::Consent, decorator: Google::Apis::DisplayvideoV3::Consent::Representation
5068
-
5069
- collection :mobile_device_ids, as: 'mobileDeviceIds'
5070
- end
5071
- end
5072
-
5073
4931
  class NativeContentPositionAssignedTargetingOptionDetails
5074
4932
  # @private
5075
4933
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -385,9 +385,6 @@ module Google
385
385
  end
386
386
 
387
387
  # Creates an ad group ad. This method is only supported for Demand Gen ads.
388
- # Retrieval and management of Demand Gen resources is currently in beta. This
389
- # method will begin rolling out to all partners on *June 10, 2026* and be
390
- # available to all partners on *June 24, 2026*.
391
388
  # @param [Fixnum] advertiser_id
392
389
  # Output only. The unique ID of the advertiser the ad belongs to.
393
390
  # @param [Google::Apis::DisplayvideoV3::AdGroupAd] ad_group_ad_object
@@ -421,9 +418,6 @@ module Google
421
418
  end
422
419
 
423
420
  # Deletes an ad group ad. This method is only supported for Demand Gen ads.
424
- # Retrieval and management of Demand Gen resources is currently in beta. This
425
- # method will begin rolling out to all partners on *June 10, 2026* and be
426
- # available to all partners on *June 24, 2026*.
427
421
  # @param [Fixnum] advertiser_id
428
422
  # Required. The ID of the advertiser the ad belongs to.
429
423
  # @param [Fixnum] ad_group_ad_id
@@ -551,9 +545,6 @@ module Google
551
545
  end
552
546
 
553
547
  # Updates an ad group ad. This method is only supported for Demand Gen ads.
554
- # Retrieval and management of Demand Gen resources is currently in beta. This
555
- # method will begin rolling out to all partners on *June 10, 2026* and be
556
- # available to all partners on *June 24, 2026*.
557
548
  # @param [Fixnum] advertiser_id
558
549
  # Output only. The unique ID of the advertiser the ad belongs to.
559
550
  # @param [Fixnum] ad_group_ad_id
@@ -598,10 +589,7 @@ module Google
598
589
  # BulkEditAdGroupAssignedTargetingOptionsRequest.delete_requests from each ad
599
590
  # group, and then create the assigned targeting options provided in
600
591
  # BulkEditAdGroupAssignedTargetingOptionsRequest.create_requests. This method is
601
- # only supported for Demand Gen ad groups. Retrieval and management of Demand
602
- # Gen resources is currently in beta. This method will begin rolling out to all
603
- # partners on *June 10, 2026* and be available to all partners on *June 24, 2026*
604
- # .
592
+ # only supported for Demand Gen ad groups.
605
593
  # @param [Fixnum] advertiser_id
606
594
  # Required. The ID of the advertiser the ad groups belong to.
607
595
  # @param [Google::Apis::DisplayvideoV3::BulkEditAdGroupAssignedTargetingOptionsRequest] bulk_edit_ad_group_assigned_targeting_options_request_object
@@ -699,10 +687,7 @@ module Google
699
687
  end
700
688
 
701
689
  # Creates a new ad group. Returns the newly created ad group if successful. This
702
- # method is only supported for Demand Gen ad groups. Retrieval and management of
703
- # Demand Gen resources is currently in beta. This method will begin rolling out
704
- # to all partners on *June 10, 2026* and be available to all partners on *June
705
- # 24, 2026*.
690
+ # method is only supported for Demand Gen ad groups.
706
691
  # @param [Fixnum] advertiser_id
707
692
  # Output only. The unique ID of the advertiser the ad group belongs to.
708
693
  # @param [Google::Apis::DisplayvideoV3::AdGroup] ad_group_object
@@ -736,10 +721,7 @@ module Google
736
721
  end
737
722
 
738
723
  # Deletes a AdGroup. Returns error code `NOT_FOUND` if the ad group does not
739
- # exist. This method is only supported for Demand Gen ad groups. Retrieval and
740
- # management of Demand Gen resources is currently in beta. This method will
741
- # begin rolling out to all partners on *June 10, 2026* and be available to all
742
- # partners on *June 24, 2026*.
724
+ # exist. This method is only supported for Demand Gen ad groups.
743
725
  # @param [Fixnum] advertiser_id
744
726
  # Required. The ID of the advertiser this ad group belongs to.
745
727
  # @param [Fixnum] ad_group_id
@@ -868,10 +850,7 @@ module Google
868
850
  end
869
851
 
870
852
  # Updates an existing ad group. Returns the updated ad group if successful. This
871
- # method is only supported for Demand Gen ad groups. Retrieval and management of
872
- # Demand Gen resources is currently in beta. This method will begin rolling out
873
- # to all partners on *June 10, 2026* and be available to all partners on *June
874
- # 24, 2026*.
853
+ # method is only supported for Demand Gen ad groups.
875
854
  # @param [Fixnum] advertiser_id
876
855
  # Output only. The unique ID of the advertiser the ad group belongs to.
877
856
  # @param [Fixnum] ad_group_id
@@ -912,9 +891,6 @@ module Google
912
891
 
913
892
  # Assigns a targeting option to an ad group. Returns the assigned targeting
914
893
  # option if successful. This method is only supported for Demand Gen ad groups.
915
- # Retrieval and management of Demand Gen resources is currently in beta. This
916
- # method will begin rolling out to all partners on *June 10, 2026* and be
917
- # available to all partners on *June 24, 2026*.
918
894
  # @param [Fixnum] advertiser_id
919
895
  # Required. The ID of the advertiser the ad group belongs to.
920
896
  # @param [Fixnum] ad_group_id
@@ -962,9 +938,7 @@ module Google
962
938
 
963
939
  # Deletes an assigned targeting option from an ad group. This method is only
964
940
  # supported for Demand Gen ad groups with the AdGroupFormat `
965
- # AD_GROUP_FORMAT_DEMAND_GEN`. Retrieval and management of Demand Gen resources
966
- # is currently in beta. This method will begin rolling out to all partners on *
967
- # June 10, 2026* and be available to all partners on *June 24, 2026*.
941
+ # AD_GROUP_FORMAT_DEMAND_GEN`.
968
942
  # @param [Fixnum] advertiser_id
969
943
  # Required. The ID of the advertiser the ad group belongs to.
970
944
  # @param [Fixnum] ad_group_id
@@ -4655,224 +4629,6 @@ module Google
4655
4629
  execute_or_queue_command(command, &block)
4656
4630
  end
4657
4631
 
4658
- # Creates a FirstAndThirdPartyAudience. Only supported for the following
4659
- # audience_type: * `CUSTOMER_MATCH_CONTACT_INFO` * `CUSTOMER_MATCH_DEVICE_ID`
4660
- # @param [Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience] first_and_third_party_audience_object
4661
- # @param [Fixnum] advertiser_id
4662
- # Required. The ID of the advertiser under whom the FirstAndThirdPartyAudience
4663
- # will be created.
4664
- # @param [String] fields
4665
- # Selector specifying which fields to include in a partial response.
4666
- # @param [String] quota_user
4667
- # Available to use for quota purposes for server-side applications. Can be any
4668
- # arbitrary string assigned to a user, but should not exceed 40 characters.
4669
- # @param [Google::Apis::RequestOptions] options
4670
- # Request-specific options
4671
- #
4672
- # @yield [result, err] Result & error if block supplied
4673
- # @yieldparam result [Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience] parsed result object
4674
- # @yieldparam err [StandardError] error object if request failed
4675
- #
4676
- # @return [Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience]
4677
- #
4678
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4679
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4680
- # @raise [Google::Apis::AuthorizationError] Authorization is required
4681
- def create_first_and_third_party_audience(first_and_third_party_audience_object = nil, advertiser_id: nil, fields: nil, quota_user: nil, options: nil, &block)
4682
- command = make_simple_command(:post, 'v3/firstAndThirdPartyAudiences', options)
4683
- command.request_representation = Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience::Representation
4684
- command.request_object = first_and_third_party_audience_object
4685
- command.response_representation = Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience::Representation
4686
- command.response_class = Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience
4687
- command.query['advertiserId'] = advertiser_id unless advertiser_id.nil?
4688
- command.query['fields'] = fields unless fields.nil?
4689
- command.query['quotaUser'] = quota_user unless quota_user.nil?
4690
- execute_or_queue_command(command, &block)
4691
- end
4692
-
4693
- # Updates the member list of a Customer Match audience. Only supported for the
4694
- # following audience_type: * `CUSTOMER_MATCH_CONTACT_INFO` * `
4695
- # CUSTOMER_MATCH_DEVICE_ID`
4696
- # @param [Fixnum] first_and_third_party_audience_id
4697
- # Required. The ID of the Customer Match FirstAndThirdPartyAudience whose
4698
- # members will be edited.
4699
- # @param [Google::Apis::DisplayvideoV3::EditCustomerMatchMembersRequest] edit_customer_match_members_request_object
4700
- # @param [String] fields
4701
- # Selector specifying which fields to include in a partial response.
4702
- # @param [String] quota_user
4703
- # Available to use for quota purposes for server-side applications. Can be any
4704
- # arbitrary string assigned to a user, but should not exceed 40 characters.
4705
- # @param [Google::Apis::RequestOptions] options
4706
- # Request-specific options
4707
- #
4708
- # @yield [result, err] Result & error if block supplied
4709
- # @yieldparam result [Google::Apis::DisplayvideoV3::EditCustomerMatchMembersResponse] parsed result object
4710
- # @yieldparam err [StandardError] error object if request failed
4711
- #
4712
- # @return [Google::Apis::DisplayvideoV3::EditCustomerMatchMembersResponse]
4713
- #
4714
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4715
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4716
- # @raise [Google::Apis::AuthorizationError] Authorization is required
4717
- def edit_first_and_third_party_audience_customer_match_members(first_and_third_party_audience_id, edit_customer_match_members_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
4718
- command = make_simple_command(:post, 'v3/firstAndThirdPartyAudiences/{+firstAndThirdPartyAudienceId}:editCustomerMatchMembers', options)
4719
- command.request_representation = Google::Apis::DisplayvideoV3::EditCustomerMatchMembersRequest::Representation
4720
- command.request_object = edit_customer_match_members_request_object
4721
- command.response_representation = Google::Apis::DisplayvideoV3::EditCustomerMatchMembersResponse::Representation
4722
- command.response_class = Google::Apis::DisplayvideoV3::EditCustomerMatchMembersResponse
4723
- command.params['firstAndThirdPartyAudienceId'] = first_and_third_party_audience_id unless first_and_third_party_audience_id.nil?
4724
- command.query['fields'] = fields unless fields.nil?
4725
- command.query['quotaUser'] = quota_user unless quota_user.nil?
4726
- execute_or_queue_command(command, &block)
4727
- end
4728
-
4729
- # Gets a first and third party audience.
4730
- # @param [Fixnum] first_and_third_party_audience_id
4731
- # Required. The ID of the first and third party audience to fetch.
4732
- # @param [Fixnum] advertiser_id
4733
- # The ID of the advertiser that has access to the fetched first and third party
4734
- # audience.
4735
- # @param [Fixnum] partner_id
4736
- # The ID of the partner that has access to the fetched first and third party
4737
- # audience.
4738
- # @param [String] fields
4739
- # Selector specifying which fields to include in a partial response.
4740
- # @param [String] quota_user
4741
- # Available to use for quota purposes for server-side applications. Can be any
4742
- # arbitrary string assigned to a user, but should not exceed 40 characters.
4743
- # @param [Google::Apis::RequestOptions] options
4744
- # Request-specific options
4745
- #
4746
- # @yield [result, err] Result & error if block supplied
4747
- # @yieldparam result [Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience] parsed result object
4748
- # @yieldparam err [StandardError] error object if request failed
4749
- #
4750
- # @return [Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience]
4751
- #
4752
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4753
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4754
- # @raise [Google::Apis::AuthorizationError] Authorization is required
4755
- def get_first_and_third_party_audience(first_and_third_party_audience_id, advertiser_id: nil, partner_id: nil, fields: nil, quota_user: nil, options: nil, &block)
4756
- command = make_simple_command(:get, 'v3/firstAndThirdPartyAudiences/{+firstAndThirdPartyAudienceId}', options)
4757
- command.response_representation = Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience::Representation
4758
- command.response_class = Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience
4759
- command.params['firstAndThirdPartyAudienceId'] = first_and_third_party_audience_id unless first_and_third_party_audience_id.nil?
4760
- command.query['advertiserId'] = advertiser_id unless advertiser_id.nil?
4761
- command.query['partnerId'] = partner_id unless partner_id.nil?
4762
- command.query['fields'] = fields unless fields.nil?
4763
- command.query['quotaUser'] = quota_user unless quota_user.nil?
4764
- execute_or_queue_command(command, &block)
4765
- end
4766
-
4767
- # Lists first and third party audiences. The order is defined by the order_by
4768
- # parameter.
4769
- # @param [Fixnum] advertiser_id
4770
- # The ID of the advertiser that has access to the fetched first and third party
4771
- # audiences.
4772
- # @param [String] filter
4773
- # Allows filtering by first and third party audience fields. Supported syntax: *
4774
- # Filter expressions for first and third party audiences can only contain at
4775
- # most one restriction. * A restriction has the form of ``field` `operator` `
4776
- # value``. * All fields must use the `HAS (:)` operator. Supported fields: * `
4777
- # displayName` Examples: * All first and third party audiences for which the
4778
- # display name contains "Google": `displayName:"Google"`. The length of this
4779
- # field should be no more than 500 characters. Reference our [filter `LIST`
4780
- # requests](/display-video/api/guides/how-tos/filters) guide for more
4781
- # information.
4782
- # @param [String] order_by
4783
- # Field by which to sort the list. Acceptable values are: * `
4784
- # firstAndThirdPartyAudienceId` (default) * `displayName` The default sorting
4785
- # order is ascending. To specify descending order for a field, a suffix "desc"
4786
- # should be added to the field name. Example: `displayName desc`.
4787
- # @param [Fixnum] page_size
4788
- # Requested page size. Must be between `1` and `5000`. If unspecified, this
4789
- # value defaults to `5000`. Returns error code `INVALID_ARGUMENT` if an invalid
4790
- # value is specified.
4791
- # @param [String] page_token
4792
- # A token identifying a page of results the server should return. Typically,
4793
- # this is the value of next_page_token returned from the previous call to `
4794
- # ListFirstAndThirdPartyAudiences` method. If not specified, the first page of
4795
- # results will be returned.
4796
- # @param [Fixnum] partner_id
4797
- # The ID of the partner that has access to the fetched first and third party
4798
- # audiences.
4799
- # @param [String] fields
4800
- # Selector specifying which fields to include in a partial response.
4801
- # @param [String] quota_user
4802
- # Available to use for quota purposes for server-side applications. Can be any
4803
- # arbitrary string assigned to a user, but should not exceed 40 characters.
4804
- # @param [Google::Apis::RequestOptions] options
4805
- # Request-specific options
4806
- #
4807
- # @yield [result, err] Result & error if block supplied
4808
- # @yieldparam result [Google::Apis::DisplayvideoV3::ListFirstAndThirdPartyAudiencesResponse] parsed result object
4809
- # @yieldparam err [StandardError] error object if request failed
4810
- #
4811
- # @return [Google::Apis::DisplayvideoV3::ListFirstAndThirdPartyAudiencesResponse]
4812
- #
4813
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4814
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4815
- # @raise [Google::Apis::AuthorizationError] Authorization is required
4816
- def list_first_and_third_party_audiences(advertiser_id: nil, filter: nil, order_by: nil, page_size: nil, page_token: nil, partner_id: nil, fields: nil, quota_user: nil, options: nil, &block)
4817
- command = make_simple_command(:get, 'v3/firstAndThirdPartyAudiences', options)
4818
- command.response_representation = Google::Apis::DisplayvideoV3::ListFirstAndThirdPartyAudiencesResponse::Representation
4819
- command.response_class = Google::Apis::DisplayvideoV3::ListFirstAndThirdPartyAudiencesResponse
4820
- command.query['advertiserId'] = advertiser_id unless advertiser_id.nil?
4821
- command.query['filter'] = filter unless filter.nil?
4822
- command.query['orderBy'] = order_by unless order_by.nil?
4823
- command.query['pageSize'] = page_size unless page_size.nil?
4824
- command.query['pageToken'] = page_token unless page_token.nil?
4825
- command.query['partnerId'] = partner_id unless partner_id.nil?
4826
- command.query['fields'] = fields unless fields.nil?
4827
- command.query['quotaUser'] = quota_user unless quota_user.nil?
4828
- execute_or_queue_command(command, &block)
4829
- end
4830
-
4831
- # Updates an existing FirstAndThirdPartyAudience. Only supported for the
4832
- # following audience_type: * `CUSTOMER_MATCH_CONTACT_INFO` * `
4833
- # CUSTOMER_MATCH_DEVICE_ID`
4834
- # @param [Fixnum] first_and_third_party_audience_id
4835
- # Output only. The unique ID of the first and third party audience. Assigned by
4836
- # the system.
4837
- # @param [Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience] first_and_third_party_audience_object
4838
- # @param [Fixnum] advertiser_id
4839
- # Required. The ID of the owner advertiser of the updated
4840
- # FirstAndThirdPartyAudience.
4841
- # @param [String] update_mask
4842
- # Required. The mask to control which fields to update. Updates are only
4843
- # supported for the following fields: * `displayName` * `description` * `
4844
- # membershipDurationDays`
4845
- # @param [String] fields
4846
- # Selector specifying which fields to include in a partial response.
4847
- # @param [String] quota_user
4848
- # Available to use for quota purposes for server-side applications. Can be any
4849
- # arbitrary string assigned to a user, but should not exceed 40 characters.
4850
- # @param [Google::Apis::RequestOptions] options
4851
- # Request-specific options
4852
- #
4853
- # @yield [result, err] Result & error if block supplied
4854
- # @yieldparam result [Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience] parsed result object
4855
- # @yieldparam err [StandardError] error object if request failed
4856
- #
4857
- # @return [Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience]
4858
- #
4859
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4860
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4861
- # @raise [Google::Apis::AuthorizationError] Authorization is required
4862
- def patch_first_and_third_party_audience(first_and_third_party_audience_id, first_and_third_party_audience_object = nil, advertiser_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
4863
- command = make_simple_command(:patch, 'v3/firstAndThirdPartyAudiences/{+firstAndThirdPartyAudienceId}', options)
4864
- command.request_representation = Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience::Representation
4865
- command.request_object = first_and_third_party_audience_object
4866
- command.response_representation = Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience::Representation
4867
- command.response_class = Google::Apis::DisplayvideoV3::FirstAndThirdPartyAudience
4868
- command.params['firstAndThirdPartyAudienceId'] = first_and_third_party_audience_id unless first_and_third_party_audience_id.nil?
4869
- command.query['advertiserId'] = advertiser_id unless advertiser_id.nil?
4870
- command.query['updateMask'] = update_mask unless update_mask.nil?
4871
- command.query['fields'] = fields unless fields.nil?
4872
- command.query['quotaUser'] = quota_user unless quota_user.nil?
4873
- execute_or_queue_command(command, &block)
4874
- end
4875
-
4876
4632
  # Gets a Floodlight group.
4877
4633
  # @param [Fixnum] floodlight_group_id
4878
4634
  # Required. The ID of the Floodlight group to fetch.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-displayvideo_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.44.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-displayvideo_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.42.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.44.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3
62
62
  rdoc_options: []
63
63
  require_paths: