google-apis-displayvideo_v1 0.60.0 → 0.61.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: 140f0881461faf1b1f37bc0250049a0f10d7758f5e488d806a4b47ddc0cebcb6
|
4
|
+
data.tar.gz: 1eef14ccec536d3861f827ac1f5c1a65519647fc4cb87a78c5c0a580455a3f6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae4d73becacf485a555e1f3cd0ac72da409e42f9aefebb96374d7c30e833d5ba9f98e3e14ef30ef606bb8b64e3fb30c70c514f4922e7858567594f1923ac05c3
|
7
|
+
data.tar.gz: 15379a0edaaba319f9797cceb5b76c321523503a9d316315186c8bc3723d45c16e97bb4c02b585a1c300a21de1810a8d5e8033b4e8b46572ee4e98dd815e2c41
|
data/CHANGELOG.md
CHANGED
@@ -2757,6 +2757,31 @@ module Google
|
|
2757
2757
|
end
|
2758
2758
|
end
|
2759
2759
|
|
2760
|
+
# User consent status.
|
2761
|
+
class Consent
|
2762
|
+
include Google::Apis::Core::Hashable
|
2763
|
+
|
2764
|
+
# Represents consent for ad personalization.
|
2765
|
+
# Corresponds to the JSON property `adPersonalization`
|
2766
|
+
# @return [String]
|
2767
|
+
attr_accessor :ad_personalization
|
2768
|
+
|
2769
|
+
# Represents consent for ad user data.
|
2770
|
+
# Corresponds to the JSON property `adUserData`
|
2771
|
+
# @return [String]
|
2772
|
+
attr_accessor :ad_user_data
|
2773
|
+
|
2774
|
+
def initialize(**args)
|
2775
|
+
update!(**args)
|
2776
|
+
end
|
2777
|
+
|
2778
|
+
# Update properties of this object
|
2779
|
+
def update!(**args)
|
2780
|
+
@ad_personalization = args[:ad_personalization] if args.key?(:ad_personalization)
|
2781
|
+
@ad_user_data = args[:ad_user_data] if args.key?(:ad_user_data)
|
2782
|
+
end
|
2783
|
+
end
|
2784
|
+
|
2760
2785
|
# Contact information defining a Customer Match audience member.
|
2761
2786
|
class ContactInfo
|
2762
2787
|
include Google::Apis::Core::Hashable
|
@@ -2820,6 +2845,11 @@ module Google
|
|
2820
2845
|
class ContactInfoList
|
2821
2846
|
include Google::Apis::Core::Hashable
|
2822
2847
|
|
2848
|
+
# User consent status.
|
2849
|
+
# Corresponds to the JSON property `consent`
|
2850
|
+
# @return [Google::Apis::DisplayvideoV1::Consent]
|
2851
|
+
attr_accessor :consent
|
2852
|
+
|
2823
2853
|
# A list of ContactInfo objects defining Customer Match audience members. The
|
2824
2854
|
# size of members after splitting the contact_infos mustn't be greater than 500,
|
2825
2855
|
# 000.
|
@@ -2833,6 +2863,7 @@ module Google
|
|
2833
2863
|
|
2834
2864
|
# Update properties of this object
|
2835
2865
|
def update!(**args)
|
2866
|
+
@consent = args[:consent] if args.key?(:consent)
|
2836
2867
|
@contact_infos = args[:contact_infos] if args.key?(:contact_infos)
|
2837
2868
|
end
|
2838
2869
|
end
|
@@ -8218,6 +8249,11 @@ module Google
|
|
8218
8249
|
class MobileDeviceIdList
|
8219
8250
|
include Google::Apis::Core::Hashable
|
8220
8251
|
|
8252
|
+
# User consent status.
|
8253
|
+
# Corresponds to the JSON property `consent`
|
8254
|
+
# @return [Google::Apis::DisplayvideoV1::Consent]
|
8255
|
+
attr_accessor :consent
|
8256
|
+
|
8221
8257
|
# A list of mobile device IDs defining Customer Match audience members. The size
|
8222
8258
|
# of mobile_device_ids mustn't be greater than 500,000.
|
8223
8259
|
# Corresponds to the JSON property `mobileDeviceIds`
|
@@ -8230,6 +8266,7 @@ module Google
|
|
8230
8266
|
|
8231
8267
|
# Update properties of this object
|
8232
8268
|
def update!(**args)
|
8269
|
+
@consent = args[:consent] if args.key?(:consent)
|
8233
8270
|
@mobile_device_ids = args[:mobile_device_ids] if args.key?(:mobile_device_ids)
|
8234
8271
|
end
|
8235
8272
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DisplayvideoV1
|
18
18
|
# Version of the google-apis-displayvideo_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.61.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
|
@@ -442,6 +442,12 @@ module Google
|
|
442
442
|
include Google::Apis::Core::JsonObjectSupport
|
443
443
|
end
|
444
444
|
|
445
|
+
class Consent
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
445
451
|
class ContactInfo
|
446
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
453
|
|
@@ -2478,6 +2484,14 @@ module Google
|
|
2478
2484
|
end
|
2479
2485
|
end
|
2480
2486
|
|
2487
|
+
class Consent
|
2488
|
+
# @private
|
2489
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2490
|
+
property :ad_personalization, as: 'adPersonalization'
|
2491
|
+
property :ad_user_data, as: 'adUserData'
|
2492
|
+
end
|
2493
|
+
end
|
2494
|
+
|
2481
2495
|
class ContactInfo
|
2482
2496
|
# @private
|
2483
2497
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2493,6 +2507,8 @@ module Google
|
|
2493
2507
|
class ContactInfoList
|
2494
2508
|
# @private
|
2495
2509
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2510
|
+
property :consent, as: 'consent', class: Google::Apis::DisplayvideoV1::Consent, decorator: Google::Apis::DisplayvideoV1::Consent::Representation
|
2511
|
+
|
2496
2512
|
collection :contact_infos, as: 'contactInfos', class: Google::Apis::DisplayvideoV1::ContactInfo, decorator: Google::Apis::DisplayvideoV1::ContactInfo::Representation
|
2497
2513
|
|
2498
2514
|
end
|
@@ -3931,6 +3947,8 @@ module Google
|
|
3931
3947
|
class MobileDeviceIdList
|
3932
3948
|
# @private
|
3933
3949
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3950
|
+
property :consent, as: 'consent', class: Google::Apis::DisplayvideoV1::Consent, decorator: Google::Apis::DisplayvideoV1::Consent::Representation
|
3951
|
+
|
3934
3952
|
collection :mobile_device_ids, as: 'mobileDeviceIds'
|
3935
3953
|
end
|
3936
3954
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-displayvideo_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.61.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v1/v0.61.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|