google-apis-displayvideo_v1 0.60.0 → 0.61.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1977e30d2912057434287338aba9469b505e41836e07b08c83a921e53e1924b4
4
- data.tar.gz: efe30f6db33901db8203338fea026797579190ce025ebd6e8ab8b50ff39c2926
3
+ metadata.gz: 140f0881461faf1b1f37bc0250049a0f10d7758f5e488d806a4b47ddc0cebcb6
4
+ data.tar.gz: 1eef14ccec536d3861f827ac1f5c1a65519647fc4cb87a78c5c0a580455a3f6a
5
5
  SHA512:
6
- metadata.gz: 9bfa29cf429a35ba8a734988320d841e643a6267c68e84614ecd26ab515dcc894f5dc1b1b468d0279b90de6a598c2c980825994740a7ba7fec3c8659c557055e
7
- data.tar.gz: 32efe9fb412a3a6c03c9fb27cc7a4f05c948bed970fc65682fe165b6a1245555460b544b03cec549cb3315b561f806f0c3cc957e7b090c08c0235cd4bfd769c4
6
+ metadata.gz: ae4d73becacf485a555e1f3cd0ac72da409e42f9aefebb96374d7c30e833d5ba9f98e3e14ef30ef606bb8b64e3fb30c70c514f4922e7858567594f1923ac05c3
7
+ data.tar.gz: 15379a0edaaba319f9797cceb5b76c321523503a9d316315186c8bc3723d45c16e97bb4c02b585a1c300a21de1810a8d5e8033b4e8b46572ee4e98dd815e2c41
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-displayvideo_v1
2
2
 
3
+ ### v0.61.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231113
6
+
3
7
  ### v0.60.0 (2023-10-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20231009
@@ -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.60.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 = "20231009"
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.60.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-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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v1/v0.60.0
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: []