google-apis-displayvideo_v3 0.23.0 → 0.25.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: 37ccfc0ecc251683a6aa329b12588b3e38418c5613c740a2a16ce4f039e43795
4
- data.tar.gz: 79ed557a8892a1a55ddd115d3d79798f80b7f66e0bec91b6ba194a4eb3d58228
3
+ metadata.gz: '003769ddb6b1931cdf6996cfd8da1e4870042cf0fb01c31c278b84ec53d085ca'
4
+ data.tar.gz: 67ebc70d765f1bbd4d926ee5ff9fda3cbfb5142241dfa59ee58ae8813e4b4c73
5
5
  SHA512:
6
- metadata.gz: 9eecbf448ea126899f80441be9a6f72ac894132a155aa332db3d271daacc0735eb3ee625f208a9a05f5ba790f107d532ae5e51b7d2681871748d2bf268f09333
7
- data.tar.gz: bb3ca941d29d0781894ace4f75c77c7885e051d5fa8b1bcdc66c4972d27fecc4235aaa499d9d02ed5a41a48616c0dbf0b6ccd5e93d2898b8281aa69ae55febd3
6
+ metadata.gz: 924777cbb362fd1799a8bd19a3f9ca98bf4126424c699eb88e87aaddd9e498882a7cd9055f8590323adc4f7f83921d0953142a83ce54c847b7c702ee60c40c69
7
+ data.tar.gz: acf17096289cfa5802a9c57eb4e16d118bffea31c5ccadfc50e03157d102d939ee18ca48a5f31997a9f879b90a1f653aeb2df1441dc448df50e601833ff08519
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-displayvideo_v3
2
2
 
3
+ ### v0.25.0 (2025-03-23)
4
+
5
+ * Regenerated from discovery document revision 20250320
6
+
7
+ ### v0.24.0 (2025-03-16)
8
+
9
+ * Regenerated from discovery document revision 20250313
10
+
3
11
  ### v0.23.0 (2025-02-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20250220
@@ -1435,6 +1435,13 @@ module Google
1435
1435
  # @return [Google::Apis::DisplayvideoV3::ContentStreamTypeAssignedTargetingOptionDetails]
1436
1436
  attr_accessor :content_stream_type_details
1437
1437
 
1438
+ # Targeting details for content theme. This will be populated in the details
1439
+ # field of an AssignedTargetingOption when targeting_type is `
1440
+ # TARGETING_TYPE_CONTENT_THEME_EXCLUSION`.
1441
+ # Corresponds to the JSON property `contentThemeExclusionDetails`
1442
+ # @return [Google::Apis::DisplayvideoV3::ContentThemeAssignedTargetingOptionDetails]
1443
+ attr_accessor :content_theme_exclusion_details
1444
+
1438
1445
  # Representation of a segment of time defined on a specific day of the week and
1439
1446
  # with a start and end time. The time represented by `start_hour` must be before
1440
1447
  # the time represented by `end_hour`.
@@ -1702,6 +1709,7 @@ module Google
1702
1709
  @content_instream_position_details = args[:content_instream_position_details] if args.key?(:content_instream_position_details)
1703
1710
  @content_outstream_position_details = args[:content_outstream_position_details] if args.key?(:content_outstream_position_details)
1704
1711
  @content_stream_type_details = args[:content_stream_type_details] if args.key?(:content_stream_type_details)
1712
+ @content_theme_exclusion_details = args[:content_theme_exclusion_details] if args.key?(:content_theme_exclusion_details)
1705
1713
  @day_and_time_details = args[:day_and_time_details] if args.key?(:day_and_time_details)
1706
1714
  @device_make_model_details = args[:device_make_model_details] if args.key?(:device_make_model_details)
1707
1715
  @device_type_details = args[:device_type_details] if args.key?(:device_type_details)
@@ -4072,6 +4080,60 @@ module Google
4072
4080
  end
4073
4081
  end
4074
4082
 
4083
+ # Targeting details for content theme. This will be populated in the details
4084
+ # field of an AssignedTargetingOption when targeting_type is `
4085
+ # TARGETING_TYPE_CONTENT_THEME_EXCLUSION`.
4086
+ class ContentThemeAssignedTargetingOptionDetails
4087
+ include Google::Apis::Core::Hashable
4088
+
4089
+ # Output only. An enum for the DV360 content theme classifier.
4090
+ # Corresponds to the JSON property `contentTheme`
4091
+ # @return [String]
4092
+ attr_accessor :content_theme
4093
+
4094
+ # Required. An enum for the DV360 content theme classified to be EXCLUDED.
4095
+ # Corresponds to the JSON property `excludedContentTheme`
4096
+ # @return [String]
4097
+ attr_accessor :excluded_content_theme
4098
+
4099
+ # Required. ID of the content theme to be EXCLUDED.
4100
+ # Corresponds to the JSON property `excludedTargetingOptionId`
4101
+ # @return [String]
4102
+ attr_accessor :excluded_targeting_option_id
4103
+
4104
+ def initialize(**args)
4105
+ update!(**args)
4106
+ end
4107
+
4108
+ # Update properties of this object
4109
+ def update!(**args)
4110
+ @content_theme = args[:content_theme] if args.key?(:content_theme)
4111
+ @excluded_content_theme = args[:excluded_content_theme] if args.key?(:excluded_content_theme)
4112
+ @excluded_targeting_option_id = args[:excluded_targeting_option_id] if args.key?(:excluded_targeting_option_id)
4113
+ end
4114
+ end
4115
+
4116
+ # Represents a targetable content theme. This will be populated in the
4117
+ # content_theme_details field of the TargetingOption when targeting_type is `
4118
+ # TARGETING_TYPE_CONTENT_THEME_EXCLUSION`.
4119
+ class ContentThemeTargetingOptionDetails
4120
+ include Google::Apis::Core::Hashable
4121
+
4122
+ # Output only. An enum for the DV360 content theme content classifier.
4123
+ # Corresponds to the JSON property `contentTheme`
4124
+ # @return [String]
4125
+ attr_accessor :content_theme
4126
+
4127
+ def initialize(**args)
4128
+ update!(**args)
4129
+ end
4130
+
4131
+ # Update properties of this object
4132
+ def update!(**args)
4133
+ @content_theme = args[:content_theme] if args.key?(:content_theme)
4134
+ end
4135
+ end
4136
+
4075
4137
  # Settings that control how conversions are counted. All post-click conversions
4076
4138
  # will be counted. A percentage value can be set for post-view conversions
4077
4139
  # counting.
@@ -6529,25 +6591,16 @@ module Google
6529
6591
  attr_accessor :max_views
6530
6592
 
6531
6593
  # The time unit in which the frequency cap will be applied. Required when
6532
- # unlimited is `false`. *Warning*: On **February 28, 2025**, frequency cap time
6533
- # periods greater than 30 days will no longer be accepted. This field will no
6534
- # longer accept the value `TIME_UNIT_LIFETIME`. [Read more about this announced
6535
- # change](/display-video/api/deprecations#features.lifetime_frequency_cap).
6594
+ # unlimited is `false`.
6536
6595
  # Corresponds to the JSON property `timeUnit`
6537
6596
  # @return [String]
6538
6597
  attr_accessor :time_unit
6539
6598
 
6540
6599
  # The number of time_unit the frequency cap will last. Required when unlimited
6541
6600
  # is `false`. The following restrictions apply based on the value of time_unit: *
6542
- # `TIME_UNIT_LIFETIME` - this field is output only and will default to 1 * `
6543
- # TIME_UNIT_MONTHS` - must be between 1 and 2 * `TIME_UNIT_WEEKS` - must be
6544
- # between 1 and 4 * `TIME_UNIT_DAYS` - must be between 1 and 6 * `
6545
- # TIME_UNIT_HOURS` - must be between 1 and 23 * `TIME_UNIT_MINUTES` - must be
6546
- # between 1 and 59 *Warning*: On **February 28, 2025**, frequency cap time
6547
- # periods greater than 30 days will no longer be accepted. This field will no
6548
- # longer accept the value 2 if the value of time_unit is `TIME_UNIT_MONTHS`. [
6549
- # Read more about this announced change](/display-video/api/deprecations#
6550
- # features.lifetime_frequency_cap).
6601
+ # `TIME_UNIT_MONTHS` - must be 1 * `TIME_UNIT_WEEKS` - must be between 1 and 4 *
6602
+ # `TIME_UNIT_DAYS` - must be between 1 and 6 * `TIME_UNIT_HOURS` - must be
6603
+ # between 1 and 23 * `TIME_UNIT_MINUTES` - must be between 1 and 59
6551
6604
  # Corresponds to the JSON property `timeUnitCount`
