google-apis-authorizedbuyersmarketplace_v1 0.3.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb +37 -16
- 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: a35966197f88b221f468afdb2107275b053541fccaf78bfdc7ea24f7969ff87b
|
4
|
+
data.tar.gz: e27d9860ed222607b7a13573800a19ebc2b893b21ab44948a1c80db361ae143b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b736f1140769d1ae473f38699c3a2eb5bb1c4170356112e54b33bc51fde3014e4cd69b972eb6dff56b29fc6da31e6490eade28e0cafcc256fc4bb4271ff73cd5
|
7
|
+
data.tar.gz: b4f920a7f456e1e7a80bdc0c21aa1a1b8ff7dcb3062998074a76683c67e05689eca67327869deb2454d9e2259a1d473fc4cae2e334bc3082b63f543b6b17525e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-authorizedbuyersmarketplace_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2022-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220315
|
6
|
+
|
7
|
+
### v0.5.0 (2022-02-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220212
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.4.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
3
16
|
### v0.3.0 (2021-11-24)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20211123
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/authorizedbuyersmarketplace_v1"
|
|
51
51
|
client = Google::Apis::AuthorizedbuyersmarketplaceV1::AuthorizedBuyersMarketplaceService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -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
|
@@ -782,10 +803,10 @@ module Google
|
|
782
803
|
# A finalized deal is a snapshot of the deal when both buyer and seller accept
|
783
804
|
# the deal. The buyer or seller can update the deal after it's been finalized
|
784
805
|
# 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
|
806
|
+
# same time the finalized snapshot of the deal can still be retrieved using this
|
786
807
|
# API. The finalized deal contains a copy of the deal as it existed when most
|
787
808
|
# recently finalized, as well as fields related to deal serving such as pause/
|
788
|
-
# resume status, RTB metrics,
|
809
|
+
# resume status, RTB metrics, and more.
|
789
810
|
class FinalizedDeal
|
790
811
|
include Google::Apis::Core::Hashable
|
791
812
|
|
@@ -1132,9 +1153,9 @@ module Google
|
|
1132
1153
|
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::InventorySizeTargeting]
|
1133
1154
|
attr_accessor :inventory_size_targeting
|
1134
1155
|
|
1135
|
-
# Represents targeting about where the ads can appear,
|
1136
|
-
# mobile applications. Different placement targeting types will be
|
1137
|
-
# ed.
|
1156
|
+
# Represents targeting about where the ads can appear, for example, certain
|
1157
|
+
# sites or mobile applications. Different placement targeting types will be
|
1158
|
+
# logically OR'ed.
|
1138
1159
|
# Corresponds to the JSON property `placementTargeting`
|
1139
1160
|
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::PlacementTargeting]
|
1140
1161
|
attr_accessor :placement_targeting
|
@@ -1312,9 +1333,9 @@ module Google
|
|
1312
1333
|
end
|
1313
1334
|
end
|
1314
1335
|
|
1315
|
-
# Represents targeting about where the ads can appear,
|
1316
|
-
# mobile applications. Different placement targeting types will be
|
1317
|
-
# ed.
|
1336
|
+
# Represents targeting about where the ads can appear, for example, certain
|
1337
|
+
# sites or mobile applications. Different placement targeting types will be
|
1338
|
+
# logically OR'ed.
|
1318
1339
|
class PlacementTargeting
|
1319
1340
|
include Google::Apis::Core::Hashable
|
1320
1341
|
|
@@ -1323,7 +1344,7 @@ module Google
|
|
1323
1344
|
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::MobileApplicationTargeting]
|
1324
1345
|
attr_accessor :mobile_application_targeting
|
1325
1346
|
|
1326
|
-
# Represents a list of targeted and excluded URLs (
|
1347
|
+
# Represents a list of targeted and excluded URLs (for example, google.com). For
|
1327
1348
|
# Private Auction Deals, URLs are either included or excluded. For Programmatic
|
1328
1349
|
# Guaranteed and Preferred Deals, this doesn't apply.
|
1329
1350
|
# Corresponds to the JSON property `uriTargeting`
|
@@ -1737,7 +1758,7 @@ module Google
|
|
1737
1758
|
# @return [String]
|
1738
1759
|
attr_accessor :sample_page_url
|
1739
1760
|
|
1740
|
-
# Up to three key metrics and rankings. For example "#1 Mobile News Site for 20
|
1761
|
+
# Up to three key metrics and rankings. For example, "#1 Mobile News Site for 20
|
1741
1762
|
# Straight Months".
|
1742
1763
|
# Corresponds to the JSON property `topHeadlines`
|
1743
1764
|
# @return [Array<String>]
|
@@ -2155,8 +2176,8 @@ module Google
|
|
2155
2176
|
# List of fields to be updated. If empty or unspecified, the service will update
|
2156
2177
|
# all fields populated in the update request excluding the output only fields
|
2157
2178
|
# 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
|
2179
|
+
# required in order to reset a primitive field back to its default value, for
|
2180
|
+
# example, false for boolean fields, 0 for integer fields. A special field mask
|
2160
2181
|
# consisting of a single path "*" can be used to indicate full replacement(the
|
2161
2182
|
# equivalent of PUT method), updatable fields unset or unspecified in the input
|
2162
2183
|
# will be cleared or set to default value. Output only fields will be ignored
|
@@ -2176,7 +2197,7 @@ module Google
|
|
2176
2197
|
end
|
2177
2198
|
end
|
2178
2199
|
|
2179
|
-
# Represents a list of targeted and excluded URLs (
|
2200
|
+
# Represents a list of targeted and excluded URLs (for example, google.com). For
|
2180
2201
|
# Private Auction Deals, URLs are either included or excluded. For Programmatic
|
2181
2202
|
# Guaranteed and Preferred Deals, this doesn't apply.
|
2182
2203
|
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.6.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 = "20220315"
|
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.6.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:
|
11
|
+
date: 2022-03-21 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.6.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.
|
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
|