google-apis-displayvideo_v2 0.27.0 → 0.28.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: eb12a02cb998ac5c4112c32d7362cc289d8f77eae31131763f4211692147d20f
|
4
|
+
data.tar.gz: b81dbcd7fe2b9155c239e977c345ae3214d0eaf0af7ba8a377357cede5e9a52e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1dd50a51800fe70410a69ed81d17c66c82070e5ba42cd7a5869f636d17d1267853a25bbc4df55dfd41e1242dc63f22571fb2b44e1a79c0567e79330f15f64f4d
|
7
|
+
data.tar.gz: dc579018ca7cc8c69f3b0fc4a5c849b40687cc186a12893b62052c494e3f977703d6adc1511e7775a651536b157afffbf3757ce68cf0740c6fff8e2f7388f252
|
data/CHANGELOG.md
CHANGED
@@ -3115,6 +3115,31 @@ module Google
|
|
3115
3115
|
end
|
3116
3116
|
end
|
3117
3117
|
|
3118
|
+
# User consent status.
|
3119
|
+
class Consent
|
3120
|
+
include Google::Apis::Core::Hashable
|
3121
|
+
|
3122
|
+
# Represents consent for ad personalization.
|
3123
|
+
# Corresponds to the JSON property `adPersonalization`
|
3124
|
+
# @return [String]
|
3125
|
+
attr_accessor :ad_personalization
|
3126
|
+
|
3127
|
+
# Represents consent for ad user data.
|
3128
|
+
# Corresponds to the JSON property `adUserData`
|
3129
|
+
# @return [String]
|
3130
|
+
attr_accessor :ad_user_data
|
3131
|
+
|
3132
|
+
def initialize(**args)
|
3133
|
+
update!(**args)
|
3134
|
+
end
|
3135
|
+
|
3136
|
+
# Update properties of this object
|
3137
|
+
def update!(**args)
|
3138
|
+
@ad_personalization = args[:ad_personalization] if args.key?(:ad_personalization)
|
3139
|
+
@ad_user_data = args[:ad_user_data] if args.key?(:ad_user_data)
|
3140
|
+
end
|
3141
|
+
end
|
3142
|
+
|
3118
3143
|
# Contact information defining a Customer Match audience member.
|
3119
3144
|
class ContactInfo
|
3120
3145
|
include Google::Apis::Core::Hashable
|
@@ -3178,6 +3203,11 @@ module Google
|
|
3178
3203
|
class ContactInfoList
|
3179
3204
|
include Google::Apis::Core::Hashable
|
3180
3205
|
|
3206
|
+
# User consent status.
|
3207
|
+
# Corresponds to the JSON property `consent`
|
3208
|
+
# @return [Google::Apis::DisplayvideoV2::Consent]
|
3209
|
+
attr_accessor :consent
|
3210
|
+
|
3181
3211
|
# A list of ContactInfo objects defining Customer Match audience members. The
|
3182
3212
|
# size of members after splitting the contact_infos mustn't be greater than 500,
|
3183
3213
|
# 000.
|
@@ -3191,6 +3221,7 @@ module Google
|
|
3191
3221
|
|
3192
3222
|
# Update properties of this object
|
3193
3223
|
def update!(**args)
|
3224
|
+
@consent = args[:consent] if args.key?(:consent)
|
3194
3225
|
@contact_infos = args[:contact_infos] if args.key?(:contact_infos)
|
3195
3226
|
end
|
3196
3227
|
end
|
@@ -8865,6 +8896,11 @@ module Google
|
|
8865
8896
|
class MobileDeviceIdList
|
8866
8897
|
include Google::Apis::Core::Hashable
|
8867
8898
|
|
8899
|
+
# User consent status.
|
8900
|
+
# Corresponds to the JSON property `consent`
|
8901
|
+
# @return [Google::Apis::DisplayvideoV2::Consent]
|
8902
|
+
attr_accessor :consent
|
8903
|
+
|
8868
8904
|
# A list of mobile device IDs defining Customer Match audience members. The size
|
8869
8905
|
# of mobile_device_ids mustn't be greater than 500,000.
|
8870
8906
|
# Corresponds to the JSON property `mobileDeviceIds`
|
@@ -8877,6 +8913,7 @@ module Google
|
|
8877
8913
|
|
8878
8914
|
# Update properties of this object
|
8879
8915
|
def update!(**args)
|
8916
|
+
@consent = args[:consent] if args.key?(:consent)
|
8880
8917
|
@mobile_device_ids = args[:mobile_device_ids] if args.key?(:mobile_device_ids)
|
8881
8918
|
end
|
8882
8919
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DisplayvideoV2
|
18
18
|
# Version of the google-apis-displayvideo_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.28.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231113"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -490,6 +490,12 @@ module Google
|
|
490
490
|
include Google::Apis::Core::JsonObjectSupport
|
491
491
|
end
|
492
492
|
|
493
|
+
class Consent
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
|
+
|
496
|
+
include Google::Apis::Core::JsonObjectSupport
|
497
|
+
end
|
498
|
+
|
493
499
|
class ContactInfo
|
494
500
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
501
|
|
@@ -2801,6 +2807,14 @@ module Google
|
|
2801
2807
|
end
|
2802
2808
|
end
|
2803
2809
|
|
2810
|
+
class Consent
|
2811
|
+
# @private
|
2812
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2813
|
+
property :ad_personalization, as: 'adPersonalization'
|
2814
|
+
property :ad_user_data, as: 'adUserData'
|
2815
|
+
end
|
2816
|
+
end
|
2817
|
+
|
2804
2818
|
class ContactInfo
|
2805
2819
|
# @private
|
2806
2820
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2816,6 +2830,8 @@ module Google
|
|
2816
2830
|
class ContactInfoList
|
2817
2831
|
# @private
|
2818
2832
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2833
|
+
property :consent, as: 'consent', class: Google::Apis::DisplayvideoV2::Consent, decorator: Google::Apis::DisplayvideoV2::Consent::Representation
|
2834
|
+
|
2819
2835
|
collection :contact_infos, as: 'contactInfos', class: Google::Apis::DisplayvideoV2::ContactInfo, decorator: Google::Apis::DisplayvideoV2::ContactInfo::Representation
|
2820
2836
|
|
2821
2837
|
end
|
@@ -4352,6 +4368,8 @@ module Google
|
|
4352
4368
|
class MobileDeviceIdList
|
4353
4369
|
# @private
|
4354
4370
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4371
|
+
property :consent, as: 'consent', class: Google::Apis::DisplayvideoV2::Consent, decorator: Google::Apis::DisplayvideoV2::Consent::Representation
|
4372
|
+
|
4355
4373
|
collection :mobile_device_ids, as: 'mobileDeviceIds'
|
4356
4374
|
end
|
4357
4375
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-displayvideo_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.28.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-
|
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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.28.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|