6552
6605
  # @return [Fixnum]
6553
6606
  attr_accessor :time_unit_count
@@ -11713,16 +11766,13 @@ module Google
11713
11766
 
11714
11767
  # Required. Whether to enable Optimized Targeting for the line item. Optimized
11715
11768
  # targeting is not compatible with all bid strategies. Attempting to set this
11716
- # field to `true` for a line item using one of the following combinations of
11717
- # BiddingStrategy fields and BiddingStrategyPerformanceGoalType will result in
11718
- # an error: maximize_auto_spend_bid: * `
11719
- # BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CIVA` * `
11769
+ # field to `true` for a line item using the BiddingStrategy field fixed_bid or
11770
+ # one of the following combinations of BiddingStrategy fields and
11771
+ # BiddingStrategyPerformanceGoalType will result in an error:
11772
+ # maximize_auto_spend_bid: * `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CIVA` * `
11720
11773
  # BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_IVO_TEN` * `
11721
11774
  # BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_AV_VIEWED` performance_goal_auto_bid: *
11722
- # `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_VIEWABLE_CPM` *Warning*: Starting **
11723
- # March 6, 2025**, this field will stop being compatible when using the
11724
- # BiddingStrategy field fixed_bid. [Read more about this announced change](/
11725
- # display-video/api/deprecations#features.ot_fixed_bid)
11775
+ # `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_VIEWABLE_CPM`
11726
11776
  # Corresponds to the JSON property `enableOptimizedTargeting`
11727
11777
  # @return [Boolean]
11728
11778
  attr_accessor :enable_optimized_targeting
@@ -11837,6 +11887,13 @@ module Google
11837
11887
  # @return [Google::Apis::DisplayvideoV3::ContentStreamTypeTargetingOptionDetails]
11838
11888
  attr_accessor :content_stream_type_details
11839
11889
 
11890
+ # Represents a targetable content theme. This will be populated in the
11891
+ # content_theme_details field of the TargetingOption when targeting_type is `
11892
+ # TARGETING_TYPE_CONTENT_THEME_EXCLUSION`.
11893
+ # Corresponds to the JSON property `contentThemeDetails`
11894
+ # @return [Google::Apis::DisplayvideoV3::ContentThemeTargetingOptionDetails]
11895
+ attr_accessor :content_theme_details
11896
+
11840
11897
  # Represents a targetable device make and model. This will be populated in the
11841
11898
  # device_make_model_details field of a TargetingOption when targeting_type is `
11842
11899
  # TARGETING_TYPE_DEVICE_MAKE_MODEL`.
@@ -12008,6 +12065,7 @@ module Google
12008
12065
  @content_instream_position_details = args[:content_instream_position_details] if args.key?(:content_instream_position_details)
12009
12066
  @content_outstream_position_details = args[:content_outstream_position_details] if args.key?(:content_outstream_position_details)
12010
12067
  @content_stream_type_details = args[:content_stream_type_details] if args.key?(:content_stream_type_details)
12068
+ @content_theme_details = args[:content_theme_details] if args.key?(:content_theme_details)
12011
12069
  @device_make_model_details = args[:device_make_model_details] if args.key?(:device_make_model_details)
12012
12070
  @device_type_details = args[:device_type_details] if args.key?(:device_type_details)
12013
12071
  @digital_content_label_details = args[:digital_content_label_details] if args.key?(:digital_content_label_details)
@@ -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.23.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250220"
25
+ REVISION = "20250320"
26
26
  end
27
27
  end
28
28
  end
@@ -628,6 +628,18 @@ module Google
628
628
  include Google::Apis::Core::JsonObjectSupport
629
629
  end
630
630
 
