google-apis-doubleclickbidmanager_v2 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: d67dedc5583479b1fa0ae15878598766d6147e1c9106b62731c91dee92b3acaa
|
4
|
+
data.tar.gz: 873f8e9aa950b951f87571ba30b48259aaf5ccebce0d754edf8805e9c32f6c8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bb17a122e05afb0b8452e7186da17f2a7b378e9ad6d97cc05c931e6c7699ba982ff6dcc99105790e8059fe48180059258620d54569b20693c5a882bc78d0ba1
|
7
|
+
data.tar.gz: 60ffb01b3039986ad60d9c68486694911829f6cabd9a8912ff293c8afedeaeda0664ccf401b55374480ac9dd08e942f584b4854f530f8a1fb4e7b07b41c23930
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-doubleclickbidmanager_v2
|
2
2
|
|
3
|
+
### v0.14.0 (2024-08-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240731
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.13.0 (2024-05-19)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.15.0
|
@@ -22,7 +22,7 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DoubleclickbidmanagerV2
|
24
24
|
|
25
|
-
#
|
25
|
+
# The date range to be reported on.
|
26
26
|
class DataRange
|
27
27
|
include Google::Apis::Core::Hashable
|
28
28
|
|
@@ -50,7 +50,9 @@ module Google
|
|
50
50
|
# @return [Google::Apis::DoubleclickbidmanagerV2::Date]
|
51
51
|
attr_accessor :custom_start_date
|
52
52
|
|
53
|
-
#
|
53
|
+
# The preset date range to be reported on. If `CUSTOM_DATES` is assigned to this
|
54
|
+
# field, fields custom_start_date and custom_end_date must be set to specify the
|
55
|
+
# custom date range.
|
54
56
|
# Corresponds to the JSON property `range`
|
55
57
|
# @return [String]
|
56
58
|
attr_accessor :range
|
@@ -108,16 +110,17 @@ module Google
|
|
108
110
|
end
|
109
111
|
end
|
110
112
|
|
111
|
-
#
|
113
|
+
# Represents a single filter rule.
|
112
114
|
class FilterPair
|
113
115
|
include Google::Apis::Core::Hashable
|
114
116
|
|
115
|
-
#
|
117
|
+
# The type of value to filter by. Defined by a [Filter](/bid-manager/reference/
|
118
|
+
# rest/v2/filters-metrics#filters) value.
|
116
119
|
# Corresponds to the JSON property `type`
|
117
120
|
# @return [String]
|
118
121
|
attr_accessor :type
|
119
122
|
|
120
|
-
#
|
123
|
+
# The identifying value to filter by, such as a relevant resource ID.
|
121
124
|
# Corresponds to the JSON property `value`
|
122
125
|
# @return [String]
|
123
126
|
attr_accessor :value
|
@@ -137,13 +140,14 @@ module Google
|
|
137
140
|
class ListQueriesResponse
|
138
141
|
include Google::Apis::Core::Hashable
|
139
142
|
|
140
|
-
# A token
|
141
|
-
#
|
143
|
+
# A token to retrieve the next page of results. Pass this value in the
|
144
|
+
# page_token field in the subsequent call to `queries.list` method to retrieve
|
145
|
+
# the next page of results.
|
142
146
|
# Corresponds to the JSON property `nextPageToken`
|
143
147
|
# @return [String]
|
144
148
|
attr_accessor :next_page_token
|
145
149
|
|
146
|
-
# The list of queries.
|
150
|
+
# The list of queries. This field will be absent if empty.
|
147
151
|
# Corresponds to the JSON property `queries`
|
148
152
|
# @return [Array<Google::Apis::DoubleclickbidmanagerV2::Query>]
|
149
153
|
attr_accessor :queries
|
@@ -163,13 +167,14 @@ module Google
|
|
163
167
|
class ListReportsResponse
|
164
168
|
include Google::Apis::Core::Hashable
|
165
169
|
|
166
|
-
# A token
|
167
|
-
#
|
170
|
+
# A token to retrieve the next page of results. Pass this value in the
|
171
|
+
# page_token field in the subsequent call to `queries.reports.list` method to
|
172
|
+
# retrieve the next page of results.
|
168
173
|
# Corresponds to the JSON property `nextPageToken`
|
169
174
|
# @return [String]
|
170
175
|
attr_accessor :next_page_token
|
171
176
|
|
172
|
-
#
|
177
|
+
# The list of reports. This field will be absent if empty.
|
173
178
|
# Corresponds to the JSON property `reports`
|
174
179
|
# @return [Array<Google::Apis::DoubleclickbidmanagerV2::Report>]
|
175
180
|
attr_accessor :reports
|
@@ -185,13 +190,13 @@ module Google
|
|
185
190
|
end
|
186
191
|
end
|
187
192
|
|
188
|
-
#
|
193
|
+
# Report parameter options.
|
189
194
|
class Options
|
190
195
|
include Google::Apis::Core::Hashable
|
191
196
|
|
192
|
-
#
|
193
|
-
#
|
194
|
-
#
|
197
|
+
# Whether to include data for audience lists specifically targeted by filtered
|
198
|
+
# line items or insertion orders. Requires the use of `FILTER_INSERTION_ORDER`
|
199
|
+
# or `FILTER_LINE_ITEM` filters.
|
195
200
|
# Corresponds to the JSON property `includeOnlyTargetedUserLists`
|
196
201
|
# @return [Boolean]
|
197
202
|
attr_accessor :include_only_targeted_user_lists
|
@@ -207,32 +212,34 @@ module Google
|
|
207
212
|
end
|
208
213
|
end
|
209
214
|
|
210
|
-
# Parameters of a
|
215
|
+
# Parameters of a generated report.
|
211
216
|
class Parameters
|
212
217
|
include Google::Apis::Core::Hashable
|
213
218
|
|
214
|
-
# Filters
|
219
|
+
# Filters to limit the scope of reported data.
|
215
220
|
# Corresponds to the JSON property `filters`
|
216
221
|
# @return [Array<Google::Apis::DoubleclickbidmanagerV2::FilterPair>]
|
217
222
|
attr_accessor :filters
|
218
223
|
|
219
|
-
#
|
224
|
+
# Dimensions by which to segment and group the data. Defined by [Filter](/bid-
|
225
|
+
# manager/reference/rest/v2/filters-metrics#filters) values.
|
220
226
|
# Corresponds to the JSON property `groupBys`
|
221
227
|
# @return [Array<String>]
|
222
228
|
attr_accessor :group_bys
|
223
229
|
|
224
|
-
# Metrics to
|
230
|
+
# Metrics to define the data populating the report. Defined by [Metric](/bid-
|
231
|
+
# manager/reference/rest/v2/filters-metrics#metrics) values.
|
225
232
|
# Corresponds to the JSON property `metrics`
|
226
233
|
# @return [Array<String>]
|
227
234
|
attr_accessor :metrics
|
228
235
|
|
229
|
-
#
|
236
|
+
# Report parameter options.
|
230
237
|
# Corresponds to the JSON property `options`
|
231
238
|
# @return [Google::Apis::DoubleclickbidmanagerV2::Options]
|
232
239
|
attr_accessor :options
|
233
240
|
|
234
|
-
# The type of the report. The type of the report
|
235
|
-
# filters, and metrics can be used.
|
241
|
+
# The type of the report. The type of the report determines the dimesions,
|
242
|
+
# filters, and metrics that can be used.
|
236
243
|
# Corresponds to the JSON property `type`
|
237
244
|
# @return [String]
|
238
245
|
attr_accessor :type
|
@@ -251,26 +258,26 @@ module Google
|
|
251
258
|
end
|
252
259
|
end
|
253
260
|
|
254
|
-
#
|
261
|
+
# A single query used to generate a report.
|
255
262
|
class Query
|
256
263
|
include Google::Apis::Core::Hashable
|
257
264
|
|
258
|
-
#
|
265
|
+
# The metadata of the query.
|
259
266
|
# Corresponds to the JSON property `metadata`
|
260
267
|
# @return [Google::Apis::DoubleclickbidmanagerV2::QueryMetadata]
|
261
268
|
attr_accessor :metadata
|
262
269
|
|
263
|
-
# Parameters of a
|
270
|
+
# Parameters of a generated report.
|
264
271
|
# Corresponds to the JSON property `params`
|
265
272
|
# @return [Google::Apis::DoubleclickbidmanagerV2::Parameters]
|
266
273
|
attr_accessor :params
|
267
274
|
|
268
|
-
# Output only.
|
275
|
+
# Output only. The unique ID of the query.
|
269
276
|
# Corresponds to the JSON property `queryId`
|
270
277
|
# @return [Fixnum]
|
271
278
|
attr_accessor :query_id
|
272
279
|
|
273
|
-
#
|
280
|
+
# Settings on when and how frequently to run a query.
|
274
281
|
# Corresponds to the JSON property `schedule`
|
275
282
|
# @return [Google::Apis::DoubleclickbidmanagerV2::QuerySchedule]
|
276
283
|
attr_accessor :schedule
|
@@ -288,34 +295,38 @@ module Google
|
|
288
295
|
end
|
289
296
|
end
|
290
297
|
|
291
|
-
#
|
298
|
+
# The metadata of the query.
|
292
299
|
class QueryMetadata
|
293
300
|
include Google::Apis::Core::Hashable
|
294
301
|
|
295
|
-
#
|
302
|
+
# The date range to be reported on.
|
296
303
|
# Corresponds to the JSON property `dataRange`
|
297
304
|
# @return [Google::Apis::DoubleclickbidmanagerV2::DataRange]
|
298
305
|
attr_accessor :data_range
|
299
306
|
|
300
|
-
#
|
307
|
+
# The format of the report generated by the query.
|
301
308
|
# Corresponds to the JSON property `format`
|
302
309
|
# @return [String]
|
303
310
|
attr_accessor :format
|
304
311
|
|
305
|
-
# Whether
|
306
|
-
# false.
|
312
|
+
# Whether an email notification is sent to the query creator when a report
|
313
|
+
# generated by the query is ready. This value is `false` by default.
|
307
314
|
# Corresponds to the JSON property `sendNotification`
|
308
315
|
# @return [Boolean]
|
309
316
|
attr_accessor :send_notification
|
310
317
|
alias_method :send_notification?, :send_notification
|
311
318
|
|
312
|
-
# List of email addresses which
|
313
|
-
#
|
319
|
+
# List of additional email addresses with which to share the query. If
|
320
|
+
# send_notification is `true`, these email addresses will receive a notification
|
321
|
+
# when a report generated by the query is ready. If these email addresses are
|
322
|
+
# connected to Display & Video 360 users, the query will be available to them in
|
323
|
+
# the Display & Video 360 interface.
|
314
324
|
# Corresponds to the JSON property `shareEmailAddress`
|
315
325
|
# @return [Array<String>]
|
316
326
|
attr_accessor :share_email_address
|
317
327
|
|
318
|
-
#
|
328
|
+
# The display name of the query. This value will be used in the file name of
|
329
|
+
# reports generated by the query.
|
319
330
|
# Corresponds to the JSON property `title`
|
320
331
|
# @return [String]
|
321
332
|
attr_accessor :title
|
@@ -334,7 +345,7 @@ module Google
|
|
334
345
|
end
|
335
346
|
end
|
336
347
|
|
337
|
-
#
|
348
|
+
# Settings on when and how frequently to run a query.
|
338
349
|
class QuerySchedule
|
339
350
|
include Google::Apis::Core::Hashable
|
340
351
|
|
@@ -350,12 +361,14 @@ module Google
|
|
350
361
|
# @return [Google::Apis::DoubleclickbidmanagerV2::Date]
|
351
362
|
attr_accessor :end_date
|
352
363
|
|
353
|
-
# How
|
364
|
+
# How frequently to run the query. If set to `ONE_TIME`, the query will only be
|
365
|
+
# run when queries.run is called.
|
354
366
|
# Corresponds to the JSON property `frequency`
|
355
367
|
# @return [String]
|
356
368
|
attr_accessor :frequency
|
357
369
|
|
358
|
-
#
|
370
|
+
# The canonical code for the timezone the query schedule is based on. Scheduled
|
371
|
+
# runs are usually conducted in the morning of a given day. Defaults to `America/
|
359
372
|
# New_York`.
|
360
373
|
# Corresponds to the JSON property `nextRunTimezoneCode`
|
361
374
|
# @return [String]
|
@@ -386,21 +399,21 @@ module Google
|
|
386
399
|
end
|
387
400
|
end
|
388
401
|
|
389
|
-
#
|
402
|
+
# A single report generated by its parent report.
|
390
403
|
class Report
|
391
404
|
include Google::Apis::Core::Hashable
|
392
405
|
|
393
|
-
#
|
406
|
+
# Identifying information of a report.
|
394
407
|
# Corresponds to the JSON property `key`
|
395
408
|
# @return [Google::Apis::DoubleclickbidmanagerV2::ReportKey]
|
396
409
|
attr_accessor :key
|
397
410
|
|
398
|
-
#
|
411
|
+
# The metadata of a report.
|
399
412
|
# Corresponds to the JSON property `metadata`
|
400
413
|
# @return [Google::Apis::DoubleclickbidmanagerV2::ReportMetadata]
|
401
414
|
attr_accessor :metadata
|
402
415
|
|
403
|
-
# Parameters of a
|
416
|
+
# Parameters of a generated report.
|
404
417
|
# Corresponds to the JSON property `params`
|
405
418
|
# @return [Google::Apis::DoubleclickbidmanagerV2::Parameters]
|
406
419
|
attr_accessor :params
|
@@ -417,16 +430,16 @@ module Google
|
|
417
430
|
end
|
418
431
|
end
|
419
432
|
|
420
|
-
#
|
433
|
+
# Identifying information of a report.
|
421
434
|
class ReportKey
|
422
435
|
include Google::Apis::Core::Hashable
|
423
436
|
|
424
|
-
# Output only.
|
437
|
+
# Output only. The unique ID of the query that generated the report.
|
425
438
|
# Corresponds to the JSON property `queryId`
|
426
439
|
# @return [Fixnum]
|
427
440
|
attr_accessor :query_id
|
428
441
|
|
429
|
-
# Output only.
|
442
|
+
# Output only. The unique ID of the report.
|
430
443
|
# Corresponds to the JSON property `reportId`
|
431
444
|
# @return [Fixnum]
|
432
445
|
attr_accessor :report_id
|
@@ -442,12 +455,12 @@ module Google
|
|
442
455
|
end
|
443
456
|
end
|
444
457
|
|
445
|
-
#
|
458
|
+
# The metadata of a report.
|
446
459
|
class ReportMetadata
|
447
460
|
include Google::Apis::Core::Hashable
|
448
461
|
|
449
|
-
# Output only. The
|
450
|
-
# is
|
462
|
+
# Output only. The location of the generated report file in Google Cloud Storage.
|
463
|
+
# This field will be absent if status.state is not `DONE`.
|
451
464
|
# Corresponds to the JSON property `googleCloudStoragePath`
|
452
465
|
# @return [String]
|
453
466
|
attr_accessor :google_cloud_storage_path
|
@@ -476,7 +489,7 @@ module Google
|
|
476
489
|
# @return [Google::Apis::DoubleclickbidmanagerV2::Date]
|
477
490
|
attr_accessor :report_data_start_date
|
478
491
|
|
479
|
-
#
|
492
|
+
# The status of a report.
|
480
493
|
# Corresponds to the JSON property `status`
|
481
494
|
# @return [Google::Apis::DoubleclickbidmanagerV2::ReportStatus]
|
482
495
|
attr_accessor :status
|
@@ -494,21 +507,22 @@ module Google
|
|
494
507
|
end
|
495
508
|
end
|
496
509
|
|
497
|
-
#
|
510
|
+
# The status of a report.
|
498
511
|
class ReportStatus
|
499
512
|
include Google::Apis::Core::Hashable
|
500
513
|
|
501
|
-
# Output only. The
|
514
|
+
# Output only. The timestamp of when report generation finished successfully or
|
515
|
+
# in failure. This field will not be set unless state is `DONE` or `FAILED`.
|
502
516
|
# Corresponds to the JSON property `finishTime`
|
503
517
|
# @return [String]
|
504
518
|
attr_accessor :finish_time
|
505
519
|
|
506
|
-
# The
|
520
|
+
# The format of the generated report file.
|
507
521
|
# Corresponds to the JSON property `format`
|
508
522
|
# @return [String]
|
509
523
|
attr_accessor :format
|
510
524
|
|
511
|
-
# Output only. The state of the report.
|
525
|
+
# Output only. The state of the report generation.
|
512
526
|
# Corresponds to the JSON property `state`
|
513
527
|
# @return [String]
|
514
528
|
attr_accessor :state
|
@@ -525,11 +539,11 @@ module Google
|
|
525
539
|
end
|
526
540
|
end
|
527
541
|
|
528
|
-
#
|
542
|
+
# Details specifying how to run a query.
|
529
543
|
class RunQueryRequest
|
530
544
|
include Google::Apis::Core::Hashable
|
531
545
|
|
532
|
-
#
|
546
|
+
# The date range to be reported on.
|
533
547
|
# Corresponds to the JSON property `dataRange`
|
534
548
|
# @return [Google::Apis::DoubleclickbidmanagerV2::DataRange]
|
535
549
|
attr_accessor :data_range
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DoubleclickbidmanagerV2
|
18
18
|
# Version of the google-apis-doubleclickbidmanager_v2 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
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240731"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,7 +52,7 @@ module Google
|
|
52
52
|
@batch_path = 'batch'
|
53
53
|
end
|
54
54
|
|
55
|
-
# Creates a query.
|
55
|
+
# Creates a new query.
|
56
56
|
# @param [Google::Apis::DoubleclickbidmanagerV2::Query] query_object
|
57
57
|
# @param [String] fields
|
58
58
|
# Selector specifying which fields to include in a partial response.
|
@@ -82,9 +82,9 @@ module Google
|
|
82
82
|
execute_or_queue_command(command, &block)
|
83
83
|
end
|
84
84
|
|
85
|
-
# Deletes
|
85
|
+
# Deletes an existing query as well as its generated reports.
|
86
86
|
# @param [Fixnum] query_id
|
87
|
-
# Required. ID of query to delete.
|
87
|
+
# Required. The ID of the query to delete.
|
88
88
|
# @param [String] fields
|
89
89
|
# Selector specifying which fields to include in a partial response.
|
90
90
|
# @param [String] quota_user
|
@@ -112,7 +112,7 @@ module Google
|
|
112
112
|
|
113
113
|
# Retrieves a query.
|
114
114
|
# @param [Fixnum] query_id
|
115
|
-
# Required. ID of query to retrieve.
|
115
|
+
# Required. The ID of the query to retrieve.
|
116
116
|
# @param [String] fields
|
117
117
|
# Selector specifying which fields to include in a partial response.
|
118
118
|
# @param [String] quota_user
|
@@ -142,16 +142,17 @@ module Google
|
|
142
142
|
|
143
143
|
# Lists queries created by the current user.
|
144
144
|
# @param [String] order_by
|
145
|
-
#
|
146
|
-
#
|
147
|
-
#
|
148
|
-
# queryId
|
145
|
+
# Field to sort the list by. Accepts the following values: * `queryId` (default)
|
146
|
+
# * `metadata.title` The default sorting order is ascending. To specify
|
147
|
+
# descending order for a field, add the suffix `desc` to the field name. For
|
148
|
+
# example, `queryId desc`.
|
149
149
|
# @param [Fixnum] page_size
|
150
150
|
# Maximum number of results per page. Must be between `1` and `100`. Defaults to
|
151
151
|
# `100` if unspecified.
|
152
152
|
# @param [String] page_token
|
153
|
-
# A
|
154
|
-
#
|
153
|
+
# A token identifying which page of results the server should return. Typically,
|
154
|
+
# this is the value of nextPageToken, returned from the previous call to the `
|
155
|
+
# queries.list` method. If unspecified, the first page of results is returned.
|
155
156
|
# @param [String] fields
|
156
157
|
# Selector specifying which fields to include in a partial response.
|
157
158
|
# @param [String] quota_user
|
@@ -181,14 +182,14 @@ module Google
|
|
181
182
|
execute_or_queue_command(command, &block)
|
182
183
|
end
|
183
184
|
|
184
|
-
# Runs
|
185
|
+
# Runs an existing query to generate a report.
|
185
186
|
# @param [Fixnum] query_id
|
186
|
-
# Required. ID of query to run.
|
187
|
+
# Required. The ID of the query to run.
|
187
188
|
# @param [Google::Apis::DoubleclickbidmanagerV2::RunQueryRequest] run_query_request_object
|
188
189
|
# @param [Boolean] synchronous
|
189
|
-
# Whether the query should be run synchronously. When true
|
190
|
-
# return until the
|
191
|
-
#
|
190
|
+
# Whether the query should be run synchronously. When `true`, the request won't
|
191
|
+
# return until the resulting report has finished running. This parameter is `
|
192
|
+
# false` by default. Setting this parameter to `true` is **not recommended**.
|
192
193
|
# @param [String] fields
|
193
194
|
# Selector specifying which fields to include in a partial response.
|
194
195
|
# @param [String] quota_user
|
@@ -221,9 +222,9 @@ module Google
|
|
221
222
|
|
222
223
|
# Retrieves a report.
|
223
224
|
# @param [Fixnum] query_id
|
224
|
-
# Required. ID of the query the report
|
225
|
+
# Required. The ID of the query that generated the report.
|
225
226
|
# @param [Fixnum] report_id
|
226
|
-
# Required. ID of the
|
227
|
+
# Required. The ID of the query to retrieve.
|
227
228
|
# @param [String] fields
|
228
229
|
# Selector specifying which fields to include in a partial response.
|
229
230
|
# @param [String] quota_user
|
@@ -252,20 +253,22 @@ module Google
|
|
252
253
|
execute_or_queue_command(command, &block)
|
253
254
|
end
|
254
255
|
|
255
|
-
# Lists reports
|
256
|
+
# Lists reports generated by the provided query.
|
256
257
|
# @param [Fixnum] query_id
|
257
|
-
# Required. ID of the query
|
258
|
+
# Required. The ID of the query that generated the reports.
|
258
259
|
# @param [String] order_by
|
259
|
-
#
|
260
|
-
#
|
261
|
-
#
|
262
|
-
# reportId
|
260
|
+
# Field to sort the list by. Accepts the following values: * `key.reportId` (
|
261
|
+
# default) The default sorting order is ascending. To specify descending order
|
262
|
+
# for a field, add the suffix `desc` to the field name. For example, `key.
|
263
|
+
# reportId desc`.
|
263
264
|
# @param [Fixnum] page_size
|
264
265
|
# Maximum number of results per page. Must be between `1` and `100`. Defaults to
|
265
266
|
# `100` if unspecified.
|
266
267
|
# @param [String] page_token
|
267
|
-
# A
|
268
|
-
#
|
268
|
+
# A token identifying which page of results the server should return. Typically,
|
269
|
+
# this is the value of nextPageToken returned from the previous call to the `
|
270
|
+
# queries.reports.list` method. If unspecified, the first page of results is
|
271
|
+
# returned.
|
269
272
|
# @param [String] fields
|
270
273
|
# Selector specifying which fields to include in a partial response.
|
271
274
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-doubleclickbidmanager_v2
|
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: 2024-
|
11
|
+
date: 2024-08-11 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-doubleclickbidmanager_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-doubleclickbidmanager_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-doubleclickbidmanager_v2/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-doubleclickbidmanager_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|