google-apis-displayvideo_v1 0.28.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38888fb905f66df562bbe46e1e1392eccc179395834a31576d1be2cc725bea3a
|
4
|
+
data.tar.gz: 185edd4df5ad1dec93519c52fd2ff71a28dfe76b19b6f2c04a4aa8ab93c17581
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9858a2f9f4c18be7fe31be43281b196622fdd60dbfcd7f21b1aa702f4956c9596153626dce84ec58045d3c4215e0de5cded66a5ebcc2db6ef7daa1b79ace103
|
7
|
+
data.tar.gz: 3ad62897e3d3a3706aeb7dc6c64fe108374ee1e1fb4b92922ffa412e9b20e2c53dc4c63cde208a28de57855945523b163e1a204b145fac774a41227ca802da1c
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
@@ -4382,8 +4570,7 @@ module Google
|
|
4382
4570
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
4383
4571
|
# messages in your APIs. A typical example is to use it as the request or the
|
4384
4572
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
4385
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
4386
|
-
# `Empty` is empty JSON object ````.
|
4573
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
4387
4574
|
class Empty
|
4388
4575
|
include Google::Apis::Core::Hashable
|
4389
4576
|
|
@@ -5351,6 +5538,11 @@ module Google
|
|
5351
5538
|
# @return [Google::Apis::DisplayvideoV1::BiddingStrategy]
|
5352
5539
|
attr_accessor :bid_strategy
|
5353
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
|
+
|
5354
5546
|
# Settings that control how insertion order budget is allocated.
|
5355
5547
|
# Corresponds to the JSON property `budget`
|
5356
5548
|
# @return [Google::Apis::DisplayvideoV1::InsertionOrderBudget]
|
@@ -5442,6 +5634,7 @@ module Google
|
|
5442
5634
|
def update!(**args)
|
5443
5635
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
5444
5636
|
@bid_strategy = args[:bid_strategy] if args.key?(:bid_strategy)
|
5637
|
+
@billable_outcome = args[:billable_outcome] if args.key?(:billable_outcome)
|
5445
5638
|
@budget = args[:budget] if args.key?(:budget)
|
5446
5639
|
@campaign_id = args[:campaign_id] if args.key?(:campaign_id)
|
5447
5640
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -9429,6 +9622,20 @@ module Google
|
|
9429
9622
|
# @return [Google::Apis::DisplayvideoV1::CategoryTargetingOptionDetails]
|
9430
9623
|
attr_accessor :category_details
|
9431
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
|
+
|
9432
9639
|
# Represents a targetable content instream position, which could be used by
|
9433
9640
|
# video and audio ads. This will be populated in the
|
9434
9641
|
# content_instream_position_details field when targeting_type is `
|
@@ -9445,6 +9652,13 @@ module Google
|
|
9445
9652
|
# @return [Google::Apis::DisplayvideoV1::ContentOutstreamPositionTargetingOptionDetails]
|
9446
9653
|
attr_accessor :content_outstream_position_details
|
9447
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
|
+
|
9448
9662
|
# Represents a targetable device make and model. This will be populated in the
|
9449
9663
|
# device_make_model_details field of a TargetingOption when targeting_type is `
|
9450
9664
|
# TARGETING_TYPE_DEVICE_MAKE_MODEL`.
|
@@ -9611,8 +9825,11 @@ module Google
|
|
9611
9825
|
@business_chain_details = args[:business_chain_details] if args.key?(:business_chain_details)
|
9612
9826
|
@carrier_and_isp_details = args[:carrier_and_isp_details] if args.key?(:carrier_and_isp_details)
|
9613
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)
|
9614
9830
|
@content_instream_position_details = args[:content_instream_position_details] if args.key?(:content_instream_position_details)
|
9615
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)
|
9616
9833
|
@device_make_model_details = args[:device_make_model_details] if args.key?(:device_make_model_details)
|
9617
9834
|
@device_type_details = args[:device_type_details] if args.key?(:device_type_details)
|
9618
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.
|
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 = "
|
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'
|
@@ -4166,10 +4255,16 @@ module Google
|
|
4166
4255
|
|
4167
4256
|
property :category_details, as: 'categoryDetails', class: Google::Apis::DisplayvideoV1::CategoryTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::CategoryTargetingOptionDetails::Representation
|
4168
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
|
+
|
4169
4262
|
property :content_instream_position_details, as: 'contentInstreamPositionDetails', class: Google::Apis::DisplayvideoV1::ContentInstreamPositionTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentInstreamPositionTargetingOptionDetails::Representation
|
4170
4263
|
|
4171
4264
|
property :content_outstream_position_details, as: 'contentOutstreamPositionDetails', class: Google::Apis::DisplayvideoV1::ContentOutstreamPositionTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentOutstreamPositionTargetingOptionDetails::Representation
|
4172
4265
|
|
4266
|
+
property :content_stream_type_details, as: 'contentStreamTypeDetails', class: Google::Apis::DisplayvideoV1::ContentStreamTypeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ContentStreamTypeTargetingOptionDetails::Representation
|
4267
|
+
|
4173
4268
|
property :device_make_model_details, as: 'deviceMakeModelDetails', class: Google::Apis::DisplayvideoV1::DeviceMakeModelTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::DeviceMakeModelTargetingOptionDetails::Representation
|
4174
4269
|
|
4175
4270
|
property :device_type_details, as: 'deviceTypeDetails', class: Google::Apis::DisplayvideoV1::DeviceTypeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::DeviceTypeTargetingOptionDetails::Representation
|
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.
|
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-03-
|
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.
|
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: []
|