google-apis-displayvideo_v3 0.10.0 → 0.11.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: ef2eca4292f1aa3de80a203ba1df178543c658129e3b22312904781475f1c672
|
4
|
+
data.tar.gz: 3f5150af4c79b087d8d14c69dc19e428b38aac31e2ed9f2cfe25a8fd1658f5d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83ce0c3ffaaddbfd1ff9b8579429a0f3cc5cf78b6e9f2e523b493c6b56cb08a9c5f092442f8f69f7e4bb3c222923f7bd84190c006ade5060eac8e484a8b74c70
|
7
|
+
data.tar.gz: 820c170259d85fae850457b54f0633a4809de3b27ee483dbaeaa551ad56995b195ff45d8f2c7b907936bc8b4641bb90f31db7bb4d2b1dd29a8d183bb639649cd
|
data/CHANGELOG.md
CHANGED
@@ -2132,7 +2132,8 @@ module Google
|
|
2132
2132
|
# The assigned targeting options to create in batch, specified as a list of `
|
2133
2133
|
# CreateAssignedTargetingOptionsRequest`. Supported targeting types: * `
|
2134
2134
|
# TARGETING_TYPE_CHANNEL` * `TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `
|
2135
|
-
# TARGETING_TYPE_OMID` * `TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
2135
|
+
# TARGETING_TYPE_OMID` * `TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION` * `
|
2136
|
+
# TARGETING_TYPE_KEYWORD`
|
2136
2137
|
# Corresponds to the JSON property `createRequests`
|
2137
2138
|
# @return [Array<Google::Apis::DisplayvideoV3::CreateAssignedTargetingOptionsRequest>]
|
2138
2139
|
attr_accessor :create_requests
|
@@ -2140,7 +2141,8 @@ module Google
|
|
2140
2141
|
# The assigned targeting options to delete in batch, specified as a list of `
|
2141
2142
|
# DeleteAssignedTargetingOptionsRequest`. Supported targeting types: * `
|
2142
2143
|
# TARGETING_TYPE_CHANNEL` * `TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `
|
2143
|
-
# TARGETING_TYPE_OMID` * `TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
2144
|
+
# TARGETING_TYPE_OMID` * `TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION` * `
|
2145
|
+
# TARGETING_TYPE_KEYWORD`
|
2144
2146
|
# Corresponds to the JSON property `deleteRequests`
|
2145
2147
|
# @return [Array<Google::Apis::DisplayvideoV3::DeleteAssignedTargetingOptionsRequest>]
|
2146
2148
|
attr_accessor :delete_requests
|
@@ -7951,6 +7953,13 @@ module Google
|
|
7951
7953
|
class Kpi
|
7952
7954
|
include Google::Apis::Core::Hashable
|
7953
7955
|
|
7956
|
+
# Optional. Custom Bidding Algorithm ID associated with
|
7957
|
+
# KPI_CUSTOM_IMPRESSION_VALUE_OVER_COST. This field is ignored if the proper KPI
|
7958
|
+
# is not selected.
|
7959
|
+
# Corresponds to the JSON property `kpiAlgorithmId`
|
7960
|
+
# @return [Fixnum]
|
7961
|
+
attr_accessor :kpi_algorithm_id
|
7962
|
+
|
7954
7963
|
# The goal amount, in micros of the advertiser's currency. Applicable when
|
7955
7964
|
# kpi_type is one of: * `KPI_TYPE_CPM` * `KPI_TYPE_CPC` * `KPI_TYPE_CPA` * `
|
7956
7965
|
# KPI_TYPE_CPIAVC` * `KPI_TYPE_VCPM` For example: 1500000 represents 1.5
|
@@ -7985,6 +7994,7 @@ module Google
|
|
7985
7994
|
|
7986
7995
|
# Update properties of this object
|
7987
7996
|
def update!(**args)
|
7997
|
+
@kpi_algorithm_id = args[:kpi_algorithm_id] if args.key?(:kpi_algorithm_id)
|
7988
7998
|
@kpi_amount_micros = args[:kpi_amount_micros] if args.key?(:kpi_amount_micros)
|
7989
7999
|
@kpi_percentage_micros = args[:kpi_percentage_micros] if args.key?(:kpi_percentage_micros)
|
7990
8000
|
@kpi_string = args[:kpi_string] if args.key?(:kpi_string)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DisplayvideoV3
|
18
18
|
# Version of the google-apis-displayvideo_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.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 = "20240418"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4161,6 +4161,7 @@ module Google
|
|
4161
4161
|
class Kpi
|
4162
4162
|
# @private
|
4163
4163
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4164
|
+
property :kpi_algorithm_id, :numeric_string => true, as: 'kpiAlgorithmId'
|
4164
4165
|
property :kpi_amount_micros, :numeric_string => true, as: 'kpiAmountMicros'
|
4165
4166
|
property :kpi_percentage_micros, :numeric_string => true, as: 'kpiPercentageMicros'
|
4166
4167
|
property :kpi_string, as: 'kpiString'
|
@@ -3964,7 +3964,7 @@ module Google
|
|
3964
3964
|
# Required. Identifies the type of this assigned targeting option. Supported
|
3965
3965
|
# targeting types: * `TARGETING_TYPE_CHANNEL` * `
|
3966
3966
|
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `TARGETING_TYPE_OMID` * `
|
3967
|
-
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
3967
|
+
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION` * `TARGETING_TYPE_KEYWORD`
|
3968
3968
|
# @param [Google::Apis::DisplayvideoV3::AssignedTargetingOption] assigned_targeting_option_object
|
3969
3969
|
# @param [String] fields
|
3970
3970
|
# Selector specifying which fields to include in a partial response.
|
@@ -4003,7 +4003,7 @@ module Google
|
|
4003
4003
|
# Required. Identifies the type of this assigned targeting option. Supported
|
4004
4004
|
# targeting types: * `TARGETING_TYPE_CHANNEL` * `
|
4005
4005
|
# TARGETING_TYPE_DIGITAL_CONTENT_LABEL_EXCLUSION` * `TARGETING_TYPE_OMID` * `
|
4006
|
-
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION`
|
4006
|
+
# TARGETING_TYPE_SENSITIVE_CATEGORY_EXCLUSION` * `TARGETING_TYPE_KEYWORD`
|
4007
4007
|
# @param [String] assigned_targeting_option_id
|
4008
4008
|
# Required. The ID of the assigned targeting option to delete.
|
4009
4009
|
# @param [String] fields
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-displayvideo_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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-04-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-displayvideo_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v3/v0.11.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|