google-apis-displayvideo_v3 0.34.0 → 0.36.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: 02b10a2d5e81c9aa6d2731f09c14439ffa568d5aeb60e6cd4385bfdd971e86d8
|
|
4
|
+
data.tar.gz: 7402d448bdcda1f1e361ab17d4f7312384991b39cb27e5e32e38c59ef5ca6bc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5d86382f1fe912b022e946a24253a1f81f4cc7c458754719d8f7b246d92463388d8df3f1b91cad9879dfa78b53c511487fef2c77a1459a016b0560aa1639c59
|
|
7
|
+
data.tar.gz: ab3db783ee7b0a7e39669b257ee0b07dd9c2db4ae2f5cb6eb747fc7e7dc83689a33fa79a95c96764bd2ed9e8b177a94055f6d2e609eebb453e208bf5b88f2875
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-displayvideo_v3
|
|
2
2
|
|
|
3
|
+
### v0.36.0 (2025-11-02)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251027
|
|
6
|
+
|
|
7
|
+
### v0.35.0 (2025-10-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251023
|
|
10
|
+
|
|
3
11
|
### v0.34.0 (2025-09-28)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250925
|
|
@@ -159,11 +159,19 @@ module Google
|
|
|
159
159
|
# @return [Fixnum]
|
|
160
160
|
attr_accessor :ad_group_ad_id
|
|
161
161
|
|
|
162
|
-
# The unique ID of the ad group that the ad belongs to.
|
|
162
|
+
# The unique ID of the ad group that the ad belongs to. *Caution*: Parent ad
|
|
163
|
+
# groups for Demand Gen ads are not currently retrieveable using `advertisers.
|
|
164
|
+
# adGroups.list` or `advertisers.adGroups.get`. Demand Gen ads can be identified
|
|
165
|
+
# by the absence of the `ad_details` union field.
|
|
163
166
|
# Corresponds to the JSON property `adGroupId`
|
|
164
167
|
# @return [Fixnum]
|
|
165
168
|
attr_accessor :ad_group_id
|
|
166
169
|
|
|
170
|
+
# A single ad policy associated with an ad group ad.
|
|
171
|
+
# Corresponds to the JSON property `adPolicy`
|
|
172
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicy]
|
|
173
|
+
attr_accessor :ad_policy
|
|
174
|
+
|
|
167
175
|
# List of URLs used by the ad.
|
|
168
176
|
# Corresponds to the JSON property `adUrls`
|
|
169
177
|
# @return [Array<Google::Apis::DisplayvideoV3::AdUrl>]
|
|
@@ -238,6 +246,7 @@ module Google
|
|
|
238
246
|
def update!(**args)
|
|
239
247
|
@ad_group_ad_id = args[:ad_group_ad_id] if args.key?(:ad_group_ad_id)
|
|
240
248
|
@ad_group_id = args[:ad_group_id] if args.key?(:ad_group_id)
|
|
249
|
+
@ad_policy = args[:ad_policy] if args.key?(:ad_policy)
|
|
241
250
|
@ad_urls = args[:ad_urls] if args.key?(:ad_urls)
|
|
242
251
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
|
243
252
|
@audio_ad = args[:audio_ad] if args.key?(:audio_ad)
|
|
@@ -281,6 +290,665 @@ module Google
|
|
|
281
290
|
end
|
|
282
291
|
end
|
|
283
292
|
|
|
293
|
+
# A single ad policy associated with an ad group ad.
|
|
294
|
+
class AdPolicy
|
|
295
|
+
include Google::Apis::Core::Hashable
|
|
296
|
+
|
|
297
|
+
# The policy approval status of an ad, indicating the approval decision.
|
|
298
|
+
# Corresponds to the JSON property `adPolicyApprovalStatus`
|
|
299
|
+
# @return [String]
|
|
300
|
+
attr_accessor :ad_policy_approval_status
|
|
301
|
+
|
|
302
|
+
# The policy review status of an ad, indicating where in the review process the
|
|
303
|
+
# ad is currently.
|
|
304
|
+
# Corresponds to the JSON property `adPolicyReviewStatus`
|
|
305
|
+
# @return [String]
|
|
306
|
+
attr_accessor :ad_policy_review_status
|
|
307
|
+
|
|
308
|
+
# The entries for each policy topic identified as relating to the ad. Each entry
|
|
309
|
+
# includes the topic, restriction level, and guidance on how to fix policy
|
|
310
|
+
# issues.
|
|
311
|
+
# Corresponds to the JSON property `adPolicyTopicEntry`
|
|
312
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyTopicEntry>]
|
|
313
|
+
attr_accessor :ad_policy_topic_entry
|
|
314
|
+
|
|
315
|
+
def initialize(**args)
|
|
316
|
+
update!(**args)
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
# Update properties of this object
|
|
320
|
+
def update!(**args)
|
|
321
|
+
@ad_policy_approval_status = args[:ad_policy_approval_status] if args.key?(:ad_policy_approval_status)
|
|
322
|
+
@ad_policy_review_status = args[:ad_policy_review_status] if args.key?(:ad_policy_review_status)
|
|
323
|
+
@ad_policy_topic_entry = args[:ad_policy_topic_entry] if args.key?(:ad_policy_topic_entry)
|
|
324
|
+
end
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
# Represents a country restriction.
|
|
328
|
+
class AdPolicyCriterionRestriction
|
|
329
|
+
include Google::Apis::Core::Hashable
|
|
330
|
+
|
|
331
|
+
# The country criterion id.
|
|
332
|
+
# Corresponds to the JSON property `countryCriterionId`
|
|
333
|
+
# @return [Fixnum]
|
|
334
|
+
attr_accessor :country_criterion_id
|
|
335
|
+
|
|
336
|
+
# Localized name for the country. May be empty.
|
|
337
|
+
# Corresponds to the JSON property `countryLabel`
|
|
338
|
+
# @return [String]
|
|
339
|
+
attr_accessor :country_label
|
|
340
|
+
|
|
341
|
+
def initialize(**args)
|
|
342
|
+
update!(**args)
|
|
343
|
+
end
|
|
344
|
+
|
|
345
|
+
# Update properties of this object
|
|
346
|
+
def update!(**args)
|
|
347
|
+
@country_criterion_id = args[:country_criterion_id] if args.key?(:country_criterion_id)
|
|
348
|
+
@country_label = args[:country_label] if args.key?(:country_label)
|
|
349
|
+
end
|
|
350
|
+
end
|
|
351
|
+
|
|
352
|
+
# Information on how to appeal a policy decision.
|
|
353
|
+
class AdPolicyTopicAppealInfo
|
|
354
|
+
include Google::Apis::Core::Hashable
|
|
355
|
+
|
|
356
|
+
# Only available when appeal_type is `APPEAL_FORM`.
|
|
357
|
+
# Corresponds to the JSON property `appealFormLink`
|
|
358
|
+
# @return [String]
|
|
359
|
+
attr_accessor :appeal_form_link
|
|
360
|
+
|
|
361
|
+
# Whether the decision can be appealed through a self-service appeal or an
|
|
362
|
+
# appeal form.
|
|
363
|
+
# Corresponds to the JSON property `appealType`
|
|
364
|
+
# @return [String]
|
|
365
|
+
attr_accessor :appeal_type
|
|
366
|
+
|
|
367
|
+
def initialize(**args)
|
|
368
|
+
update!(**args)
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
# Update properties of this object
|
|
372
|
+
def update!(**args)
|
|
373
|
+
@appeal_form_link = args[:appeal_form_link] if args.key?(:appeal_form_link)
|
|
374
|
+
@appeal_type = args[:appeal_type] if args.key?(:appeal_type)
|
|
375
|
+
end
|
|
376
|
+
end
|
|
377
|
+
|
|
378
|
+
# Details on ad serving constraints.
|
|
379
|
+
class AdPolicyTopicConstraint
|
|
380
|
+
include Google::Apis::Core::Hashable
|
|
381
|
+
|
|
382
|
+
# A list of countries where the ad cannot serve due to policy constraints.
|
|
383
|
+
# Corresponds to the JSON property `certificateDomainMismatchCountryList`
|
|
384
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList]
|
|
385
|
+
attr_accessor :certificate_domain_mismatch_country_list
|
|
386
|
+
|
|
387
|
+
# A list of countries where the ad cannot serve due to policy constraints.
|
|
388
|
+
# Corresponds to the JSON property `certificateMissingCountryList`
|
|
389
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList]
|
|
390
|
+
attr_accessor :certificate_missing_country_list
|
|
391
|
+
|
|
392
|
+
# A list of countries where the ad cannot serve due to policy constraints.
|
|
393
|
+
# Corresponds to the JSON property `countryConstraint`
|
|
394
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList]
|
|
395
|
+
attr_accessor :country_constraint
|
|
396
|
+
|
|
397
|
+
# Certificate is required to serve in any country and the existing certificate
|
|
398
|
+
# does not cover the ad's domain.
|
|
399
|
+
# Corresponds to the JSON property `globalCertificateDomainMismatch`
|
|
400
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyGlobalCertificateDomainMismatchConstraint]
|
|
401
|
+
attr_accessor :global_certificate_domain_mismatch
|
|
402
|
+
|
|
403
|
+
# Certificate is required to serve in any country.
|
|
404
|
+
# Corresponds to the JSON property `globalCertificateMissing`
|
|
405
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyGlobalCertificateMissingConstraint]
|
|
406
|
+
attr_accessor :global_certificate_missing
|
|
407
|
+
|
|
408
|
+
# Link to the form to request a certificate for the constraint.
|
|
409
|
+
# Corresponds to the JSON property `requestCertificateFormLink`
|
|
410
|
+
# @return [String]
|
|
411
|
+
attr_accessor :request_certificate_form_link
|
|
412
|
+
|
|
413
|
+
# Policy topic was constrained due to disapproval of the website for reseller
|
|
414
|
+
# purposes.
|
|
415
|
+
# Corresponds to the JSON property `resellerConstraint`
|
|
416
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyResellerConstraint]
|
|
417
|
+
attr_accessor :reseller_constraint
|
|
418
|
+
|
|
419
|
+
def initialize(**args)
|
|
420
|
+
update!(**args)
|
|
421
|
+
end
|
|
422
|
+
|
|
423
|
+
# Update properties of this object
|
|
424
|
+
def update!(**args)
|
|
425
|
+
@certificate_domain_mismatch_country_list = args[:certificate_domain_mismatch_country_list] if args.key?(:certificate_domain_mismatch_country_list)
|
|
426
|
+
@certificate_missing_country_list = args[:certificate_missing_country_list] if args.key?(:certificate_missing_country_list)
|
|
427
|
+
@country_constraint = args[:country_constraint] if args.key?(:country_constraint)
|
|
428
|
+
@global_certificate_domain_mismatch = args[:global_certificate_domain_mismatch] if args.key?(:global_certificate_domain_mismatch)
|
|
429
|
+
@global_certificate_missing = args[:global_certificate_missing] if args.key?(:global_certificate_missing)
|
|
430
|
+
@request_certificate_form_link = args[:request_certificate_form_link] if args.key?(:request_certificate_form_link)
|
|
431
|
+
@reseller_constraint = args[:reseller_constraint] if args.key?(:reseller_constraint)
|
|
432
|
+
end
|
|
433
|
+
end
|
|
434
|
+
|
|
435
|
+
# A list of countries where the ad cannot serve due to policy constraints.
|
|
436
|
+
class AdPolicyTopicConstraintAdPolicyCountryConstraintList
|
|
437
|
+
include Google::Apis::Core::Hashable
|
|
438
|
+
|
|
439
|
+
# Countries where the ad cannot serve.
|
|
440
|
+
# Corresponds to the JSON property `countries`
|
|
441
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction>]
|
|
442
|
+
attr_accessor :countries
|
|
443
|
+
|
|
444
|
+
def initialize(**args)
|
|
445
|
+
update!(**args)
|
|
446
|
+
end
|
|
447
|
+
|
|
448
|
+
# Update properties of this object
|
|
449
|
+
def update!(**args)
|
|
450
|
+
@countries = args[:countries] if args.key?(:countries)
|
|
451
|
+
end
|
|
452
|
+
end
|
|
453
|
+
|
|
454
|
+
# Certificate is required to serve in any country and the existing certificate
|
|
455
|
+
# does not cover the ad's domain.
|
|
456
|
+
class AdPolicyTopicConstraintAdPolicyGlobalCertificateDomainMismatchConstraint
|
|
457
|
+
include Google::Apis::Core::Hashable
|
|
458
|
+
|
|
459
|
+
def initialize(**args)
|
|
460
|
+
update!(**args)
|
|
461
|
+
end
|
|
462
|
+
|
|
463
|
+
# Update properties of this object
|
|
464
|
+
def update!(**args)
|
|
465
|
+
end
|
|
466
|
+
end
|
|
467
|
+
|
|
468
|
+
# Certificate is required to serve in any country.
|
|
469
|
+
class AdPolicyTopicConstraintAdPolicyGlobalCertificateMissingConstraint
|
|
470
|
+
include Google::Apis::Core::Hashable
|
|
471
|
+
|
|
472
|
+
def initialize(**args)
|
|
473
|
+
update!(**args)
|
|
474
|
+
end
|
|
475
|
+
|
|
476
|
+
# Update properties of this object
|
|
477
|
+
def update!(**args)
|
|
478
|
+
end
|
|
479
|
+
end
|
|
480
|
+
|
|
481
|
+
# Policy topic was constrained due to disapproval of the website for reseller
|
|
482
|
+
# purposes.
|
|
483
|
+
class AdPolicyTopicConstraintAdPolicyResellerConstraint
|
|
484
|
+
include Google::Apis::Core::Hashable
|
|
485
|
+
|
|
486
|
+
def initialize(**args)
|
|
487
|
+
update!(**args)
|
|
488
|
+
end
|
|
489
|
+
|
|
490
|
+
# Update properties of this object
|
|
491
|
+
def update!(**args)
|
|
492
|
+
end
|
|
493
|
+
end
|
|
494
|
+
|
|
495
|
+
# An entry describing how an ad has been identified as relating to an ad policy.
|
|
496
|
+
class AdPolicyTopicEntry
|
|
497
|
+
include Google::Apis::Core::Hashable
|
|
498
|
+
|
|
499
|
+
# Information on how to appeal a policy decision.
|
|
500
|
+
# Corresponds to the JSON property `appealInfo`
|
|
501
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicAppealInfo]
|
|
502
|
+
attr_accessor :appeal_info
|
|
503
|
+
|
|
504
|
+
# Ad policy help center link for the policy topic.
|
|
505
|
+
# Corresponds to the JSON property `helpCenterLink`
|
|
506
|
+
# @return [String]
|
|
507
|
+
attr_accessor :help_center_link
|
|
508
|
+
|
|
509
|
+
# The source of the policy decision.
|
|
510
|
+
# Corresponds to the JSON property `policyDecisionType`
|
|
511
|
+
# @return [String]
|
|
512
|
+
attr_accessor :policy_decision_type
|
|
513
|
+
|
|
514
|
+
# The policy enforcement means used in the policy review.
|
|
515
|
+
# Corresponds to the JSON property `policyEnforcementMeans`
|
|
516
|
+
# @return [String]
|
|
517
|
+
attr_accessor :policy_enforcement_means
|
|
518
|
+
|
|
519
|
+
# Localized label text for policy. Examples include "Trademarks in text", "
|
|
520
|
+
# Contains Alcohol", etc.
|
|
521
|
+
# Corresponds to the JSON property `policyLabel`
|
|
522
|
+
# @return [String]
|
|
523
|
+
attr_accessor :policy_label
|
|
524
|
+
|
|
525
|
+
# The policy topic. Examples include "TRADEMARKS", "ALCOHOL", etc.
|
|
526
|
+
# Corresponds to the JSON property `policyTopic`
|
|
527
|
+
# @return [String]
|
|
528
|
+
attr_accessor :policy_topic
|
|
529
|
+
|
|
530
|
+
# The serving constraints relevant to the policy decision.
|
|
531
|
+
# Corresponds to the JSON property `policyTopicConstraints`
|
|
532
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyTopicConstraint>]
|
|
533
|
+
attr_accessor :policy_topic_constraints
|
|
534
|
+
|
|
535
|
+
# A short summary description of the policy topic.
|
|
536
|
+
# Corresponds to the JSON property `policyTopicDescription`
|
|
537
|
+
# @return [String]
|
|
538
|
+
attr_accessor :policy_topic_description
|
|
539
|
+
|
|
540
|
+
# The evidence used in the policy decision.
|
|
541
|
+
# Corresponds to the JSON property `policyTopicEvidences`
|
|
542
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyTopicEvidence>]
|
|
543
|
+
attr_accessor :policy_topic_evidences
|
|
544
|
+
|
|
545
|
+
# How ad serving will be affected due to the relation to the ad policy topic.
|
|
546
|
+
# Corresponds to the JSON property `policyTopicType`
|
|
547
|
+
# @return [String]
|
|
548
|
+
attr_accessor :policy_topic_type
|
|
549
|
+
|
|
550
|
+
def initialize(**args)
|
|
551
|
+
update!(**args)
|
|
552
|
+
end
|
|
553
|
+
|
|
554
|
+
# Update properties of this object
|
|
555
|
+
def update!(**args)
|
|
556
|
+
@appeal_info = args[:appeal_info] if args.key?(:appeal_info)
|
|
557
|
+
@help_center_link = args[:help_center_link] if args.key?(:help_center_link)
|
|
558
|
+
@policy_decision_type = args[:policy_decision_type] if args.key?(:policy_decision_type)
|
|
559
|
+
@policy_enforcement_means = args[:policy_enforcement_means] if args.key?(:policy_enforcement_means)
|
|
560
|
+
@policy_label = args[:policy_label] if args.key?(:policy_label)
|
|
561
|
+
@policy_topic = args[:policy_topic] if args.key?(:policy_topic)
|
|
562
|
+
@policy_topic_constraints = args[:policy_topic_constraints] if args.key?(:policy_topic_constraints)
|
|
563
|
+
@policy_topic_description = args[:policy_topic_description] if args.key?(:policy_topic_description)
|
|
564
|
+
@policy_topic_evidences = args[:policy_topic_evidences] if args.key?(:policy_topic_evidences)
|
|
565
|
+
@policy_topic_type = args[:policy_topic_type] if args.key?(:policy_topic_type)
|
|
566
|
+
end
|
|
567
|
+
end
|
|
568
|
+
|
|
569
|
+
# Evidence information used in the policy decision.
|
|
570
|
+
class AdPolicyTopicEvidence
|
|
571
|
+
include Google::Apis::Core::Hashable
|
|
572
|
+
|
|
573
|
+
# Details on the counterfeit enforcement that caused a policy violation.
|
|
574
|
+
# Corresponds to the JSON property `counterfeit`
|
|
575
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceCounterfeit]
|
|
576
|
+
attr_accessor :counterfeit
|
|
577
|
+
|
|
578
|
+
# Details on a mismatch between destination URL types.
|
|
579
|
+
# Corresponds to the JSON property `destinationMismatch`
|
|
580
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationMismatch]
|
|
581
|
+
attr_accessor :destination_mismatch
|
|
582
|
+
|
|
583
|
+
# Details for on HTTP or DNS errors related to the ad destination.
|
|
584
|
+
# Corresponds to the JSON property `destinationNotWorking`
|
|
585
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationNotWorking]
|
|
586
|
+
attr_accessor :destination_not_working
|
|
587
|
+
|
|
588
|
+
# A list of destination text that violated the policy.
|
|
589
|
+
# Corresponds to the JSON property `destinationTextList`
|
|
590
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationTextList]
|
|
591
|
+
attr_accessor :destination_text_list
|
|
592
|
+
|
|
593
|
+
# HTTP code returned when the final URL was crawled.
|
|
594
|
+
# Corresponds to the JSON property `httpCode`
|
|
595
|
+
# @return [Fixnum]
|
|
596
|
+
attr_accessor :http_code
|
|
597
|
+
|
|
598
|
+
# The language the ad was detected to be written in. This field uses IETF
|
|
599
|
+
# language tags, such as "en-US".
|
|
600
|
+
# Corresponds to the JSON property `languageCode`
|
|
601
|
+
# @return [String]
|
|
602
|
+
attr_accessor :language_code
|
|
603
|
+
|
|
604
|
+
# Legal related regulation enforcement, either from DMCA or local legal
|
|
605
|
+
# regulation.
|
|
606
|
+
# Corresponds to the JSON property `legalRemoval`
|
|
607
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemoval]
|
|
608
|
+
attr_accessor :legal_removal
|
|
609
|
+
|
|
610
|
+
# Trust & Safety (T&S) proactive enforcement for policies meant to address
|
|
611
|
+
# regional requirements. This is considered a Google-owned investigation instead
|
|
612
|
+
# of a regulation notice since it's proactive T&S enforcement.
|
|
613
|
+
# Corresponds to the JSON property `regionalRequirements`
|
|
614
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceRegionalRequirements]
|
|
615
|
+
attr_accessor :regional_requirements
|
|
616
|
+
|
|
617
|
+
# A list of fragments of text that violated the policy.
|
|
618
|
+
# Corresponds to the JSON property `textList`
|
|
619
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceTextList]
|
|
620
|
+
attr_accessor :text_list
|
|
621
|
+
|
|
622
|
+
# Trademark terms that caused a policy violation.
|
|
623
|
+
# Corresponds to the JSON property `trademark`
|
|
624
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceTrademark]
|
|
625
|
+
attr_accessor :trademark
|
|
626
|
+
|
|
627
|
+
# A list of websites that violated the policy.
|
|
628
|
+
# Corresponds to the JSON property `websiteList`
|
|
629
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceWebsiteList]
|
|
630
|
+
attr_accessor :website_list
|
|
631
|
+
|
|
632
|
+
def initialize(**args)
|
|
633
|
+
update!(**args)
|
|
634
|
+
end
|
|
635
|
+
|
|
636
|
+
# Update properties of this object
|
|
637
|
+
def update!(**args)
|
|
638
|
+
@counterfeit = args[:counterfeit] if args.key?(:counterfeit)
|
|
639
|
+
@destination_mismatch = args[:destination_mismatch] if args.key?(:destination_mismatch)
|
|
640
|
+
@destination_not_working = args[:destination_not_working] if args.key?(:destination_not_working)
|
|
641
|
+
@destination_text_list = args[:destination_text_list] if args.key?(:destination_text_list)
|
|
642
|
+
@http_code = args[:http_code] if args.key?(:http_code)
|
|
643
|
+
@language_code = args[:language_code] if args.key?(:language_code)
|
|
644
|
+
@legal_removal = args[:legal_removal] if args.key?(:legal_removal)
|
|
645
|
+
@regional_requirements = args[:regional_requirements] if args.key?(:regional_requirements)
|
|
646
|
+
@text_list = args[:text_list] if args.key?(:text_list)
|
|
647
|
+
@trademark = args[:trademark] if args.key?(:trademark)
|
|
648
|
+
@website_list = args[:website_list] if args.key?(:website_list)
|
|
649
|
+
end
|
|
650
|
+
end
|
|
651
|
+
|
|
652
|
+
# Details on the counterfeit enforcement that caused a policy violation.
|
|
653
|
+
class AdPolicyTopicEvidenceCounterfeit
|
|
654
|
+
include Google::Apis::Core::Hashable
|
|
655
|
+
|
|
656
|
+
# The content or product owners that made a complaint.
|
|
657
|
+
# Corresponds to the JSON property `owners`
|
|
658
|
+
# @return [Array<String>]
|
|
659
|
+
attr_accessor :owners
|
|
660
|
+
|
|
661
|
+
def initialize(**args)
|
|
662
|
+
update!(**args)
|
|
663
|
+
end
|
|
664
|
+
|
|
665
|
+
# Update properties of this object
|
|
666
|
+
def update!(**args)
|
|
667
|
+
@owners = args[:owners] if args.key?(:owners)
|
|
668
|
+
end
|
|
669
|
+
end
|
|
670
|
+
|
|
671
|
+
# Details on a mismatch between destination URL types.
|
|
672
|
+
class AdPolicyTopicEvidenceDestinationMismatch
|
|
673
|
+
include Google::Apis::Core::Hashable
|
|
674
|
+
|
|
675
|
+
# The set of URLs that do not match. The list can include single or multiple uri
|
|
676
|
+
# types. Example 1: [`DISPLAY_URL`, `FINAL_URL`] means ad display URL does not
|
|
677
|
+
# match with the ad final URL. Example 2: [`FINAL_URL`] means ad final URL did
|
|
678
|
+
# not match the crawled url, which is also considered as destination mismatch.
|
|
679
|
+
# Corresponds to the JSON property `uriTypes`
|
|
680
|
+
# @return [Array<String>]
|
|
681
|
+
attr_accessor :uri_types
|
|
682
|
+
|
|
683
|
+
def initialize(**args)
|
|
684
|
+
update!(**args)
|
|
685
|
+
end
|
|
686
|
+
|
|
687
|
+
# Update properties of this object
|
|
688
|
+
def update!(**args)
|
|
689
|
+
@uri_types = args[:uri_types] if args.key?(:uri_types)
|
|
690
|
+
end
|
|
691
|
+
end
|
|
692
|
+
|
|
693
|
+
# Details for on HTTP or DNS errors related to the ad destination.
|
|
694
|
+
class AdPolicyTopicEvidenceDestinationNotWorking
|
|
695
|
+
include Google::Apis::Core::Hashable
|
|
696
|
+
|
|
697
|
+
# The device where visiting the URL resulted in the error.
|
|
698
|
+
# Corresponds to the JSON property `device`
|
|
699
|
+
# @return [String]
|
|
700
|
+
attr_accessor :device
|
|
701
|
+
|
|
702
|
+
# The type of DNS error.
|
|
703
|
+
# Corresponds to the JSON property `dnsErrorType`
|
|
704
|
+
# @return [String]
|
|
705
|
+
attr_accessor :dns_error_type
|
|
706
|
+
|
|
707
|
+
# The full URL that didn't work.
|
|
708
|
+
# Corresponds to the JSON property `expandedUri`
|
|
709
|
+
# @return [String]
|
|
710
|
+
attr_accessor :expanded_uri
|
|
711
|
+
|
|
712
|
+
# The HTTP error code.
|
|
713
|
+
# Corresponds to the JSON property `httpErrorCode`
|
|
714
|
+
# @return [Fixnum]
|
|
715
|
+
attr_accessor :http_error_code
|
|
716
|
+
|
|
717
|
+
# The last time the error was seen when navigating to URL.
|
|
718
|
+
# Corresponds to the JSON property `lastCheckedTime`
|
|
719
|
+
# @return [String]
|
|
720
|
+
attr_accessor :last_checked_time
|
|
721
|
+
|
|
722
|
+
def initialize(**args)
|
|
723
|
+
update!(**args)
|
|
724
|
+
end
|
|
725
|
+
|
|
726
|
+
# Update properties of this object
|
|
727
|
+
def update!(**args)
|
|
728
|
+
@device = args[:device] if args.key?(:device)
|
|
729
|
+
@dns_error_type = args[:dns_error_type] if args.key?(:dns_error_type)
|
|
730
|
+
@expanded_uri = args[:expanded_uri] if args.key?(:expanded_uri)
|
|
731
|
+
@http_error_code = args[:http_error_code] if args.key?(:http_error_code)
|
|
732
|
+
@last_checked_time = args[:last_checked_time] if args.key?(:last_checked_time)
|
|
733
|
+
end
|
|
734
|
+
end
|
|
735
|
+
|
|
736
|
+
# A list of destination text that violated the policy.
|
|
737
|
+
class AdPolicyTopicEvidenceDestinationTextList
|
|
738
|
+
include Google::Apis::Core::Hashable
|
|
739
|
+
|
|
740
|
+
# Destination text that caused the policy finding.
|
|
741
|
+
# Corresponds to the JSON property `destinationTexts`
|
|
742
|
+
# @return [Array<String>]
|
|
743
|
+
attr_accessor :destination_texts
|
|
744
|
+
|
|
745
|
+
def initialize(**args)
|
|
746
|
+
update!(**args)
|
|
747
|
+
end
|
|
748
|
+
|
|
749
|
+
# Update properties of this object
|
|
750
|
+
def update!(**args)
|
|
751
|
+
@destination_texts = args[:destination_texts] if args.key?(:destination_texts)
|
|
752
|
+
end
|
|
753
|
+
end
|
|
754
|
+
|
|
755
|
+
# Legal related regulation enforcement, either from DMCA or local legal
|
|
756
|
+
# regulation.
|
|
757
|
+
class AdPolicyTopicEvidenceLegalRemoval
|
|
758
|
+
include Google::Apis::Core::Hashable
|
|
759
|
+
|
|
760
|
+
# The type of complaint causing the legal removal.
|
|
761
|
+
# Corresponds to the JSON property `complaintType`
|
|
762
|
+
# @return [String]
|
|
763
|
+
attr_accessor :complaint_type
|
|
764
|
+
|
|
765
|
+
# The countries restricted due to the legal removal.
|
|
766
|
+
# Corresponds to the JSON property `countryRestrictions`
|
|
767
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction>]
|
|
768
|
+
attr_accessor :country_restrictions
|
|
769
|
+
|
|
770
|
+
# DMCA complaint details.
|
|
771
|
+
# Corresponds to the JSON property `dmca`
|
|
772
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemovalDmca]
|
|
773
|
+
attr_accessor :dmca
|
|
774
|
+
|
|
775
|
+
# Local legal regulation details.
|
|
776
|
+
# Corresponds to the JSON property `localLegal`
|
|
777
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemovalLocalLegal]
|
|
778
|
+
attr_accessor :local_legal
|
|
779
|
+
|
|
780
|
+
# The urls restricted due to the legal removal.
|
|
781
|
+
# Corresponds to the JSON property `restrictedUris`
|
|
782
|
+
# @return [Array<String>]
|
|
783
|
+
attr_accessor :restricted_uris
|
|
784
|
+
|
|
785
|
+
def initialize(**args)
|
|
786
|
+
update!(**args)
|
|
787
|
+
end
|
|
788
|
+
|
|
789
|
+
# Update properties of this object
|
|
790
|
+
def update!(**args)
|
|
791
|
+
@complaint_type = args[:complaint_type] if args.key?(:complaint_type)
|
|
792
|
+
@country_restrictions = args[:country_restrictions] if args.key?(:country_restrictions)
|
|
793
|
+
@dmca = args[:dmca] if args.key?(:dmca)
|
|
794
|
+
@local_legal = args[:local_legal] if args.key?(:local_legal)
|
|
795
|
+
@restricted_uris = args[:restricted_uris] if args.key?(:restricted_uris)
|
|
796
|
+
end
|
|
797
|
+
end
|
|
798
|
+
|
|
799
|
+
# DMCA complaint details.
|
|
800
|
+
class AdPolicyTopicEvidenceLegalRemovalDmca
|
|
801
|
+
include Google::Apis::Core::Hashable
|
|
802
|
+
|
|
803
|
+
# The entity who made the legal complaint.
|
|
804
|
+
# Corresponds to the JSON property `complainant`
|
|
805
|
+
# @return [String]
|
|
806
|
+
attr_accessor :complainant
|
|
807
|
+
|
|
808
|
+
def initialize(**args)
|
|
809
|
+
update!(**args)
|
|
810
|
+
end
|
|
811
|
+
|
|
812
|
+
# Update properties of this object
|
|
813
|
+
def update!(**args)
|
|
814
|
+
@complainant = args[:complainant] if args.key?(:complainant)
|
|
815
|
+
end
|
|
816
|
+
end
|
|
817
|
+
|
|
818
|
+
# Local legal regulation details.
|
|
819
|
+
class AdPolicyTopicEvidenceLegalRemovalLocalLegal
|
|
820
|
+
include Google::Apis::Core::Hashable
|
|
821
|
+
|
|
822
|
+
# Type of law for the legal notice.
|
|
823
|
+
# Corresponds to the JSON property `lawType`
|
|
824
|
+
# @return [String]
|
|
825
|
+
attr_accessor :law_type
|
|
826
|
+
|
|
827
|
+
def initialize(**args)
|
|
828
|
+
update!(**args)
|
|
829
|
+
end
|
|
830
|
+
|
|
831
|
+
# Update properties of this object
|
|
832
|
+
def update!(**args)
|
|
833
|
+
@law_type = args[:law_type] if args.key?(:law_type)
|
|
834
|
+
end
|
|
835
|
+
end
|
|
836
|
+
|
|
837
|
+
# Trust & Safety (T&S) proactive enforcement for policies meant to address
|
|
838
|
+
# regional requirements. This is considered a Google-owned investigation instead
|
|
839
|
+
# of a regulation notice since it's proactive T&S enforcement.
|
|
840
|
+
class AdPolicyTopicEvidenceRegionalRequirements
|
|
841
|
+
include Google::Apis::Core::Hashable
|
|
842
|
+
|
|
843
|
+
# List of regional requirements.
|
|
844
|
+
# Corresponds to the JSON property `regionalRequirementsEntries`
|
|
845
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceRegionalRequirementsRegionalRequirementsEntry>]
|
|
846
|
+
attr_accessor :regional_requirements_entries
|
|
847
|
+
|
|
848
|
+
def initialize(**args)
|
|
849
|
+
update!(**args)
|
|
850
|
+
end
|
|
851
|
+
|
|
852
|
+
# Update properties of this object
|
|
853
|
+
def update!(**args)
|
|
854
|
+
@regional_requirements_entries = args[:regional_requirements_entries] if args.key?(:regional_requirements_entries)
|
|
855
|
+
end
|
|
856
|
+
end
|
|
857
|
+
|
|
858
|
+
# Policy level regional legal violation details.
|
|
859
|
+
class AdPolicyTopicEvidenceRegionalRequirementsRegionalRequirementsEntry
|
|
860
|
+
include Google::Apis::Core::Hashable
|
|
861
|
+
|
|
862
|
+
# The countries restricted due to the legal policy.
|
|
863
|
+
# Corresponds to the JSON property `countryRestrictions`
|
|
864
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction>]
|
|
865
|
+
attr_accessor :country_restrictions
|
|
866
|
+
|
|
867
|
+
# The legal policy that is being violated.
|
|
868
|
+
# Corresponds to the JSON property `legalPolicy`
|
|
869
|
+
# @return [String]
|
|
870
|
+
attr_accessor :legal_policy
|
|
871
|
+
|
|
872
|
+
def initialize(**args)
|
|
873
|
+
update!(**args)
|
|
874
|
+
end
|
|
875
|
+
|
|
876
|
+
# Update properties of this object
|
|
877
|
+
def update!(**args)
|
|
878
|
+
@country_restrictions = args[:country_restrictions] if args.key?(:country_restrictions)
|
|
879
|
+
@legal_policy = args[:legal_policy] if args.key?(:legal_policy)
|
|
880
|
+
end
|
|
881
|
+
end
|
|
882
|
+
|
|
883
|
+
# A list of fragments of text that violated the policy.
|
|
884
|
+
class AdPolicyTopicEvidenceTextList
|
|
885
|
+
include Google::Apis::Core::Hashable
|
|
886
|
+
|
|
887
|
+
# The fragments of text from the resource that caused the policy finding.
|
|
888
|
+
# Corresponds to the JSON property `texts`
|
|
889
|
+
# @return [Array<String>]
|
|
890
|
+
attr_accessor :texts
|
|
891
|
+
|
|
892
|
+
def initialize(**args)
|
|
893
|
+
update!(**args)
|
|
894
|
+
end
|
|
895
|
+
|
|
896
|
+
# Update properties of this object
|
|
897
|
+
def update!(**args)
|
|
898
|
+
@texts = args[:texts] if args.key?(:texts)
|
|
899
|
+
end
|
|
900
|
+
end
|
|
901
|
+
|
|
902
|
+
# Trademark terms that caused a policy violation.
|
|
903
|
+
class AdPolicyTopicEvidenceTrademark
|
|
904
|
+
include Google::Apis::Core::Hashable
|
|
905
|
+
|
|
906
|
+
# Countries where the policy violation is relevant.
|
|
907
|
+
# Corresponds to the JSON property `countryRestrictions`
|
|
908
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction>]
|
|
909
|
+
attr_accessor :country_restrictions
|
|
910
|
+
|
|
911
|
+
# The trademark content owner.
|
|
912
|
+
# Corresponds to the JSON property `owner`
|
|
913
|
+
# @return [String]
|
|
914
|
+
attr_accessor :owner
|
|
915
|
+
|
|
916
|
+
# The trademark term.
|
|
917
|
+
# Corresponds to the JSON property `term`
|
|
918
|
+
# @return [String]
|
|
919
|
+
attr_accessor :term
|
|
920
|
+
|
|
921
|
+
def initialize(**args)
|
|
922
|
+
update!(**args)
|
|
923
|
+
end
|
|
924
|
+
|
|
925
|
+
# Update properties of this object
|
|
926
|
+
def update!(**args)
|
|
927
|
+
@country_restrictions = args[:country_restrictions] if args.key?(:country_restrictions)
|
|
928
|
+
@owner = args[:owner] if args.key?(:owner)
|
|
929
|
+
@term = args[:term] if args.key?(:term)
|
|
930
|
+
end
|
|
931
|
+
end
|
|
932
|
+
|
|
933
|
+
# A list of websites that violated the policy.
|
|
934
|
+
class AdPolicyTopicEvidenceWebsiteList
|
|
935
|
+
include Google::Apis::Core::Hashable
|
|
936
|
+
|
|
937
|
+
# Websites that caused the policy finding.
|
|
938
|
+
# Corresponds to the JSON property `websites`
|
|
939
|
+
# @return [Array<String>]
|
|
940
|
+
attr_accessor :websites
|
|
941
|
+
|
|
942
|
+
def initialize(**args)
|
|
943
|
+
update!(**args)
|
|
944
|
+
end
|
|
945
|
+
|
|
946
|
+
# Update properties of this object
|
|
947
|
+
def update!(**args)
|
|
948
|
+
@websites = args[:websites] if args.key?(:websites)
|
|
949
|
+
end
|
|
950
|
+
end
|
|
951
|
+
|
|
284
952
|
# Additional URLs related to the ad, including beacons.
|
|
285
953
|
class AdUrl
|
|
286
954
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DisplayvideoV3
|
|
18
18
|
# Version of the google-apis-displayvideo_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.36.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251027"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -46,6 +46,138 @@ module Google
|
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
|
47
47
|
end
|
|
48
48
|
|
|
49
|
+
class AdPolicy
|
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
|
+
|
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
class AdPolicyCriterionRestriction
|
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
57
|
+
|
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
class AdPolicyTopicAppealInfo
|
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
|
+
|
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
class AdPolicyTopicConstraint
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
class AdPolicyTopicConstraintAdPolicyCountryConstraintList
|
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
|
+
|
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
class AdPolicyTopicConstraintAdPolicyGlobalCertificateDomainMismatchConstraint
|
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
|
+
|
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
class AdPolicyTopicConstraintAdPolicyGlobalCertificateMissingConstraint
|
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
|
+
|
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
class AdPolicyTopicConstraintAdPolicyResellerConstraint
|
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
|
+
|
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
class AdPolicyTopicEntry
|
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
99
|
+
|
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
class AdPolicyTopicEvidence
|
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
105
|
+
|
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
class AdPolicyTopicEvidenceCounterfeit
|
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
111
|
+
|
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
class AdPolicyTopicEvidenceDestinationMismatch
|
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
117
|
+
|
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
class AdPolicyTopicEvidenceDestinationNotWorking
|
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
|
+
|
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
class AdPolicyTopicEvidenceDestinationTextList
|
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
|
+
|
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
class AdPolicyTopicEvidenceLegalRemoval
|
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
|
+
|
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
class AdPolicyTopicEvidenceLegalRemovalDmca
|
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
141
|
+
|
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
class AdPolicyTopicEvidenceLegalRemovalLocalLegal
|
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
147
|
+
|
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
class AdPolicyTopicEvidenceRegionalRequirements
|
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
|
+
|
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
class AdPolicyTopicEvidenceRegionalRequirementsRegionalRequirementsEntry
|
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
|
+
|
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
class AdPolicyTopicEvidenceTextList
|
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
165
|
+
|
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
class AdPolicyTopicEvidenceTrademark
|
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
|
+
|
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
class AdPolicyTopicEvidenceWebsiteList
|
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
|
+
|
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
179
|
+
end
|
|
180
|
+
|
|
49
181
|
class AdUrl
|
|
50
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
183
|
|
|
@@ -2103,6 +2235,8 @@ module Google
|
|
|
2103
2235
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2104
2236
|
property :ad_group_ad_id, :numeric_string => true, as: 'adGroupAdId'
|
|
2105
2237
|
property :ad_group_id, :numeric_string => true, as: 'adGroupId'
|
|
2238
|
+
property :ad_policy, as: 'adPolicy', class: Google::Apis::DisplayvideoV3::AdPolicy, decorator: Google::Apis::DisplayvideoV3::AdPolicy::Representation
|
|
2239
|
+
|
|
2106
2240
|
collection :ad_urls, as: 'adUrls', class: Google::Apis::DisplayvideoV3::AdUrl, decorator: Google::Apis::DisplayvideoV3::AdUrl::Representation
|
|
2107
2241
|
|
|
2108
2242
|
property :advertiser_id, :numeric_string => true, as: 'advertiserId'
|
|
@@ -2137,6 +2271,223 @@ module Google
|
|
|
2137
2271
|
end
|
|
2138
2272
|
end
|
|
2139
2273
|
|
|
2274
|
+
class AdPolicy
|
|
2275
|
+
# @private
|
|
2276
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2277
|
+
property :ad_policy_approval_status, as: 'adPolicyApprovalStatus'
|
|
2278
|
+
property :ad_policy_review_status, as: 'adPolicyReviewStatus'
|
|
2279
|
+
collection :ad_policy_topic_entry, as: 'adPolicyTopicEntry', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEntry, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEntry::Representation
|
|
2280
|
+
|
|
2281
|
+
end
|
|
2282
|
+
end
|
|
2283
|
+
|
|
2284
|
+
class AdPolicyCriterionRestriction
|
|
2285
|
+
# @private
|
|
2286
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2287
|
+
property :country_criterion_id, :numeric_string => true, as: 'countryCriterionId'
|
|
2288
|
+
property :country_label, as: 'countryLabel'
|
|
2289
|
+
end
|
|
2290
|
+
end
|
|
2291
|
+
|
|
2292
|
+
class AdPolicyTopicAppealInfo
|
|
2293
|
+
# @private
|
|
2294
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2295
|
+
property :appeal_form_link, as: 'appealFormLink'
|
|
2296
|
+
property :appeal_type, as: 'appealType'
|
|
2297
|
+
end
|
|
2298
|
+
end
|
|
2299
|
+
|
|
2300
|
+
class AdPolicyTopicConstraint
|
|
2301
|
+
# @private
|
|
2302
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2303
|
+
property :certificate_domain_mismatch_country_list, as: 'certificateDomainMismatchCountryList', class: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList::Representation
|
|
2304
|
+
|
|
2305
|
+
property :certificate_missing_country_list, as: 'certificateMissingCountryList', class: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList::Representation
|
|
2306
|
+
|
|
2307
|
+
property :country_constraint, as: 'countryConstraint', class: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList::Representation
|
|
2308
|
+
|
|
2309
|
+
property :global_certificate_domain_mismatch, as: 'globalCertificateDomainMismatch', class: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyGlobalCertificateDomainMismatchConstraint, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyGlobalCertificateDomainMismatchConstraint::Representation
|
|
2310
|
+
|
|
2311
|
+
property :global_certificate_missing, as: 'globalCertificateMissing', class: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyGlobalCertificateMissingConstraint, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyGlobalCertificateMissingConstraint::Representation
|
|
2312
|
+
|
|
2313
|
+
property :request_certificate_form_link, as: 'requestCertificateFormLink'
|
|
2314
|
+
property :reseller_constraint, as: 'resellerConstraint', class: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyResellerConstraint, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyResellerConstraint::Representation
|
|
2315
|
+
|
|
2316
|
+
end
|
|
2317
|
+
end
|
|
2318
|
+
|
|
2319
|
+
class AdPolicyTopicConstraintAdPolicyCountryConstraintList
|
|
2320
|
+
# @private
|
|
2321
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2322
|
+
collection :countries, as: 'countries', class: Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction, decorator: Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction::Representation
|
|
2323
|
+
|
|
2324
|
+
end
|
|
2325
|
+
end
|
|
2326
|
+
|
|
2327
|
+
class AdPolicyTopicConstraintAdPolicyGlobalCertificateDomainMismatchConstraint
|
|
2328
|
+
# @private
|
|
2329
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2330
|
+
end
|
|
2331
|
+
end
|
|
2332
|
+
|
|
2333
|
+
class AdPolicyTopicConstraintAdPolicyGlobalCertificateMissingConstraint
|
|
2334
|
+
# @private
|
|
2335
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2336
|
+
end
|
|
2337
|
+
end
|
|
2338
|
+
|
|
2339
|
+
class AdPolicyTopicConstraintAdPolicyResellerConstraint
|
|
2340
|
+
# @private
|
|
2341
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2342
|
+
end
|
|
2343
|
+
end
|
|
2344
|
+
|
|
2345
|
+
class AdPolicyTopicEntry
|
|
2346
|
+
# @private
|
|
2347
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2348
|
+
property :appeal_info, as: 'appealInfo', class: Google::Apis::DisplayvideoV3::AdPolicyTopicAppealInfo, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicAppealInfo::Representation
|
|
2349
|
+
|
|
2350
|
+
property :help_center_link, as: 'helpCenterLink'
|
|
2351
|
+
property :policy_decision_type, as: 'policyDecisionType'
|
|
2352
|
+
property :policy_enforcement_means, as: 'policyEnforcementMeans'
|
|
2353
|
+
property :policy_label, as: 'policyLabel'
|
|
2354
|
+
property :policy_topic, as: 'policyTopic'
|
|
2355
|
+
collection :policy_topic_constraints, as: 'policyTopicConstraints', class: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraint, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicConstraint::Representation
|
|
2356
|
+
|
|
2357
|
+
property :policy_topic_description, as: 'policyTopicDescription'
|
|
2358
|
+
collection :policy_topic_evidences, as: 'policyTopicEvidences', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidence, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidence::Representation
|
|
2359
|
+
|
|
2360
|
+
property :policy_topic_type, as: 'policyTopicType'
|
|
2361
|
+
end
|
|
2362
|
+
end
|
|
2363
|
+
|
|
2364
|
+
class AdPolicyTopicEvidence
|
|
2365
|
+
# @private
|
|
2366
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2367
|
+
property :counterfeit, as: 'counterfeit', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceCounterfeit, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceCounterfeit::Representation
|
|
2368
|
+
|
|
2369
|
+
property :destination_mismatch, as: 'destinationMismatch', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationMismatch, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationMismatch::Representation
|
|
2370
|
+
|
|
2371
|
+
property :destination_not_working, as: 'destinationNotWorking', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationNotWorking, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationNotWorking::Representation
|
|
2372
|
+
|
|
2373
|
+
property :destination_text_list, as: 'destinationTextList', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationTextList, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationTextList::Representation
|
|
2374
|
+
|
|
2375
|
+
property :http_code, as: 'httpCode'
|
|
2376
|
+
property :language_code, as: 'languageCode'
|
|
2377
|
+
property :legal_removal, as: 'legalRemoval', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemoval, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemoval::Representation
|
|
2378
|
+
|
|
2379
|
+
property :regional_requirements, as: 'regionalRequirements', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceRegionalRequirements, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceRegionalRequirements::Representation
|
|
2380
|
+
|
|
2381
|
+
property :text_list, as: 'textList', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceTextList, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceTextList::Representation
|
|
2382
|
+
|
|
2383
|
+
property :trademark, as: 'trademark', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceTrademark, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceTrademark::Representation
|
|
2384
|
+
|
|
2385
|
+
property :website_list, as: 'websiteList', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceWebsiteList, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceWebsiteList::Representation
|
|
2386
|
+
|
|
2387
|
+
end
|
|
2388
|
+
end
|
|
2389
|
+
|
|
2390
|
+
class AdPolicyTopicEvidenceCounterfeit
|
|
2391
|
+
# @private
|
|
2392
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2393
|
+
collection :owners, as: 'owners'
|
|
2394
|
+
end
|
|
2395
|
+
end
|
|
2396
|
+
|
|
2397
|
+
class AdPolicyTopicEvidenceDestinationMismatch
|
|
2398
|
+
# @private
|
|
2399
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2400
|
+
collection :uri_types, as: 'uriTypes'
|
|
2401
|
+
end
|
|
2402
|
+
end
|
|
2403
|
+
|
|
2404
|
+
class AdPolicyTopicEvidenceDestinationNotWorking
|
|
2405
|
+
# @private
|
|
2406
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2407
|
+
property :device, as: 'device'
|
|
2408
|
+
property :dns_error_type, as: 'dnsErrorType'
|
|
2409
|
+
property :expanded_uri, as: 'expandedUri'
|
|
2410
|
+
property :http_error_code, :numeric_string => true, as: 'httpErrorCode'
|
|
2411
|
+
property :last_checked_time, as: 'lastCheckedTime'
|
|
2412
|
+
end
|
|
2413
|
+
end
|
|
2414
|
+
|
|
2415
|
+
class AdPolicyTopicEvidenceDestinationTextList
|
|
2416
|
+
# @private
|
|
2417
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2418
|
+
collection :destination_texts, as: 'destinationTexts'
|
|
2419
|
+
end
|
|
2420
|
+
end
|
|
2421
|
+
|
|
2422
|
+
class AdPolicyTopicEvidenceLegalRemoval
|
|
2423
|
+
# @private
|
|
2424
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2425
|
+
property :complaint_type, as: 'complaintType'
|
|
2426
|
+
collection :country_restrictions, as: 'countryRestrictions', class: Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction, decorator: Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction::Representation
|
|
2427
|
+
|
|
2428
|
+
property :dmca, as: 'dmca', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemovalDmca, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemovalDmca::Representation
|
|
2429
|
+
|
|
2430
|
+
property :local_legal, as: 'localLegal', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemovalLocalLegal, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemovalLocalLegal::Representation
|
|
2431
|
+
|
|
2432
|
+
collection :restricted_uris, as: 'restrictedUris'
|
|
2433
|
+
end
|
|
2434
|
+
end
|
|
2435
|
+
|
|
2436
|
+
class AdPolicyTopicEvidenceLegalRemovalDmca
|
|
2437
|
+
# @private
|
|
2438
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2439
|
+
property :complainant, as: 'complainant'
|
|
2440
|
+
end
|
|
2441
|
+
end
|
|
2442
|
+
|
|
2443
|
+
class AdPolicyTopicEvidenceLegalRemovalLocalLegal
|
|
2444
|
+
# @private
|
|
2445
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2446
|
+
property :law_type, as: 'lawType'
|
|
2447
|
+
end
|
|
2448
|
+
end
|
|
2449
|
+
|
|
2450
|
+
class AdPolicyTopicEvidenceRegionalRequirements
|
|
2451
|
+
# @private
|
|
2452
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2453
|
+
collection :regional_requirements_entries, as: 'regionalRequirementsEntries', class: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceRegionalRequirementsRegionalRequirementsEntry, decorator: Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceRegionalRequirementsRegionalRequirementsEntry::Representation
|
|
2454
|
+
|
|
2455
|
+
end
|
|
2456
|
+
end
|
|
2457
|
+
|
|
2458
|
+
class AdPolicyTopicEvidenceRegionalRequirementsRegionalRequirementsEntry
|
|
2459
|
+
# @private
|
|
2460
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2461
|
+
collection :country_restrictions, as: 'countryRestrictions', class: Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction, decorator: Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction::Representation
|
|
2462
|
+
|
|
2463
|
+
property :legal_policy, as: 'legalPolicy'
|
|
2464
|
+
end
|
|
2465
|
+
end
|
|
2466
|
+
|
|
2467
|
+
class AdPolicyTopicEvidenceTextList
|
|
2468
|
+
# @private
|
|
2469
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2470
|
+
collection :texts, as: 'texts'
|
|
2471
|
+
end
|
|
2472
|
+
end
|
|
2473
|
+
|
|
2474
|
+
class AdPolicyTopicEvidenceTrademark
|
|
2475
|
+
# @private
|
|
2476
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2477
|
+
collection :country_restrictions, as: 'countryRestrictions', class: Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction, decorator: Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction::Representation
|
|
2478
|
+
|
|
2479
|
+
property :owner, as: 'owner'
|
|
2480
|
+
property :term, as: 'term'
|
|
2481
|
+
end
|
|
2482
|
+
end
|
|
2483
|
+
|
|
2484
|
+
class AdPolicyTopicEvidenceWebsiteList
|
|
2485
|
+
# @private
|
|
2486
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2487
|
+
collection :websites, as: 'websites'
|
|
2488
|
+
end
|
|
2489
|
+
end
|
|
2490
|
+
|
|
2140
2491
|
class AdUrl
|
|
2141
2492
|
# @private
|
|
2142
2493
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-displayvideo_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.36.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.36.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|