google-apis-displayvideo_v1 0.60.0 → 0.62.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: 299847c177b5185d6aa7843abd22b41485ecce00e9de9fc27de224adb79d9770
|
4
|
+
data.tar.gz: 3ec6e93da722264155aa6e4b937a0ab7e58ae6919ed5505ee51174c7ae26409d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 328b49bc17bcecf4fe46d869702a05e0396a763392e4e8626e4dc121ff796580cd8e414eca485c171ded5cad25c4f93cdd3ecac95efd4fd766a171789093be47
|
7
|
+
data.tar.gz: af263e2ad41b791427d497dc6d644d298282a1f0ac72d4a9e0f2b9a76328aa21f35a833a42a0d24478e3194d629cb7f630c7831fcbd033cf80309376820da667
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-displayvideo_v1
|
2
2
|
|
3
|
+
### v0.62.0 (2024-01-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240104
|
6
|
+
|
7
|
+
### v0.61.0 (2023-11-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231113
|
10
|
+
|
3
11
|
### v0.60.0 (2023-10-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231009
|
@@ -2757,6 +2757,31 @@ module Google
|
|
2757
2757
|
end
|
2758
2758
|
end
|
2759
2759
|
|
2760
|
+
# User consent status.
|
2761
|
+
class Consent
|
2762
|
+
include Google::Apis::Core::Hashable
|
2763
|
+
|
2764
|
+
# Represents consent for ad personalization.
|
2765
|
+
# Corresponds to the JSON property `adPersonalization`
|
2766
|
+
# @return [String]
|
2767
|
+
attr_accessor :ad_personalization
|
2768
|
+
|
2769
|
+
# Represents consent for ad user data.
|
2770
|
+
# Corresponds to the JSON property `adUserData`
|
2771
|
+
# @return [String]
|
2772
|
+
attr_accessor :ad_user_data
|
2773
|
+
|
2774
|
+
def initialize(**args)
|
2775
|
+
update!(**args)
|
2776
|
+
end
|
2777
|
+
|
2778
|
+
# Update properties of this object
|
2779
|
+
def update!(**args)
|
2780
|
+
@ad_personalization = args[:ad_personalization] if args.key?(:ad_personalization)
|
2781
|
+
@ad_user_data = args[:ad_user_data] if args.key?(:ad_user_data)
|
2782
|
+
end
|
2783
|
+
end
|
2784
|
+
|
2760
2785
|
# Contact information defining a Customer Match audience member.
|
2761
2786
|
class ContactInfo
|
2762
2787
|
include Google::Apis::Core::Hashable
|
@@ -2820,6 +2845,11 @@ module Google
|
|
2820
2845
|
class ContactInfoList
|
2821
2846
|
include Google::Apis::Core::Hashable
|
2822
2847
|
|
2848
|
+
# User consent status.
|
2849
|
+
# Corresponds to the JSON property `consent`
|
2850
|
+
# @return [Google::Apis::DisplayvideoV1::Consent]
|
2851
|
+
attr_accessor :consent
|
2852
|
+
|
2823
2853
|
# A list of ContactInfo objects defining Customer Match audience members. The
|
2824
2854
|
# size of members after splitting the contact_infos mustn't be greater than 500,
|
2825
2855
|
# 000.
|
@@ -2833,6 +2863,7 @@ module Google
|
|
2833
2863
|
|
2834
2864
|
# Update properties of this object
|
2835
2865
|
def update!(**args)
|
2866
|
+
@consent = args[:consent] if args.key?(:consent)
|
2836
2867
|
@contact_infos = args[:contact_infos] if args.key?(:contact_infos)
|
2837
2868
|
end
|
2838
2869
|
end
|
@@ -8218,6 +8249,11 @@ module Google
|
|
8218
8249
|
class MobileDeviceIdList
|
8219
8250
|
include Google::Apis::Core::Hashable
|
8220
8251
|
|
8252
|
+
# User consent status.
|
8253
|
+
# Corresponds to the JSON property `consent`
|
8254
|
+
# @return [Google::Apis::DisplayvideoV1::Consent]
|
8255
|
+
attr_accessor :consent
|
8256
|
+
|
8221
8257
|
# A list of mobile device IDs defining Customer Match audience members. The size
|
8222
8258
|
# of mobile_device_ids mustn't be greater than 500,000.
|
8223
8259
|
# Corresponds to the JSON property `mobileDeviceIds`
|
@@ -8230,6 +8266,7 @@ module Google
|
|
8230
8266
|
|
8231
8267
|
# Update properties of this object
|
8232
8268
|
def update!(**args)
|
8269
|
+
@consent = args[:consent] if args.key?(:consent)
|
8233
8270
|
@mobile_device_ids = args[:mobile_device_ids] if args.key?(:mobile_device_ids)
|
8234
8271
|
end
|
8235
8272
|
end
|
@@ -9219,13 +9256,16 @@ module Google
|
|
9219
9256
|
attr_accessor :proximity_radius_unit
|
9220
9257
|
|
9221
9258
|
# Required. The targeting_option_id of a TargetingOption of type `
|
9222
|
-
# TARGETING_TYPE_POI`. Accepted POI targeting option IDs can be retrieved using
|
9223
|
-
#
|
9224
|
-
# removed from an address or POI name, you can generate the
|
9225
|
-
# option ID by rounding the desired coordinate values to the
|
9226
|
-
# removing the decimals, and concatenating the string values
|
9227
|
-
# semicolon. For example, you can target the latitude/longitude
|
9228
|
-
# 7414691, -74.003387 using the targeting option ID "40741469;-
|
9259
|
+
# TARGETING_TYPE_POI`. Accepted POI targeting option IDs can be retrieved using `
|
9260
|
+
# targetingTypes.targetingOptions.search`. If targeting a specific latitude/
|
9261
|
+
# longitude coordinate removed from an address or POI name, you can generate the
|
9262
|
+
# necessary targeting option ID by rounding the desired coordinate values to the
|
9263
|
+
# 6th decimal place, removing the decimals, and concatenating the string values
|
9264
|
+
# separated by a semicolon. For example, you can target the latitude/longitude
|
9265
|
+
# pair of 40.7414691, -74.003387 using the targeting option ID "40741469;-
|
9266
|
+
# 74003387". **Upon** **creation, this field value will be updated to append a
|
9267
|
+
# semicolon and** **alphanumerical hash value if only latitude/longitude
|
9268
|
+
# coordinates are** **provided.**
|
9229
9269
|
# Corresponds to the JSON property `targetingOptionId`
|
9230
9270
|
# @return [String]
|
9231
9271
|
attr_accessor :targeting_option_id
|
@@ -10627,6 +10667,11 @@ module Google
|
|
10627
10667
|
# @return [String]
|
10628
10668
|
attr_accessor :email
|
10629
10669
|
|
10670
|
+
# Output only. The timestamp when the user last logged in DV360 UI.
|
10671
|
+
# Corresponds to the JSON property `lastLoginTime`
|
10672
|
+
# @return [String]
|
10673
|
+
attr_accessor :last_login_time
|
10674
|
+
|
10630
10675
|
# Output only. The resource name of the user.
|
10631
10676
|
# Corresponds to the JSON property `name`
|
10632
10677
|
# @return [String]
|
@@ -10646,6 +10691,7 @@ module Google
|
|
10646
10691
|
@assigned_user_roles = args[:assigned_user_roles] if args.key?(:assigned_user_roles)
|
10647
10692
|
@display_name = args[:display_name] if args.key?(:display_name)
|
10648
10693
|
@email = args[:email] if args.key?(:email)
|
10694
|
+
@last_login_time = args[:last_login_time] if args.key?(:last_login_time)
|
10649
10695
|
@name = args[:name] if args.key?(:name)
|
10650
10696
|
@user_id = args[:user_id] if args.key?(:user_id)
|
10651
10697
|
end
|
@@ -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.62.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240104"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -442,6 +442,12 @@ module Google
|
|
442
442
|
include Google::Apis::Core::JsonObjectSupport
|
443
443
|
end
|
444
444
|
|
445
|
+
class Consent
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
445
451
|
class ContactInfo
|
446
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
453
|
|
@@ -2478,6 +2484,14 @@ module Google
|
|
2478
2484
|
end
|
2479
2485
|
end
|
2480
2486
|
|
2487
|
+
class Consent
|
2488
|
+
# @private
|
2489
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2490
|
+
property :ad_personalization, as: 'adPersonalization'
|
2491
|
+
property :ad_user_data, as: 'adUserData'
|
2492
|
+
end
|
2493
|
+
end
|
2494
|
+
|
2481
2495
|
class ContactInfo
|
2482
2496
|
# @private
|
2483
2497
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2493,6 +2507,8 @@ module Google
|
|
2493
2507
|
class ContactInfoList
|
2494
2508
|
# @private
|
2495
2509
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2510
|
+
property :consent, as: 'consent', class: Google::Apis::DisplayvideoV1::Consent, decorator: Google::Apis::DisplayvideoV1::Consent::Representation
|
2511
|
+
|
2496
2512
|
collection :contact_infos, as: 'contactInfos', class: Google::Apis::DisplayvideoV1::ContactInfo, decorator: Google::Apis::DisplayvideoV1::ContactInfo::Representation
|
2497
2513
|
|
2498
2514
|
end
|
@@ -3931,6 +3947,8 @@ module Google
|
|
3931
3947
|
class MobileDeviceIdList
|
3932
3948
|
# @private
|
3933
3949
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3950
|
+
property :consent, as: 'consent', class: Google::Apis::DisplayvideoV1::Consent, decorator: Google::Apis::DisplayvideoV1::Consent::Representation
|
3951
|
+
|
3934
3952
|
collection :mobile_device_ids, as: 'mobileDeviceIds'
|
3935
3953
|
end
|
3936
3954
|
end
|
@@ -4583,6 +4601,7 @@ module Google
|
|
4583
4601
|
|
4584
4602
|
property :display_name, as: 'displayName'
|
4585
4603
|
property :email, as: 'email'
|
4604
|
+
property :last_login_time, as: 'lastLoginTime'
|
4586
4605
|
property :name, as: 'name'
|
4587
4606
|
property :user_id, :numeric_string => true, as: 'userId'
|
4588
4607
|
end
|
@@ -1223,7 +1223,9 @@ module Google
|
|
1223
1223
|
execute_or_queue_command(command, &block)
|
1224
1224
|
end
|
1225
1225
|
|
1226
|
-
# Creates a new creative. Returns the newly created creative if successful.
|
1226
|
+
# Creates a new creative. Returns the newly created creative if successful. A ["
|
1227
|
+
# Standard" user role](//support.google.com/displayvideo/answer/2723011) or
|
1228
|
+
# greater for the parent advertiser or partner is required to make this request.
|
1227
1229
|
# @param [Fixnum] advertiser_id
|
1228
1230
|
# Output only. The unique ID of the advertiser the creative belongs to.
|
1229
1231
|
# @param [Google::Apis::DisplayvideoV1::Creative] creative_object
|
@@ -1258,7 +1260,9 @@ module Google
|
|
1258
1260
|
|
1259
1261
|
# Deletes a creative. Returns error code `NOT_FOUND` if the creative does not
|
1260
1262
|
# exist. The creative should be archived first, i.e. set entity_status to `
|
1261
|
-
# ENTITY_STATUS_ARCHIVED`, before it can be deleted.
|
1263
|
+
# ENTITY_STATUS_ARCHIVED`, before it can be deleted. A ["Standard" user role](//
|
1264
|
+
# support.google.com/displayvideo/answer/2723011) or greater for the parent
|
1265
|
+
# advertiser or partner is required to make this request.
|
1262
1266
|
# @param [Fixnum] advertiser_id
|
1263
1267
|
# The ID of the advertiser this creative belongs to.
|
1264
1268
|
# @param [Fixnum] creative_id
|
@@ -1408,7 +1412,9 @@ module Google
|
|
1408
1412
|
execute_or_queue_command(command, &block)
|
1409
1413
|
end
|
1410
1414
|
|
1411
|
-
# Updates an existing creative. Returns the updated creative if successful.
|
1415
|
+
# Updates an existing creative. Returns the updated creative if successful. A ["
|
1416
|
+
# Standard" user role](//support.google.com/displayvideo/answer/2723011) or
|
1417
|
+
# greater for the parent advertiser or partner is required to make this request.
|
1412
1418
|
# @param [Fixnum] advertiser_id
|
1413
1419
|
# Output only. The unique ID of the advertiser the creative belongs to.
|
1414
1420
|
# @param [Fixnum] creative_id
|
@@ -1975,7 +1981,8 @@ module Google
|
|
1975
1981
|
# BulkEditLineItemAssignedTargetingOptionsRequest.create_requests. Requests to
|
1976
1982
|
# this endpoint cannot be made concurrently with the following requests updating
|
1977
1983
|
# the same line item: * lineItems.patch * assignedTargetingOptions.create *
|
1978
|
-
# assignedTargetingOptions.delete
|
1984
|
+
# assignedTargetingOptions.delete YouTube & Partners line items cannot be
|
1985
|
+
# created or updated using the API.
|
1979
1986
|
# @param [Fixnum] advertiser_id
|
1980
1987
|
# Required. The ID of the advertiser the line item belongs to.
|
1981
1988
|
# @param [Fixnum] line_item_id
|
@@ -2078,6 +2085,7 @@ module Google
|
|
2078
2085
|
end
|
2079
2086
|
|
2080
2087
|
# Creates a new line item. Returns the newly created line item if successful.
|
2088
|
+
# YouTube & Partners line items cannot be created or updated using the API.
|
2081
2089
|
# @param [Fixnum] advertiser_id
|
2082
2090
|
# Output only. The unique ID of the advertiser the line item belongs to.
|
2083
2091
|
# @param [Google::Apis::DisplayvideoV1::LineItem] line_item_object
|
@@ -2112,7 +2120,8 @@ module Google
|
|
2112
2120
|
|
2113
2121
|
# Deletes a line item. Returns error code `NOT_FOUND` if the line item does not
|
2114
2122
|
# exist. The line item should be archived first, i.e. set entity_status to `
|
2115
|
-
# ENTITY_STATUS_ARCHIVED`, to be able to delete it.
|
2123
|
+
# ENTITY_STATUS_ARCHIVED`, to be able to delete it. YouTube & Partners line
|
2124
|
+
# items cannot be created or updated using the API.
|
2116
2125
|
# @param [Fixnum] advertiser_id
|
2117
2126
|
# The ID of the advertiser this line item belongs to.
|
2118
2127
|
# @param [Fixnum] line_item_id
|
@@ -2149,7 +2158,8 @@ module Google
|
|
2149
2158
|
# insertion order and an `ENTITY_STATUS_DRAFT` entity_status. Returns the newly
|
2150
2159
|
# created line item if successful. There are default values based on the three
|
2151
2160
|
# fields: * The insertion order's insertion_order_type * The insertion order's
|
2152
|
-
# automation_type * The given line_item_type
|
2161
|
+
# automation_type * The given line_item_type YouTube & Partners line items
|
2162
|
+
# cannot be created or updated using the API.
|
2153
2163
|
# @param [Fixnum] advertiser_id
|
2154
2164
|
# Required. The ID of the advertiser this line item belongs to.
|
2155
2165
|
# @param [Google::Apis::DisplayvideoV1::GenerateDefaultLineItemRequest] generate_default_line_item_request_object
|
@@ -2289,7 +2299,8 @@ module Google
|
|
2289
2299
|
# Requests to this endpoint cannot be made concurrently with the following
|
2290
2300
|
# requests updating the same line item: * BulkEditAssignedTargetingOptions *
|
2291
2301
|
# BulkUpdateLineItems * assignedTargetingOptions.create *
|
2292
|
-
# assignedTargetingOptions.delete
|
2302
|
+
# assignedTargetingOptions.delete YouTube & Partners line items cannot be
|
2303
|
+
# created or updated using the API.
|
2293
2304
|
# @param [Fixnum] advertiser_id
|
2294
2305
|
# Output only. The unique ID of the advertiser the line item belongs to.
|
2295
2306
|
# @param [Fixnum] line_item_id
|
@@ -2332,7 +2343,8 @@ module Google
|
|
2332
2343
|
# option if successful. Requests to this endpoint cannot be made concurrently
|
2333
2344
|
# with the following requests updating the same line item: * lineItems.
|
2334
2345
|
# bulkEditAssignedTargetingOptions * lineItems.bulkUpdate * lineItems.patch *
|
2335
|
-
# DeleteLineItemAssignedTargetingOption
|
2346
|
+
# DeleteLineItemAssignedTargetingOption YouTube & Partners line items cannot be
|
2347
|
+
# created or updated using the API.
|
2336
2348
|
# @param [Fixnum] advertiser_id
|
2337
2349
|
# Required. The ID of the advertiser the line item belongs to.
|
2338
2350
|
# @param [Fixnum] line_item_id
|
@@ -2399,7 +2411,8 @@ module Google
|
|
2399
2411
|
# Deletes an assigned targeting option from a line item. Requests to this
|
2400
2412
|
# endpoint cannot be made concurrently with the following requests updating the
|
2401
2413
|
# same line item: * lineItems.bulkEditAssignedTargetingOptions * lineItems.
|
2402
|
-
# bulkUpdate * lineItems.patch * CreateLineItemAssignedTargetingOption
|
2414
|
+
# bulkUpdate * lineItems.patch * CreateLineItemAssignedTargetingOption YouTube &
|
2415
|
+
# Partners line items cannot be created or updated using the API.
|
2403
2416
|
# @param [Fixnum] advertiser_id
|
2404
2417
|
# Required. The ID of the advertiser the line item belongs to.
|
2405
2418
|
# @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.62.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:
|
11
|
+
date: 2024-01-07 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.62.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.5.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Display & Video 360 API V1
|