google-apis-displayvideo_v1 0.19.0 → 0.20.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ebe9a0c4670431e849fec7ed07c618d8b9f40faf45dea12851f14ed6daffa23
|
4
|
+
data.tar.gz: 571d792ba3df00b6c476ce238ca574c67c5addfd8d8e5ac05352c80f10dd4dd8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03be30e40183993fd48ccd1249a547ab480d5252171e4225f45293363b65847fba34d0a49b46511dbed7630b4cb9c38270c7362f6da7227cdbc389f8bfa0e13b
|
7
|
+
data.tar.gz: 263d8f6205d28d4da909f69ff6292ce3e86e7306bc7af55afef5cdab7a0b935775761143a9a62daa46dd855f72ebd5b774ab7a1eabb348b0bfa1d326f0a73d80
|
data/CHANGELOG.md
CHANGED
@@ -721,6 +721,15 @@ module Google
|
|
721
721
|
# @return [Google::Apis::DisplayvideoV1::AudienceGroupAssignedTargetingOptionDetails]
|
722
722
|
attr_accessor :audience_group_details
|
723
723
|
|
724
|
+
# Details for audio content type assigned targeting option. This will be
|
725
|
+
# populated in the audio_content_type_details field when targeting_type is `
|
726
|
+
# TARGETING_TYPE_AUDIO_CONTENT_TYPE`. Explicitly targeting all options is not
|
727
|
+
# supported. Remove all audio content type targeting options to achieve this
|
728
|
+
# effect.
|
729
|
+
# Corresponds to the JSON property `audioContentTypeDetails`
|
730
|
+
# @return [Google::Apis::DisplayvideoV1::AudioContentTypeAssignedTargetingOptionDetails]
|
731
|
+
attr_accessor :audio_content_type_details
|
732
|
+
|
724
733
|
# Represents an assigned authorized seller status. This will be populated in the
|
725
734
|
# details field of an AssignedTargetingOption when targeting_type is `
|
726
735
|
# TARGETING_TYPE_AUTHORIZED_SELLER_STATUS`.
|
@@ -1009,6 +1018,7 @@ module Google
|
|
1009
1018
|
@app_details = args[:app_details] if args.key?(:app_details)
|
1010
1019
|
@assigned_targeting_option_id = args[:assigned_targeting_option_id] if args.key?(:assigned_targeting_option_id)
|
1011
1020
|
@audience_group_details = args[:audience_group_details] if args.key?(:audience_group_details)
|
1021
|
+
@audio_content_type_details = args[:audio_content_type_details] if args.key?(:audio_content_type_details)
|
1012
1022
|
@authorized_seller_status_details = args[:authorized_seller_status_details] if args.key?(:authorized_seller_status_details)
|
1013
1023
|
@browser_details = args[:browser_details] if args.key?(:browser_details)
|
1014
1024
|
@business_chain_details = args[:business_chain_details] if args.key?(:business_chain_details)
|
@@ -1154,6 +1164,57 @@ module Google
|
|
1154
1164
|
end
|
1155
1165
|
end
|
1156
1166
|
|
1167
|
+
# Details for audio content type assigned targeting option. This will be
|
1168
|
+
# populated in the audio_content_type_details field when targeting_type is `
|
1169
|
+
# TARGETING_TYPE_AUDIO_CONTENT_TYPE`. Explicitly targeting all options is not
|
1170
|
+
# supported. Remove all audio content type targeting options to achieve this
|
1171
|
+
# effect.
|
1172
|
+
class AudioContentTypeAssignedTargetingOptionDetails
|
1173
|
+
include Google::Apis::Core::Hashable
|
1174
|
+
|
1175
|
+
# Output only. The audio content type.
|
1176
|
+
# Corresponds to the JSON property `audioContentType`
|
1177
|
+
# @return [String]
|
1178
|
+
attr_accessor :audio_content_type
|
1179
|
+
|
1180
|
+
# Required. The targeting_option_id field when targeting_type is `
|
1181
|
+
# TARGETING_TYPE_AUDIO_CONTENT_TYPE`.
|
1182
|
+
# Corresponds to the JSON property `targetingOptionId`
|
1183
|
+
# @return [String]
|
1184
|
+
attr_accessor :targeting_option_id
|
1185
|
+
|
1186
|
+
def initialize(**args)
|
1187
|
+
update!(**args)
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
# Update properties of this object
|
1191
|
+
def update!(**args)
|
1192
|
+
@audio_content_type = args[:audio_content_type] if args.key?(:audio_content_type)
|
1193
|
+
@targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
|
1194
|
+
end
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
# Represents a targetable audio content type. This will be populated in the
|
1198
|
+
# audio_content_type_details field when targeting_type is `
|
1199
|
+
# TARGETING_TYPE_AUDIO_CONTENT_TYPE`.
|
1200
|
+
class AudioContentTypeTargetingOptionDetails
|
1201
|
+
include Google::Apis::Core::Hashable
|
1202
|
+
|
1203
|
+
# Output only. The audio content type.
|
1204
|
+
# Corresponds to the JSON property `audioContentType`
|
1205
|
+
# @return [String]
|
1206
|
+
attr_accessor :audio_content_type
|
1207
|
+
|
1208
|
+
def initialize(**args)
|
1209
|
+
update!(**args)
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
# Update properties of this object
|
1213
|
+
def update!(**args)
|
1214
|
+
@audio_content_type = args[:audio_content_type] if args.key?(:audio_content_type)
|
1215
|
+
end
|
1216
|
+
end
|
1217
|
+
|
1157
1218
|
# The length an audio or a video has been played.
|
1158
1219
|
class AudioVideoOffset
|
1159
1220
|
include Google::Apis::Core::Hashable
|
@@ -9118,6 +9179,13 @@ module Google
|
|
9118
9179
|
# @return [Google::Apis::DisplayvideoV1::AppCategoryTargetingOptionDetails]
|
9119
9180
|
attr_accessor :app_category_details
|
9120
9181
|
|
9182
|
+
# Represents a targetable audio content type. This will be populated in the
|
9183
|
+
# audio_content_type_details field when targeting_type is `
|
9184
|
+
# TARGETING_TYPE_AUDIO_CONTENT_TYPE`.
|
9185
|
+
# Corresponds to the JSON property `audioContentTypeDetails`
|
9186
|
+
# @return [Google::Apis::DisplayvideoV1::AudioContentTypeTargetingOptionDetails]
|
9187
|
+
attr_accessor :audio_content_type_details
|
9188
|
+
|
9121
9189
|
# Represents a targetable authorized seller status. This will be populated in
|
9122
9190
|
# the authorized_seller_status_details field when targeting_type is `
|
9123
9191
|
# TARGETING_TYPE_AUTHORIZED_SELLER_STATUS`.
|
@@ -9328,6 +9396,7 @@ module Google
|
|
9328
9396
|
def update!(**args)
|
9329
9397
|
@age_range_details = args[:age_range_details] if args.key?(:age_range_details)
|
9330
9398
|
@app_category_details = args[:app_category_details] if args.key?(:app_category_details)
|
9399
|
+
@audio_content_type_details = args[:audio_content_type_details] if args.key?(:audio_content_type_details)
|
9331
9400
|
@authorized_seller_status_details = args[:authorized_seller_status_details] if args.key?(:authorized_seller_status_details)
|
9332
9401
|
@browser_details = args[:browser_details] if args.key?(:browser_details)
|
9333
9402
|
@business_chain_details = args[:business_chain_details] if args.key?(:business_chain_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.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211206"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -154,6 +154,18 @@ module Google
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
155
155
|
end
|
156
156
|
|
157
|
+
class AudioContentTypeAssignedTargetingOptionDetails
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
+
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
161
|
+
end
|
162
|
+
|
163
|
+
class AudioContentTypeTargetingOptionDetails
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
157
169
|
class AudioVideoOffset
|
158
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
171
|
|
@@ -1766,6 +1778,8 @@ module Google
|
|
1766
1778
|
property :assigned_targeting_option_id, as: 'assignedTargetingOptionId'
|
1767
1779
|
property :audience_group_details, as: 'audienceGroupDetails', class: Google::Apis::DisplayvideoV1::AudienceGroupAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::AudienceGroupAssignedTargetingOptionDetails::Representation
|
1768
1780
|
|
1781
|
+
property :audio_content_type_details, as: 'audioContentTypeDetails', class: Google::Apis::DisplayvideoV1::AudioContentTypeAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::AudioContentTypeAssignedTargetingOptionDetails::Representation
|
1782
|
+
|
1769
1783
|
property :authorized_seller_status_details, as: 'authorizedSellerStatusDetails', class: Google::Apis::DisplayvideoV1::AuthorizedSellerStatusAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::AuthorizedSellerStatusAssignedTargetingOptionDetails::Representation
|
1770
1784
|
|
1771
1785
|
property :browser_details, as: 'browserDetails', class: Google::Apis::DisplayvideoV1::BrowserAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::BrowserAssignedTargetingOptionDetails::Representation
|
@@ -1874,6 +1888,21 @@ module Google
|
|
1874
1888
|
end
|
1875
1889
|
end
|
1876
1890
|
|
1891
|
+
class AudioContentTypeAssignedTargetingOptionDetails
|
1892
|
+
# @private
|
1893
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1894
|
+
property :audio_content_type, as: 'audioContentType'
|
1895
|
+
property :targeting_option_id, as: 'targetingOptionId'
|
1896
|
+
end
|
1897
|
+
end
|
1898
|
+
|
1899
|
+
class AudioContentTypeTargetingOptionDetails
|
1900
|
+
# @private
|
1901
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1902
|
+
property :audio_content_type, as: 'audioContentType'
|
1903
|
+
end
|
1904
|
+
end
|
1905
|
+
|
1877
1906
|
class AudioVideoOffset
|
1878
1907
|
# @private
|
1879
1908
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4041,6 +4070,8 @@ module Google
|
|
4041
4070
|
|
4042
4071
|
property :app_category_details, as: 'appCategoryDetails', class: Google::Apis::DisplayvideoV1::AppCategoryTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::AppCategoryTargetingOptionDetails::Representation
|
4043
4072
|
|
4073
|
+
property :audio_content_type_details, as: 'audioContentTypeDetails', class: Google::Apis::DisplayvideoV1::AudioContentTypeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::AudioContentTypeTargetingOptionDetails::Representation
|
4074
|
+
|
4044
4075
|
property :authorized_seller_status_details, as: 'authorizedSellerStatusDetails', class: Google::Apis::DisplayvideoV1::AuthorizedSellerStatusTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::AuthorizedSellerStatusTargetingOptionDetails::Representation
|
4045
4076
|
|
4046
4077
|
property :browser_details, as: 'browserDetails', class: Google::Apis::DisplayvideoV1::BrowserTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::BrowserTargetingOptionDetails::Representation
|
@@ -1899,7 +1899,11 @@ module Google
|
|
1899
1899
|
# delete the assigned targeting options provided in
|
1900
1900
|
# BulkEditLineItemAssignedTargetingOptionsRequest.delete_requests and then
|
1901
1901
|
# create the assigned targeting options provided in
|
1902
|
-
# BulkEditLineItemAssignedTargetingOptionsRequest.create_requests
|
1902
|
+
# BulkEditLineItemAssignedTargetingOptionsRequest.create_requests. Requests to
|
1903
|
+
# this endpoint cannot be made concurrently with the following requests updating
|
1904
|
+
# the same line item: * BulkEditLineItemAssignedTargetingOptions *
|
1905
|
+
# UpdateLineItem * CreateLineItemAssignedTargetingOption *
|
1906
|
+
# DeleteLineItemAssignedTargetingOption
|
1903
1907
|
# @param [Fixnum] advertiser_id
|
1904
1908
|
# Required. The ID of the advertiser the line item belongs to.
|
1905
1909
|
# @param [Fixnum] line_item_id
|
@@ -2217,6 +2221,10 @@ module Google
|
|
2217
2221
|
end
|
2218
2222
|
|
2219
2223
|
# Updates an existing line item. Returns the updated line item if successful.
|
2224
|
+
# Requests to this endpoint cannot be made concurrently with the following
|
2225
|
+
# requests updating the same line item: *
|
2226
|
+
# BulkEditLineItemAssignedTargetingOptions * UpdateLineItem *
|
2227
|
+
# CreateLineItemAssignedTargetingOption * DeleteLineItemAssignedTargetingOption
|
2220
2228
|
# @param [Fixnum] advertiser_id
|
2221
2229
|
# Output only. The unique ID of the advertiser the line item belongs to.
|
2222
2230
|
# @param [Fixnum] line_item_id
|
@@ -2256,7 +2264,10 @@ module Google
|
|
2256
2264
|
end
|
2257
2265
|
|
2258
2266
|
# Assigns a targeting option to a line item. Returns the assigned targeting
|
2259
|
-
# option if successful.
|
2267
|
+
# option if successful. Requests to this endpoint cannot be made concurrently
|
2268
|
+
# with the following requests updating the same line item: *
|
2269
|
+
# BulkEditLineItemAssignedTargetingOptions * UpdateLineItem *
|
2270
|
+
# CreateLineItemAssignedTargetingOption * DeleteLineItemAssignedTargetingOption
|
2260
2271
|
# @param [Fixnum] advertiser_id
|
2261
2272
|
# Required. The ID of the advertiser the line item belongs to.
|
2262
2273
|
# @param [Fixnum] line_item_id
|
@@ -2295,7 +2306,10 @@ module Google
|
|
2295
2306
|
execute_or_queue_command(command, &block)
|
2296
2307
|
end
|
2297
2308
|
|
2298
|
-
# Deletes an assigned targeting option from a line item.
|
2309
|
+
# Deletes an assigned targeting option from a line item. Requests to this
|
2310
|
+
# endpoint cannot be made concurrently with the following requests updating the
|
2311
|
+
# same line item: * BulkEditLineItemAssignedTargetingOptions * UpdateLineItem *
|
2312
|
+
# CreateLineItemAssignedTargetingOption * DeleteLineItemAssignedTargetingOption
|
2299
2313
|
# @param [Fixnum] advertiser_id
|
2300
2314
|
# Required. The ID of the advertiser the line item belongs to.
|
2301
2315
|
# @param [Fixnum] line_item_id
|
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.20.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: 2021-
|
11
|
+
date: 2021-12-13 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.20.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: []
|