google-apis-displayvideo_v2 0.5.0 → 0.7.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: f16197a6bb368346f3e0c958e6fcf67127d65aaaf2206b475a6d9abaaaa98b07
|
4
|
+
data.tar.gz: dfe32a3d2ef48cc963b069f223b9e7470bb031baf31c29a113258cc65f4c1b3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32c4951eb8dadc7eab1c4e32ec7d78294e5432e3df3bdc836ae28afb39277ea79fd67a069827542250e3b8710ece8a93c5a9c1c9708d7cbcc2a995f59d7a13a6
|
7
|
+
data.tar.gz: 62626d0e0b3ee9e7019ffcb048ff2f0ecea5cf3ad72c304e9a0939ac0046083cf493ef991f75c293e8ad5819554a155936a2961324f615b910472d8d4953ce77
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-displayvideo_v2
|
2
2
|
|
3
|
+
### v0.7.0 (2022-12-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221205
|
6
|
+
|
7
|
+
### v0.6.0 (2022-11-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221110
|
10
|
+
|
3
11
|
### v0.5.0 (2022-11-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20221027
|
@@ -119,6 +119,11 @@ module Google
|
|
119
119
|
# @return [Fixnum]
|
120
120
|
attr_accessor :advertiser_id
|
121
121
|
|
122
|
+
# Billing related settings of an advertiser.
|
123
|
+
# Corresponds to the JSON property `billingConfig`
|
124
|
+
# @return [Google::Apis::DisplayvideoV2::AdvertiserBillingConfig]
|
125
|
+
attr_accessor :billing_config
|
126
|
+
|
122
127
|
# Creatives related settings of an advertiser.
|
123
128
|
# Corresponds to the JSON property `creativeConfig`
|
124
129
|
# @return [Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig]
|
@@ -195,6 +200,7 @@ module Google
|
|
195
200
|
def update!(**args)
|
196
201
|
@ad_server_config = args[:ad_server_config] if args.key?(:ad_server_config)
|
197
202
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
203
|
+
@billing_config = args[:billing_config] if args.key?(:billing_config)
|
198
204
|
@creative_config = args[:creative_config] if args.key?(:creative_config)
|
199
205
|
@data_access_config = args[:data_access_config] if args.key?(:data_access_config)
|
200
206
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -235,6 +241,25 @@ module Google
|
|
235
241
|
end
|
236
242
|
end
|
237
243
|
|
244
|
+
# Billing related settings of an advertiser.
|
245
|
+
class AdvertiserBillingConfig
|
246
|
+
include Google::Apis::Core::Hashable
|
247
|
+
|
248
|
+
# The ID of a billing profile assigned to the advertiser.
|
249
|
+
# Corresponds to the JSON property `billingProfileId`
|
250
|
+
# @return [Fixnum]
|
251
|
+
attr_accessor :billing_profile_id
|
252
|
+
|
253
|
+
def initialize(**args)
|
254
|
+
update!(**args)
|
255
|
+
end
|
256
|
+
|
257
|
+
# Update properties of this object
|
258
|
+
def update!(**args)
|
259
|
+
@billing_profile_id = args[:billing_profile_id] if args.key?(:billing_profile_id)
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
238
263
|
# Creatives related settings of an advertiser.
|
239
264
|
class AdvertiserCreativeConfig
|
240
265
|
include Google::Apis::Core::Hashable
|
@@ -704,6 +729,27 @@ module Google
|
|
704
729
|
# @return [String]
|
705
730
|
attr_accessor :assigned_targeting_option_id
|
706
731
|
|
732
|
+
# Output only. An alias for the assigned targeting option id field. This field
|
733
|
+
# is only supported for targeting types with enum targeting enabled. This value
|
734
|
+
# can be used in place of the assignedTargetingOptionId required for GET and
|
735
|
+
# DELETE targeting methods. An alias for the assignedTargetingOptionId. This
|
736
|
+
# value can be used in place of `assignedTargetingOptionId` when retrieving or
|
737
|
+
# deleting existing targeting. This field will only be supported for all
|
738
|
+
# assigned targeting options of the following targeting types: * `
|
739
|
+
# TARGETING_TYPE_AGE_RANGE` * `TARGETING_TYPE_DEVICE_TYPE` * `
|
740
|
+
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `TARGETING_TYPE_ENVIRONMENT`
|
741
|
+
# * `TARGETING_TYPE_EXCHANGE` * `TARGETING_TYPE_GENDER` * `
|
742
|
+
# TARGETING_TYPE_HOUSEHOLD_INCOME` * `TARGETING_TYPE_NATIVE_CONTENT_POSITION` * `
|
743
|
+
# TARGETING_TYPE_OMID` * `TARGETING_TYPE_PARENTAL_STATUS` * `
|
744
|
+
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION` * `
|
745
|
+
# TARGETING_TYPE_VIDEO_PLAYER_SIZE` * `TARGETING_TYPE_VIEWABILITY` This field is
|
746
|
+
# also supported for line item assigned targeting options of the following
|
747
|
+
# targeting types: * `TARGETING_TYPE_CONTENT_INSTREAM_POSITION` * `
|
748
|
+
# TARGETING_TYPE_CONTENT_OUTSTREAM_POSITION`
|
749
|
+
# Corresponds to the JSON property `assignedTargetingOptionIdAlias`
|
750
|
+
# @return [String]
|
751
|
+
attr_accessor :assigned_targeting_option_id_alias
|
752
|
+
|
707
753
|
# Assigned audience group targeting option details. This will be populated in
|
708
754
|
# the details field of an AssignedTargetingOption when targeting_type is `
|
709
755
|
# TARGETING_TYPE_AUDIENCE_GROUP`. The relation between each group is UNION,
|
@@ -1036,6 +1082,7 @@ module Google
|
|
1036
1082
|
@app_category_details = args[:app_category_details] if args.key?(:app_category_details)
|
1037
1083
|
@app_details = args[:app_details] if args.key?(:app_details)
|
1038
1084
|
@assigned_targeting_option_id = args[:assigned_targeting_option_id] if args.key?(:assigned_targeting_option_id)
|
1085
|
+
@assigned_targeting_option_id_alias = args[:assigned_targeting_option_id_alias] if args.key?(:assigned_targeting_option_id_alias)
|
1039
1086
|
@audience_group_details = args[:audience_group_details] if args.key?(:audience_group_details)
|
1040
1087
|
@audio_content_type_details = args[:audio_content_type_details] if args.key?(:audio_content_type_details)
|
1041
1088
|
@authorized_seller_status_details = args[:authorized_seller_status_details] if args.key?(:authorized_seller_status_details)
|
@@ -4618,8 +4665,8 @@ module Google
|
|
4618
4665
|
class DuplicateLineItemRequest
|
4619
4666
|
include Google::Apis::Core::Hashable
|
4620
4667
|
|
4621
|
-
# The display name of the
|
4622
|
-
#
|
4668
|
+
# The display name of the new line item. Must be UTF-8 encoded with a maximum
|
4669
|
+
# size of 240 bytes.
|
4623
4670
|
# Corresponds to the JSON property `targetDisplayName`
|
4624
4671
|
# @return [String]
|
4625
4672
|
attr_accessor :target_display_name
|
@@ -4634,11 +4681,11 @@ module Google
|
|
4634
4681
|
end
|
4635
4682
|
end
|
4636
4683
|
|
4637
|
-
#
|
4684
|
+
#
|
4638
4685
|
class DuplicateLineItemResponse
|
4639
4686
|
include Google::Apis::Core::Hashable
|
4640
4687
|
|
4641
|
-
# The ID of the
|
4688
|
+
# The ID of the created line item.
|
4642
4689
|
# Corresponds to the JSON property `duplicateLineItemId`
|
4643
4690
|
# @return [Fixnum]
|
4644
4691
|
attr_accessor :duplicate_line_item_id
|
@@ -6119,7 +6166,7 @@ module Google
|
|
6119
6166
|
|
6120
6167
|
# The budget segment description. It can be used to enter Purchase Order
|
6121
6168
|
# information for each budget segment and have that information printed on the
|
6122
|
-
# invoices. Must be UTF-8 encoded
|
6169
|
+
# invoices. Must be UTF-8 encoded.
|
6123
6170
|
# Corresponds to the JSON property `description`
|
6124
6171
|
# @return [String]
|
6125
6172
|
attr_accessor :description
|
@@ -7051,7 +7098,10 @@ module Google
|
|
7051
7098
|
|
7052
7099
|
# Settings that control the targeting expansion of the line item. Targeting
|
7053
7100
|
# expansion allows the line item to reach a larger audience based on the
|
7054
|
-
# original audience list and the targeting expansion level.
|
7101
|
+
# original audience list and the targeting expansion level. Beginning November 7,
|
7102
|
+
# 2022, these settings may represent the [optimized targeting feature](//
|
7103
|
+
# support.google.com/displayvideo/answer/12060859) in place of targeting
|
7104
|
+
# expansion. This feature will be rolled out to all partners by November 9, 2022.
|
7055
7105
|
# Corresponds to the JSON property `targetingExpansion`
|
7056
7106
|
# @return [Google::Apis::DisplayvideoV2::TargetingExpansionConfig]
|
7057
7107
|
attr_accessor :targeting_expansion
|
@@ -9853,7 +9903,7 @@ module Google
|
|
9853
9903
|
# @return [Google::Apis::DisplayvideoV2::GeoRegionSearchTerms]
|
9854
9904
|
attr_accessor :geo_region_search_terms
|
9855
9905
|
|
9856
|
-
# Requested page size. Must be between `1` and `
|
9906
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
9857
9907
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
9858
9908
|
# specified.
|
9859
9909
|
# Corresponds to the JSON property `pageSize`
|
@@ -10069,20 +10119,33 @@ module Google
|
|
10069
10119
|
|
10070
10120
|
# Settings that control the targeting expansion of the line item. Targeting
|
10071
10121
|
# expansion allows the line item to reach a larger audience based on the
|
10072
|
-
# original audience list and the targeting expansion level.
|
10122
|
+
# original audience list and the targeting expansion level. Beginning November 7,
|
10123
|
+
# 2022, these settings may represent the [optimized targeting feature](//
|
10124
|
+
# support.google.com/displayvideo/answer/12060859) in place of targeting
|
10125
|
+
# expansion. This feature will be rolled out to all partners by November 9, 2022.
|
10073
10126
|
class TargetingExpansionConfig
|
10074
10127
|
include Google::Apis::Core::Hashable
|
10075
10128
|
|
10076
|
-
# Required. Whether to exclude first
|
10077
|
-
#
|
10078
|
-
# applicable when a first-party audience
|
10079
|
-
# included in a combined audience),
|
10129
|
+
# Required. Whether to exclude first-party audiences from use in targeting
|
10130
|
+
# expansion or optimized targeting. Similar audiences of the excluded first-
|
10131
|
+
# party lists will not be excluded. Only applicable when a first-party audience
|
10132
|
+
# is positively targeted (directly or included in a combined audience),
|
10133
|
+
# otherwise this selection will be ignored.
|
10080
10134
|
# Corresponds to the JSON property `excludeFirstPartyAudience`
|
10081
10135
|
# @return [Boolean]
|
10082
10136
|
attr_accessor :exclude_first_party_audience
|
10083
10137
|
alias_method :exclude_first_party_audience?, :exclude_first_party_audience
|
10084
10138
|
|
10085
10139
|
# Required. Magnitude of expansion for applicable targeting under this line item.
|
10140
|
+
# Beginning November 7, 2022, the behavior of this field will change in the
|
10141
|
+
# following ways with the replacement of targeting expansion with [optimized
|
10142
|
+
# targeting](//support.google.com/displayvideo/answer/12060859): * This field
|
10143
|
+
# will represent the optimized targeting checkbox, with a `NO_EXPANSION` value
|
10144
|
+
# representing optimized targeting turned off and a `LEAST_EXPANSION` value
|
10145
|
+
# representing optimized targeting turned on. * `NO_EXPANSION` will be the
|
10146
|
+
# default value for the field and will be automatically assigned if you do not
|
10147
|
+
# set the field. * If you set the field to any value other than `NO_EXPANSION`,
|
10148
|
+
# it will automatically be set to `LEAST_EXPANSION`.
|
10086
10149
|
# Corresponds to the JSON property `targetingExpansionLevel`
|
10087
10150
|
# @return [String]
|
10088
10151
|
attr_accessor :targeting_expansion_level
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DisplayvideoV2
|
18
18
|
# Version of the google-apis-displayvideo_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221205"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class AdvertiserBillingConfig
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class AdvertiserCreativeConfig
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -1810,6 +1816,8 @@ module Google
|
|
1810
1816
|
property :ad_server_config, as: 'adServerConfig', class: Google::Apis::DisplayvideoV2::AdvertiserAdServerConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserAdServerConfig::Representation
|
1811
1817
|
|
1812
1818
|
property :advertiser_id, :numeric_string => true, as: 'advertiserId'
|
1819
|
+
property :billing_config, as: 'billingConfig', class: Google::Apis::DisplayvideoV2::AdvertiserBillingConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserBillingConfig::Representation
|
1820
|
+
|
1813
1821
|
property :creative_config, as: 'creativeConfig', class: Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig::Representation
|
1814
1822
|
|
1815
1823
|
property :data_access_config, as: 'dataAccessConfig', class: Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig, decorator: Google::Apis::DisplayvideoV2::AdvertiserDataAccessConfig::Representation
|
@@ -1839,6 +1847,13 @@ module Google
|
|
1839
1847
|
end
|
1840
1848
|
end
|
1841
1849
|
|
1850
|
+
class AdvertiserBillingConfig
|
1851
|
+
# @private
|
1852
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1853
|
+
property :billing_profile_id, :numeric_string => true, as: 'billingProfileId'
|
1854
|
+
end
|
1855
|
+
end
|
1856
|
+
|
1842
1857
|
class AdvertiserCreativeConfig
|
1843
1858
|
# @private
|
1844
1859
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1967,6 +1982,7 @@ module Google
|
|
1967
1982
|
property :app_details, as: 'appDetails', class: Google::Apis::DisplayvideoV2::AppAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV2::AppAssignedTargetingOptionDetails::Representation
|
1968
1983
|
|
1969
1984
|
property :assigned_targeting_option_id, as: 'assignedTargetingOptionId'
|
1985
|
+
property :assigned_targeting_option_id_alias, as: 'assignedTargetingOptionIdAlias'
|
1970
1986
|
property :audience_group_details, as: 'audienceGroupDetails', class: Google::Apis::DisplayvideoV2::AudienceGroupAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV2::AudienceGroupAssignedTargetingOptionDetails::Representation
|
1971
1987
|
|
1972
1988
|
property :audio_content_type_details, as: 'audioContentTypeDetails', class: Google::Apis::DisplayvideoV2::AudioContentTypeAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV2::AudioContentTypeAssignedTargetingOptionDetails::Representation
|
@@ -244,7 +244,7 @@ module Google
|
|
244
244
|
# ascending. To specify descending order for a field, a suffix "desc" should be
|
245
245
|
# added to the field name. For example, `displayName desc`.
|
246
246
|
# @param [Fixnum] page_size
|
247
|
-
# Requested page size. Must be between `1` and `
|
247
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
248
248
|
# default to `100`.
|
249
249
|
# @param [String] page_token
|
250
250
|
# A token identifying a page of results the server should return. Typically,
|
@@ -553,7 +553,7 @@ module Google
|
|
553
553
|
# ascending. To specify descending order for a field, a suffix "desc" should be
|
554
554
|
# added to the field name. Example: `displayName desc`.
|
555
555
|
# @param [Fixnum] page_size
|
556
|
-
# Requested page size. Must be between `1` and `
|
556
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
557
557
|
# default to `100`.
|
558
558
|
# @param [String] page_token
|
559
559
|
# A token identifying a page of results the server should return. Typically,
|
@@ -911,7 +911,7 @@ module Google
|
|
911
911
|
# descending order for a field, a suffix " desc" should be added to the field
|
912
912
|
# name. Example: `displayName desc`.
|
913
913
|
# @param [Fixnum] page_size
|
914
|
-
# Requested page size. Must be between `1` and `
|
914
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
915
915
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
916
916
|
# specified.
|
917
917
|
# @param [String] page_token
|
@@ -1358,7 +1358,7 @@ module Google
|
|
1358
1358
|
# order for a field, a suffix "desc" should be added to the field name. Example:
|
1359
1359
|
# `createTime desc`.
|
1360
1360
|
# @param [Fixnum] page_size
|
1361
|
-
# Requested page size. Must be between `1` and `
|
1361
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
1362
1362
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
1363
1363
|
# specified.
|
1364
1364
|
# @param [String] page_token
|
@@ -1945,7 +1945,7 @@ module Google
|
|
1945
1945
|
# Select type of invoice to retrieve for Loi Sapin advertisers. Only applicable
|
1946
1946
|
# to Loi Sapin advertisers. Will be ignored otherwise.
|
1947
1947
|
# @param [Fixnum] page_size
|
1948
|
-
# Requested page size. Must be between `1` and `
|
1948
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
1949
1949
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
1950
1950
|
# specified.
|
1951
1951
|
# @param [String] page_token
|
@@ -2022,7 +2022,10 @@ module Google
|
|
2022
2022
|
# delete the assigned targeting options provided in
|
2023
2023
|
# BulkEditAssignedTargetingOptionsRequest.delete_requests and then create the
|
2024
2024
|
# assigned targeting options provided in BulkEditAssignedTargetingOptionsRequest.
|
2025
|
-
# create_requests
|
2025
|
+
# create_requests. Requests to this endpoint cannot be made concurrently with
|
2026
|
+
# the following requests updating the same line item: * BulkUpdate *
|
2027
|
+
# UpdateLineItem * CreateLineItemAssignedTargetingOption *
|
2028
|
+
# DeleteLineItemAssignedTargetingOption
|
2026
2029
|
# @param [Fixnum] advertiser_id
|
2027
2030
|
# Required. The ID of the advertiser the line items belong to.
|
2028
2031
|
# @param [Google::Apis::DisplayvideoV2::BulkEditAssignedTargetingOptionsRequest] bulk_edit_assigned_targeting_options_request_object
|
@@ -2120,8 +2123,12 @@ module Google
|
|
2120
2123
|
execute_or_queue_command(command, &block)
|
2121
2124
|
end
|
2122
2125
|
|
2123
|
-
# Updates multiple line items.
|
2124
|
-
#
|
2126
|
+
# Updates multiple line items. Requests to this endpoint cannot be made
|
2127
|
+
# concurrently with the following requests updating the same line item: *
|
2128
|
+
# BulkEditAssignedTargetingOptions * UpdateLineItem *
|
2129
|
+
# CreateLineItemAssignedTargetingOption * DeleteLineItemAssignedTargetingOption
|
2130
|
+
# @param [Fixnum] advertiser_id
|
2131
|
+
# Required. The ID of the advertiser this line item belongs to.
|
2125
2132
|
# @param [Google::Apis::DisplayvideoV2::BulkUpdateLineItemsRequest] bulk_update_line_items_request_object
|
2126
2133
|
# @param [String] fields
|
2127
2134
|
# Selector specifying which fields to include in a partial response.
|
@@ -2140,13 +2147,13 @@ module Google
|
|
2140
2147
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2141
2148
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2142
2149
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2143
|
-
def bulk_update_line_items(
|
2144
|
-
command = make_simple_command(:post, 'v2/advertisers/{
|
2150
|
+
def bulk_update_line_items(advertiser_id, bulk_update_line_items_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2151
|
+
command = make_simple_command(:post, 'v2/advertisers/{+advertiserId}/lineItems:bulkUpdate', options)
|
2145
2152
|
command.request_representation = Google::Apis::DisplayvideoV2::BulkUpdateLineItemsRequest::Representation
|
2146
2153
|
command.request_object = bulk_update_line_items_request_object
|
2147
2154
|
command.response_representation = Google::Apis::DisplayvideoV2::BulkUpdateLineItemsResponse::Representation
|
2148
2155
|
command.response_class = Google::Apis::DisplayvideoV2::BulkUpdateLineItemsResponse
|
2149
|
-
command.params['
|
2156
|
+
command.params['advertiserId'] = advertiser_id unless advertiser_id.nil?
|
2150
2157
|
command.query['fields'] = fields unless fields.nil?
|
2151
2158
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2152
2159
|
execute_or_queue_command(command, &block)
|
@@ -2220,7 +2227,7 @@ module Google
|
|
2220
2227
|
execute_or_queue_command(command, &block)
|
2221
2228
|
end
|
2222
2229
|
|
2223
|
-
# Duplicates a line item. Returns the
|
2230
|
+
# Duplicates a line item. Returns the ID of the created line item if successful.
|
2224
2231
|
# @param [Fixnum] advertiser_id
|
2225
2232
|
# Required. The ID of the advertiser this line item belongs to.
|
2226
2233
|
# @param [Fixnum] line_item_id
|
@@ -2366,7 +2373,7 @@ module Google
|
|
2366
2373
|
# default sorting order is ascending. To specify descending order for a field, a
|
2367
2374
|
# suffix "desc" should be added to the field name. Example: `displayName desc`.
|
2368
2375
|
# @param [Fixnum] page_size
|
2369
|
-
# Requested page size. Must be between `1` and `
|
2376
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
2370
2377
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
2371
2378
|
# specified.
|
2372
2379
|
# @param [String] page_token
|
@@ -2407,9 +2414,9 @@ module Google
|
|
2407
2414
|
|
2408
2415
|
# Updates an existing line item. Returns the updated line item if successful.
|
2409
2416
|
# Requests to this endpoint cannot be made concurrently with the following
|
2410
|
-
# requests updating the same line item: *
|
2411
|
-
#
|
2412
|
-
#
|
2417
|
+
# requests updating the same line item: * BulkEditAssignedTargetingOptions *
|
2418
|
+
# BulkUpdateLineItems * CreateLineItemAssignedTargetingOption *
|
2419
|
+
# DeleteLineItemAssignedTargetingOption
|
2413
2420
|
# @param [Fixnum] advertiser_id
|
2414
2421
|
# Output only. The unique ID of the advertiser the line item belongs to.
|
2415
2422
|
# @param [Fixnum] line_item_id
|
@@ -2451,8 +2458,8 @@ module Google
|
|
2451
2458
|
# Assigns a targeting option to a line item. Returns the assigned targeting
|
2452
2459
|
# option if successful. Requests to this endpoint cannot be made concurrently
|
2453
2460
|
# with the following requests updating the same line item: *
|
2454
|
-
#
|
2455
|
-
#
|
2461
|
+
# BulkEditAssignedTargetingOptions * BulkUpdate * UpdateLineItem *
|
2462
|
+
# DeleteLineItemAssignedTargetingOption
|
2456
2463
|
# @param [Fixnum] advertiser_id
|
2457
2464
|
# Required. The ID of the advertiser the line item belongs to.
|
2458
2465
|
# @param [Fixnum] line_item_id
|
@@ -2493,8 +2500,8 @@ module Google
|
|
2493
2500
|
|
2494
2501
|
# Deletes an assigned targeting option from a line item. Requests to this
|
2495
2502
|
# endpoint cannot be made concurrently with the following requests updating the
|
2496
|
-
# same line item: *
|
2497
|
-
#
|
2503
|
+
# same line item: * BulkEditAssignedTargetingOptions * BulkUpdate *
|
2504
|
+
# UpdateLineItem * CreateLineItemAssignedTargetingOption
|
2498
2505
|
# @param [Fixnum] advertiser_id
|
2499
2506
|
# Required. The ID of the advertiser the line item belongs to.
|
2500
2507
|
# @param [Fixnum] line_item_id
|
@@ -2725,7 +2732,7 @@ module Google
|
|
2725
2732
|
# descending order for a field, a suffix "desc" should be added to the field
|
2726
2733
|
# name. Example: `displayName desc`.
|
2727
2734
|
# @param [Fixnum] page_size
|
2728
|
-
# Requested page size. Must be between `1` and `
|
2735
|
+
# Requested page size. Must be between `1` and `200`. Defaults to `100` if not
|
2729
2736
|
# set. Returns error code `INVALID_ARGUMENT` if an invalid value is specified.
|
2730
2737
|
# @param [String] page_token
|
2731
2738
|
# A token identifying a page of results the server should return. Typically,
|
@@ -2932,7 +2939,7 @@ module Google
|
|
2932
2939
|
# for a field, a suffix " desc" should be added to the field name. Example: `
|
2933
2940
|
# assignedLocationId desc`.
|
2934
2941
|
# @param [Fixnum] page_size
|
2935
|
-
# Requested page size. Must be between `1` and `
|
2942
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
2936
2943
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
2937
2944
|
# specified.
|
2938
2945
|
# @param [String] page_token
|
@@ -3133,7 +3140,7 @@ module Google
|
|
3133
3140
|
# descending order for a field, a suffix "desc" should be added to the field
|
3134
3141
|
# name. For example, `displayName desc`.
|
3135
3142
|
# @param [Fixnum] page_size
|
3136
|
-
# Requested page size. Must be between `1` and `
|
3143
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
3137
3144
|
# default to `100`.
|
3138
3145
|
# @param [String] page_token
|
3139
3146
|
# A token identifying a page of results the server should return. Typically,
|
@@ -3321,7 +3328,7 @@ module Google
|
|
3321
3328
|
# Required. The ID of the DV360 advertiser to which the fetched negative keyword
|
3322
3329
|
# lists belong.
|
3323
3330
|
# @param [Fixnum] page_size
|
3324
|
-
# Requested page size. Must be between `1` and `
|
3331
|
+
# Requested page size. Must be between `1` and `200`. Defaults to `100` if not
|
3325
3332
|
# set. Returns error code `INVALID_ARGUMENT` if an invalid value is specified.
|
3326
3333
|
# @param [String] page_token
|
3327
3334
|
# A token identifying a page of results the server should return. Typically,
|
@@ -3852,7 +3859,7 @@ module Google
|
|
3852
3859
|
# descending order for a field, a suffix "desc" should be added to the field
|
3853
3860
|
# name. Example: `displayName desc`.
|
3854
3861
|
# @param [Fixnum] page_size
|
3855
|
-
# Requested page size. Must be between `1` and `
|
3862
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
3856
3863
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
3857
3864
|
# specified.
|
3858
3865
|
# @param [String] page_token
|
@@ -3987,7 +3994,7 @@ module Google
|
|
3987
3994
|
# for a field, a suffix "desc" should be added to the field name. Example: `
|
3988
3995
|
# displayName desc`.
|
3989
3996
|
# @param [Fixnum] page_size
|
3990
|
-
# Requested page size. Must be between `1` and `
|
3997
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
3991
3998
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
3992
3999
|
# specified.
|
3993
4000
|
# @param [String] page_token
|
@@ -4199,7 +4206,7 @@ module Google
|
|
4199
4206
|
# default) The default sorting order is descending. To specify ascending order
|
4200
4207
|
# for a field, the suffix "desc" should be removed. Example: `createTime`.
|
4201
4208
|
# @param [Fixnum] page_size
|
4202
|
-
# Requested page size. Must be between `1` and `
|
4209
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
4203
4210
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
4204
4211
|
# specified.
|
4205
4212
|
# @param [String] page_token
|
@@ -4291,7 +4298,7 @@ module Google
|
|
4291
4298
|
# descending order for a field, a suffix "desc" should be added to the field
|
4292
4299
|
# name. Example: `displayName desc`.
|
4293
4300
|
# @param [Fixnum] page_size
|
4294
|
-
# Requested page size. Must be between `1` and `
|
4301
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
4295
4302
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
4296
4303
|
# specified.
|
4297
4304
|
# @param [String] page_token
|
@@ -4458,7 +4465,7 @@ module Google
|
|
4458
4465
|
# order is ascending. To specify descending order for a field, a suffix "desc"
|
4459
4466
|
# should be added to the field name. Example: `displayName desc`.
|
4460
4467
|
# @param [Fixnum] page_size
|
4461
|
-
# Requested page size. Must be between `1` and `
|
4468
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
4462
4469
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
4463
4470
|
# specified.
|
4464
4471
|
# @param [String] page_token
|
@@ -4672,7 +4679,7 @@ module Google
|
|
4672
4679
|
# descending order for a field, a suffix "desc" should be added to the field
|
4673
4680
|
# name. Example: `displayName desc`.
|
4674
4681
|
# @param [Fixnum] page_size
|
4675
|
-
# Requested page size. Must be between `1` and `
|
4682
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
4676
4683
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
4677
4684
|
# specified.
|
4678
4685
|
# @param [String] page_token
|
@@ -4845,8 +4852,8 @@ module Google
|
|
4845
4852
|
# for a field, a suffix "desc" should be added to the field name. For example, `
|
4846
4853
|
# displayName desc`.
|
4847
4854
|
# @param [Fixnum] page_size
|
4848
|
-
# Requested page size. Must be between `1` and `
|
4849
|
-
#
|
4855
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
4856
|
+
# default to `100`.
|
4850
4857
|
# @param [String] page_token
|
4851
4858
|
# A token identifying a page of results the server should return. Typically,
|
4852
4859
|
# this is the value of next_page_token returned from the previous call to `
|
@@ -5066,7 +5073,7 @@ module Google
|
|
5066
5073
|
# specify descending order for a field, a suffix "desc" should be added to the
|
5067
5074
|
# field name. For example, `displayName desc`.
|
5068
5075
|
# @param [Fixnum] page_size
|
5069
|
-
# Requested page size. Must be between `1` and `
|
5076
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
5070
5077
|
# default to `100`.
|
5071
5078
|
# @param [String] page_token
|
5072
5079
|
# A token identifying a page of results the server should return. Typically,
|
@@ -5474,7 +5481,7 @@ module Google
|
|
5474
5481
|
# for a field, a suffix "desc" should be added to the field name. For example, `
|
5475
5482
|
# displayName desc`.
|
5476
5483
|
# @param [Fixnum] page_size
|
5477
|
-
# Requested page size. Must be between `1` and `
|
5484
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
5478
5485
|
# default to `100`.
|
5479
5486
|
# @param [String] page_token
|
5480
5487
|
# A token identifying a page of results the server should return. Typically,
|
@@ -5725,7 +5732,7 @@ module Google
|
|
5725
5732
|
# suffix "desc" should be added to the field name. For example, `displayName
|
5726
5733
|
# desc`.
|
5727
5734
|
# @param [Fixnum] page_size
|
5728
|
-
# Requested page size. Must be between `1` and `
|
5735
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
5729
5736
|
# default to `100`.
|
5730
5737
|
# @param [String] page_token
|
5731
5738
|
# A token identifying a page of results the server should return. Typically,
|
@@ -5852,7 +5859,7 @@ module Google
|
|
5852
5859
|
# descending order for a field, a suffix " desc" should be added to the field
|
5853
5860
|
# name. Example: `displayName desc`.
|
5854
5861
|
# @param [Fixnum] page_size
|
5855
|
-
# Requested page size. Must be between `1` and `
|
5862
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
5856
5863
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
5857
5864
|
# specified.
|
5858
5865
|
# @param [String] page_token
|
@@ -6281,7 +6288,7 @@ module Google
|
|
6281
6288
|
# To specify descending order for a field, a suffix "desc" should be added to
|
6282
6289
|
# the field name. Example: `assignedTargetingOptionId desc`.
|
6283
6290
|
# @param [Fixnum] page_size
|
6284
|
-
# Requested page size. Must be between `1` and `
|
6291
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
6285
6292
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
6286
6293
|
# specified.
|
6287
6294
|
# @param [String] page_token
|
@@ -6478,7 +6485,7 @@ module Google
|
|
6478
6485
|
# for a field, a suffix "desc" should be added to the field name. Example: `
|
6479
6486
|
# targetingOptionId desc`.
|
6480
6487
|
# @param [Fixnum] page_size
|
6481
|
-
# Requested page size. Must be between `1` and `
|
6488
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
6482
6489
|
# default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is
|
6483
6490
|
# specified.
|
6484
6491
|
# @param [String] page_token
|
@@ -6709,7 +6716,7 @@ module Google
|
|
6709
6716
|
# for a field, a suffix "desc" should be added to the field name. For example, `
|
6710
6717
|
# displayName desc`.
|
6711
6718
|
# @param [Fixnum] page_size
|
6712
|
-
# Requested page size. Must be between `1` and `
|
6719
|
+
# Requested page size. Must be between `1` and `200`. If unspecified will
|
6713
6720
|
# default to `100`.
|
6714
6721
|
# @param [String] page_token
|
6715
6722
|
# A token identifying a page of results the server should return. Typically,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-displayvideo_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.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-
|
11
|
+
date: 2022-12-12 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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.7.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|