google-apis-displayvideo_v3 0.30.0 → 0.31.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: ec1bd61fa5e73fb6bcfa7279134fdab62fa1972dd7f6210b168ed65b562defd2
4
- data.tar.gz: fc27e6a5575ab381f0e45489c5ebe099cd2b770fced286a2f92e82d8c892e62c
3
+ metadata.gz: 237c0a056e9e4a44aea0500617c29e95d4e668fb9335918e09bf4564588d8cd6
4
+ data.tar.gz: 58ff4641dbe13becf453feb5e339f65df70016567167b26300307b63d6532b9c
5
5
  SHA512:
6
- metadata.gz: 55e6a9d4d1ba8bb2b8895d36945c46e3ef047733030bc6c0c1a396cd9b86a617bad0a01c5840bedea6665d9543b0a0d9fc0031c706a0bda26befdd20ccab5a05
7
- data.tar.gz: de70e2e42d8d0dfc4e59a59e20898edd27dcc886fcc22fbd4dae8796e57fb7b5233c9f7746977a6ded3aea1f162b2f6319d7d4b1333ec2dd2efd3143c7f761ae
6
+ metadata.gz: 7a58e2b925847e41ad78d0cb9392f62f41d7e99ebd02761d1d26c7d89db7737b36c4573b81de98feac3c227e303c24631a20f11a175336b66ccf9b8927f42dfd
7
+ data.tar.gz: 7e022cb4f31cef13d4d0ccfa08bdd5cbd3ea539331171f7a1f6120041fb1630bdaec9d794a2e6ff758d8552914490a1e58ab2a15d61cd83e5d690603d2495b30
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-displayvideo_v3
2
2
 
3
+ ### v0.31.0 (2025-07-13)
4
+
5
+ * Regenerated from discovery document revision 20250709
6
+
3
7
  ### v0.30.0 (2025-06-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20250625
@@ -12630,6 +12630,40 @@ module Google
12630
12630
  end
12631
12631
  end
12632
12632
 
12633
+ # The video ad inventory control used in certain YouTube line item types.
12634
+ class VideoAdInventoryControl
12635
+ include Google::Apis::Core::Hashable
12636
+
12637
+ # Optional. Whether ads can serve as in-feed format.
12638
+ # Corresponds to the JSON property `allowInFeed`
12639
+ # @return [Boolean]
12640
+ attr_accessor :allow_in_feed
12641
+ alias_method :allow_in_feed?, :allow_in_feed
12642
+
12643
+ # Optional. Whether ads can serve as in-stream format.
12644
+ # Corresponds to the JSON property `allowInStream`
12645
+ # @return [Boolean]
12646
+ attr_accessor :allow_in_stream
12647
+ alias_method :allow_in_stream?, :allow_in_stream
12648
+
12649
+ # Optional. Whether ads can serve as shorts format.
12650
+ # Corresponds to the JSON property `allowShorts`
12651
+ # @return [Boolean]
12652
+ attr_accessor :allow_shorts
12653
+ alias_method :allow_shorts?, :allow_shorts
12654
+
12655
+ def initialize(**args)
12656
+ update!(**args)
12657
+ end
12658
+
12659
+ # Update properties of this object
12660
+ def update!(**args)
12661
+ @allow_in_feed = args[:allow_in_feed] if args.key?(:allow_in_feed)
12662
+ @allow_in_stream = args[:allow_in_stream] if args.key?(:allow_in_stream)
12663
+ @allow_shorts = args[:allow_shorts] if args.key?(:allow_shorts)
12664
+ end
12665
+ end
12666
+
12633
12667
  # Settings related to VideoAdSequence.
12634
12668
  class VideoAdSequenceSettings
12635
12669
  include Google::Apis::Core::Hashable
@@ -13048,6 +13082,11 @@ module Google
13048
13082
  # @return [Google::Apis::DisplayvideoV3::ThirdPartyMeasurementConfigs]
