google-apis-authorizedbuyersmarketplace_v1 0.22.0 → 0.23.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 +4 -0
- data/lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb +37 -3
- data/lib/google/apis/authorizedbuyersmarketplace_v1/gem_version.rb +2 -2
- data/lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb +16 -0
- data/lib/google/apis/authorizedbuyersmarketplace_v1/service.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f49c99123ed4168862c57251dbbecc9e53db2bcb01ea43f6e0a4decda923c87
|
4
|
+
data.tar.gz: e27eb8dec2ad0bdedd1f56c6f3a6a5dbd9ab0e50294774e2533f84e300a5f783
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e761c082c6f35dfd56f13a8121e5561e5b365a529885a711323b52740cb8a7c31837b34c4e930de951fc67bc29650f12044a0c5bc28a4cdd2c127d6c380bcca
|
7
|
+
data.tar.gz: c89b480b50a27fd3929e42adc29eac815b3fdcd39c2badc30f1ca1e1be900310224fb83ad8a344d41def594b6fa43c1ce9d8b0b6b5669c2610ddc5abbb95c44e
|
data/CHANGELOG.md
CHANGED
@@ -551,13 +551,14 @@ module Google
|
|
551
551
|
# Output only. When the client field is populated, this field refers to the
|
552
552
|
# buyer who creates and manages the client buyer and gets billed on behalf of
|
553
553
|
# the client buyer; when the buyer field is populated, this field is the same
|
554
|
-
# value as buyer
|
554
|
+
# value as buyer; when the deal belongs to a media planner account, this field
|
555
|
+
# will be empty. Format : `buyers/`buyerAccountId``
|
555
556
|
# Corresponds to the JSON property `billedBuyer`
|
556
557
|
# @return [String]
|
557
558
|
attr_accessor :billed_buyer
|
558
559
|
|
559
|
-
# Output only. Refers to a buyer in
|
560
|
-
# buyerAccountId``
|
560
|
+
# Output only. Refers to a buyer in Real-time Bidding API's Buyer resource.
|
561
|
+
# Format: `buyers/`buyerAccountId``
|
561
562
|
# Corresponds to the JSON property `buyer`
|
562
563
|
# @return [String]
|
563
564
|
attr_accessor :buyer
|
@@ -600,6 +601,13 @@ module Google
|
|
600
601
|
# @return [String]
|
601
602
|
attr_accessor :display_name
|
602
603
|
|
604
|
+
# Output only. If set, this field contains the list of DSP specific seat ids set
|
605
|
+
# by media planners that are eligible to transact on this deal. The seat ID is
|
606
|
+
# in the calling DSP's namespace.
|
607
|
+
# Corresponds to the JSON property `eligibleSeatIds`
|
608
|
+
# @return [Array<String>]
|
609
|
+
attr_accessor :eligible_seat_ids
|
610
|
+
|
603
611
|
# Represents an amount of money with its currency type.
|
604
612
|
# Corresponds to the JSON property `estimatedGrossSpend`
|
605
613
|
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::Money]
|
@@ -619,6 +627,11 @@ module Google
|
|
619
627
|
# @return [String]
|
620
628
|
attr_accessor :flight_start_time
|
621
629
|
|
630
|
+
# Describes a single Media Planner account.
|
631
|
+
# Corresponds to the JSON property `mediaPlanner`
|
632
|
+
# @return [Google::Apis::AuthorizedbuyersmarketplaceV1::MediaPlanner]
|
633
|
+
attr_accessor :media_planner
|
634
|
+
|
622
635
|
# Immutable. The unique identifier of the deal. Auto-generated by the server
|
623
636
|
# when a deal is created. Format: buyers/`accountId`/proposals/`proposalId`/
|
624
637
|
# deals/`dealId`
|
@@ -691,9 +704,11 @@ module Google
|
|
691
704
|
@delivery_control = args[:delivery_control] if args.key?(:delivery_control)
|
692
705
|
@description = args[:description] if args.key?(:description)
|
693
706
|
@display_name = args[:display_name] if args.key?(:display_name)
|
707
|
+
@eligible_seat_ids = args[:eligible_seat_ids] if args.key?(:eligible_seat_ids)
|
694
708
|
@estimated_gross_spend = args[:estimated_gross_spend] if args.key?(:estimated_gross_spend)
|
695
709
|
@flight_end_time = args[:flight_end_time] if args.key?(:flight_end_time)
|
696
710
|
@flight_start_time = args[:flight_start_time] if args.key?(:flight_start_time)
|
711
|
+
@media_planner = args[:media_planner] if args.key?(:media_planner)
|
697
712
|
@name = args[:name] if args.key?(:name)
|
698
713
|
@preferred_deal_terms = args[:preferred_deal_terms] if args.key?(:preferred_deal_terms)
|
699
714
|
@private_auction_terms = args[:private_auction_terms] if args.key?(:private_auction_terms)
|
@@ -1217,6 +1232,25 @@ module Google
|
|
1217
1232
|
end
|
1218
1233
|
end
|
1219
1234
|
|
1235
|
+
# Describes a single Media Planner account.
|
1236
|
+
class MediaPlanner
|
1237
|
+
include Google::Apis::Core::Hashable
|
1238
|
+
|
1239
|
+
# Output only. Account ID of the media planner.
|
1240
|
+
# Corresponds to the JSON property `accountId`
|
1241
|
+
# @return [String]
|
1242
|
+
attr_accessor :account_id
|
1243
|
+
|
1244
|
+
def initialize(**args)
|
1245
|
+
update!(**args)
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# Update properties of this object
|
1249
|
+
def update!(**args)
|
1250
|
+
@account_id = args[:account_id] if args.key?(:account_id)
|
1251
|
+
end
|
1252
|
+
end
|
1253
|
+
|
1220
1254
|
# Mobile application targeting settings.
|
1221
1255
|
class MobileApplicationTargeting
|
1222
1256
|
include Google::Apis::Core::Hashable
|
@@ -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.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240304"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -238,6 +238,12 @@ module Google
|
|
238
238
|
include Google::Apis::Core::JsonObjectSupport
|
239
239
|
end
|
240
240
|
|
241
|
+
class MediaPlanner
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
241
247
|
class MobileApplicationTargeting
|
242
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
249
|
|
@@ -579,10 +585,13 @@ module Google
|
|
579
585
|
|
580
586
|
property :description, as: 'description'
|
581
587
|
property :display_name, as: 'displayName'
|
588
|
+
collection :eligible_seat_ids, as: 'eligibleSeatIds'
|
582
589
|
property :estimated_gross_spend, as: 'estimatedGrossSpend', class: Google::Apis::AuthorizedbuyersmarketplaceV1::Money, decorator: Google::Apis::AuthorizedbuyersmarketplaceV1::Money::Representation
|
583
590
|
|
584
591
|
property :flight_end_time, as: 'flightEndTime'
|
585
592
|
property :flight_start_time, as: 'flightStartTime'
|
593
|
+
property :media_planner, as: 'mediaPlanner', class: Google::Apis::AuthorizedbuyersmarketplaceV1::MediaPlanner, decorator: Google::Apis::AuthorizedbuyersmarketplaceV1::MediaPlanner::Representation
|
594
|
+
|
586
595
|
property :name, as: 'name'
|
587
596
|
property :preferred_deal_terms, as: 'preferredDealTerms', class: Google::Apis::AuthorizedbuyersmarketplaceV1::PreferredDealTerms, decorator: Google::Apis::AuthorizedbuyersmarketplaceV1::PreferredDealTerms::Representation
|
588
597
|
|
@@ -761,6 +770,13 @@ module Google
|
|
761
770
|
end
|
762
771
|
end
|
763
772
|
|
773
|
+
class MediaPlanner
|
774
|
+
# @private
|
775
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
776
|
+
property :account_id, as: 'accountId'
|
777
|
+
end
|
778
|
+
end
|
779
|
+
|
764
780
|
class MobileApplicationTargeting
|
765
781
|
# @private
|
766
782
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -65,7 +65,7 @@ module Google
|
|
65
65
|
# developers.google.com/authorized-buyers/apis/guides/list-filters) Supported
|
66
66
|
# columns for filtering are: * deal.displayName * deal.dealType * deal.
|
67
67
|
# createTime * deal.updateTime * deal.flightStartTime * deal.flightEndTime *
|
68
|
-
# dealServingStatus
|
68
|
+
# deal.eligibleSeatIds * dealServingStatus
|
69
69
|
# @param [String] order_by
|
70
70
|
# An optional query string to sort finalized deals using the [Cloud API sorting
|
71
71
|
# syntax](https://cloud.google.com/apis/design/design_patterns#sorting_order).
|
@@ -844,7 +844,7 @@ module Google
|
|
844
844
|
# developers.google.com/authorized-buyers/apis/guides/list-filters) Supported
|
845
845
|
# columns for filtering are: * deal.displayName * deal.dealType * deal.
|
846
846
|
# createTime * deal.updateTime * deal.flightStartTime * deal.flightEndTime *
|
847
|
-
# dealServingStatus
|
847
|
+
# deal.eligibleSeatIds * dealServingStatus
|
848
848
|
# @param [String] order_by
|
849
849
|
# An optional query string to sort finalized deals using the [Cloud API sorting
|
850
850
|
# syntax](https://cloud.google.com/apis/design/design_patterns#sorting_order).
|
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.23.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-
|
11
|
+
date: 2024-03-10 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.23.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: []
|