google-apis-displayvideo_v2 0.28.0 → 0.29.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aec6cc0a6f569c6413599b6cba55a7a142be724e23c405940fc1b554650dd328
|
4
|
+
data.tar.gz: 8ca630cea1d927a520559d0a54fb3fd510ecd78b692c37cfff18f21b8bd4e6d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4aa773ee683f2b3d0f3eca6b8a4b01bf62dccefe57f66e9ee967eaea7088c97a6964ff0c0def36ee4ab3445c1d3f9c52cbcdfe804f45438cc64c8ef8fad526a4
|
7
|
+
data.tar.gz: 04ef25c824aa8f1c83d81a905b6f86ddb58874e28acc12deb80cad5b92ecabd147c819cc26aac1d2150b71776f817041bc4506a7550f3e88fd2e540c6977396d
|
data/CHANGELOG.md
CHANGED
@@ -9907,13 +9907,16 @@ module Google
|
|
9907
9907
|
attr_accessor :proximity_radius_unit
|
9908
9908
|
|
9909
9909
|
# Required. The targeting_option_id of a TargetingOption of type `
|
9910
|
-
# TARGETING_TYPE_POI`. Accepted POI targeting option IDs can be retrieved using
|
9911
|
-
#
|
9912
|
-
# removed from an address or POI name, you can generate the
|
9913
|
-
# option ID by rounding the desired coordinate values to the
|
9914
|
-
# removing the decimals, and concatenating the string values
|
9915
|
-
# semicolon. For example, you can target the latitude/longitude
|
9916
|
-
# 7414691, -74.003387 using the targeting option ID "40741469;-
|
9910
|
+
# TARGETING_TYPE_POI`. Accepted POI targeting option IDs can be retrieved using `
|
9911
|
+
# targetingTypes.targetingOptions.search`. If targeting a specific latitude/
|
9912
|
+
# longitude coordinate removed from an address or POI name, you can generate the
|
9913
|
+
# necessary targeting option ID by rounding the desired coordinate values to the
|
9914
|
+
# 6th decimal place, removing the decimals, and concatenating the string values
|
9915
|
+
# separated by a semicolon. For example, you can target the latitude/longitude
|
9916
|
+
# pair of 40.7414691, -74.003387 using the targeting option ID "40741469;-
|
9917
|
+
# 74003387". **Upon** **creation, this field value will be updated to append a
|
9918
|
+
# semicolon and** **alphanumerical hash value if only latitude/longitude
|
9919
|
+
# coordinates are** **provided.**
|
9917
9920
|
# Corresponds to the JSON property `targetingOptionId`
|
9918
9921
|
# @return [String]
|
9919
9922
|
attr_accessor :targeting_option_id
|
@@ -11454,6 +11457,11 @@ module Google
|
|
11454
11457
|
# @return [String]
|
11455
11458
|
attr_accessor :email
|
11456
11459
|
|
11460
|
+
# Output only. The timestamp when the user last logged in DV360 UI.
|
11461
|
+
# Corresponds to the JSON property `lastLoginTime`
|
11462
|
+
# @return [String]
|
11463
|
+
attr_accessor :last_login_time
|
11464
|
+
|
11457
11465
|
# Output only. The resource name of the user.
|
11458
11466
|
# Corresponds to the JSON property `name`
|
11459
11467
|
# @return [String]
|
@@ -11473,6 +11481,7 @@ module Google
|
|
11473
11481
|
@assigned_user_roles = args[:assigned_user_roles] if args.key?(:assigned_user_roles)
|
11474
11482
|
@display_name = args[:display_name] if args.key?(:display_name)
|
11475
11483
|
@email = args[:email] if args.key?(:email)
|
11484
|
+
@last_login_time = args[:last_login_time] if args.key?(:last_login_time)
|
11476
11485
|
@name = args[:name] if args.key?(:name)
|
11477
11486
|
@user_id = args[:user_id] if args.key?(:user_id)
|
11478
11487
|
end
|
@@ -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.29.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
|
@@ -5071,6 +5071,7 @@ module Google
|
|
5071
5071
|
|
5072
5072
|
property :display_name, as: 'displayName'
|
5073
5073
|
property :email, as: 'email'
|
5074
|
+
property :last_login_time, as: 'lastLoginTime'
|
5074
5075
|
property :name, as: 'name'
|
5075
5076
|
property :user_id, :numeric_string => true, as: 'userId'
|
5076
5077
|
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::DisplayvideoV2::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
|
@@ -2088,7 +2094,8 @@ module Google
|
|
2088
2094
|
# create_requests. Requests to this endpoint cannot be made concurrently with
|
2089
2095
|
# the following requests updating the same line item: * lineItems.bulkUpdate *
|
2090
2096
|
# lineItems.patch * assignedTargetingOptions.create * assignedTargetingOptions.
|
2091
|
-
# delete
|
2097
|
+
# delete YouTube & Partners line items cannot be created or updated using the
|
2098
|
+
# API.
|
2092
2099
|
# @param [Fixnum] advertiser_id
|
2093
2100
|
# Required. The ID of the advertiser the line items belong to.
|
2094
2101
|
# @param [Google::Apis::DisplayvideoV2::BulkEditAssignedTargetingOptionsRequest] bulk_edit_assigned_targeting_options_request_object
|
@@ -2191,7 +2198,8 @@ module Google
|
|
2191
2198
|
# Updates multiple line items. Requests to this endpoint cannot be made
|
2192
2199
|
# concurrently with the following requests updating the same line item: *
|
2193
2200
|
# BulkEditAssignedTargetingOptions * UpdateLineItem * assignedTargetingOptions.
|
2194
|
-
# create * assignedTargetingOptions.delete
|
2201
|
+
# create * assignedTargetingOptions.delete YouTube & Partners line items cannot
|
2202
|
+
# be created or updated using the API.
|
2195
2203
|
# @param [Fixnum] advertiser_id
|
2196
2204
|
# Required. The ID of the advertiser this line item belongs to.
|
2197
2205
|
# @param [Google::Apis::DisplayvideoV2::BulkUpdateLineItemsRequest] bulk_update_line_items_request_object
|
@@ -2225,6 +2233,7 @@ module Google
|
|
2225
2233
|
end
|
2226
2234
|
|
2227
2235
|
# Creates a new line item. Returns the newly created line item if successful.
|
2236
|
+
# YouTube & Partners line items cannot be created or updated using the API.
|
2228
2237
|
# @param [Fixnum] advertiser_id
|
2229
2238
|
# Output only. The unique ID of the advertiser the line item belongs to.
|
2230
2239
|
# @param [Google::Apis::DisplayvideoV2::LineItem] line_item_object
|
@@ -2259,7 +2268,8 @@ module Google
|
|
2259
2268
|
|
2260
2269
|
# Deletes a line item. Returns error code `NOT_FOUND` if the line item does not
|
2261
2270
|
# exist. The line item should be archived first, i.e. set entity_status to `
|
2262
|
-
# ENTITY_STATUS_ARCHIVED`, to be able to delete it.
|
2271
|
+
# ENTITY_STATUS_ARCHIVED`, to be able to delete it. YouTube & Partners line
|
2272
|
+
# items cannot be created or updated using the API.
|
2263
2273
|
# @param [Fixnum] advertiser_id
|
2264
2274
|
# The ID of the advertiser this line item belongs to.
|
2265
2275
|
# @param [Fixnum] line_item_id
|
@@ -2293,6 +2303,7 @@ module Google
|
|
2293
2303
|
end
|
2294
2304
|
|
2295
2305
|
# Duplicates a line item. Returns the ID of the created line item if successful.
|
2306
|
+
# YouTube & Partners line items cannot be created or updated using the API.
|
2296
2307
|
# @param [Fixnum] advertiser_id
|
2297
2308
|
# Required. The ID of the advertiser this line item belongs to.
|
2298
2309
|
# @param [Fixnum] line_item_id
|
@@ -2332,7 +2343,8 @@ module Google
|
|
2332
2343
|
# insertion order and an `ENTITY_STATUS_DRAFT` entity_status. Returns the newly
|
2333
2344
|
# created line item if successful. There are default values based on the three
|
2334
2345
|
# fields: * The insertion order's insertion_order_type * The insertion order's
|
2335
|
-
# automation_type * The given line_item_type
|
2346
|
+
# automation_type * The given line_item_type YouTube & Partners line items
|
2347
|
+
# cannot be created or updated using the API.
|
2336
2348
|
# @param [Fixnum] advertiser_id
|
2337
2349
|
# Required. The ID of the advertiser this line item belongs to.
|
2338
2350
|
# @param [Google::Apis::DisplayvideoV2::GenerateDefaultLineItemRequest] generate_default_line_item_request_object
|
@@ -2472,7 +2484,8 @@ module Google
|
|
2472
2484
|
# Requests to this endpoint cannot be made concurrently with the following
|
2473
2485
|
# requests updating the same line item: * BulkEditAssignedTargetingOptions *
|
2474
2486
|
# BulkUpdateLineItems * assignedTargetingOptions.create *
|
2475
|
-
# assignedTargetingOptions.delete
|
2487
|
+
# assignedTargetingOptions.delete YouTube & Partners line items cannot be
|
2488
|
+
# created or updated using the API.
|
2476
2489
|
# @param [Fixnum] advertiser_id
|
2477
2490
|
# Output only. The unique ID of the advertiser the line item belongs to.
|
2478
2491
|
# @param [Fixnum] line_item_id
|
@@ -2515,7 +2528,8 @@ module Google
|
|
2515
2528
|
# option if successful. Requests to this endpoint cannot be made concurrently
|
2516
2529
|
# with the following requests updating the same line item: * lineItems.
|
2517
2530
|
# bulkEditAssignedTargetingOptions * lineItems.bulkUpdate * lineItems.patch *
|
2518
|
-
# DeleteLineItemAssignedTargetingOption
|
2531
|
+
# DeleteLineItemAssignedTargetingOption YouTube & Partners line items cannot be
|
2532
|
+
# created or updated using the API.
|
2519
2533
|
# @param [Fixnum] advertiser_id
|
2520
2534
|
# Required. The ID of the advertiser the line item belongs to.
|
2521
2535
|
# @param [Fixnum] line_item_id
|
@@ -2582,7 +2596,8 @@ module Google
|
|
2582
2596
|
# Deletes an assigned targeting option from a line item. Requests to this
|
2583
2597
|
# endpoint cannot be made concurrently with the following requests updating the
|
2584
2598
|
# same line item: * lineItems.bulkEditAssignedTargetingOptions * lineItems.
|
2585
|
-
# bulkUpdate * lineItems.patch * CreateLineItemAssignedTargetingOption
|
2599
|
+
# bulkUpdate * lineItems.patch * CreateLineItemAssignedTargetingOption YouTube &
|
2600
|
+
# Partners line items cannot be created or updated using the API.
|
2586
2601
|
# @param [Fixnum] advertiser_id
|
2587
2602
|
# Required. The ID of the advertiser the line item belongs to.
|
2588
2603
|
# @param [Fixnum] line_item_id
|
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.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
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_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.29.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: []
|
@@ -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 V2
|