google-apis-authorizedbuyersmarketplace_v1 0.10.0 → 0.13.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/lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb +25 -0
- data/lib/google/apis/authorizedbuyersmarketplace_v1/gem_version.rb +3 -3
- data/lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb +15 -0
- data/lib/google/apis/authorizedbuyersmarketplace_v1/service.rb +3 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd99a9b858a3731a8aac22af9e06e67499af09add937175d4fd21a11c14df82a
|
4
|
+
data.tar.gz: da4f7cab217a3df63a33ed119ce8cc4366254bc5481bc09cfcf88fd47eca001d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '079303109b2a8cbb70483e643dcb68a6c91a3ee5176ef2eb730531109e102c8348b4fecabe0dd4214c9ef48f932cd6d5b75135223a41d7263344f8b2ab149997'
|
7
|
+
data.tar.gz: f32cdb7357b037b60a1371c80926b4ba3f68ff7b6e42fc0a3de5689334998bc0b7927cbdf1e76e8a8ba27fd5ccd95c116f794208e8f3fbf384defc646c860456
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-authorizedbuyersmarketplace_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2022-09-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220907
|
6
|
+
|
7
|
+
### v0.12.0 (2022-08-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220806
|
10
|
+
* Regenerated using generator version 0.9.0
|
11
|
+
|
12
|
+
### v0.11.0 (2022-06-30)
|
13
|
+
|
14
|
+
* Regenerated using generator version 0.8.0
|
15
|
+
|
3
16
|
### v0.10.0 (2022-06-21)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.7.0
|
@@ -947,6 +947,25 @@ module Google
|
|
947
947
|
end
|
948
948
|
end
|
949
949
|
|
950
|
+
# Targeting of the inventory types a bid request can originate from.
|
951
|
+
class InventoryTypeTargeting
|
952
|
+
include Google::Apis::Core::Hashable
|
953
|
+
|
954
|
+
# The list of targeted inventory types for the bid request.
|
955
|
+
# Corresponds to the JSON property `inventoryTypes`
|
956
|
+
# @return [Array<String>]
|
957
|
+
attr_accessor :inventory_types
|
958
|
+
|
959
|
+
def initialize(**args)
|
960
|
+
update!(**args)
|
961
|
+
end
|
962
|
+
|
963
|
+
# Update properties of this object
|
964
|
+
def update!(**args)
|
965
|
+
@inventory_types = args[:inventory_types] if args.key?(:inventory_types)
|
966
|
+
end
|
967
|
+
end
|
968
|
+
|
950
969
|
# Response message for listing auction packages.
|
951
970
|
class ListAuctionPackagesResponse
|
952
971
|
include Google::Apis::Core::Hashable
|
@@ -1152,6 +1171,11 @@ module Google
|
|
1152
1171
|
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::InventorySizeTargeting]
|
1153
1172
|
attr_accessor :inventory_size_targeting
|
1154
1173
|
|
1174
|
+
# Targeting of the inventory types a bid request can originate from.
|
1175
|
+
# Corresponds to the JSON property `inventoryTypeTargeting`
|
1176
|
+
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::InventoryTypeTargeting]
|
1177
|
+
attr_accessor :inventory_type_targeting
|
1178
|
+
|
1155
1179
|
# Represents targeting about where the ads can appear, for example, certain
|
1156
1180
|
# sites or mobile applications. Different placement targeting types will be
|
1157
1181
|
# logically OR'ed.
|
@@ -1185,6 +1209,7 @@ module Google
|
|
1185
1209
|
@daypart_targeting = args[:daypart_targeting] if args.key?(:daypart_targeting)
|
1186
1210
|
@geo_targeting = args[:geo_targeting] if args.key?(:geo_targeting)
|
1187
1211
|
@inventory_size_targeting = args[:inventory_size_targeting] if args.key?(:inventory_size_targeting)
|
1212
|
+
@inventory_type_targeting = args[:inventory_type_targeting] if args.key?(:inventory_type_targeting)
|
1188
1213
|
@placement_targeting = args[:placement_targeting] if args.key?(:placement_targeting)
|
1189
1214
|
@technology_targeting = args[:technology_targeting] if args.key?(:technology_targeting)
|
1190
1215
|
@user_list_targeting = args[:user_list_targeting] if args.key?(:user_list_targeting)
|
@@ -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.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220907"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class InventoryTypeTargeting
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class ListAuctionPackagesResponse
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -663,6 +669,13 @@ module Google
|
|
663
669
|
end
|
664
670
|
end
|
665
671
|
|
672
|
+
class InventoryTypeTargeting
|
673
|
+
# @private
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
675
|
+
collection :inventory_types, as: 'inventoryTypes'
|
676
|
+
end
|
677
|
+
end
|
678
|
+
|
666
679
|
class ListAuctionPackagesResponse
|
667
680
|
# @private
|
668
681
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -735,6 +748,8 @@ module Google
|
|
735
748
|
|
736
749
|
property :inventory_size_targeting, as: 'inventorySizeTargeting', class: Google::Apis::AuthorizedbuyersmarketplaceV1::InventorySizeTargeting, decorator: Google::Apis::AuthorizedbuyersmarketplaceV1::InventorySizeTargeting::Representation
|
737
750
|
|
751
|
+
property :inventory_type_targeting, as: 'inventoryTypeTargeting', class: Google::Apis::AuthorizedbuyersmarketplaceV1::InventoryTypeTargeting, decorator: Google::Apis::AuthorizedbuyersmarketplaceV1::InventoryTypeTargeting::Representation
|
752
|
+
|
738
753
|
property :placement_targeting, as: 'placementTargeting', class: Google::Apis::AuthorizedbuyersmarketplaceV1::PlacementTargeting, decorator: Google::Apis::AuthorizedbuyersmarketplaceV1::PlacementTargeting::Representation
|
739
754
|
|
740
755
|
property :technology_targeting, as: 'technologyTargeting', class: Google::Apis::AuthorizedbuyersmarketplaceV1::TechnologyTargeting, decorator: Google::Apis::AuthorizedbuyersmarketplaceV1::TechnologyTargeting::Representation
|
@@ -1471,7 +1471,9 @@ module Google
|
|
1471
1471
|
execute_or_queue_command(command, &block)
|
1472
1472
|
end
|
1473
1473
|
|
1474
|
-
# Lists publisher profiles
|
1474
|
+
# Lists publisher profiles. The returned publisher profiles aren't in any
|
1475
|
+
# defined order. The order of the results might change. A new publisher profile
|
1476
|
+
# can appear in any place in the list of returned results.
|
1475
1477
|
# @param [String] parent
|
1476
1478
|
# Required. Parent that owns the collection of publisher profiles Format: `
|
1477
1479
|
# buyers/`buyerId``
|
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.13.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-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.7'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.13.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: []
|