google-apis-displayvideo_v3 0.1.0 → 0.2.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: ee47b7fa67ce221260d32a5b6976617ce7e9235767455dd8dbb56196ffe0cfaf
4
- data.tar.gz: 3f9a1da7f8d9bbc381bd6b004dda60ddaa67e4a45d5965602236cfc384af1951
3
+ metadata.gz: 3a334289f300f802b2c24f92b0f0dae843f5e50e1ff6df1b330cc594e277681b
4
+ data.tar.gz: bbbaa51fe5622bc61813c8c090d2e6766669068cee554db31e80be1bcd0abd1b
5
5
  SHA512:
6
- metadata.gz: 7d3bd2ae95ca4cf8b9b6e8467604142cf50e23e98a3242620eae9afa928ac3c0182ea9c5b274ba5f41e44996f11079d500762afc5a6c73ee81e4a10229c57ea2
7
- data.tar.gz: 288b5ab7d580e228c25982c38dbe00fcb0b259cc75407c08e7135485f026a5b3b55f2ac34b1f185884f1be5cfc955fa436b1e58e1dd7d0a09b339d355075dcbc
6
+ metadata.gz: 98a63a7c19928f3aef1b733d7c8d9b3d4d05acefaa3d219512de0d8aa547606767adb96439d4f7520b2be4cb59c4b1590a551cc8df0dca1dc2119b50998c0797
7
+ data.tar.gz: 4df3bdd05460fca10cc23a1fedc5fbd7776dead947dbd32458f50138daa7c6de242c71512e04787a60476ac3e2c59e53ded7a2c0b8e12ddd81ba61a5b68a79d2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-displayvideo_v3
2
2
 
3
+ ### v0.2.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231113
6
+
3
7
  ### v0.1.0 (2023-10-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20231012
@@ -3569,6 +3569,31 @@ module Google
3569
3569
  end
3570
3570
  end
3571
3571
 
3572
+ # User consent status.
3573
+ class Consent
3574
+ include Google::Apis::Core::Hashable
3575
+
3576
+ # Represents consent for ad personalization.
3577
+ # Corresponds to the JSON property `adPersonalization`
3578
+ # @return [String]
3579
+ attr_accessor :ad_personalization
3580
+
3581
+ # Represents consent for ad user data.
3582
+ # Corresponds to the JSON property `adUserData`
3583
+ # @return [String]
3584
+ attr_accessor :ad_user_data
3585
+
3586
+ def initialize(**args)
3587
+ update!(**args)
3588
+ end
3589
+
3590
+ # Update properties of this object
3591
+ def update!(**args)
3592
+ @ad_personalization = args[:ad_personalization] if args.key?(:ad_personalization)
3593
+ @ad_user_data = args[:ad_user_data] if args.key?(:ad_user_data)
3594
+ end
3595
+ end
3596
+
3572
3597
  # Contact information defining a Customer Match audience member.
3573
3598
  class ContactInfo
3574
3599
  include Google::Apis::Core::Hashable
@@ -3632,6 +3657,11 @@ module Google
3632
3657
  class ContactInfoList
3633
3658
  include Google::Apis::Core::Hashable
3634
3659
 
3660
+ # User consent status.
3661
+ # Corresponds to the JSON property `consent`
3662
+ # @return [Google::Apis::DisplayvideoV3::Consent]
3663
+ attr_accessor :consent
3664
+
3635
3665
  # A list of ContactInfo objects defining Customer Match audience members. The
3636
3666
  # size of members after splitting the contact_infos mustn't be greater than 500,
3637
3667
  # 000.
@@ -3645,6 +3675,7 @@ module Google
3645
3675
 
3646
3676
  # Update properties of this object
3647
3677
  def update!(**args)
3678
+ @consent = args[:consent] if args.key?(:consent)
3648
3679
  @contact_infos = args[:contact_infos] if args.key?(:contact_infos)
3649
3680
  end
3650
3681
  end
@@ -9421,6 +9452,11 @@ module Google
9421
9452
  class MobileDeviceIdList
9422
9453
  include Google::Apis::Core::Hashable
9423
9454
 
9455
+ # User consent status.
9456
+ # Corresponds to the JSON property `consent`
9457
+ # @return [Google::Apis::DisplayvideoV3::Consent]
9458
+ attr_accessor :consent
9459
+
9424
9460
  # A list of mobile device IDs defining Customer Match audience members. The size
9425
9461
  # of mobile_device_ids mustn't be greater than 500,000.
9426
9462
  # Corresponds to the JSON property `mobileDeviceIds`
@@ -9433,6 +9469,7 @@ module Google
9433
9469
 
9434
9470
  # Update properties of this object
9435
9471
  def update!(**args)
9472
+ @consent = args[:consent] if args.key?(:consent)
9436
9473
  @mobile_device_ids = args[:mobile_device_ids] if args.key?(:mobile_device_ids)
9437
9474
  end
9438
9475
  end
@@ -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.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231012"
25
+ REVISION = "20231113"
26
26
  end
27
27
  end
28
28
  end
@@ -550,6 +550,12 @@ module Google
550
550
  include Google::Apis::Core::JsonObjectSupport
551
551
  end
552
552
 
553
+ class Consent
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
553
559
  class ContactInfo
554
560
  class Representation < Google::Apis::Core::JsonRepresentation; end
555
561
 
@@ -3002,6 +3008,14 @@ module Google
3002
3008
  end
3003
3009
  end
3004
3010
 
3011
+ class Consent
3012
+ # @private
3013
+ class Representation < Google::Apis::Core::JsonRepresentation
3014
+ property :ad_personalization, as: 'adPersonalization'
3015
+ property :ad_user_data, as: 'adUserData'
3016
+ end
3017
+ end
3018
+
3005
3019
  class ContactInfo
3006
3020
  # @private
3007
3021
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3017,6 +3031,8 @@ module Google
3017
3031
  class ContactInfoList
3018
3032
  # @private
3019
3033
  class Representation < Google::Apis::Core::JsonRepresentation
3034
+ property :consent, as: 'consent', class: Google::Apis::DisplayvideoV3::Consent, decorator: Google::Apis::DisplayvideoV3::Consent::Representation
3035
+
3020
3036
  collection :contact_infos, as: 'contactInfos', class: Google::Apis::DisplayvideoV3::ContactInfo, decorator: Google::Apis::DisplayvideoV3::ContactInfo::Representation
3021
3037
 
3022
3038
  end
@@ -4582,6 +4598,8 @@ module Google
4582
4598
  class MobileDeviceIdList
4583
4599
  # @private
4584
4600
  class Representation < Google::Apis::Core::JsonRepresentation
4601
+ property :consent, as: 'consent', class: Google::Apis::DisplayvideoV3::Consent, decorator: Google::Apis::DisplayvideoV3::Consent::Representation
4602
+
4585
4603
  collection :mobile_device_ids, as: 'mobileDeviceIds'
4586
4604
  end
4587
4605
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-displayvideo_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-15 00:00:00.000000000 Z
11
+ date: 2023-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.2.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3
63
63
  post_install_message:
64
64
  rdoc_options: []