13049
13083
  attr_accessor :third_party_measurement_configs
13050
13084
 
13085
+ # The video ad inventory control used in certain YouTube line item types.
13086
+ # Corresponds to the JSON property `videoAdInventoryControl`
13087
+ # @return [Google::Apis::DisplayvideoV3::VideoAdInventoryControl]
13088
+ attr_accessor :video_ad_inventory_control
13089
+
13051
13090
  # Settings related to VideoAdSequence.
13052
13091
  # Corresponds to the JSON property `videoAdSequenceSettings`
13053
13092
  # @return [Google::Apis::DisplayvideoV3::VideoAdSequenceSettings]
@@ -13073,6 +13112,7 @@ module Google
13073
13112
  @related_video_ids = args[:related_video_ids] if args.key?(:related_video_ids)
13074
13113
  @target_frequency = args[:target_frequency] if args.key?(:target_frequency)
13075
13114
  @third_party_measurement_configs = args[:third_party_measurement_configs] if args.key?(:third_party_measurement_configs)
13115
+ @video_ad_inventory_control = args[:video_ad_inventory_control] if args.key?(:video_ad_inventory_control)
13076
13116
  @video_ad_sequence_settings = args[:video_ad_sequence_settings] if args.key?(:video_ad_sequence_settings)
13077
13117
  @view_frequency_cap = args[:view_frequency_cap] if args.key?(:view_frequency_cap)
13078
13118
  end
@@ -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.30.0"
19
+ GEM_VERSION = "0.31.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 = "20250625"
25
+ REVISION = "20250709"
26
26
  end
27
27
  end
28
28
  end
@@ -1978,6 +1978,12 @@ module Google
1978
1978
  include Google::Apis::Core::JsonObjectSupport
1979
1979
  end
1980
1980
 
1981
+ class VideoAdInventoryControl
1982
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1983
+
1984
+ include Google::Apis::Core::JsonObjectSupport
1985
+ end
1986
+
1981
1987
  class VideoAdSequenceSettings
1982
1988
  class Representation < Google::Apis::Core::JsonRepresentation; end
1983
1989
 
@@ -5477,6 +5483,15 @@ module Google
5477
5483
  end
5478
5484
  end
5479
5485
 
5486
+ class VideoAdInventoryControl
5487
+ # @private
5488
+ class Representation < Google::Apis::Core::JsonRepresentation
5489
+ property :allow_in_feed, as: 'allowInFeed'
5490
+ property :allow_in_stream, as: 'allowInStream'
5491
+ property :allow_shorts, as: 'allowShorts'
5492
+ end
5493
+ end
5494
+
5480
5495
  class VideoAdSequenceSettings
5481
5496
  # @private
5482
5497
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5589,6 +5604,8 @@ module Google
5589
5604
 
5590
5605
  property :third_party_measurement_configs, as: 'thirdPartyMeasurementConfigs', class: Google::Apis::DisplayvideoV3::ThirdPartyMeasurementConfigs, decorator: Google::Apis::DisplayvideoV3::ThirdPartyMeasurementConfigs::Representation
5591
5606
 
5607
+ property :video_ad_inventory_control, as: 'videoAdInventoryControl', class: Google::Apis::DisplayvideoV3::VideoAdInventoryControl, decorator: Google::Apis::DisplayvideoV3::VideoAdInventoryControl::Representation
5608
+
5592
5609
  property :video_ad_sequence_settings, as: 'videoAdSequenceSettings', class: Google::Apis::DisplayvideoV3::VideoAdSequenceSettings, decorator: Google::Apis::DisplayvideoV3::VideoAdSequenceSettings::Representation
5593
5610
 
5594
5611
  property :view_frequency_cap, as: 'viewFrequencyCap', class: Google::Apis::DisplayvideoV3::FrequencyCap, decorator: Google::Apis::DisplayvideoV3::FrequencyCap::Representation
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.30.0
4
+ version: 0.31.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.30.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.31.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: