google-apis-authorizedbuyersmarketplace_v1 0.11.0 → 0.12.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a60ec9f5394192a734a3995d77a8f576b49063e8be20ca814ead5928296b36e9
|
4
|
+
data.tar.gz: 66c719ae3b567d6588aa5e3870fa749a2dc69dc7ed7e942204c57a8ea16e4d91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1078c74986772c999f05fcc74470b76c47236d038b4a23088cefcd79f6e08eb3fc4949c5384a8b9ff21c1df7cc8b6124a48f329663de1c79a8b4625881226bdb
|
7
|
+
data.tar.gz: d46ab43e3e08055897f8426a4965e214356f08e85e6b5ac1c6a3015dc81561d52a1a82ff96459745c992f2ef4981824054288ba48a0ae2d4da847bd4281313c6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-authorizedbuyersmarketplace_v1
|
2
2
|
|
3
|
+
### v0.12.0 (2022-08-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220806
|
6
|
+
* Regenerated using generator version 0.9.0
|
7
|
+
|
3
8
|
### v0.11.0 (2022-06-30)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.8.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.12.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 = "20220806"
|
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
|
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.12.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-08-15 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.12.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: []
|