google-apis-displayvideo_v2 0.48.0 → 0.49.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: 85a0513457e03676b7af958c6cdd50639493e5fc38d60742dd16edb361968bd3
|
4
|
+
data.tar.gz: 169e464d7d50c3fe740715f96c9653e06887ad4451fed046a44a55a34db911ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71ed5ab20140d6939513bf66cc3b8f28bbf07a629a6f72a688878152415b0089d1261484e5a8856762a3bcd8fd8c2e79842c9f42cecfd6775e26d4cd430aed37
|
7
|
+
data.tar.gz: 7dcda7d5510465206e9de667f1a346519ed8d932b1029a9419bf7eff55c0eda8b5a9de28b328e45fe62baa4d3e4fea52ffe174052b63485cce6067c5e63b940a
|
data/CHANGELOG.md
CHANGED
@@ -11103,6 +11103,40 @@ module Google
|
|
11103
11103
|
end
|
11104
11104
|
end
|
11105
11105
|
|
11106
|
+
# The video ad inventory control used in certain YouTube line item types.
|
11107
|
+
class VideoAdInventoryControl
|
11108
|
+
include Google::Apis::Core::Hashable
|
11109
|
+
|
11110
|
+
# Optional. Whether ads can serve as in-feed format.
|
11111
|
+
# Corresponds to the JSON property `allowInFeed`
|
11112
|
+
# @return [Boolean]
|
11113
|
+
attr_accessor :allow_in_feed
|
11114
|
+
alias_method :allow_in_feed?, :allow_in_feed
|
11115
|
+
|
11116
|
+
# Optional. Whether ads can serve as in-stream format.
|
11117
|
+
# Corresponds to the JSON property `allowInStream`
|
11118
|
+
# @return [Boolean]
|
11119
|
+
attr_accessor :allow_in_stream
|
11120
|
+
alias_method :allow_in_stream?, :allow_in_stream
|
11121
|
+
|
11122
|
+
# Optional. Whether ads can serve as shorts format.
|
11123
|
+
# Corresponds to the JSON property `allowShorts`
|
11124
|
+
# @return [Boolean]
|
11125
|
+
attr_accessor :allow_shorts
|
11126
|
+
alias_method :allow_shorts?, :allow_shorts
|
11127
|
+
|
11128
|
+
def initialize(**args)
|
11129
|
+
update!(**args)
|
11130
|
+
end
|
11131
|
+
|
11132
|
+
# Update properties of this object
|
11133
|
+
def update!(**args)
|
11134
|
+
@allow_in_feed = args[:allow_in_feed] if args.key?(:allow_in_feed)
|
11135
|
+
@allow_in_stream = args[:allow_in_stream] if args.key?(:allow_in_stream)
|
11136
|
+
@allow_shorts = args[:allow_shorts] if args.key?(:allow_shorts)
|
11137
|
+
end
|
11138
|
+
end
|
11139
|
+
|
11106
11140
|
# Settings related to VideoAdSequence.
|
11107
11141
|
class VideoAdSequenceSettings
|
11108
11142
|
include Google::Apis::Core::Hashable
|
@@ -11747,6 +11781,11 @@ module Google
|
|
11747
11781
|
# @return [Google::Apis::DisplayvideoV2::YoutubeAndPartnersThirdPartyMeasurementSettings]
|
11748
11782
|
attr_accessor :third_party_measurement_settings
|
11749
11783
|
|
11784
|
+
# The video ad inventory control used in certain YouTube line item types.
|
11785
|
+
# Corresponds to the JSON property `videoAdInventoryControl`
|
11786
|
+
# @return [Google::Apis::DisplayvideoV2::VideoAdInventoryControl]
|
11787
|
+
attr_accessor :video_ad_inventory_control
|
11788
|
+
|
11750
11789
|
# Settings related to VideoAdSequence.
|
11751
11790
|
# Corresponds to the JSON property `videoAdSequenceSettings`
|
11752
11791
|
# @return [Google::Apis::DisplayvideoV2::VideoAdSequenceSettings]
|
@@ -11773,6 +11812,7 @@ module Google
|
|
11773
11812
|
@related_video_ids = args[:related_video_ids] if args.key?(:related_video_ids)
|
11774
11813
|
@target_frequency = args[:target_frequency] if args.key?(:target_frequency)
|
11775
11814
|
@third_party_measurement_settings = args[:third_party_measurement_settings] if args.key?(:third_party_measurement_settings)
|
11815
|
+
@video_ad_inventory_control = args[:video_ad_inventory_control] if args.key?(:video_ad_inventory_control)
|
11776
11816
|
@video_ad_sequence_settings = args[:video_ad_sequence_settings] if args.key?(:video_ad_sequence_settings)
|
11777
11817
|
@view_frequency_cap = args[:view_frequency_cap] if args.key?(:view_frequency_cap)
|
11778
11818
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.49.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
|
@@ -1780,6 +1780,12 @@ module Google
|
|
1780
1780
|
include Google::Apis::Core::JsonObjectSupport
|
1781
1781
|
end
|
1782
1782
|
|
1783
|
+
class VideoAdInventoryControl
|
1784
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1785
|
+
|
1786
|
+
include Google::Apis::Core::JsonObjectSupport
|
1787
|
+
end
|
1788
|
+
|
1783
1789
|
class VideoAdSequenceSettings
|
1784
1790
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1785
1791
|
|
@@ -4896,6 +4902,15 @@ module Google
|
|
4896
4902
|
end
|
4897
4903
|
end
|
4898
4904
|
|
4905
|
+
class VideoAdInventoryControl
|
4906
|
+
# @private
|
4907
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4908
|
+
property :allow_in_feed, as: 'allowInFeed'
|
4909
|
+
property :allow_in_stream, as: 'allowInStream'
|
4910
|
+
property :allow_shorts, as: 'allowShorts'
|
4911
|
+
end
|
4912
|
+
end
|
4913
|
+
|
4899
4914
|
class VideoAdSequenceSettings
|
4900
4915
|
# @private
|
4901
4916
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5070,6 +5085,8 @@ module Google
|
|
5070
5085
|
|
5071
5086
|
property :third_party_measurement_settings, as: 'thirdPartyMeasurementSettings', class: Google::Apis::DisplayvideoV2::YoutubeAndPartnersThirdPartyMeasurementSettings, decorator: Google::Apis::DisplayvideoV2::YoutubeAndPartnersThirdPartyMeasurementSettings::Representation
|
5072
5087
|
|
5088
|
+
property :video_ad_inventory_control, as: 'videoAdInventoryControl', class: Google::Apis::DisplayvideoV2::VideoAdInventoryControl, decorator: Google::Apis::DisplayvideoV2::VideoAdInventoryControl::Representation
|
5089
|
+
|
5073
5090
|
property :video_ad_sequence_settings, as: 'videoAdSequenceSettings', class: Google::Apis::DisplayvideoV2::VideoAdSequenceSettings, decorator: Google::Apis::DisplayvideoV2::VideoAdSequenceSettings::Representation
|
5074
5091
|
|
5075
5092
|
property :view_frequency_cap, as: 'viewFrequencyCap', class: Google::Apis::DisplayvideoV2::FrequencyCap, decorator: Google::Apis::DisplayvideoV2::FrequencyCap::Representation
|
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.
|
4
|
+
version: 0.49.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.49.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:
|