google-apis-displayvideo_v2 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: 4eb732d78b3bc4ec78bf2f4afa5153e6fa4dca2083d3c3ef05190fc3fc5d23de
|
|
4
|
+
data.tar.gz: 0aec08f1f23fee9e5e23859f30c1f9cc2596b3bd899f80e7a402679ae00ea3fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0520a9ad4a54615a91697b85750148a588351b41bd8cbaf82b65c45e284d6d9c9b374ae92c9cd6e1848e29e0fea716aa77c0886ac7b84f1ea55497fc5e640349
|
|
7
|
+
data.tar.gz: 22348e22625728b87facf5ee28ec20619a6f922a65cd5237aec44a1cf3ccf90fb209e12a5b0379c958ba64d985e877892c7c7b0454a35bd99f2e6e804d878a42
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-displayvideo_v2
|
|
2
2
|
|
|
3
|
+
### v0.9.0 (2023-01-08)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20230105
|
|
6
|
+
* Regenerated using generator version 0.11.1
|
|
7
|
+
|
|
3
8
|
### v0.8.0 (2022-12-14)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20221208
|
|
@@ -10866,6 +10866,69 @@ module Google
|
|
|
10866
10866
|
end
|
|
10867
10867
|
end
|
|
10868
10868
|
|
|
10869
|
+
# Settings related to VideoAdSequence.
|
|
10870
|
+
class VideoAdSequenceSettings
|
|
10871
|
+
include Google::Apis::Core::Hashable
|
|
10872
|
+
|
|
10873
|
+
# The minimum time interval before the same user sees this sequence again.
|
|
10874
|
+
# Corresponds to the JSON property `minimumDuration`
|
|
10875
|
+
# @return [String]
|
|
10876
|
+
attr_accessor :minimum_duration
|
|
10877
|
+
|
|
10878
|
+
# The steps of which the sequence consists.
|
|
10879
|
+
# Corresponds to the JSON property `steps`
|
|
10880
|
+
# @return [Array<Google::Apis::DisplayvideoV2::VideoAdSequenceStep>]
|
|
10881
|
+
attr_accessor :steps
|
|
10882
|
+
|
|
10883
|
+
def initialize(**args)
|
|
10884
|
+
update!(**args)
|
|
10885
|
+
end
|
|
10886
|
+
|
|
10887
|
+
# Update properties of this object
|
|
10888
|
+
def update!(**args)
|
|
10889
|
+
@minimum_duration = args[:minimum_duration] if args.key?(:minimum_duration)
|
|
10890
|
+
@steps = args[:steps] if args.key?(:steps)
|
|
10891
|
+
end
|
|
10892
|
+
end
|
|
10893
|
+
|
|
10894
|
+
# The detail of a single step in a VideoAdSequence.
|
|
10895
|
+
class VideoAdSequenceStep
|
|
10896
|
+
include Google::Apis::Core::Hashable
|
|
10897
|
+
|
|
10898
|
+
# The ID of the corresponding ad group of the step.
|
|
10899
|
+
# Corresponds to the JSON property `adGroupId`
|
|
10900
|
+
# @return [Fixnum]
|
|
10901
|
+
attr_accessor :ad_group_id
|
|
10902
|
+
|
|
10903
|
+
# The interaction on the previous step that will lead the viewer to this step.
|
|
10904
|
+
# The first step does not have interaction_type.
|
|
10905
|
+
# Corresponds to the JSON property `interactionType`
|
|
10906
|
+
# @return [String]
|
|
10907
|
+
attr_accessor :interaction_type
|
|
10908
|
+
|
|
10909
|
+
# The ID of the previous step. The first step does not have previous step.
|
|
10910
|
+
# Corresponds to the JSON property `previousStepId`
|
|
10911
|
+
# @return [Fixnum]
|
|
10912
|
+
attr_accessor :previous_step_id
|
|
10913
|
+
|
|
10914
|
+
# The ID of the step.
|
|
10915
|
+
# Corresponds to the JSON property `stepId`
|
|
10916
|
+
# @return [Fixnum]
|
|
10917
|
+
attr_accessor :step_id
|
|
10918
|
+
|
|
10919
|
+
def initialize(**args)
|
|
10920
|
+
update!(**args)
|
|
10921
|
+
end
|
|
10922
|
+
|
|
10923
|
+
# Update properties of this object
|
|
10924
|
+
def update!(**args)
|
|
10925
|
+
@ad_group_id = args[:ad_group_id] if args.key?(:ad_group_id)
|
|
10926
|
+
@interaction_type = args[:interaction_type] if args.key?(:interaction_type)
|
|
10927
|
+
@previous_step_id = args[:previous_step_id] if args.key?(:previous_step_id)
|
|
10928
|
+
@step_id = args[:step_id] if args.key?(:step_id)
|
|
10929
|
+
end
|
|
10930
|
+
end
|
|
10931
|
+
|
|
10869
10932
|
# Video player size targeting option details. This will be populated in the
|
|
10870
10933
|
# video_player_size_details field when targeting_type is `
|
|
10871
10934
|
# TARGETING_TYPE_VIDEO_PLAYER_SIZE`. Explicitly targeting all options is not
|
|
@@ -11049,6 +11112,11 @@ module Google
|
|
|
11049
11112
|
# @return [Google::Apis::DisplayvideoV2::YoutubeAndPartnersThirdPartyMeasurementSettings]
|
|
11050
11113
|
attr_accessor :third_party_measurement_settings
|
|
11051
11114
|
|
|
11115
|
+
# Settings related to VideoAdSequence.
|
|
11116
|
+
# Corresponds to the JSON property `videoAdSequenceSettings`
|
|
11117
|
+
# @return [Google::Apis::DisplayvideoV2::VideoAdSequenceSettings]
|
|
11118
|
+
attr_accessor :video_ad_sequence_settings
|
|
11119
|
+
|
|
11052
11120
|
# Settings that control the number of times a user may be shown with the same ad
|
|
11053
11121
|
# during a given time period.
|
|
11054
11122
|
# Corresponds to the JSON property `viewFrequencyCap`
|
|
@@ -11065,6 +11133,7 @@ module Google
|
|
|
11065
11133
|
@content_category = args[:content_category] if args.key?(:content_category)
|
|
11066
11134
|
@inventory_source_settings = args[:inventory_source_settings] if args.key?(:inventory_source_settings)
|
|
11067
11135
|
@third_party_measurement_settings = args[:third_party_measurement_settings] if args.key?(:third_party_measurement_settings)
|
|
11136
|
+
@video_ad_sequence_settings = args[:video_ad_sequence_settings] if args.key?(:video_ad_sequence_settings)
|
|
11068
11137
|
@view_frequency_cap = args[:view_frequency_cap] if args.key?(:view_frequency_cap)
|
|
11069
11138
|
end
|
|
11070
11139
|
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.9.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.11.
|
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230105"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1738,6 +1738,18 @@ module Google
|
|
|
1738
1738
|
include Google::Apis::Core::JsonObjectSupport
|
|
1739
1739
|
end
|
|
1740
1740
|
|
|
1741
|
+
class VideoAdSequenceSettings
|
|
1742
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1743
|
+
|
|
1744
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1745
|
+
end
|
|
1746
|
+
|
|
1747
|
+
class VideoAdSequenceStep
|
|
1748
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1749
|
+
|
|
1750
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1751
|
+
end
|
|
1752
|
+
|
|
1741
1753
|
class VideoPlayerSizeAssignedTargetingOptionDetails
|
|
1742
1754
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1743
1755
|
|
|
@@ -4725,6 +4737,25 @@ module Google
|
|
|
4725
4737
|
end
|
|
4726
4738
|
end
|
|
4727
4739
|
|
|
4740
|
+
class VideoAdSequenceSettings
|
|
4741
|
+
# @private
|
|
4742
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4743
|
+
property :minimum_duration, as: 'minimumDuration'
|
|
4744
|
+
collection :steps, as: 'steps', class: Google::Apis::DisplayvideoV2::VideoAdSequenceStep, decorator: Google::Apis::DisplayvideoV2::VideoAdSequenceStep::Representation
|
|
4745
|
+
|
|
4746
|
+
end
|
|
4747
|
+
end
|
|
4748
|
+
|
|
4749
|
+
class VideoAdSequenceStep
|
|
4750
|
+
# @private
|
|
4751
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4752
|
+
property :ad_group_id, :numeric_string => true, as: 'adGroupId'
|
|
4753
|
+
property :interaction_type, as: 'interactionType'
|
|
4754
|
+
property :previous_step_id, :numeric_string => true, as: 'previousStepId'
|
|
4755
|
+
property :step_id, :numeric_string => true, as: 'stepId'
|
|
4756
|
+
end
|
|
4757
|
+
end
|
|
4758
|
+
|
|
4728
4759
|
class VideoPlayerSizeAssignedTargetingOptionDetails
|
|
4729
4760
|
# @private
|
|
4730
4761
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4780,6 +4811,8 @@ module Google
|
|
|
4780
4811
|
|
|
4781
4812
|
property :third_party_measurement_settings, as: 'thirdPartyMeasurementSettings', class: Google::Apis::DisplayvideoV2::YoutubeAndPartnersThirdPartyMeasurementSettings, decorator: Google::Apis::DisplayvideoV2::YoutubeAndPartnersThirdPartyMeasurementSettings::Representation
|
|
4782
4813
|
|
|
4814
|
+
property :video_ad_sequence_settings, as: 'videoAdSequenceSettings', class: Google::Apis::DisplayvideoV2::VideoAdSequenceSettings, decorator: Google::Apis::DisplayvideoV2::VideoAdSequenceSettings::Representation
|
|
4815
|
+
|
|
4783
4816
|
property :view_frequency_cap, as: 'viewFrequencyCap', class: Google::Apis::DisplayvideoV2::FrequencyCap, decorator: Google::Apis::DisplayvideoV2::FrequencyCap::Representation
|
|
4784
4817
|
|
|
4785
4818
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.9.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.
|
|
78
|
+
rubygems_version: 3.4.2
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Display & Video 360 API V2
|