google-apis-realtimebidding_v1 0.33.0 → 0.35.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: 5f8c453305227e3ca85e2ef9a026b6c6df771baacb6a133c6ed55c94e3489cd1
4
- data.tar.gz: ffb1b3f9441eb292622e57fdde303ce7ab8ff61ec4f9522d986d17eb1bfb0e9b
3
+ metadata.gz: 57fd22ecf391b04e327ec5525aa11537bb046ca7ab730d4fcd194d6f9920a6ee
4
+ data.tar.gz: 7f5d51cc08bd59df91ffa23ac81aeb66fe117cb58af0dc972a41af0ed2608fdd
5
5
  SHA512:
6
- metadata.gz: 9a24b8bcb954a778a680192cd2d5cbbb1edb1c3affe41b9571b70b1e84bf174bff27b3054464d0496f31e732f84fd5da4c3566794a275ec75d18cd99c5e75bb6
7
- data.tar.gz: 9f962eadb0a8d051e3b25a2b024ae3d898c5c4536760520abf266884abe4c766763c4fd02d8f2ee06384b0d7b6c577f5eff377fd9051710c5b280e4a929d73df
6
+ metadata.gz: e07495c09ca81d384674ecdc2e854136ce532ff28ef07fffe06e5ea647dbe622233dda68d2c3a42f09c61cf93507d95e9156d7cf4191a5a8210f53795bd5500e
7
+ data.tar.gz: ef7106a698240ecc9716ef541a686f71c3e51d5a45ffe3bd43cc062140acc91bc93a384bcbb10fb94b66a9857d6f683030376900b7cfac8c7d1fdb30d24a4f9c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-realtimebidding_v1
2
2
 
3
+ ### v0.35.0 (2024-10-06)
4
+
5
+ * Regenerated from discovery document revision 20240930
6
+
7
+ ### v0.34.0 (2024-08-11)
8
+
9
+ * Regenerated from discovery document revision 20240806
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.33.0 (2024-05-19)
4
13
 
5
14
  * Regenerated from discovery document revision 20240320
@@ -715,6 +715,18 @@ module Google
715
715
  # @return [Array<String>]
716
716
  attr_accessor :detected_attributes
717
717
 
718
+ # Output only. IDs of the detected categories, if any. The taxonomy in which the
719
+ # categories are expressed is specified by the detected_categories_taxonomy
720
+ # field. Can be used to filter the response of the creatives.list method.
721
+ # Corresponds to the JSON property `detectedCategories`
722
+ # @return [Array<String>]
723
+ attr_accessor :detected_categories
724
+
725
+ # Output only. The taxonomy in which the detected_categories field is expressed.
726
+ # Corresponds to the JSON property `detectedCategoriesTaxonomy`
727
+ # @return [String]
728
+ attr_accessor :detected_categories_taxonomy
729
+
718
730
  # The set of detected destination URLs for the creative. Can be used to filter
719
731
  # the response of the creatives.list method.
720
732
  # Corresponds to the JSON property `detectedClickThroughUrls`
@@ -793,6 +805,8 @@ module Google
793
805
  @deals_policy_compliance = args[:deals_policy_compliance] if args.key?(:deals_policy_compliance)
794
806
  @detected_advertisers = args[:detected_advertisers] if args.key?(:detected_advertisers)
795
807
  @detected_attributes = args[:detected_attributes] if args.key?(:detected_attributes)
808
+ @detected_categories = args[:detected_categories] if args.key?(:detected_categories)
809
+ @detected_categories_taxonomy = args[:detected_categories_taxonomy] if args.key?(:detected_categories_taxonomy)
796
810
  @detected_click_through_urls = args[:detected_click_through_urls] if args.key?(:detected_click_through_urls)
797
811
  @detected_domains = args[:detected_domains] if args.key?(:detected_domains)
798
812
  @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
@@ -2229,13 +2243,14 @@ module Google
2229
2243
  # @return [Google::Apis::RealtimebiddingV1::VideoMetadata]
2230
2244
  attr_accessor :video_metadata
2231
2245
 
2232
- # The URL to fetch a video ad.
2246
+ # The URL to fetch a video ad. The URL should return an XML response that
2247
+ # conforms to the VAST 2.0, 3.0 or 4.x standard.
2233
2248
  # Corresponds to the JSON property `videoUrl`
2234
2249
  # @return [String]
2235
2250
  attr_accessor :video_url
2236
2251
 
2237
2252
  # The contents of a VAST document for a video ad. This document should conform
2238
- # to the VAST 2.0 or 3.0 standard.
2253
+ # to the VAST 2.0, 3.0, or 4.x standard.
2239
2254
  # Corresponds to the JSON property `videoVastXml`
2240
2255
  # @return [String]
2241
2256
  attr_accessor :video_vast_xml
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RealtimebiddingV1
18
18
  # Version of the google-apis-realtimebidding_v1 gem
19
- GEM_VERSION = "0.33.0"
19
+ GEM_VERSION = "0.35.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240320"
25
+ REVISION = "20240930"
26
26
  end
27
27
  end
28
28
  end
@@ -545,6 +545,8 @@ module Google
545
545
  collection :detected_advertisers, as: 'detectedAdvertisers', class: Google::Apis::RealtimebiddingV1::AdvertiserAndBrand, decorator: Google::Apis::RealtimebiddingV1::AdvertiserAndBrand::Representation
546
546
 
547
547
  collection :detected_attributes, as: 'detectedAttributes'
548
+ collection :detected_categories, as: 'detectedCategories'
549
+ property :detected_categories_taxonomy, as: 'detectedCategoriesTaxonomy'
548
550
  collection :detected_click_through_urls, as: 'detectedClickThroughUrls'
549
551
  collection :detected_domains, as: 'detectedDomains'
550
552
  collection :detected_languages, as: 'detectedLanguages'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-realtimebidding_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.33.0
4
+ version: 0.35.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: 2024-05-26 00:00:00.000000000 Z
11
+ date: 2024-10-06 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-realtimebidding_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-realtimebidding_v1/v0.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-realtimebidding_v1/v0.35.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-realtimebidding_v1
63
63
  post_install_message:
64
64
  rdoc_options: []