google-apis-displayvideo_v1 0.26.0 → 0.29.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: 3f8b1b4e75759ba6690fef1a0e5d920a1ea6748f77f796580a629752afe4fa70
4
- data.tar.gz: 2303e68c36a0a8db275e4a0685bc262df962303afe855aba322be273256cd7aa
3
+ metadata.gz: 38888fb905f66df562bbe46e1e1392eccc179395834a31576d1be2cc725bea3a
4
+ data.tar.gz: 185edd4df5ad1dec93519c52fd2ff71a28dfe76b19b6f2c04a4aa8ab93c17581
5
5
  SHA512:
6
- metadata.gz: 19b440d78a7f4b3db43971ca569886171ad866e3fbf1ac41cdc55518019cb1293b9bf8b9a7c573dc8b1a2fe4efe95b754d77ec697e115f0b74f5e5a762c2cdc2
7
- data.tar.gz: dc22bcb177d54a1942af19db0918fc954c922e3d3be40782fe621be6881b4ebe306411393799bd83feccca1f198009d756508534cbb225516208a40f2a26ddfe
6
+ metadata.gz: e9858a2f9f4c18be7fe31be43281b196622fdd60dbfcd7f21b1aa702f4956c9596153626dce84ec58045d3c4215e0de5cded66a5ebcc2db6ef7daa1b79ace103
7
+ data.tar.gz: 3ad62897e3d3a3706aeb7dc6c64fe108374ee1e1fb4b92922ffa412e9b20e2c53dc4c63cde208a28de57855945523b163e1a204b145fac774a41227ca802da1c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-displayvideo_v1
2
2
 
3
+ ### v0.29.0 (2022-03-25)
4
+
5
+ * Regenerated from discovery document revision 20220324
6
+
7
+ ### v0.28.0 (2022-03-04)
8
+
9
+ * Regenerated from discovery document revision 20220303
10
+
11
+ ### v0.27.0 (2022-02-18)
12
+
13
+ * Regenerated from discovery document revision 20220217
14
+
3
15
  ### v0.26.0 (2022-02-12)
4
16
 
5
17
  * Regenerated from discovery document revision 20220211
@@ -771,6 +771,23 @@ module Google
771
771
  # @return [Google::Apis::DisplayvideoV1::ChannelAssignedTargetingOptionDetails]
772
772
  attr_accessor :channel_details
773
773
 
774
+ # Details for content duration assigned targeting option. This will be populated
775
+ # in the content_duration_details field when targeting_type is `
776
+ # TARGETING_TYPE_CONTENT_DURATION`. Explicitly targeting all options is not
777
+ # supported. Remove all content duration targeting options to achieve this
778
+ # effect.
779
+ # Corresponds to the JSON property `contentDurationDetails`
780
+ # @return [Google::Apis::DisplayvideoV1::ContentDurationAssignedTargetingOptionDetails]
781
+ attr_accessor :content_duration_details
782
+
783
+ # Details for content genre assigned targeting option. This will be populated in
784
+ # the content_genre_details field when targeting_type is `
785
+ # TARGETING_TYPE_CONTENT_GENRE`. Explicitly targeting all options is not
786
+ # supported. Remove all content genre targeting options to achieve this effect.
787
+ # Corresponds to the JSON property `contentGenreDetails`
788
+ # @return [Google::Apis::DisplayvideoV1::ContentGenreAssignedTargetingOptionDetails]
789
+ attr_accessor :content_genre_details
790
+
774
791
  # Assigned content instream position targeting option details. This will be
775
792
  # populated in the content_instream_position_details field when targeting_type
776
793
  # is `TARGETING_TYPE_CONTENT_INSTREAM_POSITION`.
@@ -785,6 +802,15 @@ module Google
785
802
  # @return [Google::Apis::DisplayvideoV1::ContentOutstreamPositionAssignedTargetingOptionDetails]
786
803
  attr_accessor :content_outstream_position_details
787
804
 
805
+ # Details for content stream type assigned targeting option. This will be
806
+ # populated in the content_stream_type_details field when targeting_type is `
807
+ # TARGETING_TYPE_CONTENT_STREAM_TYPE`. Explicitly targeting all options is not
808
+ # supported. Remove all content stream type targeting options to achieve this
809
+ # effect.
810
+ # Corresponds to the JSON property `contentStreamTypeDetails`
811
+ # @return [Google::Apis::DisplayvideoV1::ContentStreamTypeAssignedTargetingOptionDetails]
812
+ attr_accessor :content_stream_type_details
813
+
788
814
  # Representation of a segment of time defined on a specific day of the week and
