google-apis-displayvideo_v3 0.3.0 → 0.4.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: 340d8befed94e9ae260c78f0bb58c363a6eaa43858b3edd1ccf96aa23c6befd6
4
- data.tar.gz: 45a82f5b691b4b24cf69d92fed398cb7ca4bd7078fd9952e78421069ce310bf2
3
+ metadata.gz: db80f386c280e3b33f4036a530252dc4fd92a19b6692197fcbc54f433eb64bb5
4
+ data.tar.gz: 207f96353d4278674e87b6874bdb6e3ad3c3f0777d2563a58af6dbd31ab97ea5
5
5
  SHA512:
6
- metadata.gz: 849d2768c9ca8b9b97a1dd7a4c71706cacc5f542d3ea4de1472bcc0727c00a93677cb92f94a2e3d11ee2afd3d4c28fdbac4be08cc82d491e1011c1633bcf4c1f
7
- data.tar.gz: 30b2cb44a901fd9b07c66caa003972bc358edd5a9c7bf42830716c9d7ab20715373ecfa216a188812e894b0076ee7c062477e890829275a69294742e80350746
6
+ metadata.gz: 187c17cb702d12d1cbc8dff091efadfd09a3e22c4577923e78dbda1382f1b62ac0829b09a97af1c449c03f5f9d0fc518e417fee3fe525efc60f0e56418bbca25
7
+ data.tar.gz: 72be8991d8294986b2cf9e169adf4dd0b232fd1272f1b26b6e9a1c1fcfaefc25234a6d3cb36a460e6aa6ebea80f63d99235f436f1d059e9f2873f4945564955e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-displayvideo_v3
2
2
 
3
+ ### v0.4.0 (2024-01-22)
4
+
5
+ * Regenerated from discovery document revision 20240118
6
+ * Regenerated using generator version 0.13.0
7
+
3
8
  ### v0.3.0 (2024-01-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20240104
@@ -465,7 +465,7 @@ module Google
465
465
  class AdvertiserBillingConfig
466
466
  include Google::Apis::Core::Hashable
467
467
 
468
- # The ID of a billing profile assigned to the advertiser.
468
+ # Optional. The ID of a billing profile assigned to the advertiser.
469
469
  # Corresponds to the JSON property `billingProfileId`
470
470
  # @return [Fixnum]
471
471
  attr_accessor :billing_profile_id
@@ -693,259 +693,6 @@ module Google
693
693
  end
694
694
  end
695
695
 
696
- # Rule-based algorithm.
697
- class AlgorithmRules
698
- include Google::Apis::Core::Hashable
699
-
700
- # A ruleset consisting of a list of rules and how to aggregate the resulting
701
- # values.
702
- # Corresponds to the JSON property `impressionSignalRuleset`
703
- # @return [Google::Apis::DisplayvideoV3::AlgorithmRulesRuleset]
704
- attr_accessor :impression_signal_ruleset
705
-
706
- def initialize(**args)
707
- update!(**args)
708
- end
709
-
710
- # Update properties of this object
711
- def update!(**args)
712
- @impression_signal_ruleset = args[:impression_signal_ruleset] if args.key?(:impression_signal_ruleset)
713
- end
714
- end
715
-
716
- # A value to compare the signal to.
717
- class AlgorithmRulesComparisonValue
718
- include Google::Apis::Core::Hashable
719
-
720
- # Boolean value.
721
- # Corresponds to the JSON property `boolValue`
722
- # @return [Boolean]
723
- attr_accessor :bool_value
724
- alias_method :bool_value?, :bool_value
725
-
726
- # Dimensions.
727
- # Corresponds to the JSON property `creativeDimensionValue`
728
- # @return [Google::Apis::DisplayvideoV3::Dimensions]
729
- attr_accessor :creative_dimension_value
730
-
731
- # Representation of time defined by day of the week and hour of the day.
732
- # Corresponds to the JSON property `dayAndTimeValue`
733
- # @return [Google::Apis::DisplayvideoV3::DayAndTime]
734
- attr_accessor :day_and_time_value
735
-
736
- # Device type value.
737
- # Corresponds to the JSON property `deviceTypeValue`
738
- # @return [String]
739
- attr_accessor :device_type_value
740
-
741
- # Double value.
742
- # Corresponds to the JSON property `doubleValue`
743
- # @return [Float]
744
- attr_accessor :double_value
745
-
746
- # Environment value.
747
- # Corresponds to the JSON property `environmentValue`
748
- # @return [String]
749
- attr_accessor :environment_value
750
-
751
- # Exchange value.
752
- # Corresponds to the JSON property `exchangeValue`
753
- # @return [String]
754
- attr_accessor :exchange_value
755
-
756
- # Integer value.
757
- # Corresponds to the JSON property `int64Value`
758
- # @return [Fixnum]
759
- attr_accessor :int64_value
760
-
761
- # Ad position value.
762
- # Corresponds to the JSON property `onScreenPositionValue`
763
- # @return [String]
764
- attr_accessor :on_screen_position_value
765
-
766
- # String value.
767
- # Corresponds to the JSON property `stringValue`
768
- # @return [String]
769
- attr_accessor :string_value
770
-
771
- def initialize(**args)
772
- update!(**args)
773
- end
774
-
775
- # Update properties of this object
776
- def update!(**args)
777
- @bool_value = args[:bool_value] if args.key?(:bool_value)
778
- @creative_dimension_value = args[:creative_dimension_value] if args.key?(:creative_dimension_value)
779
- @day_and_time_value = args[:day_and_time_value] if args.key?(:day_and_time_value)
780
- @device_type_value = args[:device_type_value] if args.key?(:device_type_value)
781
- @double_value = args[:double_value] if args.key?(:double_value)
782
- @environment_value = args[:environment_value] if args.key?(:environment_value)
783
- @exchange_value = args[:exchange_value] if args.key?(:exchange_value)
784
- @int64_value = args[:int64_value] if args.key?(:int64_value)
785
- @on_screen_position_value = args[:on_screen_position_value] if args.key?(:on_screen_position_value)
786
- @string_value = args[:string_value] if args.key?(:string_value)
787
- end
788
- end
789
-
790
- # Set of conditions. The return value of the rule is either: * The return value
791
- # for single met condition or * The defined default return value if no
792
- # conditions are met.
793
- class AlgorithmRulesRule
794
- include Google::Apis::Core::Hashable
795
-
796
- # List of conditions in this rule. The criteria among conditions should be
797
- # mutually exclusive.
798
- # Corresponds to the JSON property `conditions`
799
- # @return [Array<Google::Apis::DisplayvideoV3::AlgorithmRulesRuleCondition>]
800
- attr_accessor :conditions
801
-
802
- # Adjusted value of the signal used for rule evaluation.
803
- # Corresponds to the JSON property `defaultReturnValue`
804
- # @return [Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue]
805
- attr_accessor :default_return_value
806
-
807
- def initialize(**args)
808
- update!(**args)
809
- end
810
-
811
- # Update properties of this object
812
- def update!(**args)
813
- @conditions = args[:conditions] if args.key?(:conditions)
814
- @default_return_value = args[:default_return_value] if args.key?(:default_return_value)
815
- end
816
- end
817
-
818
- # Set of signal comparisons. Equivalent of an `if` statement.
819
- class AlgorithmRulesRuleCondition
820
- include Google::Apis::Core::Hashable
821
-
822
- # Adjusted value of the signal used for rule evaluation.
823
- # Corresponds to the JSON property `returnValue`
824
- # @return [Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue]
825
- attr_accessor :return_value
826
-
827
- # List of comparisons that build `if` statement condition. The comparisons are
828
- # combined into a single condition with `AND` logical operators.
829
- # Corresponds to the JSON property `signalComparisons`
830
- # @return [Array<Google::Apis::DisplayvideoV3::AlgorithmRulesSignalComparison>]
831
- attr_accessor :signal_comparisons
832
-
833
- def initialize(**args)
834
- update!(**args)
835
- end
836
-
837
- # Update properties of this object
838
- def update!(**args)
839
- @return_value = args[:return_value] if args.key?(:return_value)
840
- @signal_comparisons = args[:signal_comparisons] if args.key?(:signal_comparisons)
841
- end
842
- end
843
-
844
- # A ruleset consisting of a list of rules and how to aggregate the resulting
845
- # values.
846
- class AlgorithmRulesRuleset
847
- include Google::Apis::Core::Hashable
848
-
849
- # How to aggregate values of evaluated rules.
850
- # Corresponds to the JSON property `aggregationType`
851
- # @return [String]
852
- attr_accessor :aggregation_type
853
-
854
- # Maximum value the ruleset can evaluate to.
855
- # Corresponds to the JSON property `maxValue`
856
- # @return [Float]
857
- attr_accessor :max_value
858
-
859
- # List of rules to generate the impression value.
860
- # Corresponds to the JSON property `rules`
861
- # @return [Array<Google::Apis::DisplayvideoV3::AlgorithmRulesRule>]
862
- attr_accessor :rules
863
-
864
- def initialize(**args)
865
- update!(**args)
866
- end
867
-
868
- # Update properties of this object
869
- def update!(**args)
870
- @aggregation_type = args[:aggregation_type] if args.key?(:aggregation_type)
871
- @max_value = args[:max_value] if args.key?(:max_value)
872
- @rules = args[:rules] if args.key?(:rules)
873
- end
874
- end
875
-
876
- # Signal used to evaluate rules.
877
- class AlgorithmRulesSignal
878
- include Google::Apis::Core::Hashable
879
-
880
- # Signal based on impressions.
881
- # Corresponds to the JSON property `impressionSignal`
882
- # @return [String]
883
- attr_accessor :impression_signal
884
-
885
- def initialize(**args)
886
- update!(**args)
887
- end
888
-
889
- # Update properties of this object
890
- def update!(**args)
891
- @impression_signal = args[:impression_signal] if args.key?(:impression_signal)
892
- end
893
- end
894
-
895
- # A single comparison. The comparison compares the `signal` to the `
896
- # comparisonValue`. The comparison of `siteId==123` is represented with the
897
- # following field values: * `signal` has an `impressionSignal` of `SITE_ID`. * `
898
- # comparisonOperator` is set to `EQUAL`. * `comparisonValue` is set to 123.
899
- class AlgorithmRulesSignalComparison
900
- include Google::Apis::Core::Hashable
901
-
902
- # Operator used to compare the two values. In the resulting experession, the `
903
- # signal` will be the first value and the `comparisonValue will be the second.
904
- # Corresponds to the JSON property `comparisonOperator`
905
- # @return [String]
906
- attr_accessor :comparison_operator
907
-
908
- # A value to compare the signal to.
909
- # Corresponds to the JSON property `comparisonValue`
910
- # @return [Google::Apis::DisplayvideoV3::AlgorithmRulesComparisonValue]
911
- attr_accessor :comparison_value
912
-
913
- # Signal used to evaluate rules.
914
- # Corresponds to the JSON property `signal`
915
- # @return [Google::Apis::DisplayvideoV3::AlgorithmRulesSignal]
916
- attr_accessor :signal
917
-
918
- def initialize(**args)
919
- update!(**args)
920
- end
921
-
922
- # Update properties of this object
923
- def update!(**args)
924
- @comparison_operator = args[:comparison_operator] if args.key?(:comparison_operator)
925
- @comparison_value = args[:comparison_value] if args.key?(:comparison_value)
926
- @signal = args[:signal] if args.key?(:signal)
927
- end
928
- end
929
-
930
- # Adjusted value of the signal used for rule evaluation.
931
- class AlgorithmRulesSignalValue
932
- include Google::Apis::Core::Hashable
933
-
934
- # Value to use as result.
935
- # Corresponds to the JSON property `number`
936
- # @return [Float]
937
- attr_accessor :number
938
-
939
- def initialize(**args)
940
- update!(**args)
941
- end
942
-
943
- # Update properties of this object
944
- def update!(**args)
945
- @number = args[:number] if args.key?(:number)
946
- end
947
- end
948
-
949
696
  # Details for assigned app targeting option. This will be populated in the
950
697
  # details field of an AssignedTargetingOption when targeting_type is `
951
698
  # TARGETING_TYPE_APP`.
@@ -5053,37 +4800,6 @@ module Google
5053
4800
  end
5054
4801
  end
5055
4802
 
5056
- # Representation of time defined by day of the week and hour of the day.
5057
- class DayAndTime
5058
- include Google::Apis::Core::Hashable
5059
-
5060
- # Required. Day of the week.
5061
- # Corresponds to the JSON property `dayOfWeek`
5062
- # @return [String]
5063
- attr_accessor :day_of_week
5064
-
5065
- # Required. Hour of the day.
5066
- # Corresponds to the JSON property `hourOfDay`
5067
- # @return [Fixnum]
5068
- attr_accessor :hour_of_day
5069
-
5070
- # Required. The mechanism used to determine the relevant timezone.
5071
- # Corresponds to the JSON property `timeZoneResolution`
5072
- # @return [String]
5073
- attr_accessor :time_zone_resolution
5074
-
5075
- def initialize(**args)
5076
- update!(**args)
5077
- end
5078
-
5079
- # Update properties of this object
5080
- def update!(**args)
5081
- @day_of_week = args[:day_of_week] if args.key?(:day_of_week)
5082
- @hour_of_day = args[:hour_of_day] if args.key?(:hour_of_day)
5083
- @time_zone_resolution = args[:time_zone_resolution] if args.key?(:time_zone_resolution)
5084
- end
5085
- end
5086
-
5087
4803
  # Representation of a segment of time defined on a specific day of the week and
5088
4804
  # with a start and end time. The time represented by `start_hour` must be before
5089
4805
  # the time represented by `end_hour`.
@@ -6302,10 +6018,10 @@ module Google
6302
6018
  # @return [Fixnum]
6303
6019
  attr_accessor :max_impressions
6304
6020
 
6305
- # The maximum number of times a user may click-through or fully view an ad
6306
- # during this period until it is no longer served to them. Must be greater than
6307
- # 0. Only applicable to YouTube and Partners resources. Required when unlimited
6308
- # is `false` and max_impressions is not set.
6021
+ # Optional. The maximum number of times a user may click-through or fully view
6022
+ # an ad during this period until it is no longer served to them. Must be greater
6023
+ # than 0. Only applicable to YouTube and Partners resources. Required when
6024
+ # unlimited is `false` and max_impressions is not set.
6309
6025
  # Corresponds to the JSON property `maxViews`
6310
6026
  # @return [Fixnum]
6311
6027
  attr_accessor :max_views
@@ -11021,61 +10737,6 @@ module Google
11021
10737
  end
11022
10738
  end
11023
10739
 
11024
- # Type for the response returned by [SdfDownloadTaskService.
11025
- # CreateSdfDownloadTask].
11026
- class SdfDownloadTask
11027
- include Google::Apis::Core::Hashable
11028
-
11029
- # A resource name to be used in media.download to Download the prepared files.
11030
- # Resource names have the format `download/sdfdownloadtasks/media/`media_id``. `
11031
- # media_id` will be made available by the long running operation service once
11032
- # the task status is done.
11033
- # Corresponds to the JSON property `resourceName`
11034
- # @return [String]
11035
- attr_accessor :resource_name
11036
-
11037
- def initialize(**args)
11038
- update!(**args)
11039
- end
11040
-
11041
- # Update properties of this object
11042
- def update!(**args)
11043
- @resource_name = args[:resource_name] if args.key?(:resource_name)
11044
- end
11045
- end
11046
-
11047
- # Type for the metadata returned by [SdfDownloadTaskService.
11048
- # CreateSdfDownloadTask].
11049
- class SdfDownloadTaskMetadata
11050
- include Google::Apis::Core::Hashable
11051
-
11052
- # The time when the operation was created.
11053
- # Corresponds to the JSON property `createTime`
11054
- # @return [String]
11055
- attr_accessor :create_time
11056
-
11057
- # The time when execution was completed.
11058
- # Corresponds to the JSON property `endTime`
11059
- # @return [String]
11060
- attr_accessor :end_time
11061
-
11062
- # The SDF version used to execute this download task.
11063
- # Corresponds to the JSON property `version`
11064
- # @return [String]
11065
- attr_accessor :version
11066
-
11067
- def initialize(**args)
11068
- update!(**args)
11069
- end
11070
-
11071
- # Update properties of this object
11072
- def update!(**args)
11073
- @create_time = args[:create_time] if args.key?(:create_time)
11074
- @end_time = args[:end_time] if args.key?(:end_time)
11075
- @version = args[:version] if args.key?(:version)
11076
- end
11077
- end
11078
-
11079
10740
  # Request message for SearchTargetingOptions.
11080
10741
  class SearchTargetingOptionsRequest
11081
10742
  include Google::Apis::Core::Hashable
@@ -12495,8 +12156,14 @@ module Google
12495
12156
  class YoutubeAndPartnersInventorySourceConfig
12496
12157
  include Google::Apis::Core::Hashable
12497
12158
 
12498
- # Whether to target inventory on YouTube. This includes both search, channels
12499
- # and videos.
12159
+ # Optional. Whether to target inventory in video apps available with Google TV.
12160
+ # Corresponds to the JSON property `includeGoogleTv`
12161
+ # @return [Boolean]
12162
+ attr_accessor :include_google_tv
12163
+ alias_method :include_google_tv?, :include_google_tv
12164
+
12165
+ # Optional. Whether to target inventory on YouTube. This includes both search,
12166
+ # channels and videos.
12500
12167
  # Corresponds to the JSON property `includeYoutube`
12501
12168
  # @return [Boolean]
12502
12169
  attr_accessor :include_youtube
@@ -12515,6 +12182,7 @@ module Google
12515
12182
 
12516
12183
  # Update properties of this object
12517
12184
  def update!(**args)
12185
+ @include_google_tv = args[:include_google_tv] if args.key?(:include_google_tv)
12518
12186
  @include_youtube = args[:include_youtube] if args.key?(:include_youtube)
12519
12187
  @include_youtube_video_partners = args[:include_youtube_video_partners] if args.key?(:include_youtube_video_partners)
12520
12188
  end
@@ -12542,18 +12210,19 @@ module Google
12542
12210
  # @return [Google::Apis::DisplayvideoV3::YoutubeAndPartnersInventorySourceConfig]
12543
12211
  attr_accessor :inventory_source_settings
12544
12212
 
12545
- # The ID of the form to generate leads.
12213
+ # Optional. The ID of the form to generate leads.
12546
12214
  # Corresponds to the JSON property `leadFormId`
12547
12215
  # @return [Fixnum]
12548
12216
  attr_accessor :lead_form_id
12549
12217
 
12550
- # The ID of the merchant which is linked to the line item for product feed.
12218
+ # Optional. The ID of the merchant which is linked to the line item for product
12219
+ # feed.
12551
12220
  # Corresponds to the JSON property `linkedMerchantId`
12552
12221
  # @return [Fixnum]
12553
12222
  attr_accessor :linked_merchant_id
12554
12223
 
12555
- # The IDs of the videos appear below the primary video ad when the ad is playing
12556
- # in the YouTube app on mobile devices.
12224
+ # Optional. The IDs of the videos appear below the primary video ad when the ad
12225
+ # is playing in the YouTube app on mobile devices.
12557
12226
  # Corresponds to the JSON property `relatedVideoIds`
12558
12227
  # @return [Array<String>]
12559
12228
  attr_accessor :related_video_ids
@@ -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.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240104"
25
+ REVISION = "20240118"
26
26
  end
27
27
  end
28
28
  end
@@ -118,54 +118,6 @@ module Google
118
118
  include Google::Apis::Core::JsonObjectSupport
119
119
  end
120
120
 
121
- class AlgorithmRules
122
- class Representation < Google::Apis::Core::JsonRepresentation; end
123
-
124
- include Google::Apis::Core::JsonObjectSupport
125
- end
126
-
127
- class AlgorithmRulesComparisonValue
128
- class Representation < Google::Apis::Core::JsonRepresentation; end
129
-
130
- include Google::Apis::Core::JsonObjectSupport
131
- end
132
-
133
- class AlgorithmRulesRule
134
- class Representation < Google::Apis::Core::JsonRepresentation; end
135
-
136
- include Google::Apis::Core::JsonObjectSupport
137
- end
138
-
139
- class AlgorithmRulesRuleCondition
140
- class Representation < Google::Apis::Core::JsonRepresentation; end
141
-
142
- include Google::Apis::Core::JsonObjectSupport
143
- end
144
-
145
- class AlgorithmRulesRuleset
146
- class Representation < Google::Apis::Core::JsonRepresentation; end
147
-
148
- include Google::Apis::Core::JsonObjectSupport
149
- end
150
-
151
- class AlgorithmRulesSignal
152
- class Representation < Google::Apis::Core::JsonRepresentation; end
153
-
154
- include Google::Apis::Core::JsonObjectSupport
155
- end
156
-
157
- class AlgorithmRulesSignalComparison
158
- class Representation < Google::Apis::Core::JsonRepresentation; end
159
-
160
- include Google::Apis::Core::JsonObjectSupport
161
- end
162
-
163
- class AlgorithmRulesSignalValue
164
- class Representation < Google::Apis::Core::JsonRepresentation; end
165
-
166
- include Google::Apis::Core::JsonObjectSupport
167
- end
168
-
169
121
  class AppAssignedTargetingOptionDetails
170
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
123
 
@@ -754,12 +706,6 @@ module Google
754
706
  include Google::Apis::Core::JsonObjectSupport
755
707
  end
756
708
 
757
- class DayAndTime
758
- class Representation < Google::Apis::Core::JsonRepresentation; end
759
-
760
- include Google::Apis::Core::JsonObjectSupport
761
- end
762
-
763
709
  class DayAndTimeAssignedTargetingOptionDetails
764
710
  class Representation < Google::Apis::Core::JsonRepresentation; end
765
711
 
@@ -1774,18 +1720,6 @@ module Google
1774
1720
  include Google::Apis::Core::JsonObjectSupport
1775
1721
  end
1776
1722
 
1777
- class SdfDownloadTask
1778
- class Representation < Google::Apis::Core::JsonRepresentation; end
1779
-
1780
- include Google::Apis::Core::JsonObjectSupport
1781
- end
1782
-
1783
- class SdfDownloadTaskMetadata
1784
- class Representation < Google::Apis::Core::JsonRepresentation; end
1785
-
1786
- include Google::Apis::Core::JsonObjectSupport
1787
- end
1788
-
1789
1723
  class SearchTargetingOptionsRequest
1790
1724
  class Representation < Google::Apis::Core::JsonRepresentation; end
1791
1725
 
@@ -2211,87 +2145,6 @@ module Google
2211
2145
  end
2212
2146
  end
2213
2147
 
2214
- class AlgorithmRules
2215
- # @private
2216
- class Representation < Google::Apis::Core::JsonRepresentation
2217
- property :impression_signal_ruleset, as: 'impressionSignalRuleset', class: Google::Apis::DisplayvideoV3::AlgorithmRulesRuleset, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesRuleset::Representation
2218
-
2219
- end
2220
- end
2221
-
2222
- class AlgorithmRulesComparisonValue
2223
- # @private
2224
- class Representation < Google::Apis::Core::JsonRepresentation
2225
- property :bool_value, as: 'boolValue'
2226
- property :creative_dimension_value, as: 'creativeDimensionValue', class: Google::Apis::DisplayvideoV3::Dimensions, decorator: Google::Apis::DisplayvideoV3::Dimensions::Representation
2227
-
2228
- property :day_and_time_value, as: 'dayAndTimeValue', class: Google::Apis::DisplayvideoV3::DayAndTime, decorator: Google::Apis::DisplayvideoV3::DayAndTime::Representation
2229
-
2230
- property :device_type_value, as: 'deviceTypeValue'
2231
- property :double_value, as: 'doubleValue'
2232
- property :environment_value, as: 'environmentValue'
2233
- property :exchange_value, as: 'exchangeValue'
2234
- property :int64_value, :numeric_string => true, as: 'int64Value'
2235
- property :on_screen_position_value, as: 'onScreenPositionValue'
2236
- property :string_value, as: 'stringValue'
2237
- end
2238
- end
2239
-
2240
- class AlgorithmRulesRule
2241
- # @private
2242
- class Representation < Google::Apis::Core::JsonRepresentation
2243
- collection :conditions, as: 'conditions', class: Google::Apis::DisplayvideoV3::AlgorithmRulesRuleCondition, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesRuleCondition::Representation
2244
-
2245
- property :default_return_value, as: 'defaultReturnValue', class: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue::Representation
2246
-
2247
- end
2248
- end
2249
-
2250
- class AlgorithmRulesRuleCondition
2251
- # @private
2252
- class Representation < Google::Apis::Core::JsonRepresentation
2253
- property :return_value, as: 'returnValue', class: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue::Representation
2254
-
2255
- collection :signal_comparisons, as: 'signalComparisons', class: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalComparison, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalComparison::Representation
2256
-
2257
- end
2258
- end
2259
-
2260
- class AlgorithmRulesRuleset
2261
- # @private
2262
- class Representation < Google::Apis::Core::JsonRepresentation
2263
- property :aggregation_type, as: 'aggregationType'
2264
- property :max_value, as: 'maxValue'
2265
- collection :rules, as: 'rules', class: Google::Apis::DisplayvideoV3::AlgorithmRulesRule, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesRule::Representation
2266
-
2267
- end
2268
- end
2269
-
2270
- class AlgorithmRulesSignal
2271
- # @private
2272
- class Representation < Google::Apis::Core::JsonRepresentation
2273
- property :impression_signal, as: 'impressionSignal'
2274
- end
2275
- end
2276
-
2277
- class AlgorithmRulesSignalComparison
2278
- # @private
2279
- class Representation < Google::Apis::Core::JsonRepresentation
2280
- property :comparison_operator, as: 'comparisonOperator'
2281
- property :comparison_value, as: 'comparisonValue', class: Google::Apis::DisplayvideoV3::AlgorithmRulesComparisonValue, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesComparisonValue::Representation
2282
-
2283
- property :signal, as: 'signal', class: Google::Apis::DisplayvideoV3::AlgorithmRulesSignal, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesSignal::Representation
2284
-
2285
- end
2286
- end
2287
-
2288
- class AlgorithmRulesSignalValue
2289
- # @private
2290
- class Representation < Google::Apis::Core::JsonRepresentation
2291
- property :number, as: 'number'
2292
- end
2293
- end
2294
-
2295
2148
  class AppAssignedTargetingOptionDetails
2296
2149
  # @private
2297
2150
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3377,15 +3230,6 @@ module Google
3377
3230
  end
3378
3231
  end
3379
3232
 
3380
- class DayAndTime
3381
- # @private
3382
- class Representation < Google::Apis::Core::JsonRepresentation
3383
- property :day_of_week, as: 'dayOfWeek'
3384
- property :hour_of_day, as: 'hourOfDay'
3385
- property :time_zone_resolution, as: 'timeZoneResolution'
3386
- end
3387
- end
3388
-
3389
3233
  class DayAndTimeAssignedTargetingOptionDetails
3390
3234
  # @private
3391
3235
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5027,22 +4871,6 @@ module Google
5027
4871
  end
5028
4872
  end
5029
4873
 
5030
- class SdfDownloadTask
5031
- # @private
5032
- class Representation < Google::Apis::Core::JsonRepresentation
5033
- property :resource_name, as: 'resourceName'
5034
- end
5035
- end
5036
-
5037
- class SdfDownloadTaskMetadata
5038
- # @private
5039
- class Representation < Google::Apis::Core::JsonRepresentation
5040
- property :create_time, as: 'createTime'
5041
- property :end_time, as: 'endTime'
5042
- property :version, as: 'version'
5043
- end
5044
- end
5045
-
5046
4874
  class SearchTargetingOptionsRequest
5047
4875
  # @private
5048
4876
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5438,6 +5266,7 @@ module Google
5438
5266
  class YoutubeAndPartnersInventorySourceConfig
5439
5267
  # @private
5440
5268
  class Representation < Google::Apis::Core::JsonRepresentation
5269
+ property :include_google_tv, as: 'includeGoogleTv'
5441
5270
  property :include_youtube, as: 'includeYoutube'
5442
5271
  property :include_youtube_video_partners, as: 'includeYoutubeVideoPartners'
5443
5272
  end
@@ -34,6 +34,8 @@ module Google
34
34
  #
35
35
  # @see https://developers.google.com/display-video/
36
36
  class DisplayVideoService < Google::Apis::Core::BaseService
37
+ DEFAULT_ENDPOINT_TEMPLATE = "https://displayvideo.$UNIVERSE_DOMAIN$/"
38
+
37
39
  # @return [String]
38
40
  # API key. Your API key identifies your project and provides you with API access,
39
41
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -45,7 +47,7 @@ module Google
45
47
  attr_accessor :quota_user
46
48
 
47
49
  def initialize
48
- super('https://displayvideo.googleapis.com/', '',
50
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
49
51
  client_name: 'google-apis-displayvideo_v3',
50
52
  client_version: Google::Apis::DisplayvideoV3::GEM_VERSION)
51
53
  @batch_path = 'batch'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-displayvideo_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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: 2024-01-07 00:00:00.000000000 Z
11
+ date: 2024-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.4.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3
63
63
  post_install_message:
64
64
  rdoc_options: []