631
+ class ContentThemeAssignedTargetingOptionDetails
632
+ class Representation < Google::Apis::Core::JsonRepresentation; end
633
+
634
+ include Google::Apis::Core::JsonObjectSupport
635
+ end
636
+
637
+ class ContentThemeTargetingOptionDetails
638
+ class Representation < Google::Apis::Core::JsonRepresentation; end
639
+
640
+ include Google::Apis::Core::JsonObjectSupport
641
+ end
642
+
631
643
  class ConversionCountingConfig
632
644
  class Representation < Google::Apis::Core::JsonRepresentation; end
633
645
 
@@ -2423,6 +2435,8 @@ module Google
2423
2435
 
2424
2436
  property :content_stream_type_details, as: 'contentStreamTypeDetails', class: Google::Apis::DisplayvideoV3::ContentStreamTypeAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV3::ContentStreamTypeAssignedTargetingOptionDetails::Representation
2425
2437
 
2438
+ property :content_theme_exclusion_details, as: 'contentThemeExclusionDetails', class: Google::Apis::DisplayvideoV3::ContentThemeAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV3::ContentThemeAssignedTargetingOptionDetails::Representation
2439
+
2426
2440
  property :day_and_time_details, as: 'dayAndTimeDetails', class: Google::Apis::DisplayvideoV3::DayAndTimeAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV3::DayAndTimeAssignedTargetingOptionDetails::Representation
2427
2441
 
2428
2442
  property :device_make_model_details, as: 'deviceMakeModelDetails', class: Google::Apis::DisplayvideoV3::DeviceMakeModelAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV3::DeviceMakeModelAssignedTargetingOptionDetails::Representation
@@ -3148,6 +3162,22 @@ module Google
3148
3162
  end
3149
3163
  end
3150
3164
 
3165
+ class ContentThemeAssignedTargetingOptionDetails
3166
+ # @private
3167
+ class Representation < Google::Apis::Core::JsonRepresentation
3168
+ property :content_theme, as: 'contentTheme'
3169
+ property :excluded_content_theme, as: 'excludedContentTheme'
3170
+ property :excluded_targeting_option_id, as: 'excludedTargetingOptionId'
3171
+ end
3172
+ end
3173
+
3174
+ class ContentThemeTargetingOptionDetails
3175
+ # @private
3176
+ class Representation < Google::Apis::Core::JsonRepresentation
3177
+ property :content_theme, as: 'contentTheme'
3178
+ end
3179
+ end
3180
+
3151
3181
  class ConversionCountingConfig
3152
3182
  # @private
3153
3183
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5241,6 +5271,8 @@ module Google
5241
5271
 
5242
5272
  property :content_stream_type_details, as: 'contentStreamTypeDetails', class: Google::Apis::DisplayvideoV3::ContentStreamTypeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV3::ContentStreamTypeTargetingOptionDetails::Representation
5243
5273
 
5274
+ property :content_theme_details, as: 'contentThemeDetails', class: Google::Apis::DisplayvideoV3::ContentThemeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV3::ContentThemeTargetingOptionDetails::Representation
5275
+
5244
5276
  property :device_make_model_details, as: 'deviceMakeModelDetails', class: Google::Apis::DisplayvideoV3::DeviceMakeModelTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV3::DeviceMakeModelTargetingOptionDetails::Representation
5245
5277
 
5246
5278
  property :device_type_details, as: 'deviceTypeDetails', class: Google::Apis::DisplayvideoV3::DeviceTypeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV3::DeviceTypeTargetingOptionDetails::Representation
@@ -4986,9 +4986,8 @@ module Google
4986
4986
  # should be added to the field name. Example: `displayName desc`.
4987
4987
  # @param [Fixnum] page_size
4988
4988
  # Requested page size. Must be between `1` and `5000`. If unspecified, this
4989
- # value defaults to `100`. Returns error code `INVALID_ARGUMENT` if an invalid
4990
- # value is specified. *Warning*: Starting **March 6, 2025**, this value will
4991
- # default to `5000` if not set.
4989
+ # value defaults to `5000`. Returns error code `INVALID_ARGUMENT` if an invalid
4990
+ # value is specified.
4992
4991
  # @param [String] page_token
4993
4992
  # A token identifying a page of results the server should return. Typically,
4994
4993
  # this is the value of next_page_token returned from the previous call to `
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-displayvideo_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-23 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.23.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.25.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: