google-apis-displayvideo_v2 0.50.0 → 0.52.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: c28f05d80c6d9ca14720864d38558fb245861a7e57b6cf92eb07319bee842bd7
4
- data.tar.gz: b0d0b172d2fee89dc47cb0c01e562051f880b196d9102611991c056f65b4a1b4
3
+ metadata.gz: 99f9084fe59440429adfdde0eaf0ef2dbd416f793eebefb48f4b8a0a7d44fe46
4
+ data.tar.gz: 0653ff113a517ec563a4b24a73d2fe206adbc049327f9c65787ccacf53c1f067
5
5
  SHA512:
6
- metadata.gz: de36de6866561b105855995e28b66caab26c2cb492349b38ca6108e3aeffb22826ede376cce20b1ad8f3fb1aca1cb0b8e6b835c6ae8917e71c260f79a0e9fbb6
7
- data.tar.gz: dc366e6b0457c6868575f1738001bd1246e0b867a03bf0b6307059b2fef2091b638aa99eee6044aae0cd236db2878fba5c1fd83987778b67ac11b50cb2bf72f0
6
+ metadata.gz: ca1867ece2019ee26a7dc3b8b6a5ede8292d914ec7fc7f77693f00c90145aade9d24b629cac5eb778bfe41e8023e0b34208cc4208867e59254d15f98c62f1609
7
+ data.tar.gz: a9e3893e199e428ec424356d1529946e57a8a394c18163ab687a6fdf96e1b4db2bf3cc9b0a91a8cc79270de346cd9f25a3fcbd4365a282b1c51522fb3f11f7c4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-displayvideo_v2
2
2
 
3
+ ### v0.52.0 (2025-09-28)
4
+
5
+ * Regenerated from discovery document revision 20250925
6
+
7
+ ### v0.51.0 (2025-08-24)
8
+
9
+ * Regenerated from discovery document revision 20250819
10
+
3
11
  ### v0.50.0 (2025-08-03)
4
12
 
5
13
  * Regenerated from discovery document revision 20250729
@@ -144,6 +144,17 @@ module Google
144
144
  # @return [Fixnum]
145
145
  attr_accessor :advertiser_id
146
146
 
147
+ # Optional. Whether this advertiser contains line items that serve European
148
+ # Union political ads. If this field is set to `
149
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING`, then the following will happen: *
150
+ # Any new line items created under this advertiser will be assigned `
151
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not otherwise specified. * Any
152
+ # existing line items under this advertiser that do not have a set value be
153
+ # updated to `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` within a day.
154
+ # Corresponds to the JSON property `containsEuPoliticalAds`
155
+ # @return [String]
156
+ attr_accessor :contains_eu_political_ads
157
+
147
158
  # Creatives related settings of an advertiser.
148
159
  # Corresponds to the JSON property `creativeConfig`
149
160
  # @return [Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig]
@@ -220,6 +231,7 @@ module Google
220
231
  def update!(**args)
221
232
  @ad_server_config = args[:ad_server_config] if args.key?(:ad_server_config)
222
233
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
234
+ @contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
223
235
  @creative_config = args[:creative_config] if args.key?(:creative_config)
224
236
  @data_access_config = args[:data_access_config] if args.key?(:data_access_config)
225
237
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -2265,7 +2277,7 @@ module Google
2265
2277
  attr_accessor :target_line_item
2266
2278
 
2267
2279
  # Required. A field mask identifying which fields to update. Only the following
2268
- # fields are currently supported: * entityStatus
2280
+ # fields are currently supported: * entityStatus * containsEuPoliticalAds
2269
2281
  # Corresponds to the JSON property `updateMask`
2270
2282
  # @return [String]
2271
2283
  attr_accessor :update_mask
@@ -4846,6 +4858,17 @@ module Google
4846
4858
  class DuplicateLineItemRequest
4847
4859
  include Google::Apis::Core::Hashable
4848
4860
 
4861
+ # Whether this line item will serve European Union political ads. If
4862
+ # contains_eu_political_ads has been set to `
4863
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` in the parent advertiser, then this
4864
+ # field will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not
4865
+ # otherwise specified. This field can then be updated using the UI, API, or
4866
+ # Structured Data Files. This field must be assigned when creating a new line
4867
+ # item. Otherwise, **the `advertisers.lineItems.create` request will fail**.
4868
+ # Corresponds to the JSON property `containsEuPoliticalAds`
4869
+ # @return [String]
4870
+ attr_accessor :contains_eu_political_ads
4871
+
4849
4872
  # The display name of the new line item. Must be UTF-8 encoded with a maximum
4850
4873
  # size of 240 bytes.
4851
4874
  # Corresponds to the JSON property `targetDisplayName`
@@ -4858,6 +4881,7 @@ module Google
4858
4881
 
4859
4882
  # Update properties of this object
4860
4883
  def update!(**args)
4884
+ @contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
4861
4885
  @target_display_name = args[:target_display_name] if args.key?(:target_display_name)
4862
4886
  end
4863
4887
  end
@@ -5493,6 +5517,17 @@ module Google
5493
5517
  class GenerateDefaultLineItemRequest
5494
5518
  include Google::Apis::Core::Hashable
5495
5519
 
5520
+ # Whether this line item will serve European Union political ads. If
5521
+ # contains_eu_political_ads has been set to `
5522
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` in the parent advertiser, then this
5523
+ # field will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not
5524
+ # otherwise specified. This field can then be updated using the UI, API, or
5525
+ # Structured Data Files. This field must be assigned when creating a new line
5526
+ # item. Otherwise, **the `advertisers.lineItems.create` request will fail**.
5527
+ # Corresponds to the JSON property `containsEuPoliticalAds`
5528
+ # @return [String]
5529
+ attr_accessor :contains_eu_political_ads
5530
+
5496
5531
  # Required. The display name of the line item. Must be UTF-8 encoded with a
5497
5532
  # maximum size of 240 bytes.
5498
5533
  # Corresponds to the JSON property `displayName`
@@ -5520,6 +5555,7 @@ module Google
5520
5555
 
5521
5556
  # Update properties of this object
5522
5557
  def update!(**args)
5558
+ @contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
5523
5559
  @display_name = args[:display_name] if args.key?(:display_name)
5524
5560
  @insertion_order_id = args[:insertion_order_id] if args.key?(:insertion_order_id)
5525
5561
  @line_item_type = args[:line_item_type] if args.key?(:line_item_type)
@@ -7032,6 +7068,17 @@ module Google
7032
7068
  # @return [Fixnum]
7033
7069
  attr_accessor :campaign_id
7034
7070
 
7071
+ # Whether this line item will serve European Union political ads. If
7072
+ # contains_eu_political_ads has been set to `
7073
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` in the parent advertiser, then this
7074
+ # field will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not
7075
+ # otherwise specified. This field can then be updated using the UI, API, or
7076
+ # Structured Data Files. This field must be assigned when creating a new line
7077
+ # item. Otherwise, **the `advertisers.lineItems.create` request will fail**.
7078
+ # Corresponds to the JSON property `containsEuPoliticalAds`
7079
+ # @return [String]
7080
+ attr_accessor :contains_eu_political_ads
7081
+
7035
7082
  # Settings that control how conversions are counted. All post-click conversions
7036
7083
  # will be counted. A percentage value can be set for post-view conversions
7037
7084
  # counting.
@@ -7166,6 +7213,7 @@ module Google
7166
7213
  @bid_strategy = args[:bid_strategy] if args.key?(:bid_strategy)
7167
7214
  @budget = args[:budget] if args.key?(:budget)
7168
7215
  @campaign_id = args[:campaign_id] if args.key?(:campaign_id)
7216
+ @contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
7169
7217
  @conversion_counting = args[:conversion_counting] if args.key?(:conversion_counting)
7170
7218
  @creative_ids = args[:creative_ids] if args.key?(:creative_ids)
7171
7219
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -11766,9 +11814,10 @@ module Google
11766
11814
  # The value used by the bidding strategy. When the bidding strategy is assigned
11767
11815
  # at the line item level, this field is only applicable for the following
11768
11816
  # strategy types: * `YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_TARGET_CPA` * `
11769
- # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_TARGET_ROAS` When the bidding
11770
- # strategy is assigned at the ad group level, this field is only applicable for
11771
- # the following strategy types: * `
11817
+ # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_TARGET_ROAS` * `
11818
+ # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_RESERVE_SHARE_OF_VOICE` When the
11819
+ # bidding strategy is assigned at the ad group level, this field is only
11820
+ # applicable for the following strategy types: * `
11772
11821
  # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_MANUAL_CPM` * `
11773
11822
  # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_MANUAL_CPV` * `
11774
11823
  # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_TARGET_CPA` * `
@@ -11946,7 +11995,7 @@ module Google
11946
11995
  attr_accessor :brand_lift_vendor_configs
11947
11996
 
11948
11997
  # The third-party vendors measuring brand safety. The following third-party
11949
- # vendors are applicable: * `THIRD_PARTY_VENDOR_ZERF` * `
11998
+ # vendors are applicable: * `THIRD_PARTY_VENDOR_ZEFR` * `
11950
11999
  # THIRD_PARTY_VENDOR_DOUBLE_VERIFY` * `THIRD_PARTY_VENDOR_INTEGRAL_AD_SCIENCE`
11951
12000
  # Corresponds to the JSON property `brandSafetyVendorConfigs`
11952
12001
  # @return [Array<Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig>]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DisplayvideoV2
18
18
  # Version of the google-apis-displayvideo_v2 gem
19
- GEM_VERSION = "0.50.0"
19
+ GEM_VERSION = "0.52.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 = "20250729"
25
+ REVISION = "20250925"
26
26
  end
27
27
  end
28
28
  end
@@ -1956,6 +1956,7 @@ module Google
1956
1956
  property :ad_server_config, as: 'adServerConfig', class: Google::Apis::DisplayvideoV2::AdvertiserAdServerConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserAdServerConfig::Representation
1957
1957
 
1958
1958
  property :advertiser_id, :numeric_string => true, as: 'advertiserId'
1959
+ property :contains_eu_political_ads, as: 'containsEuPoliticalAds'
1959
1960
  property :creative_config, as: 'creativeConfig', class: Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig::Representation
1960
1961
 
1961
1962
  property :data_access_config, as: 'dataAccessConfig', class: Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig::Representation
@@ -3209,6 +3210,7 @@ module Google
3209
3210
  class DuplicateLineItemRequest
3210
3211
  # @private
3211
3212
  class Representation < Google::Apis::Core::JsonRepresentation
3213
+ property :contains_eu_political_ads, as: 'containsEuPoliticalAds'
3212
3214
  property :target_display_name, as: 'targetDisplayName'
3213
3215
  end
3214
3216
  end
@@ -3391,6 +3393,7 @@ module Google
3391
3393
  class GenerateDefaultLineItemRequest
3392
3394
  # @private
3393
3395
  class Representation < Google::Apis::Core::JsonRepresentation
3396
+ property :contains_eu_political_ads, as: 'containsEuPoliticalAds'
3394
3397
  property :display_name, as: 'displayName'
3395
3398
  property :insertion_order_id, :numeric_string => true, as: 'insertionOrderId'
3396
3399
  property :line_item_type, as: 'lineItemType'
@@ -3783,6 +3786,7 @@ module Google
3783
3786
  property :budget, as: 'budget', class: Google::Apis::DisplayvideoV2::LineItemBudget, decorator: Google::Apis::DisplayvideoV2::LineItemBudget::Representation
3784
3787
 
3785
3788
  property :campaign_id, :numeric_string => true, as: 'campaignId'
3789
+ property :contains_eu_political_ads, as: 'containsEuPoliticalAds'
3786
3790
  property :conversion_counting, as: 'conversionCounting', class: Google::Apis::DisplayvideoV2::ConversionCountingConfig, decorator: Google::Apis::DisplayvideoV2::ConversionCountingConfig::Representation
3787
3791
 
3788
3792
  collection :creative_ids, as: 'creativeIds'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-displayvideo_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.50.0
4
+ version: 0.52.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_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.50.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.52.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v2
62
62
  rdoc_options: []
63
63
  require_paths: