google-apis-authorizedbuyersmarketplace_v1 0.4.0 → 0.7.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 +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb +38 -18
- data/lib/google/apis/authorizedbuyersmarketplace_v1/gem_version.rb +3 -3
- data/lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb +3 -0
- data/lib/google/apis/authorizedbuyersmarketplace_v1/service.rb +9 -9
- data/lib/google/apis/authorizedbuyersmarketplace_v1.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57d4c4df25854e03087bc67bc6f0a8031c34fca869df500e672112ff371ac068
|
4
|
+
data.tar.gz: bb6ed111d6663f633440a7fb859c77e942ee7508bb031d33b8e21d7e57679fe4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3eeb522b99902359563bee84d0b9ee5cb1170c85dd48a1bc35cc20d1b11eefbab3e4b17c5db37fda782e318dd1c8f4e0d6e0185ec61107f31b6605531ab53a6c
|
7
|
+
data.tar.gz: a9a4a1f5e9d44449e8fe8b26b4b32ae2161e8e0c92495e4e90adaece916f3061da1100593e64a7277b099283c0c9e3ecdfd00f7a05f5e2dbb9526cc20474c958
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-authorizedbuyersmarketplace_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2022-03-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220319
|
6
|
+
|
7
|
+
### v0.6.0 (2022-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220315
|
10
|
+
|
11
|
+
### v0.5.0 (2022-02-15)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220212
|
14
|
+
* Regenerated using generator version 0.4.1
|
15
|
+
|
3
16
|
### v0.4.0 (2021-12-14)
|
4
17
|
|
5
18
|
* Unspecified changes
|
@@ -379,6 +379,12 @@ module Google
|
|
379
379
|
class CreativeRequirements
|
380
380
|
include Google::Apis::Core::Hashable
|
381
381
|
|
382
|
+
# Output only. The format of the creative, only applicable for programmatic
|
383
|
+
# guaranteed and preferred deals.
|
384
|
+
# Corresponds to the JSON property `creativeFormat`
|
385
|
+
# @return [String]
|
386
|
+
attr_accessor :creative_format
|
387
|
+
|
382
388
|
# Output only. Specifies the creative pre-approval policy.
|
383
389
|
# Corresponds to the JSON property `creativePreApprovalPolicy`
|
384
390
|
# @return [String]
|
@@ -389,6 +395,12 @@ module Google
|
|
389
395
|
# @return [String]
|
390
396
|
attr_accessor :creative_safe_frame_compatibility
|
391
397
|
|
398
|
+
# Output only. The max duration of the video creative in milliseconds. only
|
399
|
+
# applicable for deals with video creatives.
|
400
|
+
# Corresponds to the JSON property `maxAdDurationMs`
|
401
|
+
# @return [Fixnum]
|
402
|
+
attr_accessor :max_ad_duration_ms
|
403
|
+
|
392
404
|
# Output only. Specifies the creative source for programmatic deals. PUBLISHER
|
393
405
|
# means creative is provided by seller and ADVERTISER means creative is provided
|
394
406
|
# by the buyer.
|
@@ -396,15 +408,24 @@ module Google
|
|
396
408
|
# @return [String]
|
397
409
|
attr_accessor :programmatic_creative_source
|
398
410
|
|
411
|
+
# Output only. Skippable video ads allow viewers to skip ads after 5 seconds.
|
412
|
+
# Only applicable for deals with video creatives.
|
413
|
+
# Corresponds to the JSON property `skippableAdType`
|
414
|
+
# @return [String]
|
415
|
+
attr_accessor :skippable_ad_type
|
416
|
+
|
399
417
|
def initialize(**args)
|
400
418
|
update!(**args)
|
401
419
|
end
|
402
420
|
|
403
421
|
# Update properties of this object
|
404
422
|
def update!(**args)
|
423
|
+
@creative_format = args[:creative_format] if args.key?(:creative_format)
|
405
424
|
@creative_pre_approval_policy = args[:creative_pre_approval_policy] if args.key?(:creative_pre_approval_policy)
|
406
425
|
@creative_safe_frame_compatibility = args[:creative_safe_frame_compatibility] if args.key?(:creative_safe_frame_compatibility)
|
426
|
+
@max_ad_duration_ms = args[:max_ad_duration_ms] if args.key?(:max_ad_duration_ms)
|
407
427
|
@programmatic_creative_source = args[:programmatic_creative_source] if args.key?(:programmatic_creative_source)
|
428
|
+
@skippable_ad_type = args[:skippable_ad_type] if args.key?(:skippable_ad_type)
|
408
429
|
end
|
409
430
|
end
|
410
431
|
|
@@ -592,8 +613,8 @@ module Google
|
|
592
613
|
|
593
614
|
# Proposed flight start time of the deal. This will generally be stored in the
|
594
615
|
# granularity of one second since deal serving starts at seconds boundary. Any
|
595
|
-
# time specified with more granularity (
|
596
|
-
# towards the start of time in seconds.
|
616
|
+
# time specified with more granularity (for example, in milliseconds) will be
|
617
|
+
# truncated towards the start of time in seconds.
|
597
618
|
# Corresponds to the JSON property `flightStartTime`
|
598
619
|
# @return [String]
|
599
620
|
attr_accessor :flight_start_time
|
@@ -721,7 +742,7 @@ module Google
|
|
721
742
|
class DeliveryControl
|
722
743
|
include Google::Apis::Core::Hashable
|
723
744
|
|
724
|
-
# Output only. Specifies roadblocking in a
|
745
|
+
# Output only. Specifies roadblocking in a main companion lineitem.
|
725
746
|
# Corresponds to the JSON property `companionDeliveryType`
|
726
747
|
# @return [String]
|
727
748
|
attr_accessor :companion_delivery_type
|
@@ -765,8 +786,7 @@ module Google
|
|
765
786
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
766
787
|
# messages in your APIs. A typical example is to use it as the request or the
|
767
788
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
768
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
769
|
-
# `Empty` is empty JSON object ````.
|
789
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
770
790
|
class Empty
|
771
791
|
include Google::Apis::Core::Hashable
|
772
792
|
|
@@ -782,10 +802,10 @@ module Google
|
|
782
802
|
# A finalized deal is a snapshot of the deal when both buyer and seller accept
|
783
803
|
# the deal. The buyer or seller can update the deal after it's been finalized
|
784
804
|
# and renegotiate on the deal targeting, terms and other fields, while at the
|
785
|
-
# same time the finalized snapshot of the deal can still be retrieved
|
805
|
+
# same time the finalized snapshot of the deal can still be retrieved using this
|
786
806
|
# API. The finalized deal contains a copy of the deal as it existed when most
|
787
807
|
# recently finalized, as well as fields related to deal serving such as pause/
|
788
|
-
# resume status, RTB metrics,
|
808
|
+
# resume status, RTB metrics, and more.
|
789
809
|
class FinalizedDeal
|
790
810
|
include Google::Apis::Core::Hashable
|
791
811
|
|
@@ -1132,9 +1152,9 @@ module Google
|
|
1132
1152
|
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::InventorySizeTargeting]
|
1133
1153
|
attr_accessor :inventory_size_targeting
|
1134
1154
|
|
1135
|
-
# Represents targeting about where the ads can appear,
|
1136
|
-
# mobile applications. Different placement targeting types will be
|
1137
|
-
# ed.
|
1155
|
+
# Represents targeting about where the ads can appear, for example, certain
|
1156
|
+
# sites or mobile applications. Different placement targeting types will be
|
1157
|
+
# logically OR'ed.
|
1138
1158
|
# Corresponds to the JSON property `placementTargeting`
|
1139
1159
|
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::PlacementTargeting]
|
1140
1160
|
attr_accessor :placement_targeting
|
@@ -1312,9 +1332,9 @@ module Google
|
|
1312
1332
|
end
|
1313
1333
|
end
|
1314
1334
|
|
1315
|
-
# Represents targeting about where the ads can appear,
|
1316
|
-
# mobile applications. Different placement targeting types will be
|
1317
|
-
# ed.
|
1335
|
+
# Represents targeting about where the ads can appear, for example, certain
|
1336
|
+
# sites or mobile applications. Different placement targeting types will be
|
1337
|
+
# logically OR'ed.
|
1318
1338
|
class PlacementTargeting
|
1319
1339
|
include Google::Apis::Core::Hashable
|
1320
1340
|
|
@@ -1323,7 +1343,7 @@ module Google
|
|
1323
1343
|
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::MobileApplicationTargeting]
|
1324
1344
|
attr_accessor :mobile_application_targeting
|
1325
1345
|
|
1326
|
-
# Represents a list of targeted and excluded URLs (
|
1346
|
+
# Represents a list of targeted and excluded URLs (for example, google.com). For
|
1327
1347
|
# Private Auction Deals, URLs are either included or excluded. For Programmatic
|
1328
1348
|
# Guaranteed and Preferred Deals, this doesn't apply.
|
1329
1349
|
# Corresponds to the JSON property `uriTargeting`
|
@@ -1737,7 +1757,7 @@ module Google
|
|
1737
1757
|
# @return [String]
|
1738
1758
|
attr_accessor :sample_page_url
|
1739
1759
|
|
1740
|
-
# Up to three key metrics and rankings. For example "#1 Mobile News Site for 20
|
1760
|
+
# Up to three key metrics and rankings. For example, "#1 Mobile News Site for 20
|
1741
1761
|
# Straight Months".
|
1742
1762
|
# Corresponds to the JSON property `topHeadlines`
|
1743
1763
|
# @return [Array<String>]
|
@@ -2155,8 +2175,8 @@ module Google
|
|
2155
2175
|
# List of fields to be updated. If empty or unspecified, the service will update
|
2156
2176
|
# all fields populated in the update request excluding the output only fields
|
2157
2177
|
# and primitive fields with default value. Note that explicit field mask is
|
2158
|
-
# required in order to reset a primitive field back to its default value,
|
2159
|
-
# false for boolean fields, 0 for integer fields. A special field mask
|
2178
|
+
# required in order to reset a primitive field back to its default value, for
|
2179
|
+
# example, false for boolean fields, 0 for integer fields. A special field mask
|
2160
2180
|
# consisting of a single path "*" can be used to indicate full replacement(the
|
2161
2181
|
# equivalent of PUT method), updatable fields unset or unspecified in the input
|
2162
2182
|
# will be cleared or set to default value. Output only fields will be ignored
|
@@ -2176,7 +2196,7 @@ module Google
|
|
2176
2196
|
end
|
2177
2197
|
end
|
2178
2198
|
|
2179
|
-
# Represents a list of targeted and excluded URLs (
|
2199
|
+
# Represents a list of targeted and excluded URLs (for example, google.com). For
|
2180
2200
|
# Private Auction Deals, URLs are either included or excluded. For Programmatic
|
2181
2201
|
# Guaranteed and Preferred Deals, this doesn't apply.
|
2182
2202
|
class UriTargeting
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AuthorizedbuyersmarketplaceV1
|
18
18
|
# Version of the google-apis-authorizedbuyersmarketplace_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220319"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -510,9 +510,12 @@ module Google
|
|
510
510
|
class CreativeRequirements
|
511
511
|
# @private
|
512
512
|
class Representation < Google::Apis::Core::JsonRepresentation
|
513
|
+
property :creative_format, as: 'creativeFormat'
|
513
514
|
property :creative_pre_approval_policy, as: 'creativePreApprovalPolicy'
|
514
515
|
property :creative_safe_frame_compatibility, as: 'creativeSafeFrameCompatibility'
|
516
|
+
property :max_ad_duration_ms, :numeric_string => true, as: 'maxAdDurationMs'
|
515
517
|
property :programmatic_creative_source, as: 'programmaticCreativeSource'
|
518
|
+
property :skippable_ad_type, as: 'skippableAdType'
|
516
519
|
end
|
517
520
|
end
|
518
521
|
|
@@ -22,7 +22,7 @@ module Google
|
|
22
22
|
module AuthorizedbuyersmarketplaceV1
|
23
23
|
# Authorized Buyers Marketplace API
|
24
24
|
#
|
25
|
-
# The Authorized Buyers Marketplace API
|
25
|
+
# The Authorized Buyers Marketplace API lets buyers programmatically discover
|
26
26
|
# inventory; propose, retrieve and negotiate deals with publishers.
|
27
27
|
#
|
28
28
|
# @example
|
@@ -510,8 +510,8 @@ module Google
|
|
510
510
|
# List of fields to be updated. If empty or unspecified, the service will update
|
511
511
|
# all fields populated in the update request excluding the output only fields
|
512
512
|
# and primitive fields with default value. Note that explicit field mask is
|
513
|
-
# required in order to reset a primitive field back to its default value,
|
514
|
-
# false for boolean fields, 0 for integer fields. A special field mask
|
513
|
+
# required in order to reset a primitive field back to its default value, for
|
514
|
+
# example, false for boolean fields, 0 for integer fields. A special field mask
|
515
515
|
# consisting of a single path "*" can be used to indicate full replacement(the
|
516
516
|
# equivalent of PUT method), updatable fields unset or unspecified in the input
|
517
517
|
# will be cleared or set to default value. Output only fields will be ignored
|
@@ -1205,8 +1205,8 @@ module Google
|
|
1205
1205
|
# List of fields to be updated. If empty or unspecified, the service will update
|
1206
1206
|
# all fields populated in the update request excluding the output only fields
|
1207
1207
|
# and primitive fields with default value. Note that explicit field mask is
|
1208
|
-
# required in order to reset a primitive field back to its default value,
|
1209
|
-
# false for boolean fields, 0 for integer fields. A special field mask
|
1208
|
+
# required in order to reset a primitive field back to its default value, for
|
1209
|
+
# example, false for boolean fields, 0 for integer fields. A special field mask
|
1210
1210
|
# consisting of a single path "*" can be used to indicate full replacement(the
|
1211
1211
|
# equivalent of PUT method), updatable fields unset or unspecified in the input
|
1212
1212
|
# will be cleared or set to default value. Output only fields will be ignored
|
@@ -1391,8 +1391,8 @@ module Google
|
|
1391
1391
|
# The revision number is kept at a proposal level. The buyer of the API is
|
1392
1392
|
# expected to keep track of the revision number after the last update operation
|
1393
1393
|
# and send it in as part of the next update request. This way, if there are
|
1394
|
-
# further changes on the server (
|
1395
|
-
# server can detect conflicts and reject the proposed changes.
|
1394
|
+
# further changes on the server (for example, seller making new updates), then
|
1395
|
+
# the server can detect conflicts and reject the proposed changes.
|
1396
1396
|
# @param [String] name
|
1397
1397
|
# Immutable. The unique identifier of the deal. Auto-generated by the server
|
1398
1398
|
# when a deal is created. Format: buyers/`accountId`/proposals/`proposalId`/
|
@@ -1402,8 +1402,8 @@ module Google
|
|
1402
1402
|
# List of fields to be updated. If empty or unspecified, the service will update
|
1403
1403
|
# all fields populated in the update request excluding the output only fields
|
1404
1404
|
# and primitive fields with default value. Note that explicit field mask is
|
1405
|
-
# required in order to reset a primitive field back to its default value,
|
1406
|
-
# false for boolean fields, 0 for integer fields. A special field mask
|
1405
|
+
# required in order to reset a primitive field back to its default value, for
|
1406
|
+
# example, false for boolean fields, 0 for integer fields. A special field mask
|
1407
1407
|
# consisting of a single path "*" can be used to indicate full replacement(the
|
1408
1408
|
# equivalent of PUT method), updatable fields unset or unspecified in the input
|
1409
1409
|
# will be cleared or set to default value. Output only fields will be ignored
|
@@ -21,7 +21,7 @@ module Google
|
|
21
21
|
module Apis
|
22
22
|
# Authorized Buyers Marketplace API
|
23
23
|
#
|
24
|
-
# The Authorized Buyers Marketplace API
|
24
|
+
# The Authorized Buyers Marketplace API lets buyers programmatically discover
|
25
25
|
# inventory; propose, retrieve and negotiate deals with publishers.
|
26
26
|
#
|
27
27
|
# @see https://developers.google.com/authorized-buyers/apis/marketplace/reference/rest/
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-authorizedbuyersmarketplace_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.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: 2022-
|
11
|
+
date: 2022-03-28 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-authorizedbuyersmarketplace_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-authorizedbuyersmarketplace_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-authorizedbuyersmarketplace_v1/v0.7.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-authorizedbuyersmarketplace_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Authorized Buyers Marketplace API V1
|