google-apis-displayvideo_v3 0.4.0 → 0.5.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: db80f386c280e3b33f4036a530252dc4fd92a19b6692197fcbc54f433eb64bb5
4
- data.tar.gz: 207f96353d4278674e87b6874bdb6e3ad3c3f0777d2563a58af6dbd31ab97ea5
3
+ metadata.gz: ded4265d11441f9e0e32cef96ccfeabca0ec9c9dc4b119721e53867ce8e3338a
4
+ data.tar.gz: 71ed2dccead12f9f3c9ddf5574519f2e4f80c4b4aadd61f07b7068e7d757e93d
5
5
  SHA512:
6
- metadata.gz: 187c17cb702d12d1cbc8dff091efadfd09a3e22c4577923e78dbda1382f1b62ac0829b09a97af1c449c03f5f9d0fc518e417fee3fe525efc60f0e56418bbca25
7
- data.tar.gz: 72be8991d8294986b2cf9e169adf4dd0b232fd1272f1b26b6e9a1c1fcfaefc25234a6d3cb36a460e6aa6ebea80f63d99235f436f1d059e9f2873f4945564955e
6
+ metadata.gz: 231d783b297c0128bef74a86edffd9122694b672adf5074e4b2133002e2d64a4570d92b26eba325f9eca2002846b7c39170628139a9e008960169dc44c9f3228
7
+ data.tar.gz: 6a67f263b7dd2aa5418a9a19f8a025c6bd54d2dfcff0aa5a9e1ac1c7c7b6477288b4d00310aa5397f2abb1a6f3941978bf5ece769989bf2de1794018d1435dbb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-displayvideo_v3
2
2
 
3
+ ### v0.5.0 (2024-01-28)
4
+
5
+ * Regenerated from discovery document revision 20240125
6
+ * Regenerated using generator version 0.13.1
7
+
3
8
  ### v0.4.0 (2024-01-22)
4
9
 
5
10
  * Regenerated from discovery document revision 20240118
@@ -693,6 +693,259 @@ 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
+
696
949
  # Details for assigned app targeting option. This will be populated in the
697
950
  # details field of an AssignedTargetingOption when targeting_type is `
698
951
  # TARGETING_TYPE_APP`.
@@ -3108,6 +3361,12 @@ module Google
3108
3361
  # @return [Fixnum]
3109
3362
  attr_accessor :cm_account_id
3110
3363
 
3364
+ # Output only. The set of CM360 Advertiser IDs sharing the CM360 Floodlight
3365
+ # configuration.
3366
+ # Corresponds to the JSON property `cmAdvertiserIds`
3367
+ # @return [Array<Fixnum>]
3368
+ attr_accessor :cm_advertiser_ids
3369
+
3111
3370
  # Required. Immutable. ID of the CM360 Floodlight configuration linked with the
3112
3371
  # DV360 advertiser.
3113
3372
  # Corresponds to the JSON property `cmFloodlightConfigId`
@@ -3149,6 +3408,7 @@ module Google
3149
3408
  # Update properties of this object
3150
3409
  def update!(**args)
3151
3410
  @cm_account_id = args[:cm_account_id] if args.key?(:cm_account_id)
3411
+ @cm_advertiser_ids = args[:cm_advertiser_ids] if args.key?(:cm_advertiser_ids)
3152
3412
  @cm_floodlight_config_id = args[:cm_floodlight_config_id] if args.key?(:cm_floodlight_config_id)
3153
3413
  @cm_floodlight_linking_authorized = args[:cm_floodlight_linking_authorized] if args.key?(:cm_floodlight_linking_authorized)
3154
3414
  @cm_syncable_site_ids = args[:cm_syncable_site_ids] if args.key?(:cm_syncable_site_ids)
@@ -4800,6 +5060,37 @@ module Google
4800
5060
  end
4801
5061
  end
4802
5062
 
5063
+ # Representation of time defined by day of the week and hour of the day.
5064
+ class DayAndTime
5065
+ include Google::Apis::Core::Hashable
5066
+
5067
+ # Required. Day of the week.
5068
+ # Corresponds to the JSON property `dayOfWeek`
5069
+ # @return [String]
5070
+ attr_accessor :day_of_week
5071
+
5072
+ # Required. Hour of the day.
5073
+ # Corresponds to the JSON property `hourOfDay`
5074
+ # @return [Fixnum]
5075
+ attr_accessor :hour_of_day
5076
+
5077
+ # Required. The mechanism used to determine the relevant timezone.
5078
+ # Corresponds to the JSON property `timeZoneResolution`
5079
+ # @return [String]
5080
+ attr_accessor :time_zone_resolution
5081
+
5082
+ def initialize(**args)
5083
+ update!(**args)
5084
+ end
5085
+
5086
+ # Update properties of this object
5087
+ def update!(**args)
5088
+ @day_of_week = args[:day_of_week] if args.key?(:day_of_week)
5089
+ @hour_of_day = args[:hour_of_day] if args.key?(:hour_of_day)
5090
+ @time_zone_resolution = args[:time_zone_resolution] if args.key?(:time_zone_resolution)
5091
+ end
5092
+ end
5093
+
4803
5094
  # Representation of a segment of time defined on a specific day of the week and
4804
5095
  # with a start and end time. The time represented by `start_hour` must be before
4805
5096
  # the time represented by `end_hour`.
@@ -5938,6 +6229,73 @@ module Google
5938
6229
  end
5939
6230
  end
5940
6231
 
6232
+ # A single Floodlight activity.
6233
+ class FloodlightActivity
6234
+ include Google::Apis::Core::Hashable
6235
+
6236
+ # Output only. IDs of the advertisers that have access to the parent Floodlight
6237
+ # group. Only advertisers under the provided partner ID will be listed in this
6238
+ # field.
6239
+ # Corresponds to the JSON property `advertiserIds`
6240
+ # @return [Array<Fixnum>]
6241
+ attr_accessor :advertiser_ids
6242
+
6243
+ # Required. The display name of the Floodlight activity.
6244
+ # Corresponds to the JSON property `displayName`
6245
+ # @return [String]
6246
+ attr_accessor :display_name
6247
+
6248
+ # Output only. The unique ID of the Floodlight activity. Assigned by the system.
6249
+ # Corresponds to the JSON property `floodlightActivityId`
6250
+ # @return [Fixnum]
6251
+ attr_accessor :floodlight_activity_id
6252
+
6253
+ # Required. Immutable. The ID of the parent Floodlight group.
6254
+ # Corresponds to the JSON property `floodlightGroupId`
6255
+ # @return [Fixnum]
6256
+ attr_accessor :floodlight_group_id
6257
+
6258
+ # Output only. The resource name of the Floodlight activity.
6259
+ # Corresponds to the JSON property `name`
6260
+ # @return [String]
6261
+ attr_accessor :name
6262
+
6263
+ # Output only. A list of configuration objects designating whether remarketing
6264
+ # for this Floodlight Activity is enabled and available for a specifc advertiser.
6265
+ # If enabled, this Floodlight Activity generates a remarketing user list that
6266
+ # is able to be used in targeting under the advertiser.
6267
+ # Corresponds to the JSON property `remarketingConfigs`
6268
+ # @return [Array<Google::Apis::DisplayvideoV3::RemarketingConfig>]
6269
+ attr_accessor :remarketing_configs
6270
+
6271
+ # Optional. Whether the Floodlight activity is served.
6272
+ # Corresponds to the JSON property `servingStatus`
6273
+ # @return [String]
6274
+ attr_accessor :serving_status
6275
+
6276
+ # Output only. Whether tags are required to be compliant.
6277
+ # Corresponds to the JSON property `sslRequired`
6278
+ # @return [Boolean]
6279
+ attr_accessor :ssl_required
6280
+ alias_method :ssl_required?, :ssl_required
6281
+
6282
+ def initialize(**args)
6283
+ update!(**args)
6284
+ end
6285
+
6286
+ # Update properties of this object
6287
+ def update!(**args)
6288
+ @advertiser_ids = args[:advertiser_ids] if args.key?(:advertiser_ids)
6289
+ @display_name = args[:display_name] if args.key?(:display_name)
6290
+ @floodlight_activity_id = args[:floodlight_activity_id] if args.key?(:floodlight_activity_id)
6291
+ @floodlight_group_id = args[:floodlight_group_id] if args.key?(:floodlight_group_id)
6292
+ @name = args[:name] if args.key?(:name)
6293
+ @remarketing_configs = args[:remarketing_configs] if args.key?(:remarketing_configs)
6294
+ @serving_status = args[:serving_status] if args.key?(:serving_status)
6295
+ @ssl_required = args[:ssl_required] if args.key?(:ssl_required)
6296
+ end
6297
+ end
6298
+
5941
6299
  # A single Floodlight group.
5942
6300
  class FloodlightGroup
5943
6301
  include Google::Apis::Core::Hashable
@@ -8410,6 +8768,33 @@ module Google
8410
8768
  end
8411
8769
  end
8412
8770
 
8771
+ #
8772
+ class ListFloodlightActivitiesResponse
8773
+ include Google::Apis::Core::Hashable
8774
+
8775
+ # The list of Floodlight activities. This list will be absent if empty.
8776
+ # Corresponds to the JSON property `floodlightActivities`
8777
+ # @return [Array<Google::Apis::DisplayvideoV3::FloodlightActivity>]
8778
+ attr_accessor :floodlight_activities
8779
+
8780
+ # A token to retrieve the next page of results. Pass this value in the
8781
+ # page_token field in the subsequent call to `ListFloodlightActivities` method
8782
+ # to retrieve the next page of results.
8783
+ # Corresponds to the JSON property `nextPageToken`
8784
+ # @return [String]
8785
+ attr_accessor :next_page_token
8786
+
8787
+ def initialize(**args)
8788
+ update!(**args)
8789
+ end
8790
+
8791
+ # Update properties of this object
8792
+ def update!(**args)
8793
+ @floodlight_activities = args[:floodlight_activities] if args.key?(:floodlight_activities)
8794
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
8795
+ end
8796
+ end
8797
+
8413
8798
  #
8414
8799
  class ListGoogleAudiencesResponse
8415
8800
  include Google::Apis::Core::Hashable
@@ -10539,6 +10924,34 @@ module Google
10539
10924
  end
10540
10925
  end
10541
10926
 
10927
+ # Settings that control the whether remarketing is enabled for the given
10928
+ # identified advertiser.
10929
+ class RemarketingConfig
10930
+ include Google::Apis::Core::Hashable
10931
+
10932
+ # Output only. The ID of the advertiser.
10933
+ # Corresponds to the JSON property `advertiserId`
10934
+ # @return [Fixnum]
10935
+ attr_accessor :advertiser_id
10936
+
10937
+ # Output only. Whether the Floodlight activity remarketing user list is
10938
+ # available to the identified advertiser.
10939
+ # Corresponds to the JSON property `remarketingEnabled`
10940
+ # @return [Boolean]
10941
+ attr_accessor :remarketing_enabled
10942
+ alias_method :remarketing_enabled?, :remarketing_enabled
10943
+
10944
+ def initialize(**args)
10945
+ update!(**args)
10946
+ end
10947
+
10948
+ # Update properties of this object
10949
+ def update!(**args)
10950
+ @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
10951
+ @remarketing_enabled = args[:remarketing_enabled] if args.key?(:remarketing_enabled)
10952
+ end
10953
+ end
10954
+
10542
10955
  # Request message for NegativeKeywordService.ReplaceNegativeKeywords.
10543
10956
  class ReplaceNegativeKeywordsRequest
10544
10957
  include Google::Apis::Core::Hashable
@@ -10737,6 +11150,61 @@ module Google
10737
11150
  end
10738
11151
  end
10739
11152
 
11153
+ # Type for the response returned by [SdfDownloadTaskService.
11154
+ # CreateSdfDownloadTask].
11155
+ class SdfDownloadTask
11156
+ include Google::Apis::Core::Hashable
11157
+
11158
+ # A resource name to be used in media.download to Download the prepared files.
11159
+ # Resource names have the format `download/sdfdownloadtasks/media/`media_id``. `
11160
+ # media_id` will be made available by the long running operation service once
11161
+ # the task status is done.
11162
+ # Corresponds to the JSON property `resourceName`
11163
+ # @return [String]
11164
+ attr_accessor :resource_name
11165
+
11166
+ def initialize(**args)
11167
+ update!(**args)
11168
+ end
11169
+
11170
+ # Update properties of this object
11171
+ def update!(**args)
11172
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
11173
+ end
11174
+ end
11175
+
11176
+ # Type for the metadata returned by [SdfDownloadTaskService.
11177
+ # CreateSdfDownloadTask].
11178
+ class SdfDownloadTaskMetadata
11179
+ include Google::Apis::Core::Hashable
11180
+
11181
+ # The time when the operation was created.
11182
+ # Corresponds to the JSON property `createTime`
11183
+ # @return [String]
11184
+ attr_accessor :create_time
11185
+
11186
+ # The time when execution was completed.
11187
+ # Corresponds to the JSON property `endTime`
11188
+ # @return [String]
11189
+ attr_accessor :end_time
11190
+
11191
+ # The SDF version used to execute this download task.
11192
+ # Corresponds to the JSON property `version`
11193
+ # @return [String]
11194
+ attr_accessor :version
11195
+
11196
+ def initialize(**args)
11197
+ update!(**args)
11198
+ end
11199
+
11200
+ # Update properties of this object
11201
+ def update!(**args)
11202
+ @create_time = args[:create_time] if args.key?(:create_time)
11203
+ @end_time = args[:end_time] if args.key?(:end_time)
11204
+ @version = args[:version] if args.key?(:version)
11205
+ end
11206
+ end
11207
+
10740
11208
  # Request message for SearchTargetingOptions.
10741
11209
  class SearchTargetingOptionsRequest
10742
11210
  include Google::Apis::Core::Hashable
@@ -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.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240118"
25
+ REVISION = "20240125"
26
26
  end
27
27
  end
28
28
  end
@@ -118,6 +118,54 @@ 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
+
121
169
  class AppAssignedTargetingOptionDetails
122
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
171
 
@@ -706,6 +754,12 @@ module Google
706
754
  include Google::Apis::Core::JsonObjectSupport
707
755
  end
708
756
 
757
+ class DayAndTime
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
709
763
  class DayAndTimeAssignedTargetingOptionDetails
710
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
765
 
@@ -928,6 +982,12 @@ module Google
928
982
  include Google::Apis::Core::JsonObjectSupport
929
983
  end
930
984
 
985
+ class FloodlightActivity
986
+ class Representation < Google::Apis::Core::JsonRepresentation; end
987
+
988
+ include Google::Apis::Core::JsonObjectSupport
989
+ end
990
+
931
991
  class FloodlightGroup
932
992
  class Representation < Google::Apis::Core::JsonRepresentation; end
933
993
 
@@ -1294,6 +1354,12 @@ module Google
1294
1354
  include Google::Apis::Core::JsonObjectSupport
1295
1355
  end
1296
1356
 
1357
+ class ListFloodlightActivitiesResponse
1358
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1359
+
1360
+ include Google::Apis::Core::JsonObjectSupport
1361
+ end
1362
+
1297
1363
  class ListGoogleAudiencesResponse
1298
1364
  class Representation < Google::Apis::Core::JsonRepresentation; end
1299
1365
 
@@ -1678,6 +1744,12 @@ module Google
1678
1744
  include Google::Apis::Core::JsonObjectSupport
1679
1745
  end
1680
1746
 
1747
+ class RemarketingConfig
1748
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1749
+
1750
+ include Google::Apis::Core::JsonObjectSupport
1751
+ end
1752
+
1681
1753
  class ReplaceNegativeKeywordsRequest
1682
1754
  class Representation < Google::Apis::Core::JsonRepresentation; end
1683
1755
 
@@ -1720,6 +1792,18 @@ module Google
1720
1792
  include Google::Apis::Core::JsonObjectSupport
1721
1793
  end
1722
1794
 
1795
+ class SdfDownloadTask
1796
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1797
+
1798
+ include Google::Apis::Core::JsonObjectSupport
1799
+ end
1800
+
1801
+ class SdfDownloadTaskMetadata
1802
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1803
+
1804
+ include Google::Apis::Core::JsonObjectSupport
1805
+ end
1806
+
1723
1807
  class SearchTargetingOptionsRequest
1724
1808
  class Representation < Google::Apis::Core::JsonRepresentation; end
1725
1809
 
@@ -2145,6 +2229,87 @@ module Google
2145
2229
  end
2146
2230
  end
2147
2231
 
2232
+ class AlgorithmRules
2233
+ # @private
2234
+ class Representation < Google::Apis::Core::JsonRepresentation
2235
+ property :impression_signal_ruleset, as: 'impressionSignalRuleset', class: Google::Apis::DisplayvideoV3::AlgorithmRulesRuleset, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesRuleset::Representation
2236
+
2237
+ end
2238
+ end
2239
+
2240
+ class AlgorithmRulesComparisonValue
2241
+ # @private
2242
+ class Representation < Google::Apis::Core::JsonRepresentation
2243
+ property :bool_value, as: 'boolValue'
2244
+ property :creative_dimension_value, as: 'creativeDimensionValue', class: Google::Apis::DisplayvideoV3::Dimensions, decorator: Google::Apis::DisplayvideoV3::Dimensions::Representation
2245
+
2246
+ property :day_and_time_value, as: 'dayAndTimeValue', class: Google::Apis::DisplayvideoV3::DayAndTime, decorator: Google::Apis::DisplayvideoV3::DayAndTime::Representation
2247
+
2248
+ property :device_type_value, as: 'deviceTypeValue'
2249
+ property :double_value, as: 'doubleValue'
2250
+ property :environment_value, as: 'environmentValue'
2251
+ property :exchange_value, as: 'exchangeValue'
2252
+ property :int64_value, :numeric_string => true, as: 'int64Value'
2253
+ property :on_screen_position_value, as: 'onScreenPositionValue'
2254
+ property :string_value, as: 'stringValue'
2255
+ end
2256
+ end
2257
+
2258
+ class AlgorithmRulesRule
2259
+ # @private
2260
+ class Representation < Google::Apis::Core::JsonRepresentation
2261
+ collection :conditions, as: 'conditions', class: Google::Apis::DisplayvideoV3::AlgorithmRulesRuleCondition, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesRuleCondition::Representation
2262
+
2263
+ property :default_return_value, as: 'defaultReturnValue', class: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue::Representation
2264
+
2265
+ end
2266
+ end
2267
+
2268
+ class AlgorithmRulesRuleCondition
2269
+ # @private
2270
+ class Representation < Google::Apis::Core::JsonRepresentation
2271
+ property :return_value, as: 'returnValue', class: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalValue::Representation
2272
+
2273
+ collection :signal_comparisons, as: 'signalComparisons', class: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalComparison, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesSignalComparison::Representation
2274
+
2275
+ end
2276
+ end
2277
+
2278
+ class AlgorithmRulesRuleset
2279
+ # @private
2280
+ class Representation < Google::Apis::Core::JsonRepresentation
2281
+ property :aggregation_type, as: 'aggregationType'
2282
+ property :max_value, as: 'maxValue'
2283
+ collection :rules, as: 'rules', class: Google::Apis::DisplayvideoV3::AlgorithmRulesRule, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesRule::Representation
2284
+
2285
+ end
2286
+ end
2287
+
2288
+ class AlgorithmRulesSignal
2289
+ # @private
2290
+ class Representation < Google::Apis::Core::JsonRepresentation
2291
+ property :impression_signal, as: 'impressionSignal'
2292
+ end
2293
+ end
2294
+
2295
+ class AlgorithmRulesSignalComparison
2296
+ # @private
2297
+ class Representation < Google::Apis::Core::JsonRepresentation
2298
+ property :comparison_operator, as: 'comparisonOperator'
2299
+ property :comparison_value, as: 'comparisonValue', class: Google::Apis::DisplayvideoV3::AlgorithmRulesComparisonValue, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesComparisonValue::Representation
2300
+
2301
+ property :signal, as: 'signal', class: Google::Apis::DisplayvideoV3::AlgorithmRulesSignal, decorator: Google::Apis::DisplayvideoV3::AlgorithmRulesSignal::Representation
2302
+
2303
+ end
2304
+ end
2305
+
2306
+ class AlgorithmRulesSignalValue
2307
+ # @private
2308
+ class Representation < Google::Apis::Core::JsonRepresentation
2309
+ property :number, as: 'number'
2310
+ end
2311
+ end
2312
+
2148
2313
  class AppAssignedTargetingOptionDetails
2149
2314
  # @private
2150
2315
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2805,6 +2970,7 @@ module Google
2805
2970
  # @private
2806
2971
  class Representation < Google::Apis::Core::JsonRepresentation
2807
2972
  property :cm_account_id, :numeric_string => true, as: 'cmAccountId'
2973
+ collection :cm_advertiser_ids, as: 'cmAdvertiserIds'
2808
2974
  property :cm_floodlight_config_id, :numeric_string => true, as: 'cmFloodlightConfigId'
2809
2975
  property :cm_floodlight_linking_authorized, as: 'cmFloodlightLinkingAuthorized'
2810
2976
  collection :cm_syncable_site_ids, as: 'cmSyncableSiteIds'
@@ -3230,6 +3396,15 @@ module Google
3230
3396
  end
3231
3397
  end
3232
3398
 
3399
+ class DayAndTime
3400
+ # @private
3401
+ class Representation < Google::Apis::Core::JsonRepresentation
3402
+ property :day_of_week, as: 'dayOfWeek'
3403
+ property :hour_of_day, as: 'hourOfDay'
3404
+ property :time_zone_resolution, as: 'timeZoneResolution'
3405
+ end
3406
+ end
3407
+
3233
3408
  class DayAndTimeAssignedTargetingOptionDetails
3234
3409
  # @private
3235
3410
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3555,6 +3730,21 @@ module Google
3555
3730
  end
3556
3731
  end
3557
3732
 
3733
+ class FloodlightActivity
3734
+ # @private
3735
+ class Representation < Google::Apis::Core::JsonRepresentation
3736
+ collection :advertiser_ids, as: 'advertiserIds'
3737
+ property :display_name, as: 'displayName'
3738
+ property :floodlight_activity_id, :numeric_string => true, as: 'floodlightActivityId'
3739
+ property :floodlight_group_id, :numeric_string => true, as: 'floodlightGroupId'
3740
+ property :name, as: 'name'
3741
+ collection :remarketing_configs, as: 'remarketingConfigs', class: Google::Apis::DisplayvideoV3::RemarketingConfig, decorator: Google::Apis::DisplayvideoV3::RemarketingConfig::Representation
3742
+
3743
+ property :serving_status, as: 'servingStatus'
3744
+ property :ssl_required, as: 'sslRequired'
3745
+ end
3746
+ end
3747
+
3558
3748
  class FloodlightGroup
3559
3749
  # @private
3560
3750
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4213,6 +4403,15 @@ module Google
4213
4403
  end
4214
4404
  end
4215
4405
 
4406
+ class ListFloodlightActivitiesResponse
4407
+ # @private
4408
+ class Representation < Google::Apis::Core::JsonRepresentation
4409
+ collection :floodlight_activities, as: 'floodlightActivities', class: Google::Apis::DisplayvideoV3::FloodlightActivity, decorator: Google::Apis::DisplayvideoV3::FloodlightActivity::Representation
4410
+
4411
+ property :next_page_token, as: 'nextPageToken'
4412
+ end
4413
+ end
4414
+
4216
4415
  class ListGoogleAudiencesResponse
4217
4416
  # @private
4218
4417
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4806,6 +5005,14 @@ module Google
4806
5005
  end
4807
5006
  end
4808
5007
 
5008
+ class RemarketingConfig
5009
+ # @private
5010
+ class Representation < Google::Apis::Core::JsonRepresentation
5011
+ property :advertiser_id, :numeric_string => true, as: 'advertiserId'
5012
+ property :remarketing_enabled, as: 'remarketingEnabled'
5013
+ end
5014
+ end
5015
+
4809
5016
  class ReplaceNegativeKeywordsRequest
4810
5017
  # @private
4811
5018
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4871,6 +5078,22 @@ module Google
4871
5078
  end
4872
5079
  end
4873
5080
 
5081
+ class SdfDownloadTask
5082
+ # @private
5083
+ class Representation < Google::Apis::Core::JsonRepresentation
5084
+ property :resource_name, as: 'resourceName'
5085
+ end
5086
+ end
5087
+
5088
+ class SdfDownloadTaskMetadata
5089
+ # @private
5090
+ class Representation < Google::Apis::Core::JsonRepresentation
5091
+ property :create_time, as: 'createTime'
5092
+ property :end_time, as: 'endTime'
5093
+ property :version, as: 'version'
5094
+ end
5095
+ end
5096
+
4874
5097
  class SearchTargetingOptionsRequest
4875
5098
  # @private
4876
5099
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5125,6 +5125,96 @@ module Google
5125
5125
  execute_or_queue_command(command, &block)
5126
5126
  end
5127
5127
 
5128
+ # Gets a Floodlight activity.
5129
+ # @param [Fixnum] floodlight_group_id
5130
+ # Required. The ID of the parent Floodlight group to which the requested
5131
+ # Floodlight activity belongs.
5132
+ # @param [Fixnum] floodlight_activity_id
5133
+ # Required. The ID of the Floodlight activity to fetch.
5134
+ # @param [Fixnum] partner_id
5135
+ # Required. The ID of the partner through which the Floodlight activity is being
5136
+ # accessed.
5137
+ # @param [String] fields
5138
+ # Selector specifying which fields to include in a partial response.
5139
+ # @param [String] quota_user
5140
+ # Available to use for quota purposes for server-side applications. Can be any
5141
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
5142
+ # @param [Google::Apis::RequestOptions] options
5143
+ # Request-specific options
5144
+ #
5145
+ # @yield [result, err] Result & error if block supplied
5146
+ # @yieldparam result [Google::Apis::DisplayvideoV3::FloodlightActivity] parsed result object
5147
+ # @yieldparam err [StandardError] error object if request failed
5148
+ #
5149
+ # @return [Google::Apis::DisplayvideoV3::FloodlightActivity]
5150
+ #
5151
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5152
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5153
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
5154
+ def get_floodlight_group_floodlight_activity(floodlight_group_id, floodlight_activity_id, partner_id: nil, fields: nil, quota_user: nil, options: nil, &block)
5155
+ command = make_simple_command(:get, 'v3/floodlightGroups/{+floodlightGroupId}/floodlightActivities/{+floodlightActivityId}', options)
5156
+ command.response_representation = Google::Apis::DisplayvideoV3::FloodlightActivity::Representation
5157
+ command.response_class = Google::Apis::DisplayvideoV3::FloodlightActivity
5158
+ command.params['floodlightGroupId'] = floodlight_group_id unless floodlight_group_id.nil?
5159
+ command.params['floodlightActivityId'] = floodlight_activity_id unless floodlight_activity_id.nil?
5160
+ command.query['partnerId'] = partner_id unless partner_id.nil?
5161
+ command.query['fields'] = fields unless fields.nil?
5162
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
5163
+ execute_or_queue_command(command, &block)
5164
+ end
5165
+
5166
+ # Lists Floodlight activities in a Floodlight group.
5167
+ # @param [Fixnum] floodlight_group_id
5168
+ # Required. The ID of the parent Floodlight group to which the requested
5169
+ # Floodlight activities belong.
5170
+ # @param [String] order_by
5171
+ # Optional. Field by which to sort the list. Acceptable values are: * `
5172
+ # displayName` (default) * `floodlightActivityId` The default sorting order is
5173
+ # ascending. To specify descending order for a field, a suffix "desc" should be
5174
+ # added to the field name. Example: `displayName desc`.
5175
+ # @param [Fixnum] page_size
5176
+ # Optional. Requested page size. Must be between `1` and `100`. If unspecified
5177
+ # will default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid
5178
+ # value is specified.
5179
+ # @param [String] page_token
5180
+ # Optional. A token identifying a page of results the server should return.
5181
+ # Typically, this is the value of next_page_token returned from the previous
5182
+ # call to `ListFloodlightActivities` method. If not specified, the first page of
5183
+ # results will be returned.
5184
+ # @param [Fixnum] partner_id
5185
+ # Required. The ID of the partner through which the Floodlight activities are
5186
+ # being accessed.
5187
+ # @param [String] fields
5188
+ # Selector specifying which fields to include in a partial response.
5189
+ # @param [String] quota_user
5190
+ # Available to use for quota purposes for server-side applications. Can be any
5191
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
5192
+ # @param [Google::Apis::RequestOptions] options
5193
+ # Request-specific options
5194
+ #
5195
+ # @yield [result, err] Result & error if block supplied
5196
+ # @yieldparam result [Google::Apis::DisplayvideoV3::ListFloodlightActivitiesResponse] parsed result object
5197
+ # @yieldparam err [StandardError] error object if request failed
5198
+ #
5199
+ # @return [Google::Apis::DisplayvideoV3::ListFloodlightActivitiesResponse]
5200
+ #
5201
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5202
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5203
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
5204
+ def list_floodlight_group_floodlight_activities(floodlight_group_id, order_by: nil, page_size: nil, page_token: nil, partner_id: nil, fields: nil, quota_user: nil, options: nil, &block)
5205
+ command = make_simple_command(:get, 'v3/floodlightGroups/{+floodlightGroupId}/floodlightActivities', options)
5206
+ command.response_representation = Google::Apis::DisplayvideoV3::ListFloodlightActivitiesResponse::Representation
5207
+ command.response_class = Google::Apis::DisplayvideoV3::ListFloodlightActivitiesResponse
5208
+ command.params['floodlightGroupId'] = floodlight_group_id unless floodlight_group_id.nil?
5209
+ command.query['orderBy'] = order_by unless order_by.nil?
5210
+ command.query['pageSize'] = page_size unless page_size.nil?
5211
+ command.query['pageToken'] = page_token unless page_token.nil?
5212
+ command.query['partnerId'] = partner_id unless partner_id.nil?
5213
+ command.query['fields'] = fields unless fields.nil?
5214
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
5215
+ execute_or_queue_command(command, &block)
5216
+ end
5217
+
5128
5218
  # Gets a Google audience.
5129
5219
  # @param [Fixnum] google_audience_id
5130
5220
  # Required. The ID of the Google audience to fetch.
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.4.0
4
+ version: 0.5.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-23 00:00:00.000000000 Z
11
+ date: 2024-01-28 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_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.5.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: []