google-apis-displayvideo_v4 0.8.0 → 0.9.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: deeac918163ea6f55a8b40aa55f1d053ff944462ef79caada0f0ee11300db5ac
|
4
|
+
data.tar.gz: 814706adafb82ddd768d27a39e0c4cfa0f492bc0f701f293b929f9753351a2b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b9e248fbe13ae1795a9e1aa17f6740ec9fc751878890bdaccdfbc8d36da940e4be7b3b6010e5acd68bc43e409927452325364779cf32ad0fedbe2737140d793
|
7
|
+
data.tar.gz: 281712c25eac2320e15d874581e56de7606986f48c4aa82a65b85524f21d995f4730ab0a3c7d2f5c48c3b7df87b07918b7fb109912d505be984f8341afc69cbf
|
data/CHANGELOG.md
CHANGED
@@ -12485,6 +12485,40 @@ module Google
|
|
12485
12485
|
end
|
12486
12486
|
end
|
12487
12487
|
|
12488
|
+
# The video ad inventory control used in certain YouTube line item types.
|
12489
|
+
class VideoAdInventoryControl
|
12490
|
+
include Google::Apis::Core::Hashable
|
12491
|
+
|
12492
|
+
# Optional. Whether ads can serve as in-feed format.
|
12493
|
+
# Corresponds to the JSON property `allowInFeed`
|
12494
|
+
# @return [Boolean]
|
12495
|
+
attr_accessor :allow_in_feed
|
12496
|
+
alias_method :allow_in_feed?, :allow_in_feed
|
12497
|
+
|
12498
|
+
# Optional. Whether ads can serve as in-stream format.
|
12499
|
+
# Corresponds to the JSON property `allowInStream`
|
12500
|
+
# @return [Boolean]
|
12501
|
+
attr_accessor :allow_in_stream
|
12502
|
+
alias_method :allow_in_stream?, :allow_in_stream
|
12503
|
+
|
12504
|
+
# Optional. Whether ads can serve as shorts format.
|
12505
|
+
# Corresponds to the JSON property `allowShorts`
|
12506
|
+
# @return [Boolean]
|
12507
|
+
attr_accessor :allow_shorts
|
12508
|
+
alias_method :allow_shorts?, :allow_shorts
|
12509
|
+
|
12510
|
+
def initialize(**args)
|
12511
|
+
update!(**args)
|
12512
|
+
end
|
12513
|
+
|
12514
|
+
# Update properties of this object
|
12515
|
+
def update!(**args)
|
12516
|
+
@allow_in_feed = args[:allow_in_feed] if args.key?(:allow_in_feed)
|
12517
|
+
@allow_in_stream = args[:allow_in_stream] if args.key?(:allow_in_stream)
|
12518
|
+
@allow_shorts = args[:allow_shorts] if args.key?(:allow_shorts)
|
12519
|
+
end
|
12520
|
+
end
|
12521
|
+
|
12488
12522
|
# Settings related to VideoAdSequence.
|
12489
12523
|
class VideoAdSequenceSettings
|
12490
12524
|
include Google::Apis::Core::Hashable
|
@@ -12903,6 +12937,11 @@ module Google
|
|
12903
12937
|
# @return [Google::Apis::DisplayvideoV4::ThirdPartyMeasurementConfigs]
|
12904
12938
|
attr_accessor :third_party_measurement_configs
|
12905
12939
|
|
12940
|
+
# The video ad inventory control used in certain YouTube line item types.
|
12941
|
+
# Corresponds to the JSON property `videoAdInventoryControl`
|
12942
|
+
# @return [Google::Apis::DisplayvideoV4::VideoAdInventoryControl]
|
12943
|
+
attr_accessor :video_ad_inventory_control
|
12944
|
+
|
12906
12945
|
# Settings related to VideoAdSequence.
|
12907
12946
|
# Corresponds to the JSON property `videoAdSequenceSettings`
|
12908
12947
|
# @return [Google::Apis::DisplayvideoV4::VideoAdSequenceSettings]
|
@@ -12928,6 +12967,7 @@ module Google
|
|
12928
12967
|
@related_video_ids = args[:related_video_ids] if args.key?(:related_video_ids)
|
12929
12968
|
@target_frequency = args[:target_frequency] if args.key?(:target_frequency)
|
12930
12969
|
@third_party_measurement_configs = args[:third_party_measurement_configs] if args.key?(:third_party_measurement_configs)
|
12970
|
+
@video_ad_inventory_control = args[:video_ad_inventory_control] if args.key?(:video_ad_inventory_control)
|
12931
12971
|
@video_ad_sequence_settings = args[:video_ad_sequence_settings] if args.key?(:video_ad_sequence_settings)
|
12932
12972
|
@view_frequency_cap = args[:view_frequency_cap] if args.key?(:view_frequency_cap)
|
12933
12973
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DisplayvideoV4
|
18
18
|
# Version of the google-apis-displayvideo_v4 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.9.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 = "
|
25
|
+
REVISION = "20250709"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1948,6 +1948,12 @@ module Google
|
|
1948
1948
|
include Google::Apis::Core::JsonObjectSupport
|
1949
1949
|
end
|
1950
1950
|
|
1951
|
+
class VideoAdInventoryControl
|
1952
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1953
|
+
|
1954
|
+
include Google::Apis::Core::JsonObjectSupport
|
1955
|
+
end
|
1956
|
+
|
1951
1957
|
class VideoAdSequenceSettings
|
1952
1958
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1953
1959
|
|
@@ -5401,6 +5407,15 @@ module Google
|
|
5401
5407
|
end
|
5402
5408
|
end
|
5403
5409
|
|
5410
|
+
class VideoAdInventoryControl
|
5411
|
+
# @private
|
5412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5413
|
+
property :allow_in_feed, as: 'allowInFeed'
|
5414
|
+
property :allow_in_stream, as: 'allowInStream'
|
5415
|
+
property :allow_shorts, as: 'allowShorts'
|
5416
|
+
end
|
5417
|
+
end
|
5418
|
+
|
5404
5419
|
class VideoAdSequenceSettings
|
5405
5420
|
# @private
|
5406
5421
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5513,6 +5528,8 @@ module Google
|
|
5513
5528
|
|
5514
5529
|
property :third_party_measurement_configs, as: 'thirdPartyMeasurementConfigs', class: Google::Apis::DisplayvideoV4::ThirdPartyMeasurementConfigs, decorator: Google::Apis::DisplayvideoV4::ThirdPartyMeasurementConfigs::Representation
|
5515
5530
|
|
5531
|
+
property :video_ad_inventory_control, as: 'videoAdInventoryControl', class: Google::Apis::DisplayvideoV4::VideoAdInventoryControl, decorator: Google::Apis::DisplayvideoV4::VideoAdInventoryControl::Representation
|
5532
|
+
|
5516
5533
|
property :video_ad_sequence_settings, as: 'videoAdSequenceSettings', class: Google::Apis::DisplayvideoV4::VideoAdSequenceSettings, decorator: Google::Apis::DisplayvideoV4::VideoAdSequenceSettings::Representation
|
5517
5534
|
|
5518
5535
|
property :view_frequency_cap, as: 'viewFrequencyCap', class: Google::Apis::DisplayvideoV4::FrequencyCap, decorator: Google::Apis::DisplayvideoV4::FrequencyCap::Representation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-displayvideo_v4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.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_v4/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v4/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v4/v0.9.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v4
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|