google-apis-displayvideo_v3 0.24.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: 91fe80587c721031cdbcc3853a069be08418fbf8be399c3da8480806d66b9dda
4
- data.tar.gz: 812d503b2db371196b242992091ec89544e22f4557b5ab40dcce92a103ef2295
3
+ metadata.gz: '003769ddb6b1931cdf6996cfd8da1e4870042cf0fb01c31c278b84ec53d085ca'
4
+ data.tar.gz: 67ebc70d765f1bbd4d926ee5ff9fda3cbfb5142241dfa59ee58ae8813e4b4c73
5
5
  SHA512:
6
- metadata.gz: 34cf2a0dfeb92c0e6b173e8af3e624c535f5d66b7d746d2c7a42f0784657d4b9adefde44203c7f53f7b117abc0118bb9000e5fe4cdd9432e42c11a48f670c452
7
- data.tar.gz: f8136923fcdba0db79d638eed0ee3447086aef66f1c9c1a8eb0cf7fffea480dccb93b56a15122487ddd32353fe8c2215020a494ae3bd3cd64f67d1e32e507fb0
6
+ metadata.gz: 924777cbb362fd1799a8bd19a3f9ca98bf4126424c699eb88e87aaddd9e498882a7cd9055f8590323adc4f7f83921d0953142a83ce54c847b7c702ee60c40c69
7
+ data.tar.gz: acf17096289cfa5802a9c57eb4e16d118bffea31c5ccadfc50e03157d102d939ee18ca48a5f31997a9f879b90a1f653aeb2df1441dc448df50e601833ff08519
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.24.0 (2025-03-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20250313
@@ -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.
@@ -11825,6 +11887,13 @@ module Google
11825
11887
  # @return [Google::Apis::DisplayvideoV3::ContentStreamTypeTargetingOptionDetails]
11826
11888
  attr_accessor :content_stream_type_details
11827
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
+
11828
11897
  # Represents a targetable device make and model. This will be populated in the
11829
11898
  # device_make_model_details field of a TargetingOption when targeting_type is `
11830
11899
  # TARGETING_TYPE_DEVICE_MAKE_MODEL`.
@@ -11996,6 +12065,7 @@ module Google
11996
12065
  @content_instream_position_details = args[:content_instream_position_details] if args.key?(:content_instream_position_details)
11997
12066
  @content_outstream_position_details = args[:content_outstream_position_details] if args.key?(:content_outstream_position_details)
11998
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)
11999
12069
  @device_make_model_details = args[:device_make_model_details] if args.key?(:device_make_model_details)
12000
12070
  @device_type_details = args[:device_type_details] if args.key?(:device_type_details)
12001
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.24.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 = "20250313"
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
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.24.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-16 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.24.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: