google-apis-displayvideo_v2 0.50.0 → 0.51.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: ed179ae6ca965e93c5e25cf46d19d138ed8d4dac6250f7b28bb998ee106ef331
4
+ data.tar.gz: cae6cbb277308847f37921bb511489ca7906e5155a3593e96783fc0b05483885
5
5
  SHA512:
6
- metadata.gz: de36de6866561b105855995e28b66caab26c2cb492349b38ca6108e3aeffb22826ede376cce20b1ad8f3fb1aca1cb0b8e6b835c6ae8917e71c260f79a0e9fbb6
7
- data.tar.gz: dc366e6b0457c6868575f1738001bd1246e0b867a03bf0b6307059b2fef2091b638aa99eee6044aae0cd236db2878fba5c1fd83987778b67ac11b50cb2bf72f0
6
+ metadata.gz: 5c802240888bfe4b7afc8e12acb95ea0f2e436ccc54a328bc982c7064b5a9437c93a0815bf35de4a112a621600f9eb17ab3c010eeb3f22f60f9438956447ba89
7
+ data.tar.gz: e5dc7917d98fb3fb963358e7126f6a01b333752eceb6951ca074d40c557d0ff33123ce79473f97d9040ead1c6084065621b814c32c283038a40d6a233aafed1b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-displayvideo_v2
2
2
 
3
+ ### v0.51.0 (2025-08-24)
4
+
5
+ * Regenerated from discovery document revision 20250819
6
+
3
7
  ### v0.50.0 (2025-08-03)
4
8
 
5
9
  * 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,20 @@ 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. *Warning*: Starting **September 8, 2025**, this field
4867
+ # must be set. If not, either the value `
4868
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` will be assigned to the line item
4869
+ # if the parent advertiser has declared that it does not serve EU political ads,
4870
+ # or **the request will fail**.
4871
+ # Corresponds to the JSON property `containsEuPoliticalAds`
4872
+ # @return [String]
4873
+ attr_accessor :contains_eu_political_ads
4874
+
4849
4875
  # The display name of the new line item. Must be UTF-8 encoded with a maximum
4850
4876
  # size of 240 bytes.
4851
4877
  # Corresponds to the JSON property `targetDisplayName`
@@ -4858,6 +4884,7 @@ module Google
4858
4884
 
4859
4885
  # Update properties of this object
4860
4886
  def update!(**args)
4887
+ @contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
4861
4888
  @target_display_name = args[:target_display_name] if args.key?(:target_display_name)
4862
4889
  end
4863
4890
  end
@@ -5493,6 +5520,20 @@ module Google
5493
5520
  class GenerateDefaultLineItemRequest
5494
5521
  include Google::Apis::Core::Hashable
5495
5522
 
5523
+ # Whether this line item will serve European Union political ads. If
5524
+ # contains_eu_political_ads has been set to `
5525
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` in the parent advertiser, then this
5526
+ # field will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not
5527
+ # otherwise specified. This field can then be updated using the UI, API, or
5528
+ # Structured Data Files. *Warning*: Starting **September 8, 2025**, this field
5529
+ # must be set. If not, either the value `
5530
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` will be assigned to the line item
5531
+ # if the parent advertiser has declared that it does not serve EU political ads,
5532
+ # or **the request will fail**.
5533
+ # Corresponds to the JSON property `containsEuPoliticalAds`
5534
+ # @return [String]
5535
+ attr_accessor :contains_eu_political_ads
5536
+
5496
5537
  # Required. The display name of the line item. Must be UTF-8 encoded with a
5497
5538
  # maximum size of 240 bytes.
5498
5539
  # Corresponds to the JSON property `displayName`
@@ -5520,6 +5561,7 @@ module Google
5520
5561
 
5521
5562
  # Update properties of this object
5522
5563
  def update!(**args)
5564
+ @contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
5523
5565
  @display_name = args[:display_name] if args.key?(:display_name)
5524
5566
  @insertion_order_id = args[:insertion_order_id] if args.key?(:insertion_order_id)
5525
5567
  @line_item_type = args[:line_item_type] if args.key?(:line_item_type)
@@ -7032,6 +7074,20 @@ module Google
7032
7074
  # @return [Fixnum]
7033
7075
  attr_accessor :campaign_id
7034
7076
 
7077
+ # Whether this line item will serve European Union political ads. If
7078
+ # contains_eu_political_ads has been set to `
7079
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` in the parent advertiser, then this
7080
+ # field will be assigned `DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` if not
7081
+ # otherwise specified. This field can then be updated using the UI, API, or
7082
+ # Structured Data Files. *Warning*: Starting **September 8, 2025**, this field
7083
+ # must be set when creating a new line item. If not, either the value `
7084
+ # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING` will be assigned if the parent
7085
+ # advertiser has declared that it does not serve EU political ads, or **the `
7086
+ # advertisers.lineItems.create` request will fail**.
7087
+ # Corresponds to the JSON property `containsEuPoliticalAds`
7088
+ # @return [String]
7089
+ attr_accessor :contains_eu_political_ads
7090
+
7035
7091
  # Settings that control how conversions are counted. All post-click conversions
7036
7092
  # will be counted. A percentage value can be set for post-view conversions
7037
7093
  # counting.
@@ -7166,6 +7222,7 @@ module Google
7166
7222
  @bid_strategy = args[:bid_strategy] if args.key?(:bid_strategy)
7167
7223
  @budget = args[:budget] if args.key?(:budget)
7168
7224
  @campaign_id = args[:campaign_id] if args.key?(:campaign_id)
7225
+ @contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
7169
7226
  @conversion_counting = args[:conversion_counting] if args.key?(:conversion_counting)
7170
7227
  @creative_ids = args[:creative_ids] if args.key?(:creative_ids)
7171
7228
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -11766,9 +11823,10 @@ module Google
11766
11823
  # The value used by the bidding strategy. When the bidding strategy is assigned
11767
11824
  # at the line item level, this field is only applicable for the following
11768
11825
  # 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: * `
11826
+ # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_TARGET_ROAS` * `
11827
+ # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_RESERVE_SHARE_OF_VOICE` When the
11828
+ # bidding strategy is assigned at the ad group level, this field is only
11829
+ # applicable for the following strategy types: * `
11772
11830
  # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_MANUAL_CPM` * `
11773
11831
  # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_MANUAL_CPV` * `
11774
11832
  # YOUTUBE_AND_PARTNERS_BIDDING_STRATEGY_TYPE_TARGET_CPA` * `
@@ -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.51.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 = "20250819"
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.51.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.51.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: