google-apis-displayvideo_v1 0.13.0 → 0.14.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: '06096897926c3a91d4618fb268468f0bb6849dcb1e3f1c0cf6177eaa788774e5'
|
4
|
+
data.tar.gz: 39d0a40d950b5bbdaa64fcedc42c476b690c8f27dbf6dcca7282bf9dcc381ec5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0b59095202c920d77dd18ac6a631566b053acdc9f33730e043451dd4281a8720bf9b3028eb3d16a42f094c41ce624f75d88b975e2f312d7e7a65cdc771827ae
|
7
|
+
data.tar.gz: 28ffee29b2cb07250a50524bd3d6f757eeb9c040290bde43dddc798a5e4e7dde41a9ffaf01d422946a1ffb3d538af76cdf16624f3679d0f08f45a89f5299309d
|
data/CHANGELOG.md
CHANGED
@@ -735,6 +735,13 @@ module Google
|
|
735
735
|
# @return [Google::Apis::DisplayvideoV1::BrowserAssignedTargetingOptionDetails]
|
736
736
|
attr_accessor :browser_details
|
737
737
|
|
738
|
+
# Details for assigned Business chain targeting option. This will be populated
|
739
|
+
# in the details field of an AssignedTargetingOption when targeting_type is `
|
740
|
+
# TARGETING_TYPE_BUSINESS_CHAIN`.
|
741
|
+
# Corresponds to the JSON property `businessChainDetails`
|
742
|
+
# @return [Google::Apis::DisplayvideoV1::BusinessChainAssignedTargetingOptionDetails]
|
743
|
+
attr_accessor :business_chain_details
|
744
|
+
|
738
745
|
# Details for assigned carrier and ISP targeting option. This will be populated
|
739
746
|
# in the details field of an AssignedTargetingOption when targeting_type is `
|
740
747
|
# TARGETING_TYPE_CARRIER_AND_ISP`.
|
@@ -886,6 +893,13 @@ module Google
|
|
886
893
|
# @return [Google::Apis::DisplayvideoV1::NegativeKeywordListAssignedTargetingOptionDetails]
|
887
894
|
attr_accessor :negative_keyword_list_details
|
888
895
|
|
896
|
+
# Represents a targetable Open Measurement enabled inventory type. This will be
|
897
|
+
# populated in the details field of an AssignedTargetingOption when
|
898
|
+
# targeting_type is `TARGETING_TYPE_OMID`.
|
899
|
+
# Corresponds to the JSON property `omidDetails`
|
900
|
+
# @return [Google::Apis::DisplayvideoV1::OmidAssignedTargetingOptionDetails]
|
901
|
+
attr_accessor :omid_details
|
902
|
+
|
889
903
|
# On screen position targeting option details. This will be populated in the
|
890
904
|
# on_screen_position_details field when targeting_type is `
|
891
905
|
# TARGETING_TYPE_ON_SCREEN_POSITION`.
|
@@ -907,6 +921,13 @@ module Google
|
|
907
921
|
# @return [Google::Apis::DisplayvideoV1::ParentalStatusAssignedTargetingOptionDetails]
|
908
922
|
attr_accessor :parental_status_details
|
909
923
|
|
924
|
+
# Details for assigned POI targeting option. This will be populated in the
|
925
|
+
# details field of an AssignedTargetingOption when targeting_type is `
|
926
|
+
# TARGETING_TYPE_POI`.
|
927
|
+
# Corresponds to the JSON property `poiDetails`
|
928
|
+
# @return [Google::Apis::DisplayvideoV1::PoiAssignedTargetingOptionDetails]
|
929
|
+
attr_accessor :poi_details
|
930
|
+
|
910
931
|
# Targeting details for proximity location list. This will be populated in the
|
911
932
|
# details field of an AssignedTargetingOption when targeting_type is `
|
912
933
|
# TARGETING_TYPE_PROXIMITY_LOCATION_LIST`.
|
@@ -990,6 +1011,7 @@ module Google
|
|
990
1011
|
@audience_group_details = args[:audience_group_details] if args.key?(:audience_group_details)
|
991
1012
|
@authorized_seller_status_details = args[:authorized_seller_status_details] if args.key?(:authorized_seller_status_details)
|
992
1013
|
@browser_details = args[:browser_details] if args.key?(:browser_details)
|
1014
|
+
@business_chain_details = args[:business_chain_details] if args.key?(:business_chain_details)
|
993
1015
|
@carrier_and_isp_details = args[:carrier_and_isp_details] if args.key?(:carrier_and_isp_details)
|
994
1016
|
@category_details = args[:category_details] if args.key?(:category_details)
|
995
1017
|
@channel_details = args[:channel_details] if args.key?(:channel_details)
|
@@ -1012,9 +1034,11 @@ module Google
|
|
1012
1034
|
@name = args[:name] if args.key?(:name)
|
1013
1035
|
@native_content_position_details = args[:native_content_position_details] if args.key?(:native_content_position_details)
|
1014
1036
|
@negative_keyword_list_details = args[:negative_keyword_list_details] if args.key?(:negative_keyword_list_details)
|
1037
|
+
@omid_details = args[:omid_details] if args.key?(:omid_details)
|
1015
1038
|
@on_screen_position_details = args[:on_screen_position_details] if args.key?(:on_screen_position_details)
|
1016
1039
|
@operating_system_details = args[:operating_system_details] if args.key?(:operating_system_details)
|
1017
1040
|
@parental_status_details = args[:parental_status_details] if args.key?(:parental_status_details)
|
1041
|
+
@poi_details = args[:poi_details] if args.key?(:poi_details)
|
1018
1042
|
@proximity_location_list_details = args[:proximity_location_list_details] if args.key?(:proximity_location_list_details)
|
1019
1043
|
@regional_location_list_details = args[:regional_location_list_details] if args.key?(:regional_location_list_details)
|
1020
1044
|
@sensitive_category_exclusion_details = args[:sensitive_category_exclusion_details] if args.key?(:sensitive_category_exclusion_details)
|
@@ -1433,7 +1457,7 @@ module Google
|
|
1433
1457
|
# The assigned targeting options to create in batch, specified as a list of `
|
1434
1458
|
# CreateAssignedTargetingOptionsRequest`. Supported targeting types: * `
|
1435
1459
|
# TARGETING_TYPE_CHANNEL` * `TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `
|
1436
|
-
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
1460
|
+
# TARGETING_TYPE_OMID` * `TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
1437
1461
|
# Corresponds to the JSON property `createRequests`
|
1438
1462
|
# @return [Array<Google::Apis::DisplayvideoV1::CreateAssignedTargetingOptionsRequest>]
|
1439
1463
|
attr_accessor :create_requests
|
@@ -1441,7 +1465,7 @@ module Google
|
|
1441
1465
|
# The assigned targeting options to delete in batch, specified as a list of `
|
1442
1466
|
# DeleteAssignedTargetingOptionsRequest`. Supported targeting types: * `
|
1443
1467
|
# TARGETING_TYPE_CHANNEL` * `TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `
|
1444
|
-
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
1468
|
+
# TARGETING_TYPE_OMID` * `TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
1445
1469
|
# Corresponds to the JSON property `deleteRequests`
|
1446
1470
|
# @return [Array<Google::Apis::DisplayvideoV1::DeleteAssignedTargetingOptionsRequest>]
|
1447
1471
|
attr_accessor :delete_requests
|
@@ -1949,6 +1973,111 @@ module Google
|
|
1949
1973
|
end
|
1950
1974
|
end
|
1951
1975
|
|
1976
|
+
# Details for assigned Business chain targeting option. This will be populated
|
1977
|
+
# in the details field of an AssignedTargetingOption when targeting_type is `
|
1978
|
+
# TARGETING_TYPE_BUSINESS_CHAIN`.
|
1979
|
+
class BusinessChainAssignedTargetingOptionDetails
|
1980
|
+
include Google::Apis::Core::Hashable
|
1981
|
+
|
1982
|
+
# Output only. The display name of a business chain, e.g. "KFC", "Chase Bank".
|
1983
|
+
# Corresponds to the JSON property `displayName`
|
1984
|
+
# @return [String]
|
1985
|
+
attr_accessor :display_name
|
1986
|
+
|
1987
|
+
# Required. The radius of the area around the business chain that will be
|
1988
|
+
# targeted. The units of the radius are specified by proximity_radius_unit. Must
|
1989
|
+
# be 1 to 800 if unit is `DISTANCE_UNIT_KILOMETERS` and 1 to 500 if unit is `
|
1990
|
+
# DISTANCE_UNIT_MILES`. The minimum increment for both cases is 0.1. Inputs will
|
1991
|
+
# be rounded to the nearest acceptable value if it is too granular, e.g. 15.57
|
1992
|
+
# will become 15.6.
|
1993
|
+
# Corresponds to the JSON property `proximityRadiusAmount`
|
1994
|
+
# @return [Float]
|
1995
|
+
attr_accessor :proximity_radius_amount
|
1996
|
+
|
1997
|
+
# Required. The unit of distance by which the targeting radius is measured.
|
1998
|
+
# Corresponds to the JSON property `proximityRadiusUnit`
|
1999
|
+
# @return [String]
|
2000
|
+
attr_accessor :proximity_radius_unit
|
2001
|
+
|
2002
|
+
# Required. The targeting_option_id of a TargetingOption of type `
|
2003
|
+
# TARGETING_TYPE_BUSINESS_CHAIN`.
|
2004
|
+
# Corresponds to the JSON property `targetingOptionId`
|
2005
|
+
# @return [String]
|
2006
|
+
attr_accessor :targeting_option_id
|
2007
|
+
|
2008
|
+
def initialize(**args)
|
2009
|
+
update!(**args)
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
# Update properties of this object
|
2013
|
+
def update!(**args)
|
2014
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2015
|
+
@proximity_radius_amount = args[:proximity_radius_amount] if args.key?(:proximity_radius_amount)
|
2016
|
+
@proximity_radius_unit = args[:proximity_radius_unit] if args.key?(:proximity_radius_unit)
|
2017
|
+
@targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
|
2018
|
+
end
|
2019
|
+
end
|
2020
|
+
|
2021
|
+
# Search terms for Business Chain targeting options. At least one of the field
|
2022
|
+
# should be populated.
|
2023
|
+
class BusinessChainSearchTerms
|
2024
|
+
include Google::Apis::Core::Hashable
|
2025
|
+
|
2026
|
+
# The search query for the desired business chain. The query can be a prefix, e.
|
2027
|
+
# g. "KFC", "mercede".
|
2028
|
+
# Corresponds to the JSON property `businessChain`
|
2029
|
+
# @return [String]
|
2030
|
+
attr_accessor :business_chain
|
2031
|
+
|
2032
|
+
# The search query for the desired geo region, e.g. "Seattle", "United State".
|
2033
|
+
# Corresponds to the JSON property `region`
|
2034
|
+
# @return [String]
|
2035
|
+
attr_accessor :region
|
2036
|
+
|
2037
|
+
def initialize(**args)
|
2038
|
+
update!(**args)
|
2039
|
+
end
|
2040
|
+
|
2041
|
+
# Update properties of this object
|
2042
|
+
def update!(**args)
|
2043
|
+
@business_chain = args[:business_chain] if args.key?(:business_chain)
|
2044
|
+
@region = args[:region] if args.key?(:region)
|
2045
|
+
end
|
2046
|
+
end
|
2047
|
+
|
2048
|
+
# Represents a targetable business chain within a geo region. This will be
|
2049
|
+
# populated in the business_chain_details field when targeting_type is `
|
2050
|
+
# TARGETING_TYPE_BUSINESS_CHAIN`.
|
2051
|
+
class BusinessChainTargetingOptionDetails
|
2052
|
+
include Google::Apis::Core::Hashable
|
2053
|
+
|
2054
|
+
# Output only. The display name of the business chain, e.g. "KFC", "Chase Bank".
|
2055
|
+
# Corresponds to the JSON property `businessChain`
|
2056
|
+
# @return [String]
|
2057
|
+
attr_accessor :business_chain
|
2058
|
+
|
2059
|
+
# Output only. The display name of the geographic region, e.g. "Ontario, Canada".
|
2060
|
+
# Corresponds to the JSON property `geoRegion`
|
2061
|
+
# @return [String]
|
2062
|
+
attr_accessor :geo_region
|
2063
|
+
|
2064
|
+
# Output only. The type of the geographic region.
|
2065
|
+
# Corresponds to the JSON property `geoRegionType`
|
2066
|
+
# @return [String]
|
2067
|
+
attr_accessor :geo_region_type
|
2068
|
+
|
2069
|
+
def initialize(**args)
|
2070
|
+
update!(**args)
|
2071
|
+
end
|
2072
|
+
|
2073
|
+
# Update properties of this object
|
2074
|
+
def update!(**args)
|
2075
|
+
@business_chain = args[:business_chain] if args.key?(:business_chain)
|
2076
|
+
@geo_region = args[:geo_region] if args.key?(:geo_region)
|
2077
|
+
@geo_region_type = args[:geo_region_type] if args.key?(:geo_region_type)
|
2078
|
+
end
|
2079
|
+
end
|
2080
|
+
|
1952
2081
|
# A single campaign.
|
1953
2082
|
class Campaign
|
1954
2083
|
include Google::Apis::Core::Hashable
|
@@ -7308,6 +7437,55 @@ module Google
|
|
7308
7437
|
end
|
7309
7438
|
end
|
7310
7439
|
|
7440
|
+
# Represents a targetable Open Measurement enabled inventory type. This will be
|
7441
|
+
# populated in the details field of an AssignedTargetingOption when
|
7442
|
+
# targeting_type is `TARGETING_TYPE_OMID`.
|
7443
|
+
class OmidAssignedTargetingOptionDetails
|
7444
|
+
include Google::Apis::Core::Hashable
|
7445
|
+
|
7446
|
+
# Output only. The type of Open Measurement enabled inventory.
|
7447
|
+
# Corresponds to the JSON property `omid`
|
7448
|
+
# @return [String]
|
7449
|
+
attr_accessor :omid
|
7450
|
+
|
7451
|
+
# Required. The targeting_option_id of a TargetingOption of type `
|
7452
|
+
# TARGETING_TYPE_OMID`.
|
7453
|
+
# Corresponds to the JSON property `targetingOptionId`
|
7454
|
+
# @return [String]
|
7455
|
+
attr_accessor :targeting_option_id
|
7456
|
+
|
7457
|
+
def initialize(**args)
|
7458
|
+
update!(**args)
|
7459
|
+
end
|
7460
|
+
|
7461
|
+
# Update properties of this object
|
7462
|
+
def update!(**args)
|
7463
|
+
@omid = args[:omid] if args.key?(:omid)
|
7464
|
+
@targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
|
7465
|
+
end
|
7466
|
+
end
|
7467
|
+
|
7468
|
+
# Represents a targetable Open Measurement enabled inventory type. This will be
|
7469
|
+
# populated in the omid_details field when targeting_type is `
|
7470
|
+
# TARGETING_TYPE_OMID`.
|
7471
|
+
class OmidTargetingOptionDetails
|
7472
|
+
include Google::Apis::Core::Hashable
|
7473
|
+
|
7474
|
+
# Output only. The type of Open Measurement enabled inventory.
|
7475
|
+
# Corresponds to the JSON property `omid`
|
7476
|
+
# @return [String]
|
7477
|
+
attr_accessor :omid
|
7478
|
+
|
7479
|
+
def initialize(**args)
|
7480
|
+
update!(**args)
|
7481
|
+
end
|
7482
|
+
|
7483
|
+
# Update properties of this object
|
7484
|
+
def update!(**args)
|
7485
|
+
@omid = args[:omid] if args.key?(:omid)
|
7486
|
+
end
|
7487
|
+
end
|
7488
|
+
|
7311
7489
|
# On screen position targeting option details. This will be populated in the
|
7312
7490
|
# on_screen_position_details field when targeting_type is `
|
7313
7491
|
# TARGETING_TYPE_ON_SCREEN_POSITION`.
|
@@ -7958,6 +8136,114 @@ module Google
|
|
7958
8136
|
end
|
7959
8137
|
end
|
7960
8138
|
|
8139
|
+
# Details for assigned POI targeting option. This will be populated in the
|
8140
|
+
# details field of an AssignedTargetingOption when targeting_type is `
|
8141
|
+
# TARGETING_TYPE_POI`.
|
8142
|
+
class PoiAssignedTargetingOptionDetails
|
8143
|
+
include Google::Apis::Core::Hashable
|
8144
|
+
|
8145
|
+
# Output only. The display name of a POI, e.g. "Times Square", "Space Needle".
|
8146
|
+
# Corresponds to the JSON property `displayName`
|
8147
|
+
# @return [String]
|
8148
|
+
attr_accessor :display_name
|
8149
|
+
|
8150
|
+
# Output only. Latitude of the POI rounding to 6th decimal place.
|
8151
|
+
# Corresponds to the JSON property `latitude`
|
8152
|
+
# @return [Float]
|
8153
|
+
attr_accessor :latitude
|
8154
|
+
|
8155
|
+
# Output only. Longitude of the POI rounding to 6th decimal place.
|
8156
|
+
# Corresponds to the JSON property `longitude`
|
8157
|
+
# @return [Float]
|
8158
|
+
attr_accessor :longitude
|
8159
|
+
|
8160
|
+
# Required. The radius of the area around the POI that will be targeted. The
|
8161
|
+
# units of the radius are specified by proximity_radius_unit. Must be 1 to 800
|
8162
|
+
# if unit is `DISTANCE_UNIT_KILOMETERS` and 1 to 500 if unit is `
|
8163
|
+
# DISTANCE_UNIT_MILES`.
|
8164
|
+
# Corresponds to the JSON property `proximityRadiusAmount`
|
8165
|
+
# @return [Float]
|
8166
|
+
attr_accessor :proximity_radius_amount
|
8167
|
+
|
8168
|
+
# Required. The unit of distance by which the targeting radius is measured.
|
8169
|
+
# Corresponds to the JSON property `proximityRadiusUnit`
|
8170
|
+
# @return [String]
|
8171
|
+
attr_accessor :proximity_radius_unit
|
8172
|
+
|
8173
|
+
# Input only. The targeting_option_id of a TargetingOption of type `
|
8174
|
+
# TARGETING_TYPE_POI`.
|
8175
|
+
# Corresponds to the JSON property `targetingOptionId`
|
8176
|
+
# @return [String]
|
8177
|
+
attr_accessor :targeting_option_id
|
8178
|
+
|
8179
|
+
def initialize(**args)
|
8180
|
+
update!(**args)
|
8181
|
+
end
|
8182
|
+
|
8183
|
+
# Update properties of this object
|
8184
|
+
def update!(**args)
|
8185
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
8186
|
+
@latitude = args[:latitude] if args.key?(:latitude)
|
8187
|
+
@longitude = args[:longitude] if args.key?(:longitude)
|
8188
|
+
@proximity_radius_amount = args[:proximity_radius_amount] if args.key?(:proximity_radius_amount)
|
8189
|
+
@proximity_radius_unit = args[:proximity_radius_unit] if args.key?(:proximity_radius_unit)
|
8190
|
+
@targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
|
8191
|
+
end
|
8192
|
+
end
|
8193
|
+
|
8194
|
+
# Search terms for POI targeting options.
|
8195
|
+
class PoiSearchTerms
|
8196
|
+
include Google::Apis::Core::Hashable
|
8197
|
+
|
8198
|
+
# The search query for the desired POI name, street address, or coordinate of
|
8199
|
+
# the desired POI. The query can be a prefix, e.g. "Times squar", "40.7505045,-
|
8200
|
+
# 73.99562", "315 W 44th St", etc.
|
8201
|
+
# Corresponds to the JSON property `poiQuery`
|
8202
|
+
# @return [String]
|
8203
|
+
attr_accessor :poi_query
|
8204
|
+
|
8205
|
+
def initialize(**args)
|
8206
|
+
update!(**args)
|
8207
|
+
end
|
8208
|
+
|
8209
|
+
# Update properties of this object
|
8210
|
+
def update!(**args)
|
8211
|
+
@poi_query = args[:poi_query] if args.key?(:poi_query)
|
8212
|
+
end
|
8213
|
+
end
|
8214
|
+
|
8215
|
+
# Represents a targetable point of interest(POI). This will be populated in the
|
8216
|
+
# poi_details field when targeting_type is `TARGETING_TYPE_POI`.
|
8217
|
+
class PoiTargetingOptionDetails
|
8218
|
+
include Google::Apis::Core::Hashable
|
8219
|
+
|
8220
|
+
# Output only. The display name of a POI, e.g. "Times Square", "Space Needle".
|
8221
|
+
# Corresponds to the JSON property `displayName`
|
8222
|
+
# @return [String]
|
8223
|
+
attr_accessor :display_name
|
8224
|
+
|
8225
|
+
# Output only. Latitude of the POI rounding to 6th decimal place.
|
8226
|
+
# Corresponds to the JSON property `latitude`
|
8227
|
+
# @return [Float]
|
8228
|
+
attr_accessor :latitude
|
8229
|
+
|
8230
|
+
# Output only. Longitude of the POI rounding to 6th decimal place.
|
8231
|
+
# Corresponds to the JSON property `longitude`
|
8232
|
+
# @return [Float]
|
8233
|
+
attr_accessor :longitude
|
8234
|
+
|
8235
|
+
def initialize(**args)
|
8236
|
+
update!(**args)
|
8237
|
+
end
|
8238
|
+
|
8239
|
+
# Update properties of this object
|
8240
|
+
def update!(**args)
|
8241
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
8242
|
+
@latitude = args[:latitude] if args.key?(:latitude)
|
8243
|
+
@longitude = args[:longitude] if args.key?(:longitude)
|
8244
|
+
end
|
8245
|
+
end
|
8246
|
+
|
7961
8247
|
# Settings specific to the Mediaocean Prisma tool.
|
7962
8248
|
class PrismaConfig
|
7963
8249
|
include Google::Apis::Core::Hashable
|
@@ -8374,6 +8660,12 @@ module Google
|
|
8374
8660
|
# @return [Fixnum]
|
8375
8661
|
attr_accessor :advertiser_id
|
8376
8662
|
|
8663
|
+
# Search terms for Business Chain targeting options. At least one of the field
|
8664
|
+
# should be populated.
|
8665
|
+
# Corresponds to the JSON property `businessChainSearchTerms`
|
8666
|
+
# @return [Google::Apis::DisplayvideoV1::BusinessChainSearchTerms]
|
8667
|
+
attr_accessor :business_chain_search_terms
|
8668
|
+
|
8377
8669
|
# Search terms for geo region targeting options.
|
8378
8670
|
# Corresponds to the JSON property `geoRegionSearchTerms`
|
8379
8671
|
# @return [Google::Apis::DisplayvideoV1::GeoRegionSearchTerms]
|
@@ -8394,6 +8686,11 @@ module Google
|
|
8394
8686
|
# @return [String]
|
8395
8687
|
attr_accessor :page_token
|
8396
8688
|
|
8689
|
+
# Search terms for POI targeting options.
|
8690
|
+
# Corresponds to the JSON property `poiSearchTerms`
|
8691
|
+
# @return [Google::Apis::DisplayvideoV1::PoiSearchTerms]
|
8692
|
+
attr_accessor :poi_search_terms
|
8693
|
+
|
8397
8694
|
def initialize(**args)
|
8398
8695
|
update!(**args)
|
8399
8696
|
end
|
@@ -8401,9 +8698,11 @@ module Google
|
|
8401
8698
|
# Update properties of this object
|
8402
8699
|
def update!(**args)
|
8403
8700
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
8701
|
+
@business_chain_search_terms = args[:business_chain_search_terms] if args.key?(:business_chain_search_terms)
|
8404
8702
|
@geo_region_search_terms = args[:geo_region_search_terms] if args.key?(:geo_region_search_terms)
|
8405
8703
|
@page_size = args[:page_size] if args.key?(:page_size)
|
8406
8704
|
@page_token = args[:page_token] if args.key?(:page_token)
|
8705
|
+
@poi_search_terms = args[:poi_search_terms] if args.key?(:poi_search_terms)
|
8407
8706
|
end
|
8408
8707
|
end
|
8409
8708
|
|
@@ -8654,6 +8953,13 @@ module Google
|
|
8654
8953
|
# @return [Google::Apis::DisplayvideoV1::BrowserTargetingOptionDetails]
|
8655
8954
|
attr_accessor :browser_details
|
8656
8955
|
|
8956
|
+
# Represents a targetable business chain within a geo region. This will be
|
8957
|
+
# populated in the business_chain_details field when targeting_type is `
|
8958
|
+
# TARGETING_TYPE_BUSINESS_CHAIN`.
|
8959
|
+
# Corresponds to the JSON property `businessChainDetails`
|
8960
|
+
# @return [Google::Apis::DisplayvideoV1::BusinessChainTargetingOptionDetails]
|
8961
|
+
attr_accessor :business_chain_details
|
8962
|
+
|
8657
8963
|
# Represents a targetable carrier or ISP. This will be populated in the
|
8658
8964
|
# carrier_and_isp_details field of a TargetingOption when targeting_type is `
|
8659
8965
|
# TARGETING_TYPE_CARRIER_AND_ISP`.
|
@@ -8756,6 +9062,13 @@ module Google
|
|
8756
9062
|
# @return [Google::Apis::DisplayvideoV1::NativeContentPositionTargetingOptionDetails]
|
8757
9063
|
attr_accessor :native_content_position_details
|
8758
9064
|
|
9065
|
+
# Represents a targetable Open Measurement enabled inventory type. This will be
|
9066
|
+
# populated in the omid_details field when targeting_type is `
|
9067
|
+
# TARGETING_TYPE_OMID`.
|
9068
|
+
# Corresponds to the JSON property `omidDetails`
|
9069
|
+
# @return [Google::Apis::DisplayvideoV1::OmidTargetingOptionDetails]
|
9070
|
+
attr_accessor :omid_details
|
9071
|
+
|
8759
9072
|
# Represents a targetable on screen position, which could be used by display and
|
8760
9073
|
# video ads. This will be populated in the on_screen_position_details field when
|
8761
9074
|
# targeting_type is `TARGETING_TYPE_ON_SCREEN_POSITION`.
|
@@ -8777,6 +9090,12 @@ module Google
|
|
8777
9090
|
# @return [Google::Apis::DisplayvideoV1::ParentalStatusTargetingOptionDetails]
|
8778
9091
|
attr_accessor :parental_status_details
|
8779
9092
|
|
9093
|
+
# Represents a targetable point of interest(POI). This will be populated in the
|
9094
|
+
# poi_details field when targeting_type is `TARGETING_TYPE_POI`.
|
9095
|
+
# Corresponds to the JSON property `poiDetails`
|
9096
|
+
# @return [Google::Apis::DisplayvideoV1::PoiTargetingOptionDetails]
|
9097
|
+
attr_accessor :poi_details
|
9098
|
+
|
8780
9099
|
# Represents a targetable sensitive category. This will be populated in the
|
8781
9100
|
# sensitive_category_details field of the TargetingOption when targeting_type is
|
8782
9101
|
# `TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`.
|
@@ -8833,6 +9152,7 @@ module Google
|
|
8833
9152
|
@app_category_details = args[:app_category_details] if args.key?(:app_category_details)
|
8834
9153
|
@authorized_seller_status_details = args[:authorized_seller_status_details] if args.key?(:authorized_seller_status_details)
|
8835
9154
|
@browser_details = args[:browser_details] if args.key?(:browser_details)
|
9155
|
+
@business_chain_details = args[:business_chain_details] if args.key?(:business_chain_details)
|
8836
9156
|
@carrier_and_isp_details = args[:carrier_and_isp_details] if args.key?(:carrier_and_isp_details)
|
8837
9157
|
@category_details = args[:category_details] if args.key?(:category_details)
|
8838
9158
|
@content_instream_position_details = args[:content_instream_position_details] if args.key?(:content_instream_position_details)
|
@@ -8848,9 +9168,11 @@ module Google
|
|
8848
9168
|
@language_details = args[:language_details] if args.key?(:language_details)
|
8849
9169
|
@name = args[:name] if args.key?(:name)
|
8850
9170
|
@native_content_position_details = args[:native_content_position_details] if args.key?(:native_content_position_details)
|
9171
|
+
@omid_details = args[:omid_details] if args.key?(:omid_details)
|
8851
9172
|
@on_screen_position_details = args[:on_screen_position_details] if args.key?(:on_screen_position_details)
|
8852
9173
|
@operating_system_details = args[:operating_system_details] if args.key?(:operating_system_details)
|
8853
9174
|
@parental_status_details = args[:parental_status_details] if args.key?(:parental_status_details)
|
9175
|
+
@poi_details = args[:poi_details] if args.key?(:poi_details)
|
8854
9176
|
@sensitive_category_details = args[:sensitive_category_details] if args.key?(:sensitive_category_details)
|
8855
9177
|
@sub_exchange_details = args[:sub_exchange_details] if args.key?(:sub_exchange_details)
|
8856
9178
|
@targeting_option_id = args[:targeting_option_id] if args.key?(:targeting_option_id)
|
@@ -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.14.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 = "20210722"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -322,6 +322,24 @@ module Google
|
|
322
322
|
include Google::Apis::Core::JsonObjectSupport
|
323
323
|
end
|
324
324
|
|
325
|
+
class BusinessChainAssignedTargetingOptionDetails
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class BusinessChainSearchTerms
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
337
|
+
class BusinessChainTargetingOptionDetails
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
325
343
|
class Campaign
|
326
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
345
|
|
@@ -1162,6 +1180,18 @@ module Google
|
|
1162
1180
|
include Google::Apis::Core::JsonObjectSupport
|
1163
1181
|
end
|
1164
1182
|
|
1183
|
+
class OmidAssignedTargetingOptionDetails
|
1184
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1185
|
+
|
1186
|
+
include Google::Apis::Core::JsonObjectSupport
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class OmidTargetingOptionDetails
|
1190
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1191
|
+
|
1192
|
+
include Google::Apis::Core::JsonObjectSupport
|
1193
|
+
end
|
1194
|
+
|
1165
1195
|
class OnScreenPositionAssignedTargetingOptionDetails
|
1166
1196
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1167
1197
|
|
@@ -1264,6 +1294,24 @@ module Google
|
|
1264
1294
|
include Google::Apis::Core::JsonObjectSupport
|
1265
1295
|
end
|
1266
1296
|
|
1297
|
+
class PoiAssignedTargetingOptionDetails
|
1298
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1299
|
+
|
1300
|
+
include Google::Apis::Core::JsonObjectSupport
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
class PoiSearchTerms
|
1304
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1305
|
+
|
1306
|
+
include Google::Apis::Core::JsonObjectSupport
|
1307
|
+
end
|
1308
|
+
|
1309
|
+
class PoiTargetingOptionDetails
|
1310
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1311
|
+
|
1312
|
+
include Google::Apis::Core::JsonObjectSupport
|
1313
|
+
end
|
1314
|
+
|
1267
1315
|
class PrismaConfig
|
1268
1316
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1269
1317
|
|
@@ -1698,6 +1746,8 @@ module Google
|
|
1698
1746
|
|
1699
1747
|
property :browser_details, as: 'browserDetails', class: Google::Apis::DisplayvideoV1::BrowserAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::BrowserAssignedTargetingOptionDetails::Representation
|
1700
1748
|
|
1749
|
+
property :business_chain_details, as: 'businessChainDetails', class: Google::Apis::DisplayvideoV1::BusinessChainAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::BusinessChainAssignedTargetingOptionDetails::Representation
|
1750
|
+
|
1701
1751
|
property :carrier_and_isp_details, as: 'carrierAndIspDetails', class: Google::Apis::DisplayvideoV1::CarrierAndIspAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::CarrierAndIspAssignedTargetingOptionDetails::Representation
|
1702
1752
|
|
1703
1753
|
property :category_details, as: 'categoryDetails', class: Google::Apis::DisplayvideoV1::CategoryAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::CategoryAssignedTargetingOptionDetails::Representation
|
@@ -1740,12 +1790,16 @@ module Google
|
|
1740
1790
|
|
1741
1791
|
property :negative_keyword_list_details, as: 'negativeKeywordListDetails', class: Google::Apis::DisplayvideoV1::NegativeKeywordListAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::NegativeKeywordListAssignedTargetingOptionDetails::Representation
|
1742
1792
|
|
1793
|
+
property :omid_details, as: 'omidDetails', class: Google::Apis::DisplayvideoV1::OmidAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::OmidAssignedTargetingOptionDetails::Representation
|
1794
|
+
|
1743
1795
|
property :on_screen_position_details, as: 'onScreenPositionDetails', class: Google::Apis::DisplayvideoV1::OnScreenPositionAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::OnScreenPositionAssignedTargetingOptionDetails::Representation
|
1744
1796
|
|
1745
1797
|
property :operating_system_details, as: 'operatingSystemDetails', class: Google::Apis::DisplayvideoV1::OperatingSystemAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::OperatingSystemAssignedTargetingOptionDetails::Representation
|
1746
1798
|
|
1747
1799
|
property :parental_status_details, as: 'parentalStatusDetails', class: Google::Apis::DisplayvideoV1::ParentalStatusAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ParentalStatusAssignedTargetingOptionDetails::Representation
|
1748
1800
|
|
1801
|
+
property :poi_details, as: 'poiDetails', class: Google::Apis::DisplayvideoV1::PoiAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::PoiAssignedTargetingOptionDetails::Representation
|
1802
|
+
|
1749
1803
|
property :proximity_location_list_details, as: 'proximityLocationListDetails', class: Google::Apis::DisplayvideoV1::ProximityLocationListAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ProximityLocationListAssignedTargetingOptionDetails::Representation
|
1750
1804
|
|
1751
1805
|
property :regional_location_list_details, as: 'regionalLocationListDetails', class: Google::Apis::DisplayvideoV1::RegionalLocationListAssignedTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::RegionalLocationListAssignedTargetingOptionDetails::Representation
|
@@ -2052,6 +2106,33 @@ module Google
|
|
2052
2106
|
end
|
2053
2107
|
end
|
2054
2108
|
|
2109
|
+
class BusinessChainAssignedTargetingOptionDetails
|
2110
|
+
# @private
|
2111
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2112
|
+
property :display_name, as: 'displayName'
|
2113
|
+
property :proximity_radius_amount, as: 'proximityRadiusAmount'
|
2114
|
+
property :proximity_radius_unit, as: 'proximityRadiusUnit'
|
2115
|
+
property :targeting_option_id, as: 'targetingOptionId'
|
2116
|
+
end
|
2117
|
+
end
|
2118
|
+
|
2119
|
+
class BusinessChainSearchTerms
|
2120
|
+
# @private
|
2121
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2122
|
+
property :business_chain, as: 'businessChain'
|
2123
|
+
property :region, as: 'region'
|
2124
|
+
end
|
2125
|
+
end
|
2126
|
+
|
2127
|
+
class BusinessChainTargetingOptionDetails
|
2128
|
+
# @private
|
2129
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2130
|
+
property :business_chain, as: 'businessChain'
|
2131
|
+
property :geo_region, as: 'geoRegion'
|
2132
|
+
property :geo_region_type, as: 'geoRegionType'
|
2133
|
+
end
|
2134
|
+
end
|
2135
|
+
|
2055
2136
|
class Campaign
|
2056
2137
|
# @private
|
2057
2138
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3478,6 +3559,21 @@ module Google
|
|
3478
3559
|
end
|
3479
3560
|
end
|
3480
3561
|
|
3562
|
+
class OmidAssignedTargetingOptionDetails
|
3563
|
+
# @private
|
3564
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3565
|
+
property :omid, as: 'omid'
|
3566
|
+
property :targeting_option_id, as: 'targetingOptionId'
|
3567
|
+
end
|
3568
|
+
end
|
3569
|
+
|
3570
|
+
class OmidTargetingOptionDetails
|
3571
|
+
# @private
|
3572
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3573
|
+
property :omid, as: 'omid'
|
3574
|
+
end
|
3575
|
+
end
|
3576
|
+
|
3481
3577
|
class OnScreenPositionAssignedTargetingOptionDetails
|
3482
3578
|
# @private
|
3483
3579
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3638,6 +3734,34 @@ module Google
|
|
3638
3734
|
end
|
3639
3735
|
end
|
3640
3736
|
|
3737
|
+
class PoiAssignedTargetingOptionDetails
|
3738
|
+
# @private
|
3739
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3740
|
+
property :display_name, as: 'displayName'
|
3741
|
+
property :latitude, as: 'latitude'
|
3742
|
+
property :longitude, as: 'longitude'
|
3743
|
+
property :proximity_radius_amount, as: 'proximityRadiusAmount'
|
3744
|
+
property :proximity_radius_unit, as: 'proximityRadiusUnit'
|
3745
|
+
property :targeting_option_id, as: 'targetingOptionId'
|
3746
|
+
end
|
3747
|
+
end
|
3748
|
+
|
3749
|
+
class PoiSearchTerms
|
3750
|
+
# @private
|
3751
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3752
|
+
property :poi_query, as: 'poiQuery'
|
3753
|
+
end
|
3754
|
+
end
|
3755
|
+
|
3756
|
+
class PoiTargetingOptionDetails
|
3757
|
+
# @private
|
3758
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3759
|
+
property :display_name, as: 'displayName'
|
3760
|
+
property :latitude, as: 'latitude'
|
3761
|
+
property :longitude, as: 'longitude'
|
3762
|
+
end
|
3763
|
+
end
|
3764
|
+
|
3641
3765
|
class PrismaConfig
|
3642
3766
|
# @private
|
3643
3767
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3768,10 +3892,14 @@ module Google
|
|
3768
3892
|
# @private
|
3769
3893
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3770
3894
|
property :advertiser_id, :numeric_string => true, as: 'advertiserId'
|
3895
|
+
property :business_chain_search_terms, as: 'businessChainSearchTerms', class: Google::Apis::DisplayvideoV1::BusinessChainSearchTerms, decorator: Google::Apis::DisplayvideoV1::BusinessChainSearchTerms::Representation
|
3896
|
+
|
3771
3897
|
property :geo_region_search_terms, as: 'geoRegionSearchTerms', class: Google::Apis::DisplayvideoV1::GeoRegionSearchTerms, decorator: Google::Apis::DisplayvideoV1::GeoRegionSearchTerms::Representation
|
3772
3898
|
|
3773
3899
|
property :page_size, as: 'pageSize'
|
3774
3900
|
property :page_token, as: 'pageToken'
|
3901
|
+
property :poi_search_terms, as: 'poiSearchTerms', class: Google::Apis::DisplayvideoV1::PoiSearchTerms, decorator: Google::Apis::DisplayvideoV1::PoiSearchTerms::Representation
|
3902
|
+
|
3775
3903
|
end
|
3776
3904
|
end
|
3777
3905
|
|
@@ -3849,6 +3977,8 @@ module Google
|
|
3849
3977
|
|
3850
3978
|
property :browser_details, as: 'browserDetails', class: Google::Apis::DisplayvideoV1::BrowserTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::BrowserTargetingOptionDetails::Representation
|
3851
3979
|
|
3980
|
+
property :business_chain_details, as: 'businessChainDetails', class: Google::Apis::DisplayvideoV1::BusinessChainTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::BusinessChainTargetingOptionDetails::Representation
|
3981
|
+
|
3852
3982
|
property :carrier_and_isp_details, as: 'carrierAndIspDetails', class: Google::Apis::DisplayvideoV1::CarrierAndIspTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::CarrierAndIspTargetingOptionDetails::Representation
|
3853
3983
|
|
3854
3984
|
property :category_details, as: 'categoryDetails', class: Google::Apis::DisplayvideoV1::CategoryTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::CategoryTargetingOptionDetails::Representation
|
@@ -3878,12 +4008,16 @@ module Google
|
|
3878
4008
|
property :name, as: 'name'
|
3879
4009
|
property :native_content_position_details, as: 'nativeContentPositionDetails', class: Google::Apis::DisplayvideoV1::NativeContentPositionTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::NativeContentPositionTargetingOptionDetails::Representation
|
3880
4010
|
|
4011
|
+
property :omid_details, as: 'omidDetails', class: Google::Apis::DisplayvideoV1::OmidTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::OmidTargetingOptionDetails::Representation
|
4012
|
+
|
3881
4013
|
property :on_screen_position_details, as: 'onScreenPositionDetails', class: Google::Apis::DisplayvideoV1::OnScreenPositionTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::OnScreenPositionTargetingOptionDetails::Representation
|
3882
4014
|
|
3883
4015
|
property :operating_system_details, as: 'operatingSystemDetails', class: Google::Apis::DisplayvideoV1::OperatingSystemTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::OperatingSystemTargetingOptionDetails::Representation
|
3884
4016
|
|
3885
4017
|
property :parental_status_details, as: 'parentalStatusDetails', class: Google::Apis::DisplayvideoV1::ParentalStatusTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::ParentalStatusTargetingOptionDetails::Representation
|
3886
4018
|
|
4019
|
+
property :poi_details, as: 'poiDetails', class: Google::Apis::DisplayvideoV1::PoiTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::PoiTargetingOptionDetails::Representation
|
4020
|
+
|
3887
4021
|
property :sensitive_category_details, as: 'sensitiveCategoryDetails', class: Google::Apis::DisplayvideoV1::SensitiveCategoryTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::SensitiveCategoryTargetingOptionDetails::Representation
|
3888
4022
|
|
3889
4023
|
property :sub_exchange_details, as: 'subExchangeDetails', class: Google::Apis::DisplayvideoV1::SubExchangeTargetingOptionDetails, decorator: Google::Apis::DisplayvideoV1::SubExchangeTargetingOptionDetails::Representation
|
@@ -3425,7 +3425,7 @@ module Google
|
|
3425
3425
|
# @param [String] targeting_type
|
3426
3426
|
# Required. Identifies the type of this assigned targeting option. Supported
|
3427
3427
|
# targeting types: * `TARGETING_TYPE_CHANNEL` * `
|
3428
|
-
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `
|
3428
|
+
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `TARGETING_TYPE_OMID` * `
|
3429
3429
|
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
3430
3430
|
# @param [Google::Apis::DisplayvideoV1::AssignedTargetingOption] assigned_targeting_option_object
|
3431
3431
|
# @param [String] fields
|
@@ -3464,7 +3464,7 @@ module Google
|
|
3464
3464
|
# @param [String] targeting_type
|
3465
3465
|
# Required. Identifies the type of this assigned targeting option. Supported
|
3466
3466
|
# targeting types: * `TARGETING_TYPE_CHANNEL` * `
|
3467
|
-
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `
|
3467
|
+
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `TARGETING_TYPE_OMID` * `
|
3468
3468
|
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
3469
3469
|
# @param [String] assigned_targeting_option_id
|
3470
3470
|
# Required. The ID of the assigned targeting option to delete.
|
@@ -3503,7 +3503,7 @@ module Google
|
|
3503
3503
|
# @param [String] targeting_type
|
3504
3504
|
# Required. Identifies the type of this assigned targeting option. Supported
|
3505
3505
|
# targeting types: * `TARGETING_TYPE_CHANNEL` * `
|
3506
|
-
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `
|
3506
|
+
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `TARGETING_TYPE_OMID` * `
|
3507
3507
|
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
3508
3508
|
# @param [String] assigned_targeting_option_id
|
3509
3509
|
# Required. An identifier unique to the targeting type in this advertiser that
|
@@ -3543,7 +3543,7 @@ module Google
|
|
3543
3543
|
# @param [String] targeting_type
|
3544
3544
|
# Required. Identifies the type of assigned targeting options to list. Supported
|
3545
3545
|
# targeting types: * `TARGETING_TYPE_CHANNEL` * `
|
3546
|
-
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `
|
3546
|
+
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `TARGETING_TYPE_OMID` * `
|
3547
3547
|
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
3548
3548
|
# @param [String] filter
|
3549
3549
|
# Allows filtering by assigned targeting option properties. Supported syntax: *
|
@@ -5556,7 +5556,8 @@ module Google
|
|
5556
5556
|
# Searches for targeting options of a given type based on the given search terms.
|
5557
5557
|
# @param [String] targeting_type
|
5558
5558
|
# Required. The type of targeting options to retrieve. Accepted values are: * `
|
5559
|
-
# TARGETING_TYPE_GEO_REGION`
|
5559
|
+
# TARGETING_TYPE_GEO_REGION` * `TARGETING_TYPE_POI` * `
|
5560
|
+
# TARGETING_TYPE_BUSINESS_CHAIN`
|
5560
5561
|
# @param [Google::Apis::DisplayvideoV1::SearchTargetingOptionsRequest] search_targeting_options_request_object
|
5561
5562
|
# @param [String] fields
|
5562
5563
|
# Selector specifying which fields to include in a partial response.
|
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.14.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-07-
|
11
|
+
date: 2021-07-26 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/master/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.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-displayvideo_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|