789
815
  # with a start and end time. The time represented by `start_hour` must be before
790
816
  # the time represented by `end_hour`.
@@ -1025,8 +1051,11 @@ module Google
1025
1051
  @carrier_and_isp_details = args[:carrier_and_isp_details] if args.key?(:carrier_and_isp_details)
1026
1052
  @category_details = args[:category_details] if args.key?(:category_details)
1027
1053
  @channel_details = args[:channel_details] if args.key?(:channel_details)
1054
+ @content_duration_details = args[:content_duration_details] if args.key?(:content_duration_details)
1055
+ @content_genre_details = args[:content_genre_details] if args.key?(:content_genre_details)
1028
1056
  @content_instream_position_details = args[:content_instream_position_details] if args.key?(:content_instream_position_details)
1029
1057
  @content_outstream_position_details = args[:content_outstream_position_details] if args.key?(:content_outstream_position_details)
1058
+ @content_stream_type_details = args[:content_stream_type_details] if args.key?(:content_stream_type_details)
1030
1059
  @day_and_time_details = args[:day_and_time_details] if args.key?(:day_and_time_details)
1031
1060
  @device_make_model_details = args[:device_make_model_details] if args.key?(:device_make_model_details)
1032
1061
  @device_type_details = args[:device_type_details] if args.key?(:device_type_details)
@@ -2803,6 +2832,114 @@ module Google
2803
2832
  end
2804
2833
  end
2805
2834
 
2835
+ # Details for content duration assigned targeting option. This will be populated
2836
+ # in the content_duration_details field when targeting_type is `
2837
+ # TARGETING_TYPE_CONTENT_DURATION`. Explicitly targeting all options is not
2838
+ # supported. Remove all content duration targeting options to achieve this
2839
+ # effect.
2840
+ class ContentDurationAssignedTargetingOptionDetails
2841
+ include Google::Apis::Core::Hashable
2842
+
2843
+ # Output only. The content duration.
2844
+ # Corresponds to the JSON property `contentDuration`
2845
+ # @return [String]
2846
+ attr_accessor :content_duration
2847
+
2848
+ # Required. The targeting_option_id field when targeting_type is `
2849
+ # TARGETING_TYPE_CONTENT_DURATION`.
2850
+ # Corresponds to the JSON property `targetingOptionId`
2851
+ # @return [String]
2852
+ attr_accessor :targeting_option_id
2853
+
2854
+ def initialize(**args)
2855
+ update!(**args)
2856
+ end
2857
+
2858
+ # Update properties of this object
2859
+ def update!(**args)
2860
+ @content_duration = args[:content_duration] if args.key?(:content_duration)
2861
+ @targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
2862
+ end
2863
+ end
2864
+
2865
+ # Represents a targetable content duration. This will be populated in the
2866
+ # content_duration_details field when targeting_type is `
2867
+ # TARGETING_TYPE_CONTENT_DURATION`.
2868
+ class ContentDurationTargetingOptionDetails
2869
+ include Google::Apis::Core::Hashable
2870
+
2871
+ # Output only. The content duration.
2872
+ # Corresponds to the JSON property `contentDuration`
2873
+ # @return [String]
2874
+ attr_accessor :content_duration
2875
+
2876
+ def initialize(**args)
2877
+ update!(**args)
2878
+ end
2879
+
2880
+ # Update properties of this object
2881
+ def update!(**args)
2882
+ @content_duration = args[:content_duration] if args.key?(:content_duration)
2883
+ end
2884
+ end
2885
+
2886
+ # Details for content genre assigned targeting option. This will be populated in
2887
+ # the content_genre_details field when targeting_type is `
2888
+ # TARGETING_TYPE_CONTENT_GENRE`. Explicitly targeting all options is not
2889
+ # supported. Remove all content genre targeting options to achieve this effect.
2890
+ class ContentGenreAssignedTargetingOptionDetails
2891
+ include Google::Apis::Core::Hashable
2892
+
2893
+ # Output only. The display name of the content genre.
2894
+ # Corresponds to the JSON property `displayName`
2895
+ # @return [String]
2896
+ attr_accessor :display_name
2897
+
2898
+ # Indicates if this option is being negatively targeted.
2899
+ # Corresponds to the JSON property `negative`
2900
+ # @return [Boolean]
2901
+ attr_accessor :negative
2902
+ alias_method :negative?, :negative
2903
+
2904
+ # Required. The targeting_option_id field when targeting_type is `
2905
+ # TARGETING_TYPE_CONTENT_GENRE`.
2906
+ # Corresponds to the JSON property `targetingOptionId`
2907
+ # @return [String]
2908
+ attr_accessor :targeting_option_id
2909
+
2910
+ def initialize(**args)
2911
+ update!(**args)
2912
+ end
2913
+
2914
+ # Update properties of this object
2915
+ def update!(**args)
2916
+ @display_name = args[:display_name] if args.key?(:display_name)
2917
+ @negative = args[:negative] if args.key?(:negative)
2918
+ @targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
2919
+ end
2920
+ end
2921
+
2922
+ # Represents a targetable content genre. This will be populated in the
2923
+ # content_genre_details field when targeting_type is `
2924
+ # TARGETING_TYPE_CONTENT_GENRE`.
2925
+ class ContentGenreTargetingOptionDetails
2926
+ include Google::Apis::Core::Hashable
2927
+
2928
+ # Output only. The display name of the content genre
2929
+ # Corresponds to the JSON property `displayName`
2930
+ # @return [String]
2931
+ attr_accessor :display_name
2932
+
2933
+ def initialize(**args)
2934
+ update!(**args)
2935
+ end
2936
+
2937
+ # Update properties of this object
2938
+ def update!(**args)
2939
+ @display_name = args[:display_name] if args.key?(:display_name)
2940
+ end
2941
+ end
2942
+
2806
2943
  # Assigned content instream position targeting option details. This will be
2807
2944
  # populated in the content_instream_position_details field when targeting_type
2808
2945
  # is `TARGETING_TYPE_CONTENT_INSTREAM_POSITION`.
@@ -2928,6 +3065,57 @@ module Google
2928
3065
  end
2929
3066
  end
2930
3067
 
3068
+ # Details for content stream type assigned targeting option. This will be
3069
+ # populated in the content_stream_type_details field when targeting_type is `
3070
+ # TARGETING_TYPE_CONTENT_STREAM_TYPE`. Explicitly targeting all options is not
3071
+ # supported. Remove all content stream type targeting options to achieve this
3072
+ # effect.
3073
+ class ContentStreamTypeAssignedTargetingOptionDetails
3074
+ include Google::Apis::Core::Hashable
3075
+
3076
+ # Output only. The content stream type.
3077
+ # Corresponds to the JSON property `contentStreamType`
3078
+ # @return [String]
3079
+ attr_accessor :content_stream_type
3080
+
3081
+ # Required. The targeting_option_id field when targeting_type is `
3082
+ # TARGETING_TYPE_CONTENT_STREAM_TYPE`.
3083
+ # Corresponds to the JSON property `targetingOptionId`
3084
+ # @return [String]
3085
+ attr_accessor :targeting_option_id
3086
+
3087
+ def initialize(**args)
3088
+ update!(**args)
3089
+ end
3090
+
3091
+ # Update properties of this object
3092
+ def update!(**args)
3093
+ @content_stream_type = args[:content_stream_type] if args.key?(:content_stream_type)
3094
+ @targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
3095
+ end
3096
+ end
3097
+
3098
+ # Represents a targetable content stream type. This will be populated in the
3099
+ # content_stream_type_details field when targeting_type is `
3100
+ # TARGETING_TYPE_CONTENT_STREAM_TYPE`.
3101
+ class ContentStreamTypeTargetingOptionDetails
3102
+ include Google::Apis::Core::Hashable
3103
+
3104
+ # Output only. The content stream type.
3105
+ # Corresponds to the JSON property `contentStreamType`
3106
+ # @return [String]
3107
+ attr_accessor :content_stream_type
3108
+
3109
+ def initialize(**args)
3110
+ update!(**args)
3111
+ end
3112
+
3113
+ # Update properties of this object
3114
+ def update!(**args)
3115
+ @content_stream_type = args[:content_stream_type] if args.key?(:content_stream_type)
3116
+ end
3117
+ end
3118
+
2931
3119
  # Settings that control how conversions are counted. All post-click conversions
2932
3120
  # will be counted. A percentage value can be set for post-view conversions
2933
3121
  # counting.
@@ -3524,7 +3712,9 @@ module Google
3524
3712
  class CreativeConfig
3525
3713
  include Google::Apis::Core::Hashable
3526
3714
 
3527
- # The type of creative that can be assigned to the inventory source.
3715
+ # The type of creative that can be assigned to the inventory source. Only the
3716
+ # following types are supported: * `CREATIVE_TYPE_STANDARD` * `
3717
+ # CREATIVE_TYPE_VIDEO`
3528
3718
  # Corresponds to the JSON property `creativeType`
3529
3719
  # @return [String]
3530
3720
  attr_accessor :creative_type
@@ -3791,11 +3981,11 @@ module Google
3791
3981
  # Represents a whole or partial calendar date, such as a birthday. The time of
3792
3982
  # day and time zone are either specified elsewhere or are insignificant. The
3793
3983
  # date is relative to the Gregorian Calendar. This can represent one of the
3794
- # following: * A full date, with non-zero year, month, and day values * A month
3795
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
3796
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
3797
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
3798
- # DateTime * google.protobuf.Timestamp
3984
+ # following: * A full date, with non-zero year, month, and day values. * A month
3985
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
3986
+ # with a zero month and a zero day. * A year and month, with a zero day (for
3987
+ # example, a credit card expiration date). Related types: * google.type.
3988
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
3799
3989
  class Date
3800
3990
  include Google::Apis::Core::Hashable
3801
3991
 
@@ -3836,11 +4026,11 @@ module Google
3836
4026
  # Represents a whole or partial calendar date, such as a birthday. The time of
3837
4027
  # day and time zone are either specified elsewhere or are insignificant. The
3838
4028
  # date is relative to the Gregorian Calendar. This can represent one of the
3839
- # following: * A full date, with non-zero year, month, and day values * A month
3840
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
3841
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
3842
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
3843
- # DateTime * google.protobuf.Timestamp
4029
+ # following: * A full date, with non-zero year, month, and day values. * A month
4030
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
4031
+ # with a zero month and a zero day. * A year and month, with a zero day (for
4032
+ # example, a credit card expiration date). Related types: * google.type.
4033
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
3844
4034
  # Corresponds to the JSON property `endDate`
3845
4035
  # @return [Google::Apis::DisplayvideoV1::Date]
3846
4036
  attr_accessor :end_date
@@ -3848,11 +4038,11 @@ module Google
3848
4038
  # Represents a whole or partial calendar date, such as a birthday. The time of
3849
4039
  # day and time zone are either specified elsewhere or are insignificant. The
3850
4040
  # date is relative to the Gregorian Calendar. This can represent one of the
3851
- # following: * A full date, with non-zero year, month, and day values * A month
3852
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
3853
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
3854
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
3855
- # DateTime * google.protobuf.Timestamp
4041
+ # following: * A full date, with non-zero year, month, and day values. * A month
4042
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
4043
+ # with a zero month and a zero day. * A year and month, with a zero day (for
4044
+ # example, a credit card expiration date). Related types: * google.type.
4045
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
3856
4046
  # Corresponds to the JSON property `startDate`
3857
4047
  # @return [Google::Apis::DisplayvideoV1::Date]
3858
4048
  attr_accessor :start_date
@@ -4380,8 +4570,7 @@ module Google
4380
4570
  # A generic empty message that you can re-use to avoid defining duplicated empty
4381
4571
  # messages in your APIs. A typical example is to use it as the request or the
4382
4572
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
4383
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
4384
- # `Empty` is empty JSON object ````.
4573
+ # protobuf.Empty) returns (google.protobuf.Empty); `
4385
4574
  class Empty
4386
4575
  include Google::Apis::Core::Hashable
4387
4576
 
@@ -4915,8 +5104,9 @@ module Google
4915
5104
  class FrequencyCap
4916
5105
  include Google::Apis::Core::Hashable
4917
5106
 
4918
- # The maximum number of times a user may be shown with the same ad during this
4919
- # period. Must be greater than 0. Required when unlimited is `false`.
5107
+ # The maximum number of times a user may be shown the same ad during this period.
5108
+ # Must be greater than 0. Required when unlimited is `false` and max_views is
5109
+ # not set.
4920
5110
  # Corresponds to the JSON property `maxImpressions`
4921
5111
  # @return [Fixnum]
4922
5112
  attr_accessor :max_impressions
@@ -5348,6 +5538,11 @@ module Google
5348
5538
  # @return [Google::Apis::DisplayvideoV1::BiddingStrategy]
5349
5539
  attr_accessor :bid_strategy
5350
5540
 
5541
+ # Immutable. The billable outcome of the insertion order.
5542
+ # Corresponds to the JSON property `billableOutcome`
5543
+ # @return [String]
5544
+ attr_accessor :billable_outcome
5545
+
5351
5546
  # Settings that control how insertion order budget is allocated.
5352
5547
  # Corresponds to the JSON property `budget`
5353
5548
  # @return [Google::Apis::DisplayvideoV1::InsertionOrderBudget]
@@ -5439,6 +5634,7 @@ module Google
5439
5634
  def update!(**args)
5440
5635
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
5441
5636
  @bid_strategy = args[:bid_strategy] if args.key?(:bid_strategy)
5637
+ @billable_outcome = args[:billable_outcome] if args.key?(:billable_outcome)
5442
5638
  @budget = args[:budget] if args.key?(:budget)
5443
5639
  @campaign_id = args[:campaign_id] if args.key?(:campaign_id)
5444
5640
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -5997,11 +6193,11 @@ module Google
5997
6193
  # Represents a whole or partial calendar date, such as a birthday. The time of
5998
6194
  # day and time zone are either specified elsewhere or are insignificant. The
5999
6195
  # date is relative to the Gregorian Calendar. This can represent one of the
6000
- # following: * A full date, with non-zero year, month, and day values * A month
6001
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
6002
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
6003
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
6004
- # DateTime * google.protobuf.Timestamp
6196
+ # following: * A full date, with non-zero year, month, and day values. * A month
6197
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
6198
+ # with a zero month and a zero day. * A year and month, with a zero day (for
6199
+ # example, a credit card expiration date). Related types: * google.type.
6200
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
6005
6201
  # Corresponds to the JSON property `dueDate`
6006
6202
  # @return [Google::Apis::DisplayvideoV1::Date]
6007
6203
  attr_accessor :due_date
@@ -6019,11 +6215,11 @@ module Google
6019
6215
  # Represents a whole or partial calendar date, such as a birthday. The time of
6020
6216
  # day and time zone are either specified elsewhere or are insignificant. The
6021
6217
  # date is relative to the Gregorian Calendar. This can represent one of the
6022
- # following: * A full date, with non-zero year, month, and day values * A month
6023
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
6024
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
6025
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
6026
- # DateTime * google.protobuf.Timestamp
6218
+ # following: * A full date, with non-zero year, month, and day values. * A month
6219
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
6220
+ # with a zero month and a zero day. * A year and month, with a zero day (for
6221
+ # example, a credit card expiration date). Related types: * google.type.
6222
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
6027
6223
  # Corresponds to the JSON property `issueDate`
6028
6224
  # @return [Google::Apis::DisplayvideoV1::Date]
6029
6225
  attr_accessor :issue_date
@@ -7479,6 +7675,12 @@ module Google
7479
7675
  # @return [String]
7480
7676
  attr_accessor :performance_goal_type
7481
7677
 
7678
+ # Controls whether the strategy takes deal floor prices into account.
7679
+ # Corresponds to the JSON property `raiseBidForDeals`
7680
+ # @return [Boolean]
7681
+ attr_accessor :raise_bid_for_deals
7682
+ alias_method :raise_bid_for_deals?, :raise_bid_for_deals
7683
+
7482
7684
  def initialize(**args)
7483
7685
  update!(**args)
7484
7686
  end
@@ -7488,6 +7690,7 @@ module Google
7488
7690
  @custom_bidding_algorithm_id = args[:custom_bidding_algorithm_id] if args.key?(:custom_bidding_algorithm_id)
7489
7691
  @max_average_cpm_bid_amount_micros = args[:max_average_cpm_bid_amount_micros] if args.key?(:max_average_cpm_bid_amount_micros)
7490
7692
  @performance_goal_type = args[:performance_goal_type] if args.key?(:performance_goal_type)
7693
+ @raise_bid_for_deals = args[:raise_bid_for_deals] if args.key?(:raise_bid_for_deals)
7491
7694
  end
7492
7695
  end
7493
7696
 
@@ -9419,6 +9622,20 @@ module Google
9419
9622
  # @return [Google::Apis::DisplayvideoV1::CategoryTargetingOptionDetails]
9420
9623
  attr_accessor :category_details
9421
9624
 
9625
+ # Represents a targetable content duration. This will be populated in the
9626
+ # content_duration_details field when targeting_type is `
9627
+ # TARGETING_TYPE_CONTENT_DURATION`.
9628
+ # Corresponds to the JSON property `contentDurationDetails`
9629
+ # @return [Google::Apis::DisplayvideoV1::ContentDurationTargetingOptionDetails]
9630
+ attr_accessor :content_duration_details
9631
+
9632
+ # Represents a targetable content genre. This will be populated in the
9633
+ # content_genre_details field when targeting_type is `
9634
+ # TARGETING_TYPE_CONTENT_GENRE`.
9635
+ # Corresponds to the JSON property `contentGenreDetails`
9636
+ # @return [Google::Apis::DisplayvideoV1::ContentGenreTargetingOptionDetails]
9637
+ attr_accessor :content_genre_details
9638
+
9422
9639
  # Represents a targetable content instream position, which could be used by
9423
9640
  # video and audio ads. This will be populated in the
9424
9641
  # content_instream_position_details field when targeting_type is `
@@ -9435,6 +9652,13 @@ module Google
9435
9652
  # @return [Google::Apis::DisplayvideoV1::ContentOutstreamPositionTargetingOptionDetails]
9436
9653
  attr_accessor :content_outstream_position_details
9437
9654
 
9655
+ # Represents a targetable content stream type. This will be populated in the
9656
+ # content_stream_type_details field when targeting_type is `
9657
+ # TARGETING_TYPE_CONTENT_STREAM_TYPE`.
9658
+ # Corresponds to the JSON property `contentStreamTypeDetails`
9659
+ # @return [Google::Apis::DisplayvideoV1::ContentStreamTypeTargetingOptionDetails]
9660
+ attr_accessor :content_stream_type_details
9661
+
9438
9662
  # Represents a targetable device make and model. This will be populated in the
9439
9663
  # device_make_model_details field of a TargetingOption when targeting_type is `
9440
9664
  # TARGETING_TYPE_DEVICE_MAKE_MODEL`.
@@ -9601,8 +9825,11 @@ module Google
9601
9825
  @business_chain_details = args[:business_chain_details] if args.key?(:business_chain_details)
9602
9826
  @carrier_and_isp_details = args[:carrier_and_isp_details] if args.key?(:carrier_and_isp_details)
9603
9827
  @category_details = args[:category_details] if args.key?(:category_details)
9828
+ @content_duration_details = args[:content_duration_details] if args.key?(:content_duration_details)
9829
+ @content_genre_details = args[:content_genre_details] if args.key?(:content_genre_details)
9604
9830
  @content_instream_position_details = args[:content_instream_position_details] if args.key?(:content_instream_position_details)
9605
9831
  @content_outstream_position_details = args[:content_outstream_position_details] if args.key?(:content_outstream_position_details)
9832
+ @content_stream_type_details = args[:content_stream_type_details] if args.key?(:content_stream_type_details)
9606
9833
  @device_make_model_details = args[:device_make_model_details] if args.key?(:device_make_model_details)
9607
9834
  @device_type_details = args[:device_type_details] if args.key?(:device_type_details)
9608
9835
  @digital_content_label_details = args[:digital_content_label_details] if args.key?(:digital_content_label_details)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DisplayvideoV1
18
18
  # Version of the google-apis-displayvideo_v1 gem
19
- GEM_VERSION = "0.26.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220211"
25
+ REVISION = "20220324"
26
26
  end
27
27
  end
28
28
  end
@@ -454,6 +454,30 @@ module Google
454
454
  include Google::Apis::Core::JsonObjectSupport
455
455
  end
456
456
 
457
+ class ContentDurationAssignedTargetingOptionDetails
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
463
+ class ContentDurationTargetingOptionDetails
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
469
+ class ContentGenreAssignedTargetingOptionDetails
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
475
+ class ContentGenreTargetingOptionDetails
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
457
481
  class ContentInstreamPositionAssignedTargetingOptionDetails
458
482
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
483
 
@@ -478,6 +502,18 @@ module Google
478
502
  include Google::Apis::Core::JsonObjectSupport
479
503
  end
480
504
 
505
+ class ContentStreamTypeAssignedTargetingOptionDetails
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
511
+ class ContentStreamTypeTargetingOptionDetails
512
+ class Representation < Google::Apis::Core::JsonRepresentation; end
513
+
514
+ include Google::Apis::Core::JsonObjectSupport
515
+ end
516
+
481
517
  class ConversionCountingConfig
482
518
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
519
 
@@ -1822,10 +1858,16 @@ module Google
1822
1858
 
1823
1859
  property :channel_details, as: 'channelDetails', class: Google::Apis::DisplayvideoV1::ChannelAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ChannelAssignedTargetingOptionDetails::Representation
1824
1860
 
1861
+ property :content_duration_details, as: 'contentDurationDetails', class: Google::Apis::DisplayvideoV1::ContentDurationAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentDurationAssignedTargetingOptionDetails::Representation
1862
+
1863
+ property :content_genre_details, as: 'contentGenreDetails', class: Google::Apis::DisplayvideoV1::ContentGenreAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentGenreAssignedTargetingOptionDetails::Representation
1864
+
1825
1865
  property :content_instream_position_details, as: 'contentInstreamPositionDetails', class: Google::Apis::DisplayvideoV1::ContentInstreamPositionAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentInstreamPositionAssignedTargetingOptionDetails::Representation
1826
1866
 
1827
1867
  property :content_outstream_position_details, as: 'contentOutstreamPositionDetails', class: Google::Apis::DisplayvideoV1::ContentOutstreamPositionAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentOutstreamPositionAssignedTargetingOptionDetails::Representation
1828
1868
 
1869
+ property :content_stream_type_details, as: 'contentStreamTypeDetails', class: Google::Apis::DisplayvideoV1::ContentStreamTypeAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentStreamTypeAssignedTargetingOptionDetails::Representation
1870
+
1829
1871
  property :day_and_time_details, as: 'dayAndTimeDetails', class: Google::Apis::DisplayvideoV1::DayAndTimeAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::DayAndTimeAssignedTargetingOptionDetails::Representation
1830
1872
 
1831
1873
  property :device_make_model_details, as: 'deviceMakeModelDetails', class: Google::Apis::DisplayvideoV1::DeviceMakeModelAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::DeviceMakeModelAssignedTargetingOptionDetails::Representation
@@ -2390,6 +2432,37 @@ module Google
2390
2432
  end
2391
2433
  end
2392
2434
 
2435
+ class ContentDurationAssignedTargetingOptionDetails
2436
+ # @private
2437
+ class Representation < Google::Apis::Core::JsonRepresentation
2438
+ property :content_duration, as: 'contentDuration'
2439
+ property :targeting_option_id, as: 'targetingOptionId'
2440
+ end
2441
+ end
2442
+
2443
+ class ContentDurationTargetingOptionDetails
2444
+ # @private
2445
+ class Representation < Google::Apis::Core::JsonRepresentation
2446
+ property :content_duration, as: 'contentDuration'
2447
+ end
2448
+ end
2449
+
2450
+ class ContentGenreAssignedTargetingOptionDetails
2451
+ # @private
2452
+ class Representation < Google::Apis::Core::JsonRepresentation
2453
+ property :display_name, as: 'displayName'
2454
+ property :negative, as: 'negative'
2455
+ property :targeting_option_id, as: 'targetingOptionId'
2456
+ end
2457
+ end
2458
+
2459
+ class ContentGenreTargetingOptionDetails
2460
+ # @private
2461
+ class Representation < Google::Apis::Core::JsonRepresentation
2462
+ property :display_name, as: 'displayName'
2463
+ end
2464
+ end
2465
+
2393
2466
  class ContentInstreamPositionAssignedTargetingOptionDetails
2394
2467
  # @private
2395
2468
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2422,6 +2495,21 @@ module Google
2422
2495
  end
2423
2496
  end
2424
2497
 
2498
+ class ContentStreamTypeAssignedTargetingOptionDetails
2499
+ # @private
2500
+ class Representation < Google::Apis::Core::JsonRepresentation
2501
+ property :content_stream_type, as: 'contentStreamType'
2502
+ property :targeting_option_id, as: 'targetingOptionId'
2503
+ end
2504
+ end
2505
+
2506
+ class ContentStreamTypeTargetingOptionDetails
2507
+ # @private
2508
+ class Representation < Google::Apis::Core::JsonRepresentation
2509
+ property :content_stream_type, as: 'contentStreamType'
2510
+ end
2511
+ end
2512
+
2425
2513
  class ConversionCountingConfig
2426
2514
  # @private
2427
2515
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3054,6 +3142,7 @@ module Google
3054
3142
  property :advertiser_id, :numeric_string => true, as: 'advertiserId'
3055
3143
  property :bid_strategy, as: 'bidStrategy', class: Google::Apis::DisplayvideoV1::BiddingStrategy, decorator: Google::Apis::DisplayvideoV1::BiddingStrategy::Representation
3056
3144
 
3145
+ property :billable_outcome, as: 'billableOutcome'
3057
3146
  property :budget, as: 'budget', class: Google::Apis::DisplayvideoV1::InsertionOrderBudget, decorator: Google::Apis::DisplayvideoV1::InsertionOrderBudget::Representation
3058
3147
 
3059
3148
  property :campaign_id, :numeric_string => true, as: 'campaignId'
@@ -3636,6 +3725,7 @@ module Google
3636
3725
  property :custom_bidding_algorithm_id, :numeric_string => true, as: 'customBiddingAlgorithmId'
3637
3726
  property :max_average_cpm_bid_amount_micros, :numeric_string => true, as: 'maxAverageCpmBidAmountMicros'
3638
3727
  property :performance_goal_type, as: 'performanceGoalType'
3728
+ property :raise_bid_for_deals, as: 'raiseBidForDeals'
3639
3729
  end
3640
3730
  end
3641
3731
 
@@ -4165,10 +4255,16 @@ module Google
4165
4255
 
4166
4256
  property :category_details, as: 'categoryDetails', class: Google::Apis::DisplayvideoV1::CategoryTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::CategoryTargetingOptionDetails::Representation
4167
4257
 
4258
+ property :content_duration_details, as: 'contentDurationDetails', class: Google::Apis::DisplayvideoV1::ContentDurationTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentDurationTargetingOptionDetails::Representation
4259
+
4260
+ property :content_genre_details, as: 'contentGenreDetails', class: Google::Apis::DisplayvideoV1::ContentGenreTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentGenreTargetingOptionDetails::Representation
4261
+
4168
4262
  property :content_instream_position_details, as: 'contentInstreamPositionDetails', class: Google::Apis::DisplayvideoV1::ContentInstreamPositionTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentInstreamPositionTargetingOptionDetails::Representation
4169
4263
 
4170
4264
  property :content_outstream_position_details, as: 'contentOutstreamPositionDetails', class: Google::Apis::DisplayvideoV1::ContentOutstreamPositionTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentOutstreamPositionTargetingOptionDetails::Representation
4171
4265
 
4266
+ property :content_stream_type_details, as: 'contentStreamTypeDetails', class: Google::Apis::DisplayvideoV1::ContentStreamTypeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentStreamTypeTargetingOptionDetails::Representation
4267
+
4172
4268
  property :device_make_model_details, as: 'deviceMakeModelDetails', class: Google::Apis::DisplayvideoV1::DeviceMakeModelTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::DeviceMakeModelTargetingOptionDetails::Representation
4173
4269
 
4174
4270
  property :device_type_details, as: 'deviceTypeDetails', class: Google::Apis::DisplayvideoV1::DeviceTypeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::DeviceTypeTargetingOptionDetails::Representation
@@ -4335,7 +4335,9 @@ module Google
4335
4335
  # Required. The ID of the owner advertiser of the updated
4336
4336
  # FirstAndThirdPartyAudience.
4337
4337
  # @param [String] update_mask
4338
- # Required. The mask to control which fields to update.
4338
+ # Required. The mask to control which fields to update. Updates are only
4339
+ # supported for the following fields: * `displayName` * `description` * `
4340
+ # membershipDurationDays`
4339
4341
  # @param [String] fields
4340
4342
  # Selector specifying which fields to include in a partial response.
4341
4343
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-displayvideo_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.29.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-02-14 00:00:00.000000000 Z
11
+ date: 2022-03-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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v1/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v1/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v1
63
63
  post_install_message:
64
64
  rdoc_options: []