google-apis-displayvideo_v2 0.7.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f16197a6bb368346f3e0c958e6fcf67127d65aaaf2206b475a6d9abaaaa98b07
4
- data.tar.gz: dfe32a3d2ef48cc963b069f223b9e7470bb031baf31c29a113258cc65f4c1b3f
3
+ metadata.gz: 4eb732d78b3bc4ec78bf2f4afa5153e6fa4dca2083d3c3ef05190fc3fc5d23de
4
+ data.tar.gz: 0aec08f1f23fee9e5e23859f30c1f9cc2596b3bd899f80e7a402679ae00ea3fb
5
5
  SHA512:
6
- metadata.gz: 32c4951eb8dadc7eab1c4e32ec7d78294e5432e3df3bdc836ae28afb39277ea79fd67a069827542250e3b8710ece8a93c5a9c1c9708d7cbcc2a995f59d7a13a6
7
- data.tar.gz: 62626d0e0b3ee9e7019ffcb048ff2f0ecea5cf3ad72c304e9a0939ac0046083cf493ef991f75c293e8ad5819554a155936a2961324f615b910472d8d4953ce77
6
+ metadata.gz: 0520a9ad4a54615a91697b85750148a588351b41bd8cbaf82b65c45e284d6d9c9b374ae92c9cd6e1848e29e0fea716aa77c0886ac7b84f1ea55497fc5e640349
7
+ data.tar.gz: 22348e22625728b87facf5ee28ec20619a6f922a65cd5237aec44a1cf3ccf90fb209e12a5b0379c958ba64d985e877892c7c7b0454a35bd99f2e6e804d878a42
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
8
+ ### v0.8.0 (2022-12-14)
9
+
10
+ * Regenerated from discovery document revision 20221208
11
+
3
12
  ### v0.7.0 (2022-12-07)
4
13
 
5
14
  * Regenerated from discovery document revision 20221205
@@ -245,7 +245,9 @@ module Google
245
245
  class AdvertiserBillingConfig
246
246
  include Google::Apis::Core::Hashable
247
247
 
248
- # The ID of a billing profile assigned to the advertiser.
248
+ # The ID of a billing profile assigned to the advertiser. This field will
249
+ # default to the default billing profile ID of the advertiser's parent partner
250
+ # if a value is not provided.
249
251
  # Corresponds to the JSON property `billingProfileId`
250
252
  # @return [Fixnum]
251
253
  attr_accessor :billing_profile_id
@@ -729,13 +731,10 @@ module Google
729
731
  # @return [String]
730
732
  attr_accessor :assigned_targeting_option_id
731
733
 
732
- # Output only. An alias for the assigned targeting option id field. This field
733
- # is only supported for targeting types with enum targeting enabled. This value
734
- # can be used in place of the assignedTargetingOptionId required for GET and
735
- # DELETE targeting methods. An alias for the assignedTargetingOptionId. This
736
- # value can be used in place of `assignedTargetingOptionId` when retrieving or
737
- # deleting existing targeting. This field will only be supported for all
738
- # assigned targeting options of the following targeting types: * `
734
+ # Output only. An alias for the assigned_targeting_option_id. This value can be
735
+ # used in place of `assignedTargetingOptionId` when retrieving or deleting
736
+ # existing targeting. This field will only be supported for all assigned
737
+ # targeting options of the following targeting types: * `
739
738
  # TARGETING_TYPE_AGE_RANGE` * `TARGETING_TYPE_DEVICE_TYPE` * `
740
739
  # TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `TARGETING_TYPE_ENVIRONMENT`
741
740
  # * `TARGETING_TYPE_EXCHANGE` * `TARGETING_TYPE_GENDER` * `
@@ -10867,6 +10866,69 @@ module Google
10867
10866
  end
10868
10867
  end
10869
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
+
10870
10932
  # Video player size targeting option details. This will be populated in the
10871
10933
  # video_player_size_details field when targeting_type is `
10872
10934
  # TARGETING_TYPE_VIDEO_PLAYER_SIZE`. Explicitly targeting all options is not
@@ -11050,6 +11112,11 @@ module Google
11050
11112
  # @return [Google::Apis::DisplayvideoV2::YoutubeAndPartnersThirdPartyMeasurementSettings]
11051
11113
  attr_accessor :third_party_measurement_settings
11052
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
+
11053
11120
  # Settings that control the number of times a user may be shown with the same ad
11054
11121
  # during a given time period.
11055
11122
  # Corresponds to the JSON property `viewFrequencyCap`
@@ -11066,6 +11133,7 @@ module Google
11066
11133
  @content_category = args[:content_category] if args.key?(:content_category)
11067
11134
  @inventory_source_settings = args[:inventory_source_settings] if args.key?(:inventory_source_settings)
11068
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)
11069
11137
  @view_frequency_cap = args[:view_frequency_cap] if args.key?(:view_frequency_cap)
11070
11138
  end
11071
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.7.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.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221205"
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.7.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: 2022-12-12 00:00:00.000000000 Z
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.7.0
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.3.14
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