google-apis-displayvideo_v2 0.55.0 → 0.56.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: 18fa30402c2b1fb1253cad023a5797a6e8ef191eb1a4fb428fd0ea3e31d4dffd
|
|
4
|
+
data.tar.gz: 25a60ca651d6e737b079851b8dd2b7e2602ccef24fc7e58ff085a7410b692793
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5795355a0a5e64bd315a5881750298abfaa36a107b5c62938ff189ad83f4b4be1920e71576b12c65a05d9763c19a34368f3afb31da5bceaf6fbedea12bd3af5
|
|
7
|
+
data.tar.gz: b9bb705f9d9b0fcdd118c81826a0a057e7d7da6c78a12d5261a8e5c5776d8573fc8208dbca45d06c3c6baf13c2bdb48065e0e02ebaefa23a92154e9eeaf1676f
|
data/CHANGELOG.md
CHANGED
|
@@ -1504,6 +1504,11 @@ module Google
|
|
|
1504
1504
|
class BiddingStrategy
|
|
1505
1505
|
include Google::Apis::Core::Hashable
|
|
1506
1506
|
|
|
1507
|
+
# Settings that control the bid strategy for Demand Gen resources.
|
|
1508
|
+
# Corresponds to the JSON property `demandGenBid`
|
|
1509
|
+
# @return [Google::Apis::DisplayvideoV2::DemandGenBiddingStrategy]
|
|
1510
|
+
attr_accessor :demand_gen_bid
|
|
1511
|
+
|
|
1507
1512
|
# A strategy that uses a fixed bidding price.
|
|
1508
1513
|
# Corresponds to the JSON property `fixedBid`
|
|
1509
1514
|
# @return [Google::Apis::DisplayvideoV2::FixedBidStrategy]
|
|
@@ -1527,6 +1532,7 @@ module Google
|
|
|
1527
1532
|
|
|
1528
1533
|
# Update properties of this object
|
|
1529
1534
|
def update!(**args)
|
|
1535
|
+
@demand_gen_bid = args[:demand_gen_bid] if args.key?(:demand_gen_bid)
|
|
1530
1536
|
@fixed_bid = args[:fixed_bid] if args.key?(:fixed_bid)
|
|
1531
1537
|
@maximize_spend_auto_bid = args[:maximize_spend_auto_bid] if args.key?(:maximize_spend_auto_bid)
|
|
1532
1538
|
@performance_goal_auto_bid = args[:performance_goal_auto_bid] if args.key?(:performance_goal_auto_bid)
|
|
@@ -3339,6 +3345,15 @@ module Google
|
|
|
3339
3345
|
# @return [Fixnum]
|
|
3340
3346
|
attr_accessor :post_view_count_percentage_millis
|
|
3341
3347
|
|
|
3348
|
+
# Optional. The attribution model to use for conversion measurement. This
|
|
3349
|
+
# attribution model will determine how conversions are counted. The Primary
|
|
3350
|
+
# model can be set by you for a floodlight config or group. More details [here](
|
|
3351
|
+
# https://support.google.com/displayvideo/answer/7409983). Only applicable to
|
|
3352
|
+
# Demand Gen line items.
|
|
3353
|
+
# Corresponds to the JSON property `primaryAttributionModelId`
|
|
3354
|
+
# @return [Fixnum]
|
|
3355
|
+
attr_accessor :primary_attribution_model_id
|
|
3356
|
+
|
|
3342
3357
|
def initialize(**args)
|
|
3343
3358
|
update!(**args)
|
|
3344
3359
|
end
|
|
@@ -3347,6 +3362,7 @@ module Google
|
|
|
3347
3362
|
def update!(**args)
|
|
3348
3363
|
@floodlight_activity_configs = args[:floodlight_activity_configs] if args.key?(:floodlight_activity_configs)
|
|
3349
3364
|
@post_view_count_percentage_millis = args[:post_view_count_percentage_millis] if args.key?(:post_view_count_percentage_millis)
|
|
3365
|
+
@primary_attribution_model_id = args[:primary_attribution_model_id] if args.key?(:primary_attribution_model_id)
|
|
3350
3366
|
end
|
|
3351
3367
|
end
|
|
3352
3368
|
|
|
@@ -4344,7 +4360,8 @@ module Google
|
|
|
4344
4360
|
attr_accessor :start_hour
|
|
4345
4361
|
|
|
4346
4362
|
# Required. The mechanism used to determine which timezone to use for this day
|
|
4347
|
-
# and time targeting setting.
|
|
4363
|
+
# and time targeting setting. For demand gen line items, this field is always
|
|
4364
|
+
# TIME_ZONE_RESOLUTION_ADVERTISER.
|
|
4348
4365
|
# Corresponds to the JSON property `timeZoneResolution`
|
|
4349
4366
|
# @return [String]
|
|
4350
4367
|
attr_accessor :time_zone_resolution
|
|
@@ -4401,6 +4418,89 @@ module Google
|
|
|
4401
4418
|
end
|
|
4402
4419
|
end
|
|
4403
4420
|
|
|
4421
|
+
# Settings that control the bid strategy for Demand Gen resources.
|
|
4422
|
+
class DemandGenBiddingStrategy
|
|
4423
|
+
include Google::Apis::Core::Hashable
|
|
4424
|
+
|
|
4425
|
+
# Output only. If AG doesn't set value for tCPA or tROAS, line item bidding
|
|
4426
|
+
# value will be the effective_bidding_value, if the bidding strategy type is not
|
|
4427
|
+
# tCPA or tROAS, effective_bidding_value is always 0. For line item, it will be
|
|
4428
|
+
# the same as the value field.
|
|
4429
|
+
# Corresponds to the JSON property `effectiveBiddingValue`
|
|
4430
|
+
# @return [Fixnum]
|
|
4431
|
+
attr_accessor :effective_bidding_value
|
|
4432
|
+
|
|
4433
|
+
# Output only. Source of the effective bidding value.
|
|
4434
|
+
# Corresponds to the JSON property `effectiveBiddingValueSource`
|
|
4435
|
+
# @return [String]
|
|
4436
|
+
attr_accessor :effective_bidding_value_source
|
|
4437
|
+
|
|
4438
|
+
# Optional. The type of the bidding strategy. This can only be set at the line
|
|
4439
|
+
# item level.
|
|
4440
|
+
# Corresponds to the JSON property `type`
|
|
4441
|
+
# @return [String]
|
|
4442
|
+
attr_accessor :type
|
|
4443
|
+
|
|
4444
|
+
# Optional. The value used by the bidding strategy. This can be set at the line
|
|
4445
|
+
# item and ad group level. This field is only applicable for the following
|
|
4446
|
+
# strategy types: * `DEMAND_GEN_BIDDING_STRATEGY_TYPE_TARGET_CPA` * `
|
|
4447
|
+
# DEMAND_GEN_BIDDING_STRATEGY_TYPE_TARGET_ROAS` Value of this field is in micros
|
|
4448
|
+
# of the advertiser's currency or ROAS value. For example, 1000000 represents 1.
|
|
4449
|
+
# 0 standard units of the currency or 100% ROAS value. If not using an
|
|
4450
|
+
# applicable strategy, the value of this field will be 0.
|
|
4451
|
+
# Corresponds to the JSON property `value`
|
|
4452
|
+
# @return [Fixnum]
|
|
4453
|
+
attr_accessor :value
|
|
4454
|
+
|
|
4455
|
+
def initialize(**args)
|
|
4456
|
+
update!(**args)
|
|
4457
|
+
end
|
|
4458
|
+
|
|
4459
|
+
# Update properties of this object
|
|
4460
|
+
def update!(**args)
|
|
4461
|
+
@effective_bidding_value = args[:effective_bidding_value] if args.key?(:effective_bidding_value)
|
|
4462
|
+
@effective_bidding_value_source = args[:effective_bidding_value_source] if args.key?(:effective_bidding_value_source)
|
|
4463
|
+
@type = args[:type] if args.key?(:type)
|
|
4464
|
+
@value = args[:value] if args.key?(:value)
|
|
4465
|
+
end
|
|
4466
|
+
end
|
|
4467
|
+
|
|
4468
|
+
# Settings for Demand Gen line items.
|
|
4469
|
+
class DemandGenSettings
|
|
4470
|
+
include Google::Apis::Core::Hashable
|
|
4471
|
+
|
|
4472
|
+
# Optional. Immutable. Whether location and language targeting can be set at the
|
|
4473
|
+
# line item level. Otherwise, relevant targeting types must be assigned directly
|
|
4474
|
+
# to the ad groups.
|
|
4475
|
+
# Corresponds to the JSON property `geoLanguageTargetingEnabled`
|
|
4476
|
+
# @return [Boolean]
|
|
4477
|
+
attr_accessor :geo_language_targeting_enabled
|
|
4478
|
+
alias_method :geo_language_targeting_enabled?, :geo_language_targeting_enabled
|
|
4479
|
+
|
|
4480
|
+
# Optional. The ID of the merchant which is linked to the line item for product
|
|
4481
|
+
# feed.
|
|
4482
|
+
# Corresponds to the JSON property `linkedMerchantId`
|
|
4483
|
+
# @return [Fixnum]
|
|
4484
|
+
attr_accessor :linked_merchant_id
|
|
4485
|
+
|
|
4486
|
+
# Settings that control what third-party vendors are measuring specific line
|
|
4487
|
+
# item metrics.
|
|
4488
|
+
# Corresponds to the JSON property `thirdPartyMeasurementConfigs`
|
|
4489
|
+
# @return [Google::Apis::DisplayvideoV2::ThirdPartyMeasurementConfigs]
|
|
4490
|
+
attr_accessor :third_party_measurement_configs
|
|
4491
|
+
|
|
4492
|
+
def initialize(**args)
|
|
4493
|
+
update!(**args)
|
|
4494
|
+
end
|
|
4495
|
+
|
|
4496
|
+
# Update properties of this object
|
|
4497
|
+
def update!(**args)
|
|
4498
|
+
@geo_language_targeting_enabled = args[:geo_language_targeting_enabled] if args.key?(:geo_language_targeting_enabled)
|
|
4499
|
+
@linked_merchant_id = args[:linked_merchant_id] if args.key?(:linked_merchant_id)
|
|
4500
|
+
@third_party_measurement_configs = args[:third_party_measurement_configs] if args.key?(:third_party_measurement_configs)
|
|
4501
|
+
end
|
|
4502
|
+
end
|
|
4503
|
+
|
|
4404
4504
|
# Assigned device make and model targeting option details. This will be
|
|
4405
4505
|
# populated in the device_make_model_details field when targeting_type is `
|
|
4406
4506
|
# TARGETING_TYPE_DEVICE_MAKE_MODEL`.
|
|
@@ -5897,6 +5997,11 @@ module Google
|
|
|
5897
5997
|
class ImageAsset
|
|
5898
5998
|
include Google::Apis::Core::Hashable
|
|
5899
5999
|
|
|
6000
|
+
# Required. The unique ID of the asset.
|
|
6001
|
+
# Corresponds to the JSON property `assetId`
|
|
6002
|
+
# @return [Fixnum]
|
|
6003
|
+
attr_accessor :asset_id
|
|
6004
|
+
|
|
5900
6005
|
# Output only. File size of the image asset in bytes.
|
|
5901
6006
|
# Corresponds to the JSON property `fileSize`
|
|
5902
6007
|
# @return [Fixnum]
|
|
@@ -5918,6 +6023,7 @@ module Google
|
|
|
5918
6023
|
|
|
5919
6024
|
# Update properties of this object
|
|
5920
6025
|
def update!(**args)
|
|
6026
|
+
@asset_id = args[:asset_id] if args.key?(:asset_id)
|
|
5921
6027
|
@file_size = args[:file_size] if args.key?(:file_size)
|
|
5922
6028
|
@full_size = args[:full_size] if args.key?(:full_size)
|
|
5923
6029
|
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
|
@@ -6856,6 +6962,12 @@ module Google
|
|
|
6856
6962
|
class KeywordAssignedTargetingOptionDetails
|
|
6857
6963
|
include Google::Apis::Core::Hashable
|
|
6858
6964
|
|
|
6965
|
+
# Optional. The policy names to exempt the keyword from. This field is only
|
|
6966
|
+
# applicable for Demand Gen keywords, which are positively targeted.
|
|
6967
|
+
# Corresponds to the JSON property `exemptedPolicyNames`
|
|
6968
|
+
# @return [Array<String>]
|
|
6969
|
+
attr_accessor :exempted_policy_names
|
|
6970
|
+
|
|
6859
6971
|
# Required. The keyword, for example `car insurance`. Positive keyword cannot be
|
|
6860
6972
|
# offensive word. Must be UTF-8 encoded with a maximum size of 255 bytes.
|
|
6861
6973
|
# Maximum number of characters is 80. Maximum number of words is 10.
|
|
@@ -6875,6 +6987,7 @@ module Google
|
|
|
6875
6987
|
|
|
6876
6988
|
# Update properties of this object
|
|
6877
6989
|
def update!(**args)
|
|
6990
|
+
@exempted_policy_names = args[:exempted_policy_names] if args.key?(:exempted_policy_names)
|
|
6878
6991
|
@keyword = args[:keyword] if args.key?(:keyword)
|
|
6879
6992
|
@negative = args[:negative] if args.key?(:negative)
|
|
6880
6993
|
end
|
|
@@ -6983,6 +7096,11 @@ module Google
|
|
|
6983
7096
|
# @return [Array<Fixnum>]
|
|
6984
7097
|
attr_accessor :creative_ids
|
|
6985
7098
|
|
|
7099
|
+
# Settings for Demand Gen line items.
|
|
7100
|
+
# Corresponds to the JSON property `demandGenSettings`
|
|
7101
|
+
# @return [Google::Apis::DisplayvideoV2::DemandGenSettings]
|
|
7102
|
+
attr_accessor :demand_gen_settings
|
|
7103
|
+
|
|
6986
7104
|
# Required. The display name of the line item. Must be UTF-8 encoded with a
|
|
6987
7105
|
# maximum size of 240 bytes.
|
|
6988
7106
|
# Corresponds to the JSON property `displayName`
|
|
@@ -7108,6 +7226,7 @@ module Google
|
|
|
7108
7226
|
@contains_eu_political_ads = args[:contains_eu_political_ads] if args.key?(:contains_eu_political_ads)
|
|
7109
7227
|
@conversion_counting = args[:conversion_counting] if args.key?(:conversion_counting)
|
|
7110
7228
|
@creative_ids = args[:creative_ids] if args.key?(:creative_ids)
|
|
7229
|
+
@demand_gen_settings = args[:demand_gen_settings] if args.key?(:demand_gen_settings)
|
|
7111
7230
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
7112
7231
|
@entity_status = args[:entity_status] if args.key?(:entity_status)
|
|
7113
7232
|
@exclude_new_exchanges = args[:exclude_new_exchanges] if args.key?(:exclude_new_exchanges)
|
|
@@ -7163,7 +7282,10 @@ module Google
|
|
|
7163
7282
|
|
|
7164
7283
|
# Required. The type of the budget allocation. `
|
|
7165
7284
|
# LINE_ITEM_BUDGET_ALLOCATION_TYPE_AUTOMATIC` is only applicable when automatic
|
|
7166
|
-
# budget allocation is enabled for the parent insertion order.
|
|
7285
|
+
# budget allocation is enabled for the parent insertion order. For demand gen
|
|
7286
|
+
# line items, budget allocation type must be `
|
|
7287
|
+
# LINE_ITEM_BUDGET_ALLOCATION_TYPE_FIXED`. Demand Gen line items do not support
|
|
7288
|
+
# other budget allocation types.
|
|
7167
7289
|
# Corresponds to the JSON property `budgetAllocationType`
|
|
7168
7290
|
# @return [String]
|
|
7169
7291
|
attr_accessor :budget_allocation_type
|
|
@@ -9276,7 +9398,8 @@ module Google
|
|
|
9276
9398
|
# @return [Fixnum]
|
|
9277
9399
|
attr_accessor :markup_amount
|
|
9278
9400
|
|
|
9279
|
-
# Required. The markup type of the partner revenue model.
|
|
9401
|
+
# Required. The markup type of the partner revenue model. Demand Gen line items
|
|
9402
|
+
# only support `PARTNER_REVENUE_MODEL_MARKUP_TYPE_TOTAL_MEDIA_COST_MARKUP`.
|
|
9280
9403
|
# Corresponds to the JSON property `markupType`
|
|
9281
9404
|
# @return [String]
|
|
9282
9405
|
attr_accessor :markup_type
|
|
@@ -10682,6 +10805,58 @@ module Google
|
|
|
10682
10805
|
end
|
|
10683
10806
|
end
|
|
10684
10807
|
|
|
10808
|
+
# Settings that control what third-party vendors are measuring specific line
|
|
10809
|
+
# item metrics.
|
|
10810
|
+
class ThirdPartyMeasurementConfigs
|
|
10811
|
+
include Google::Apis::Core::Hashable
|
|
10812
|
+
|
|
10813
|
+
# Optional. The third-party vendors measuring brand lift. The following third-
|
|
10814
|
+
# party vendors are applicable: * `THIRD_PARTY_VENDOR_DYNATA` * `
|
|
10815
|
+
# THIRD_PARTY_VENDOR_KANTAR` * `THIRD_PARTY_VENDOR_INTAGE` * `
|
|
10816
|
+
# THIRD_PARTY_VENDOR_NIELSEN` * `THIRD_PARTY_VENDOR_MACROMILL`
|
|
10817
|
+
# Corresponds to the JSON property `brandLiftVendorConfigs`
|
|
10818
|
+
# @return [Array<Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig>]
|
|
10819
|
+
attr_accessor :brand_lift_vendor_configs
|
|
10820
|
+
|
|
10821
|
+
# Optional. The third-party vendors measuring brand safety. The following third-
|
|
10822
|
+
# party vendors are applicable: * `THIRD_PARTY_VENDOR_DOUBLE_VERIFY` * `
|
|
10823
|
+
# THIRD_PARTY_VENDOR_INTEGRAL_AD_SCIENCE` * `THIRD_PARTY_VENDOR_ZEFR`
|
|
10824
|
+
# Corresponds to the JSON property `brandSafetyVendorConfigs`
|
|
10825
|
+
# @return [Array<Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig>]
|
|
10826
|
+
attr_accessor :brand_safety_vendor_configs
|
|
10827
|
+
|
|
10828
|
+
# Optional. The third-party vendors measuring reach. The following third-party
|
|
10829
|
+
# vendors are applicable: * `THIRD_PARTY_VENDOR_NIELSEN` * `
|
|
10830
|
+
# THIRD_PARTY_VENDOR_COMSCORE` * `THIRD_PARTY_VENDOR_KANTAR` * `
|
|
10831
|
+
# THIRD_PARTY_VENDOR_VIDEO_RESEARCH` * `THIRD_PARTY_VENDOR_MEDIA_SCOPE` * `
|
|
10832
|
+
# THIRD_PARTY_VENDOR_AUDIENCE_PROJECT` * `THIRD_PARTY_VENDOR_VIDEO_AMP` * `
|
|
10833
|
+
# THIRD_PARTY_VENDOR_ISPOT_TV` * `THIRD_PARTY_VENDOR_GEMIUS`
|
|
10834
|
+
# Corresponds to the JSON property `reachVendorConfigs`
|
|
10835
|
+
# @return [Array<Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig>]
|
|
10836
|
+
attr_accessor :reach_vendor_configs
|
|
10837
|
+
|
|
10838
|
+
# Optional. The third-party vendors measuring viewability. The following third-
|
|
10839
|
+
# party vendors are applicable: * `THIRD_PARTY_VENDOR_MOAT` * `
|
|
10840
|
+
# THIRD_PARTY_VENDOR_DOUBLE_VERIFY` * `THIRD_PARTY_VENDOR_INTEGRAL_AD_SCIENCE` *
|
|
10841
|
+
# `THIRD_PARTY_VENDOR_COMSCORE` * `THIRD_PARTY_VENDOR_TELEMETRY` * `
|
|
10842
|
+
# THIRD_PARTY_VENDOR_MEETRICS`
|
|
10843
|
+
# Corresponds to the JSON property `viewabilityVendorConfigs`
|
|
10844
|
+
# @return [Array<Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig>]
|
|
10845
|
+
attr_accessor :viewability_vendor_configs
|
|
10846
|
+
|
|
10847
|
+
def initialize(**args)
|
|
10848
|
+
update!(**args)
|
|
10849
|
+
end
|
|
10850
|
+
|
|
10851
|
+
# Update properties of this object
|
|
10852
|
+
def update!(**args)
|
|
10853
|
+
@brand_lift_vendor_configs = args[:brand_lift_vendor_configs] if args.key?(:brand_lift_vendor_configs)
|
|
10854
|
+
@brand_safety_vendor_configs = args[:brand_safety_vendor_configs] if args.key?(:brand_safety_vendor_configs)
|
|
10855
|
+
@reach_vendor_configs = args[:reach_vendor_configs] if args.key?(:reach_vendor_configs)
|
|
10856
|
+
@viewability_vendor_configs = args[:viewability_vendor_configs] if args.key?(:viewability_vendor_configs)
|
|
10857
|
+
end
|
|
10858
|
+
end
|
|
10859
|
+
|
|
10685
10860
|
# Settings for advertisers that use third-party ad servers only.
|
|
10686
10861
|
class ThirdPartyOnlyConfig
|
|
10687
10862
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DisplayvideoV2
|
|
18
18
|
# Version of the google-apis-displayvideo_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.56.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260305"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -658,6 +658,18 @@ module Google
|
|
|
658
658
|
include Google::Apis::Core::JsonObjectSupport
|
|
659
659
|
end
|
|
660
660
|
|
|
661
|
+
class DemandGenBiddingStrategy
|
|
662
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
663
|
+
|
|
664
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
665
|
+
end
|
|
666
|
+
|
|
667
|
+
class DemandGenSettings
|
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
669
|
+
|
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
671
|
+
end
|
|
672
|
+
|
|
661
673
|
class DeviceMakeModelAssignedTargetingOptionDetails
|
|
662
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
663
675
|
|
|
@@ -1696,6 +1708,12 @@ module Google
|
|
|
1696
1708
|
include Google::Apis::Core::JsonObjectSupport
|
|
1697
1709
|
end
|
|
1698
1710
|
|
|
1711
|
+
class ThirdPartyMeasurementConfigs
|
|
1712
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1713
|
+
|
|
1714
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1715
|
+
end
|
|
1716
|
+
|
|
1699
1717
|
class ThirdPartyOnlyConfig
|
|
1700
1718
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1701
1719
|
|
|
@@ -2270,6 +2288,8 @@ module Google
|
|
|
2270
2288
|
class BiddingStrategy
|
|
2271
2289
|
# @private
|
|
2272
2290
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2291
|
+
property :demand_gen_bid, as: 'demandGenBid', class: Google::Apis::DisplayvideoV2::DemandGenBiddingStrategy, decorator: Google::Apis::DisplayvideoV2::DemandGenBiddingStrategy::Representation
|
|
2292
|
+
|
|
2273
2293
|
property :fixed_bid, as: 'fixedBid', class: Google::Apis::DisplayvideoV2::FixedBidStrategy, decorator: Google::Apis::DisplayvideoV2::FixedBidStrategy::Representation
|
|
2274
2294
|
|
|
2275
2295
|
property :maximize_spend_auto_bid, as: 'maximizeSpendAutoBid', class: Google::Apis::DisplayvideoV2::MaximizeSpendBidStrategy, decorator: Google::Apis::DisplayvideoV2::MaximizeSpendBidStrategy::Representation
|
|
@@ -2788,6 +2808,7 @@ module Google
|
|
|
2788
2808
|
collection :floodlight_activity_configs, as: 'floodlightActivityConfigs', class: Google::Apis::DisplayvideoV2::TrackingFloodlightActivityConfig, decorator: Google::Apis::DisplayvideoV2::TrackingFloodlightActivityConfig::Representation
|
|
2789
2809
|
|
|
2790
2810
|
property :post_view_count_percentage_millis, :numeric_string => true, as: 'postViewCountPercentageMillis'
|
|
2811
|
+
property :primary_attribution_model_id, :numeric_string => true, as: 'primaryAttributionModelId'
|
|
2791
2812
|
end
|
|
2792
2813
|
end
|
|
2793
2814
|
|
|
@@ -3039,6 +3060,26 @@ module Google
|
|
|
3039
3060
|
end
|
|
3040
3061
|
end
|
|
3041
3062
|
|
|
3063
|
+
class DemandGenBiddingStrategy
|
|
3064
|
+
# @private
|
|
3065
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3066
|
+
property :effective_bidding_value, :numeric_string => true, as: 'effectiveBiddingValue'
|
|
3067
|
+
property :effective_bidding_value_source, as: 'effectiveBiddingValueSource'
|
|
3068
|
+
property :type, as: 'type'
|
|
3069
|
+
property :value, :numeric_string => true, as: 'value'
|
|
3070
|
+
end
|
|
3071
|
+
end
|
|
3072
|
+
|
|
3073
|
+
class DemandGenSettings
|
|
3074
|
+
# @private
|
|
3075
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3076
|
+
property :geo_language_targeting_enabled, as: 'geoLanguageTargetingEnabled'
|
|
3077
|
+
property :linked_merchant_id, :numeric_string => true, as: 'linkedMerchantId'
|
|
3078
|
+
property :third_party_measurement_configs, as: 'thirdPartyMeasurementConfigs', class: Google::Apis::DisplayvideoV2::ThirdPartyMeasurementConfigs, decorator: Google::Apis::DisplayvideoV2::ThirdPartyMeasurementConfigs::Representation
|
|
3079
|
+
|
|
3080
|
+
end
|
|
3081
|
+
end
|
|
3082
|
+
|
|
3042
3083
|
class DeviceMakeModelAssignedTargetingOptionDetails
|
|
3043
3084
|
# @private
|
|
3044
3085
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3458,6 +3499,7 @@ module Google
|
|
|
3458
3499
|
class ImageAsset
|
|
3459
3500
|
# @private
|
|
3460
3501
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3502
|
+
property :asset_id, :numeric_string => true, as: 'assetId'
|
|
3461
3503
|
property :file_size, :numeric_string => true, as: 'fileSize'
|
|
3462
3504
|
property :full_size, as: 'fullSize', class: Google::Apis::DisplayvideoV2::Dimensions, decorator: Google::Apis::DisplayvideoV2::Dimensions::Representation
|
|
3463
3505
|
|
|
@@ -3696,6 +3738,7 @@ module Google
|
|
|
3696
3738
|
class KeywordAssignedTargetingOptionDetails
|
|
3697
3739
|
# @private
|
|
3698
3740
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3741
|
+
collection :exempted_policy_names, as: 'exemptedPolicyNames'
|
|
3699
3742
|
property :keyword, as: 'keyword'
|
|
3700
3743
|
property :negative, as: 'negative'
|
|
3701
3744
|
end
|
|
@@ -3730,6 +3773,8 @@ module Google
|
|
|
3730
3773
|
property :conversion_counting, as: 'conversionCounting', class: Google::Apis::DisplayvideoV2::ConversionCountingConfig, decorator: Google::Apis::DisplayvideoV2::ConversionCountingConfig::Representation
|
|
3731
3774
|
|
|
3732
3775
|
collection :creative_ids, as: 'creativeIds'
|
|
3776
|
+
property :demand_gen_settings, as: 'demandGenSettings', class: Google::Apis::DisplayvideoV2::DemandGenSettings, decorator: Google::Apis::DisplayvideoV2::DemandGenSettings::Representation
|
|
3777
|
+
|
|
3733
3778
|
property :display_name, as: 'displayName'
|
|
3734
3779
|
property :entity_status, as: 'entityStatus'
|
|
3735
3780
|
property :exclude_new_exchanges, as: 'excludeNewExchanges'
|
|
@@ -4768,6 +4813,20 @@ module Google
|
|
|
4768
4813
|
end
|
|
4769
4814
|
end
|
|
4770
4815
|
|
|
4816
|
+
class ThirdPartyMeasurementConfigs
|
|
4817
|
+
# @private
|
|
4818
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4819
|
+
collection :brand_lift_vendor_configs, as: 'brandLiftVendorConfigs', class: Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig, decorator: Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig::Representation
|
|
4820
|
+
|
|
4821
|
+
collection :brand_safety_vendor_configs, as: 'brandSafetyVendorConfigs', class: Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig, decorator: Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig::Representation
|
|
4822
|
+
|
|
4823
|
+
collection :reach_vendor_configs, as: 'reachVendorConfigs', class: Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig, decorator: Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig::Representation
|
|
4824
|
+
|
|
4825
|
+
collection :viewability_vendor_configs, as: 'viewabilityVendorConfigs', class: Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig, decorator: Google::Apis::DisplayvideoV2::ThirdPartyVendorConfig::Representation
|
|
4826
|
+
|
|
4827
|
+
end
|
|
4828
|
+
end
|
|
4829
|
+
|
|
4771
4830
|
class ThirdPartyOnlyConfig
|
|
4772
4831
|
# @private
|
|
4773
4832
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-displayvideo_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.56.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-displayvideo_v2/v0.56.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-displayvideo_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|