google-apis-displayvideo_v3 0.34.0 → 0.35.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: db580b1805bfdc63b0905ecae917bc74aa0dc661e9f58e753ddbd03e84366f6e
|
|
4
|
+
data.tar.gz: 7fe6b22bf192bec5719750d20884acbe2b3bbe30f8bca48b6299411831a9ba86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57fcfe715df963083aa863d128491b21360487f7c142000ac89fd3d6293490158e1904eb7a7e6d71a87ca95ad54f7e9f484f4fa773e5f44fc1c7b5b2098d784d
|
|
7
|
+
data.tar.gz: 81e61317aaee00826b68c7b3050188012bf709826748d498a8ca27340616c32cbb9d252dfe38c295cbfc613b14adf8dff87a112c1d33c2bc0c2870ddb5ef2b75
|
data/CHANGELOG.md
CHANGED
|
@@ -164,6 +164,11 @@ module Google
|
|
|
164
164
|
# @return [Fixnum]
|
|
165
165
|
attr_accessor :ad_group_id
|
|
166
166
|
|
|
167
|
+
# A single ad policy associated with an ad group ad.
|
|
168
|
+
# Corresponds to the JSON property `adPolicy`
|
|
169
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicy]
|
|
170
|
+
attr_accessor :ad_policy
|
|
171
|
+
|
|
167
172
|
# List of URLs used by the ad.
|
|
168
173
|
# Corresponds to the JSON property `adUrls`
|
|
169
174
|
# @return [Array<Google::Apis::DisplayvideoV3::AdUrl>]
|
|
@@ -238,6 +243,7 @@ module Google
|
|
|
238
243
|
def update!(**args)
|
|
239
244
|
@ad_group_ad_id = args[:ad_group_ad_id] if args.key?(:ad_group_ad_id)
|
|
240
245
|
@ad_group_id = args[:ad_group_id] if args.key?(:ad_group_id)
|
|
246
|
+
@ad_policy = args[:ad_policy] if args.key?(:ad_policy)
|
|
241
247
|
@ad_urls = args[:ad_urls] if args.key?(:ad_urls)
|
|
242
248
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
|
243
249
|
@audio_ad = args[:audio_ad] if args.key?(:audio_ad)
|
|
@@ -281,6 +287,664 @@ module Google
|
|
|
281
287
|
end
|
|
282
288
|
end
|
|
283
289
|
|
|
290
|
+
# A single ad policy associated with an ad group ad.
|
|
291
|
+
class AdPolicy
|
|
292
|
+
include Google::Apis::Core::Hashable
|
|
293
|
+
|
|
294
|
+
# The policy approval status of an ad. Indicating the ad policy approval
|
|
295
|
+
# decision.
|
|
296
|
+
# Corresponds to the JSON property `adPolicyApprovalStatus`
|
|
297
|
+
# @return [String]
|
|
298
|
+
attr_accessor :ad_policy_approval_status
|
|
299
|
+
|
|
300
|
+
# The policy review status of an ad. Indicating where the review process the ad
|
|
301
|
+
# is currently at.
|
|
302
|
+
# Corresponds to the JSON property `adPolicyReviewStatus`
|
|
303
|
+
# @return [String]
|
|
304
|
+
attr_accessor :ad_policy_review_status
|
|
305
|
+
|
|
306
|
+
# The policy topic entries for the ad, including the topic, restriction level,
|
|
307
|
+
# and guidance on how to fix policy issues.
|
|
308
|
+
# Corresponds to the JSON property `adPolicyTopicEntry`
|
|
309
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyTopicEntry>]
|
|
310
|
+
attr_accessor :ad_policy_topic_entry
|
|
311
|
+
|
|
312
|
+
def initialize(**args)
|
|
313
|
+
update!(**args)
|
|
314
|
+
end
|
|
315
|
+
|
|
316
|
+
# Update properties of this object
|
|
317
|
+
def update!(**args)
|
|
318
|
+
@ad_policy_approval_status = args[:ad_policy_approval_status] if args.key?(:ad_policy_approval_status)
|
|
319
|
+
@ad_policy_review_status = args[:ad_policy_review_status] if args.key?(:ad_policy_review_status)
|
|
320
|
+
@ad_policy_topic_entry = args[:ad_policy_topic_entry] if args.key?(:ad_policy_topic_entry)
|
|
321
|
+
end
|
|
322
|
+
end
|
|
323
|
+
|
|
324
|
+
# Represents a criterion that is restricted. Today only used to represent a
|
|
325
|
+
# country restriction. Used by both policy evidence and policy constraints.
|
|
326
|
+
class AdPolicyCriterionRestriction
|
|
327
|
+
include Google::Apis::Core::Hashable
|
|
328
|
+
|
|
329
|
+
# Only used today to represent a country criterion id.
|
|
330
|
+
# Corresponds to the JSON property `countryCriterionId`
|
|
331
|
+
# @return [Fixnum]
|
|
332
|
+
attr_accessor :country_criterion_id
|
|
333
|
+
|
|
334
|
+
# Localized name for the country. Could be empty.
|
|
335
|
+
# Corresponds to the JSON property `countryLabel`
|
|
336
|
+
# @return [String]
|
|
337
|
+
attr_accessor :country_label
|
|
338
|
+
|
|
339
|
+
def initialize(**args)
|
|
340
|
+
update!(**args)
|
|
341
|
+
end
|
|
342
|
+
|
|
343
|
+
# Update properties of this object
|
|
344
|
+
def update!(**args)
|
|
345
|
+
@country_criterion_id = args[:country_criterion_id] if args.key?(:country_criterion_id)
|
|
346
|
+
@country_label = args[:country_label] if args.key?(:country_label)
|
|
347
|
+
end
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
# Appeal related information for a policy topic.
|
|
351
|
+
class AdPolicyTopicAppealInfo
|
|
352
|
+
include Google::Apis::Core::Hashable
|
|
353
|
+
|
|
354
|
+
# Only available when appeal_type is APPEAL_FORM.
|
|
355
|
+
# Corresponds to the JSON property `appealFormLink`
|
|
356
|
+
# @return [String]
|
|
357
|
+
attr_accessor :appeal_form_link
|
|
358
|
+
|
|
359
|
+
# Indicate whether the policy topic can be self-service appeal or appeal form.
|
|
360
|
+
# Corresponds to the JSON property `appealType`
|
|
361
|
+
# @return [String]
|
|
362
|
+
attr_accessor :appeal_type
|
|
363
|
+
|
|
364
|
+
def initialize(**args)
|
|
365
|
+
update!(**args)
|
|
366
|
+
end
|
|
367
|
+
|
|
368
|
+
# Update properties of this object
|
|
369
|
+
def update!(**args)
|
|
370
|
+
@appeal_form_link = args[:appeal_form_link] if args.key?(:appeal_form_link)
|
|
371
|
+
@appeal_type = args[:appeal_type] if args.key?(:appeal_type)
|
|
372
|
+
end
|
|
373
|
+
end
|
|
374
|
+
|
|
375
|
+
# Additional constraints information that explains restrictions applied to this
|
|
376
|
+
# policy.
|
|
377
|
+
class AdPolicyTopicConstraint
|
|
378
|
+
include Google::Apis::Core::Hashable
|
|
379
|
+
|
|
380
|
+
# A list of countries where the ad cannot serve due to policy constraints.
|
|
381
|
+
# Corresponds to the JSON property `certificateDomainMismatchCountryList`
|
|
382
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList]
|
|
383
|
+
attr_accessor :certificate_domain_mismatch_country_list
|
|
384
|
+
|
|
385
|
+
# A list of countries where the ad cannot serve due to policy constraints.
|
|
386
|
+
# Corresponds to the JSON property `certificateMissingCountryList`
|
|
387
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList]
|
|
388
|
+
attr_accessor :certificate_missing_country_list
|
|
389
|
+
|
|
390
|
+
# A list of countries where the ad cannot serve due to policy constraints.
|
|
391
|
+
# Corresponds to the JSON property `countryConstraint`
|
|
392
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyCountryConstraintList]
|
|
393
|
+
attr_accessor :country_constraint
|
|
394
|
+
|
|
395
|
+
# Certificate is required to serve in any country and the existing certificate
|
|
396
|
+
# does not cover the ad's domain.
|
|
397
|
+
# Corresponds to the JSON property `globalCertificateDomainMismatch`
|
|
398
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyGlobalCertificateDomainMismatchConstraint]
|
|
399
|
+
attr_accessor :global_certificate_domain_mismatch
|
|
400
|
+
|
|
401
|
+
# Certificate is required to serve in any country.
|
|
402
|
+
# Corresponds to the JSON property `globalCertificateMissing`
|
|
403
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyGlobalCertificateMissingConstraint]
|
|
404
|
+
attr_accessor :global_certificate_missing
|
|
405
|
+
|
|
406
|
+
# Link to the form to request a certificate for the policy topic constraint.
|
|
407
|
+
# Corresponds to the JSON property `requestCertificateFormLink`
|
|
408
|
+
# @return [String]
|
|
409
|
+
attr_accessor :request_certificate_form_link
|
|
410
|
+
|
|
411
|
+
# Policy topic was constrained due to disapproval of the website for reseller
|
|
412
|
+
# purposes.
|
|
413
|
+
# Corresponds to the JSON property `resellerConstraint`
|
|
414
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicConstraintAdPolicyResellerConstraint]
|
|
415
|
+
attr_accessor :reseller_constraint
|
|
416
|
+
|
|
417
|
+
def initialize(**args)
|
|
418
|
+
update!(**args)
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
# Update properties of this object
|
|
422
|
+
def update!(**args)
|
|
423
|
+
@certificate_domain_mismatch_country_list = args[:certificate_domain_mismatch_country_list] if args.key?(:certificate_domain_mismatch_country_list)
|
|
424
|
+
@certificate_missing_country_list = args[:certificate_missing_country_list] if args.key?(:certificate_missing_country_list)
|
|
425
|
+
@country_constraint = args[:country_constraint] if args.key?(:country_constraint)
|
|
426
|
+
@global_certificate_domain_mismatch = args[:global_certificate_domain_mismatch] if args.key?(:global_certificate_domain_mismatch)
|
|
427
|
+
@global_certificate_missing = args[:global_certificate_missing] if args.key?(:global_certificate_missing)
|
|
428
|
+
@request_certificate_form_link = args[:request_certificate_form_link] if args.key?(:request_certificate_form_link)
|
|
429
|
+
@reseller_constraint = args[:reseller_constraint] if args.key?(:reseller_constraint)
|
|
430
|
+
end
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
# A list of countries where the ad cannot serve due to policy constraints.
|
|
434
|
+
class AdPolicyTopicConstraintAdPolicyCountryConstraintList
|
|
435
|
+
include Google::Apis::Core::Hashable
|
|
436
|
+
|
|
437
|
+
# Countries where the ad cannot serve.
|
|
438
|
+
# Corresponds to the JSON property `countries`
|
|
439
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction>]
|
|
440
|
+
attr_accessor :countries
|
|
441
|
+
|
|
442
|
+
def initialize(**args)
|
|
443
|
+
update!(**args)
|
|
444
|
+
end
|
|
445
|
+
|
|
446
|
+
# Update properties of this object
|
|
447
|
+
def update!(**args)
|
|
448
|
+
@countries = args[:countries] if args.key?(:countries)
|
|
449
|
+
end
|
|
450
|
+
end
|
|
451
|
+
|
|
452
|
+
# Certificate is required to serve in any country and the existing certificate
|
|
453
|
+
# does not cover the ad's domain.
|
|
454
|
+
class AdPolicyTopicConstraintAdPolicyGlobalCertificateDomainMismatchConstraint
|
|
455
|
+
include Google::Apis::Core::Hashable
|
|
456
|
+
|
|
457
|
+
def initialize(**args)
|
|
458
|
+
update!(**args)
|
|
459
|
+
end
|
|
460
|
+
|
|
461
|
+
# Update properties of this object
|
|
462
|
+
def update!(**args)
|
|
463
|
+
end
|
|
464
|
+
end
|
|
465
|
+
|
|
466
|
+
# Certificate is required to serve in any country.
|
|
467
|
+
class AdPolicyTopicConstraintAdPolicyGlobalCertificateMissingConstraint
|
|
468
|
+
include Google::Apis::Core::Hashable
|
|
469
|
+
|
|
470
|
+
def initialize(**args)
|
|
471
|
+
update!(**args)
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
# Update properties of this object
|
|
475
|
+
def update!(**args)
|
|
476
|
+
end
|
|
477
|
+
end
|
|
478
|
+
|
|
479
|
+
# Policy topic was constrained due to disapproval of the website for reseller
|
|
480
|
+
# purposes.
|
|
481
|
+
class AdPolicyTopicConstraintAdPolicyResellerConstraint
|
|
482
|
+
include Google::Apis::Core::Hashable
|
|
483
|
+
|
|
484
|
+
def initialize(**args)
|
|
485
|
+
update!(**args)
|
|
486
|
+
end
|
|
487
|
+
|
|
488
|
+
# Update properties of this object
|
|
489
|
+
def update!(**args)
|
|
490
|
+
end
|
|
491
|
+
end
|
|
492
|
+
|
|
493
|
+
# Policy topic entry.
|
|
494
|
+
class AdPolicyTopicEntry
|
|
495
|
+
include Google::Apis::Core::Hashable
|
|
496
|
+
|
|
497
|
+
# Appeal related information for a policy topic.
|
|
498
|
+
# Corresponds to the JSON property `appealInfo`
|
|
499
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicAppealInfo]
|
|
500
|
+
attr_accessor :appeal_info
|
|
501
|
+
|
|
502
|
+
# Ad policy help center link for the policy topic.
|
|
503
|
+
# Corresponds to the JSON property `helpCenterLink`
|
|
504
|
+
# @return [String]
|
|
505
|
+
attr_accessor :help_center_link
|
|
506
|
+
|
|
507
|
+
# The source of the policy decision.
|
|
508
|
+
# Corresponds to the JSON property `policyDecisionType`
|
|
509
|
+
# @return [String]
|
|
510
|
+
attr_accessor :policy_decision_type
|
|
511
|
+
|
|
512
|
+
# The policy enforcement means used in the policy review.
|
|
513
|
+
# Corresponds to the JSON property `policyEnforcementMeans`
|
|
514
|
+
# @return [String]
|
|
515
|
+
attr_accessor :policy_enforcement_means
|
|
516
|
+
|
|
517
|
+
# Localized label text for policy. (Trademarks in text, Contains Alcohol, etc.)
|
|
518
|
+
# Corresponds to the JSON property `policyLabel`
|
|
519
|
+
# @return [String]
|
|
520
|
+
attr_accessor :policy_label
|
|
521
|
+
|
|
522
|
+
# The policy topic of an ad policy topic entry. (TRADEMARKS, ALCOHOL, etc.)
|
|
523
|
+
# Corresponds to the JSON property `policyTopic`
|
|
524
|
+
# @return [String]
|
|
525
|
+
attr_accessor :policy_topic
|
|
526
|
+
|
|
527
|
+
# The policy topic constraints.
|
|
528
|
+
# Corresponds to the JSON property `policyTopicConstraints`
|
|
529
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyTopicConstraint>]
|
|
530
|
+
attr_accessor :policy_topic_constraints
|
|
531
|
+
|
|
532
|
+
# Short summary description of the policy topic.
|
|
533
|
+
# Corresponds to the JSON property `policyTopicDescription`
|
|
534
|
+
# @return [String]
|
|
535
|
+
attr_accessor :policy_topic_description
|
|
536
|
+
|
|
537
|
+
# The policy topic evidences.
|
|
538
|
+
# Corresponds to the JSON property `policyTopicEvidences`
|
|
539
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyTopicEvidence>]
|
|
540
|
+
attr_accessor :policy_topic_evidences
|
|
541
|
+
|
|
542
|
+
# The policy topic entry type.
|
|
543
|
+
# Corresponds to the JSON property `policyTopicType`
|
|
544
|
+
# @return [String]
|
|
545
|
+
attr_accessor :policy_topic_type
|
|
546
|
+
|
|
547
|
+
def initialize(**args)
|
|
548
|
+
update!(**args)
|
|
549
|
+
end
|
|
550
|
+
|
|
551
|
+
# Update properties of this object
|
|
552
|
+
def update!(**args)
|
|
553
|
+
@appeal_info = args[:appeal_info] if args.key?(:appeal_info)
|
|
554
|
+
@help_center_link = args[:help_center_link] if args.key?(:help_center_link)
|
|
555
|
+
@policy_decision_type = args[:policy_decision_type] if args.key?(:policy_decision_type)
|
|
556
|
+
@policy_enforcement_means = args[:policy_enforcement_means] if args.key?(:policy_enforcement_means)
|
|
557
|
+
@policy_label = args[:policy_label] if args.key?(:policy_label)
|
|
558
|
+
@policy_topic = args[:policy_topic] if args.key?(:policy_topic)
|
|
559
|
+
@policy_topic_constraints = args[:policy_topic_constraints] if args.key?(:policy_topic_constraints)
|
|
560
|
+
@policy_topic_description = args[:policy_topic_description] if args.key?(:policy_topic_description)
|
|
561
|
+
@policy_topic_evidences = args[:policy_topic_evidences] if args.key?(:policy_topic_evidences)
|
|
562
|
+
@policy_topic_type = args[:policy_topic_type] if args.key?(:policy_topic_type)
|
|
563
|
+
end
|
|
564
|
+
end
|
|
565
|
+
|
|
566
|
+
# Additional evidence information that explains a policy decision.
|
|
567
|
+
class AdPolicyTopicEvidence
|
|
568
|
+
include Google::Apis::Core::Hashable
|
|
569
|
+
|
|
570
|
+
# Counterfeit enforcement that caused a policy violation.
|
|
571
|
+
# Corresponds to the JSON property `counterfeit`
|
|
572
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceCounterfeit]
|
|
573
|
+
attr_accessor :counterfeit
|
|
574
|
+
|
|
575
|
+
# A list of destination mismatch URL types.
|
|
576
|
+
# Corresponds to the JSON property `destinationMismatch`
|
|
577
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationMismatch]
|
|
578
|
+
attr_accessor :destination_mismatch
|
|
579
|
+
|
|
580
|
+
# Evidence details for destination not working policy violations.
|
|
581
|
+
# Corresponds to the JSON property `destinationNotWorking`
|
|
582
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationNotWorking]
|
|
583
|
+
attr_accessor :destination_not_working
|
|
584
|
+
|
|
585
|
+
# A list of destination text that violated the policy.
|
|
586
|
+
# Corresponds to the JSON property `destinationTextList`
|
|
587
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceDestinationTextList]
|
|
588
|
+
attr_accessor :destination_text_list
|
|
589
|
+
|
|
590
|
+
# HTTP code returned when the final URL was crawled.
|
|
591
|
+
# Corresponds to the JSON property `httpCode`
|
|
592
|
+
# @return [Fixnum]
|
|
593
|
+
attr_accessor :http_code
|
|
594
|
+
|
|
595
|
+
# The language the ad was detected to be written in. This is an IETF language
|
|
596
|
+
# tag such as "en-US".
|
|
597
|
+
# Corresponds to the JSON property `languageCode`
|
|
598
|
+
# @return [String]
|
|
599
|
+
attr_accessor :language_code
|
|
600
|
+
|
|
601
|
+
# Legal related regulation enforcement, either from DMCA or local legal.
|
|
602
|
+
# Corresponds to the JSON property `legalRemoval`
|
|
603
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemoval]
|
|
604
|
+
attr_accessor :legal_removal
|
|
605
|
+
|
|
606
|
+
# T&S proactive enforcement for policies meant to address regional requirements.
|
|
607
|
+
# This is considered as Google owned investigation instead of regulation notice
|
|
608
|
+
# since it's a T&S proactive enforcement.
|
|
609
|
+
# Corresponds to the JSON property `regionalRequirements`
|
|
610
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceRegionalRequirements]
|
|
611
|
+
attr_accessor :regional_requirements
|
|
612
|
+
|
|
613
|
+
# A list of fragments of text that violated the policy.
|
|
614
|
+
# Corresponds to the JSON property `textList`
|
|
615
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceTextList]
|
|
616
|
+
attr_accessor :text_list
|
|
617
|
+
|
|
618
|
+
# Trademark terms that caused a policy violation.
|
|
619
|
+
# Corresponds to the JSON property `trademark`
|
|
620
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceTrademark]
|
|
621
|
+
attr_accessor :trademark
|
|
622
|
+
|
|
623
|
+
# A list of websites that violated the policy.
|
|
624
|
+
# Corresponds to the JSON property `websiteList`
|
|
625
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceWebsiteList]
|
|
626
|
+
attr_accessor :website_list
|
|
627
|
+
|
|
628
|
+
def initialize(**args)
|
|
629
|
+
update!(**args)
|
|
630
|
+
end
|
|
631
|
+
|
|
632
|
+
# Update properties of this object
|
|
633
|
+
def update!(**args)
|
|
634
|
+
@counterfeit = args[:counterfeit] if args.key?(:counterfeit)
|
|
635
|
+
@destination_mismatch = args[:destination_mismatch] if args.key?(:destination_mismatch)
|
|
636
|
+
@destination_not_working = args[:destination_not_working] if args.key?(:destination_not_working)
|
|
637
|
+
@destination_text_list = args[:destination_text_list] if args.key?(:destination_text_list)
|
|
638
|
+
@http_code = args[:http_code] if args.key?(:http_code)
|
|
639
|
+
@language_code = args[:language_code] if args.key?(:language_code)
|
|
640
|
+
@legal_removal = args[:legal_removal] if args.key?(:legal_removal)
|
|
641
|
+
@regional_requirements = args[:regional_requirements] if args.key?(:regional_requirements)
|
|
642
|
+
@text_list = args[:text_list] if args.key?(:text_list)
|
|
643
|
+
@trademark = args[:trademark] if args.key?(:trademark)
|
|
644
|
+
@website_list = args[:website_list] if args.key?(:website_list)
|
|
645
|
+
end
|
|
646
|
+
end
|
|
647
|
+
|
|
648
|
+
# Counterfeit enforcement that caused a policy violation.
|
|
649
|
+
class AdPolicyTopicEvidenceCounterfeit
|
|
650
|
+
include Google::Apis::Core::Hashable
|
|
651
|
+
|
|
652
|
+
# The content or product owners that make the complainants.
|
|
653
|
+
# Corresponds to the JSON property `owners`
|
|
654
|
+
# @return [Array<String>]
|
|
655
|
+
attr_accessor :owners
|
|
656
|
+
|
|
657
|
+
def initialize(**args)
|
|
658
|
+
update!(**args)
|
|
659
|
+
end
|
|
660
|
+
|
|
661
|
+
# Update properties of this object
|
|
662
|
+
def update!(**args)
|
|
663
|
+
@owners = args[:owners] if args.key?(:owners)
|
|
664
|
+
end
|
|
665
|
+
end
|
|
666
|
+
|
|
667
|
+
# A list of destination mismatch URL types.
|
|
668
|
+
class AdPolicyTopicEvidenceDestinationMismatch
|
|
669
|
+
include Google::Apis::Core::Hashable
|
|
670
|
+
|
|
671
|
+
# The set of URLs that do not match each other. The list can include single or
|
|
672
|
+
# multiple uri types. Example 1: [DISPLAY_URL, FINAL_URL] means ad display URL
|
|
673
|
+
# does not match with the ad final URL. Example 2: [FINAL_URL] means ad final
|
|
674
|
+
# URL did not match the crawled url, which is also considered as
|
|
675
|
+
# destinationmismatch.
|
|
676
|
+
# Corresponds to the JSON property `uriTypes`
|
|
677
|
+
# @return [Array<String>]
|
|
678
|
+
attr_accessor :uri_types
|
|
679
|
+
|
|
680
|
+
def initialize(**args)
|
|
681
|
+
update!(**args)
|
|
682
|
+
end
|
|
683
|
+
|
|
684
|
+
# Update properties of this object
|
|
685
|
+
def update!(**args)
|
|
686
|
+
@uri_types = args[:uri_types] if args.key?(:uri_types)
|
|
687
|
+
end
|
|
688
|
+
end
|
|
689
|
+
|
|
690
|
+
# Evidence details for destination not working policy violations.
|
|
691
|
+
class AdPolicyTopicEvidenceDestinationNotWorking
|
|
692
|
+
include Google::Apis::Core::Hashable
|
|
693
|
+
|
|
694
|
+
# The device platform of the not working url.
|
|
695
|
+
# Corresponds to the JSON property `device`
|
|
696
|
+
# @return [String]
|
|
697
|
+
attr_accessor :device
|
|
698
|
+
|
|
699
|
+
# The type of DNS error.
|
|
700
|
+
# Corresponds to the JSON property `dnsErrorType`
|
|
701
|
+
# @return [String]
|
|
702
|
+
attr_accessor :dns_error_type
|
|
703
|
+
|
|
704
|
+
# The full URL that didn't work.
|
|
705
|
+
# Corresponds to the JSON property `expandedUri`
|
|
706
|
+
# @return [String]
|
|
707
|
+
attr_accessor :expanded_uri
|
|
708
|
+
|
|
709
|
+
# The HTTP error code.
|
|
710
|
+
# Corresponds to the JSON property `httpErrorCode`
|
|
711
|
+
# @return [Fixnum]
|
|
712
|
+
attr_accessor :http_error_code
|
|
713
|
+
|
|
714
|
+
# The last checked time of the not working url.
|
|
715
|
+
# Corresponds to the JSON property `lastCheckedTime`
|
|
716
|
+
# @return [String]
|
|
717
|
+
attr_accessor :last_checked_time
|
|
718
|
+
|
|
719
|
+
def initialize(**args)
|
|
720
|
+
update!(**args)
|
|
721
|
+
end
|
|
722
|
+
|
|
723
|
+
# Update properties of this object
|
|
724
|
+
def update!(**args)
|
|
725
|
+
@device = args[:device] if args.key?(:device)
|
|
726
|
+
@dns_error_type = args[:dns_error_type] if args.key?(:dns_error_type)
|
|
727
|
+
@expanded_uri = args[:expanded_uri] if args.key?(:expanded_uri)
|
|
728
|
+
@http_error_code = args[:http_error_code] if args.key?(:http_error_code)
|
|
729
|
+
@last_checked_time = args[:last_checked_time] if args.key?(:last_checked_time)
|
|
730
|
+
end
|
|
731
|
+
end
|
|
732
|
+
|
|
733
|
+
# A list of destination text that violated the policy.
|
|
734
|
+
class AdPolicyTopicEvidenceDestinationTextList
|
|
735
|
+
include Google::Apis::Core::Hashable
|
|
736
|
+
|
|
737
|
+
# Destination text that caused the policy finding.
|
|
738
|
+
# Corresponds to the JSON property `destinationTexts`
|
|
739
|
+
# @return [Array<String>]
|
|
740
|
+
attr_accessor :destination_texts
|
|
741
|
+
|
|
742
|
+
def initialize(**args)
|
|
743
|
+
update!(**args)
|
|
744
|
+
end
|
|
745
|
+
|
|
746
|
+
# Update properties of this object
|
|
747
|
+
def update!(**args)
|
|
748
|
+
@destination_texts = args[:destination_texts] if args.key?(:destination_texts)
|
|
749
|
+
end
|
|
750
|
+
end
|
|
751
|
+
|
|
752
|
+
# Legal related regulation enforcement, either from DMCA or local legal.
|
|
753
|
+
class AdPolicyTopicEvidenceLegalRemoval
|
|
754
|
+
include Google::Apis::Core::Hashable
|
|
755
|
+
|
|
756
|
+
# The legal removal complaint type.
|
|
757
|
+
# Corresponds to the JSON property `complaintType`
|
|
758
|
+
# @return [String]
|
|
759
|
+
attr_accessor :complaint_type
|
|
760
|
+
|
|
761
|
+
# The restricted countries due to the legal removal.
|
|
762
|
+
# Corresponds to the JSON property `countryRestrictions`
|
|
763
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction>]
|
|
764
|
+
attr_accessor :country_restrictions
|
|
765
|
+
|
|
766
|
+
# DMCA related regulation enforcement.
|
|
767
|
+
# Corresponds to the JSON property `dmca`
|
|
768
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemovalDmca]
|
|
769
|
+
attr_accessor :dmca
|
|
770
|
+
|
|
771
|
+
# Local legal related regulation enforcement.
|
|
772
|
+
# Corresponds to the JSON property `localLegal`
|
|
773
|
+
# @return [Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceLegalRemovalLocalLegal]
|
|
774
|
+
attr_accessor :local_legal
|
|
775
|
+
|
|
776
|
+
# The urls that are restricted due to the legal removal.
|
|
777
|
+
# Corresponds to the JSON property `restrictedUris`
|
|
778
|
+
# @return [Array<String>]
|
|
779
|
+
attr_accessor :restricted_uris
|
|
780
|
+
|
|
781
|
+
def initialize(**args)
|
|
782
|
+
update!(**args)
|
|
783
|
+
end
|
|
784
|
+
|
|
785
|
+
# Update properties of this object
|
|
786
|
+
def update!(**args)
|
|
787
|
+
@complaint_type = args[:complaint_type] if args.key?(:complaint_type)
|
|
788
|
+
@country_restrictions = args[:country_restrictions] if args.key?(:country_restrictions)
|
|
789
|
+
@dmca = args[:dmca] if args.key?(:dmca)
|
|
790
|
+
@local_legal = args[:local_legal] if args.key?(:local_legal)
|
|
791
|
+
@restricted_uris = args[:restricted_uris] if args.key?(:restricted_uris)
|
|
792
|
+
end
|
|
793
|
+
end
|
|
794
|
+
|
|
795
|
+
# DMCA related regulation enforcement.
|
|
796
|
+
class AdPolicyTopicEvidenceLegalRemovalDmca
|
|
797
|
+
include Google::Apis::Core::Hashable
|
|
798
|
+
|
|
799
|
+
# The entity who makes the legal complaint.
|
|
800
|
+
# Corresponds to the JSON property `complainant`
|
|
801
|
+
# @return [String]
|
|
802
|
+
attr_accessor :complainant
|
|
803
|
+
|
|
804
|
+
def initialize(**args)
|
|
805
|
+
update!(**args)
|
|
806
|
+
end
|
|
807
|
+
|
|
808
|
+
# Update properties of this object
|
|
809
|
+
def update!(**args)
|
|
810
|
+
@complainant = args[:complainant] if args.key?(:complainant)
|
|
811
|
+
end
|
|
812
|
+
end
|
|
813
|
+
|
|
814
|
+
# Local legal related regulation enforcement.
|
|
815
|
+
class AdPolicyTopicEvidenceLegalRemovalLocalLegal
|
|
816
|
+
include Google::Apis::Core::Hashable
|
|
817
|
+
|
|
818
|
+
# Type of law for the legal notice.
|
|
819
|
+
# Corresponds to the JSON property `lawType`
|
|
820
|
+
# @return [String]
|
|
821
|
+
attr_accessor :law_type
|
|
822
|
+
|
|
823
|
+
def initialize(**args)
|
|
824
|
+
update!(**args)
|
|
825
|
+
end
|
|
826
|
+
|
|
827
|
+
# Update properties of this object
|
|
828
|
+
def update!(**args)
|
|
829
|
+
@law_type = args[:law_type] if args.key?(:law_type)
|
|
830
|
+
end
|
|
831
|
+
end
|
|
832
|
+
|
|
833
|
+
# T&S proactive enforcement for policies meant to address regional requirements.
|
|
834
|
+
# This is considered as Google owned investigation instead of regulation notice
|
|
835
|
+
# since it's a T&S proactive enforcement.
|
|
836
|
+
class AdPolicyTopicEvidenceRegionalRequirements
|
|
837
|
+
include Google::Apis::Core::Hashable
|
|
838
|
+
|
|
839
|
+
# List of regional requirements.
|
|
840
|
+
# Corresponds to the JSON property `regionalRequirementsEntries`
|
|
841
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyTopicEvidenceRegionalRequirementsRegionalRequirementsEntry>]
|
|
842
|
+
attr_accessor :regional_requirements_entries
|
|
843
|
+
|
|
844
|
+
def initialize(**args)
|
|
845
|
+
update!(**args)
|
|
846
|
+
end
|
|
847
|
+
|
|
848
|
+
# Update properties of this object
|
|
849
|
+
def update!(**args)
|
|
850
|
+
@regional_requirements_entries = args[:regional_requirements_entries] if args.key?(:regional_requirements_entries)
|
|
851
|
+
end
|
|
852
|
+
end
|
|
853
|
+
|
|
854
|
+
# Policy level regional legal violation details.
|
|
855
|
+
class AdPolicyTopicEvidenceRegionalRequirementsRegionalRequirementsEntry
|
|
856
|
+
include Google::Apis::Core::Hashable
|
|
857
|
+
|
|
858
|
+
# The restricted countries due to the legal policy.
|
|
859
|
+
# Corresponds to the JSON property `countryRestrictions`
|
|
860
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction>]
|
|
861
|
+
attr_accessor :country_restrictions
|
|
862
|
+
|
|
863
|
+
# The legal policy that is violated.
|
|
864
|
+
# Corresponds to the JSON property `legalPolicy`
|
|
865
|
+
# @return [String]
|
|
866
|
+
attr_accessor :legal_policy
|
|
867
|
+
|
|
868
|
+
def initialize(**args)
|
|
869
|
+
update!(**args)
|
|
870
|
+
end
|
|
871
|
+
|
|
872
|
+
# Update properties of this object
|
|
873
|
+
def update!(**args)
|
|
874
|
+
@country_restrictions = args[:country_restrictions] if args.key?(:country_restrictions)
|
|
875
|
+
@legal_policy = args[:legal_policy] if args.key?(:legal_policy)
|
|
876
|
+
end
|
|
877
|
+
end
|
|
878
|
+
|
|
879
|
+
# A list of fragments of text that violated the policy.
|
|
880
|
+
class AdPolicyTopicEvidenceTextList
|
|
881
|
+
include Google::Apis::Core::Hashable
|
|
882
|
+
|
|
883
|
+
# The fragments of text from the resource that caused the policy finding.
|
|
884
|
+
# Corresponds to the JSON property `texts`
|
|
885
|
+
# @return [Array<String>]
|
|
886
|
+
attr_accessor :texts
|
|
887
|
+
|
|
888
|
+
def initialize(**args)
|
|
889
|
+
update!(**args)
|
|
890
|
+
end
|
|
891
|
+
|
|
892
|
+
# Update properties of this object
|
|
893
|
+
def update!(**args)
|
|
894
|
+
@texts = args[:texts] if args.key?(:texts)
|
|
895
|
+
end
|
|
896
|
+
end
|
|
897
|
+
|
|
898
|
+
# Trademark terms that caused a policy violation.
|
|
899
|
+
class AdPolicyTopicEvidenceTrademark
|
|
900
|
+
include Google::Apis::Core::Hashable
|
|
901
|
+
|
|
902
|
+
# Criteria that are geo restrictions.
|
|
903
|
+
# Corresponds to the JSON property `countryRestrictions`
|
|
904
|
+
# @return [Array<Google::Apis::DisplayvideoV3::AdPolicyCriterionRestriction>]
|
|
905
|
+
attr_accessor :country_restrictions
|
|
906
|
+
|
|
907
|
+
# The trademark content owner.
|
|
908
|
+
# Corresponds to the JSON property `owner`
|
|
909
|
+
# @return [String]
|
|
910
|
+
attr_accessor :owner
|
|
911
|
+
|
|
912
|
+
# The trademark term.
|
|
913
|
+
# Corresponds to the JSON property `term`
|
|
914
|
+
# @return [String]
|
|
915
|
+
attr_accessor :term
|
|
916
|
+
|
|
917
|
+
def initialize(**args)
|
|
918
|
+
update!(**args)
|
|
919
|
+
end
|
|
920
|
+
|
|
921
|
+
# Update properties of this object
|
|
922
|
+
def update!(**args)
|
|
923
|
+
@country_restrictions = args[:country_restrictions] if args.key?(:country_restrictions)
|
|
924
|
+
@owner = args[:owner] if args.key?(:owner)
|
|
925
|
+
@term = args[:term] if args.key?(:term)
|
|
926
|
+
end
|
|
927
|
+
end
|
|
928
|
+
|
|
929
|
+
# A list of websites that violated the policy.
|
|
930
|
+
class AdPolicyTopicEvidenceWebsiteList
|
|
931
|
+
include Google::Apis::Core::Hashable
|
|
932
|
+
|
|
933
|
+
# Websites that caused the policy finding.
|
|
934
|
+
# Corresponds to the JSON property `websites`
|
|
935
|
+
# @return [Array<String>]
|
|
936
|
+
attr_accessor :websites
|
|
937
|
+
|
|
938
|
+
def initialize(**args)
|
|
939
|
+
update!(**args)
|
|
940
|
+
end
|
|
941
|
+
|
|
942
|
+
# Update properties of this object
|
|
943
|
+
def update!(**args)
|
|
944
|
+
@websites = args[:websites] if args.key?(:websites)
|
|
945
|
+
end
|
|
946
|
+
end
|
|
947
|
+
|
|
284
948
|
# Additional URLs related to the ad, including beacons.
|
|
285
949
|
class AdUrl
|
|
286
950
|
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.35.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 = "20251023"
|
|
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.35.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.35.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:
|