google-apis-displayvideo_v1 0.31.0 → 0.32.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfd977c758004f5a9bd0861c3e54e2a797fccf030f8de37da487e67af9cee091
|
4
|
+
data.tar.gz: ae196be3108a348dc4b32b0086b1234661999ec2be3d441215d4c75c1c1e1d3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ade31d08015ac3e6397b7297d0ca0ae82878b08ce77839fed1964ab042d6f41241c5bdb777dfb064a3bfdfdce49cb058a4f54b04543bffa3e07e9e4d4bc9d76
|
7
|
+
data.tar.gz: 9b9edc778cf3094299e22b8038d84188ea96b57a6f02bea081ccc2890655935e4136da26a7080ee943ccf46bad29bd7360a1465c8628f42de7990cf2fa48432e
|
data/CHANGELOG.md
CHANGED
@@ -855,7 +855,7 @@ module Google
|
|
855
855
|
|
856
856
|
# Details for assigned gender targeting option. This will be populated in the
|
857
857
|
# details field of an AssignedTargetingOption when targeting_type is `
|
858
|
-
#
|
858
|
+
# TARGETING_TYPE_GENDER`.
|
859
859
|
# Corresponds to the JSON property `genderDetails`
|
860
860
|
# @return [Google::Apis::DisplayvideoV1::GenderAssignedTargetingOptionDetails]
|
861
861
|
attr_accessor :gender_details
|
@@ -951,7 +951,7 @@ module Google
|
|
951
951
|
|
952
952
|
# Details for assigned parental status targeting option. This will be populated
|
953
953
|
# in the details field of an AssignedTargetingOption when targeting_type is `
|
954
|
-
#
|
954
|
+
# TARGETING_TYPE_PARENTAL_STATUS`.
|
955
955
|
# Corresponds to the JSON property `parentalStatusDetails`
|
956
956
|
# @return [Google::Apis::DisplayvideoV1::ParentalStatusAssignedTargetingOptionDetails]
|
957
957
|
attr_accessor :parental_status_details
|
@@ -2818,7 +2818,8 @@ module Google
|
|
2818
2818
|
include Google::Apis::Core::Hashable
|
2819
2819
|
|
2820
2820
|
# A list of ContactInfo objects defining Customer Match audience members. The
|
2821
|
-
# size of contact_infos mustn't be greater than 500,
|
2821
|
+
# size of members after splitting the contact_infos mustn't be greater than 500,
|
2822
|
+
# 000.
|
2822
2823
|
# Corresponds to the JSON property `contactInfos`
|
2823
2824
|
# @return [Array<Google::Apis::DisplayvideoV1::ContactInfo>]
|
2824
2825
|
attr_accessor :contact_infos
|
@@ -3780,6 +3781,17 @@ module Google
|
|
3780
3781
|
# @return [String]
|
3781
3782
|
attr_accessor :entity_status
|
3782
3783
|
|
3784
|
+
# Output only. The custom bidding model readiness state for each advertiser who
|
3785
|
+
# have access. This field may only include the state of the queried advertiser
|
3786
|
+
# if the algorithm [`owner`](/display-video/api/reference/rest/v1/
|
3787
|
+
# customBiddingAlgorithms#CustomBiddingAlgorithm.FIELDS.oneof_owner) is a
|
3788
|
+
# partner and is being retrieved using an advertiser [`accessor`](/display-video/
|
3789
|
+
# api/reference/rest/v1/customBiddingAlgorithms/list#body.QUERY_PARAMETERS.
|
3790
|
+
# oneof_accessor).
|
3791
|
+
# Corresponds to the JSON property `modelReadiness`
|
3792
|
+
# @return [Array<Google::Apis::DisplayvideoV1::CustomBiddingModelReadinessState>]
|
3793
|
+
attr_accessor :model_readiness
|
3794
|
+
|
3783
3795
|
# Output only. The resource name of the custom bidding algorithm.
|
3784
3796
|
# Corresponds to the JSON property `name`
|
3785
3797
|
# @return [String]
|
@@ -3813,12 +3825,39 @@ module Google
|
|
3813
3825
|
@custom_bidding_algorithm_type = args[:custom_bidding_algorithm_type] if args.key?(:custom_bidding_algorithm_type)
|
3814
3826
|
@display_name = args[:display_name] if args.key?(:display_name)
|
3815
3827
|
@entity_status = args[:entity_status] if args.key?(:entity_status)
|
3828
|
+
@model_readiness = args[:model_readiness] if args.key?(:model_readiness)
|
3816
3829
|
@name = args[:name] if args.key?(:name)
|
3817
3830
|
@partner_id = args[:partner_id] if args.key?(:partner_id)
|
3818
3831
|
@shared_advertiser_ids = args[:shared_advertiser_ids] if args.key?(:shared_advertiser_ids)
|
3819
3832
|
end
|
3820
3833
|
end
|
3821
3834
|
|
3835
|
+
# The custom bidding algorithm model readiness state for a single shared
|
3836
|
+
# advertiser.
|
3837
|
+
class CustomBiddingModelReadinessState
|
3838
|
+
include Google::Apis::Core::Hashable
|
3839
|
+
|
3840
|
+
# The unique ID of the advertiser with access to the custom bidding algorithm.
|
3841
|
+
# Corresponds to the JSON property `advertiserId`
|
3842
|
+
# @return [Fixnum]
|
3843
|
+
attr_accessor :advertiser_id
|
3844
|
+
|
3845
|
+
# The readiness state of custom bidding model.
|
3846
|
+
# Corresponds to the JSON property `readinessState`
|
3847
|
+
# @return [String]
|
3848
|
+
attr_accessor :readiness_state
|
3849
|
+
|
3850
|
+
def initialize(**args)
|
3851
|
+
update!(**args)
|
3852
|
+
end
|
3853
|
+
|
3854
|
+
# Update properties of this object
|
3855
|
+
def update!(**args)
|
3856
|
+
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
3857
|
+
@readiness_state = args[:readiness_state] if args.key?(:readiness_state)
|
3858
|
+
end
|
3859
|
+
end
|
3860
|
+
|
3822
3861
|
# A single custom bidding script.
|
3823
3862
|
class CustomBiddingScript
|
3824
3863
|
include Google::Apis::Core::Hashable
|
@@ -5149,7 +5188,7 @@ module Google
|
|
5149
5188
|
|
5150
5189
|
# Details for assigned gender targeting option. This will be populated in the
|
5151
5190
|
# details field of an AssignedTargetingOption when targeting_type is `
|
5152
|
-
#
|
5191
|
+
# TARGETING_TYPE_GENDER`.
|
5153
5192
|
class GenderAssignedTargetingOptionDetails
|
5154
5193
|
include Google::Apis::Core::Hashable
|
5155
5194
|
|
@@ -8345,7 +8384,7 @@ module Google
|
|
8345
8384
|
|
8346
8385
|
# Details for assigned parental status targeting option. This will be populated
|
8347
8386
|
# in the details field of an AssignedTargetingOption when targeting_type is `
|
8348
|
-
#
|
8387
|
+
# TARGETING_TYPE_PARENTAL_STATUS`.
|
8349
8388
|
class ParentalStatusAssignedTargetingOptionDetails
|
8350
8389
|
include Google::Apis::Core::Hashable
|
8351
8390
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DisplayvideoV1
|
18
18
|
# Version of the google-apis-displayvideo_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220518"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -568,6 +568,12 @@ module Google
|
|
568
568
|
include Google::Apis::Core::JsonObjectSupport
|
569
569
|
end
|
570
570
|
|
571
|
+
class CustomBiddingModelReadinessState
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
573
|
+
|
574
|
+
include Google::Apis::Core::JsonObjectSupport
|
575
|
+
end
|
576
|
+
|
571
577
|
class CustomBiddingScript
|
572
578
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
573
579
|
|
@@ -2653,12 +2659,22 @@ module Google
|
|
2653
2659
|
property :custom_bidding_algorithm_type, as: 'customBiddingAlgorithmType'
|
2654
2660
|
property :display_name, as: 'displayName'
|
2655
2661
|
property :entity_status, as: 'entityStatus'
|
2662
|
+
collection :model_readiness, as: 'modelReadiness', class: Google::Apis::DisplayvideoV1::CustomBiddingModelReadinessState, decorator: Google::Apis::DisplayvideoV1::CustomBiddingModelReadinessState::Representation
|
2663
|
+
|
2656
2664
|
property :name, as: 'name'
|
2657
2665
|
property :partner_id, :numeric_string => true, as: 'partnerId'
|
2658
2666
|
collection :shared_advertiser_ids, as: 'sharedAdvertiserIds'
|
2659
2667
|
end
|
2660
2668
|
end
|
2661
2669
|
|
2670
|
+
class CustomBiddingModelReadinessState
|
2671
|
+
# @private
|
2672
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2673
|
+
property :advertiser_id, :numeric_string => true, as: 'advertiserId'
|
2674
|
+
property :readiness_state, as: 'readinessState'
|
2675
|
+
end
|
2676
|
+
end
|
2677
|
+
|
2662
2678
|
class CustomBiddingScript
|
2663
2679
|
# @private
|
2664
2680
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-displayvideo_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.32.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-05-
|
11
|
+
date: 2022-05-23 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-displayvideo_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v1/v0.32.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|