google-apis-dfareporting_v5 0.3.0 → 0.5.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: c7713ca35abfd898c65ccb7b85f8ee4e72cffd03fa53b883535a527e14c5c37b
|
|
4
|
+
data.tar.gz: ad5bc8745ba769989b12099f00c0adaea86f1f7b56cad7dcdef2e7f1e9a7be2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad860d36d1d41e10a2113849865ad38024750eff242040755ae1be47784e5e995709ed5c7bd40ee5432fbb232f81ed31e7ade203a4ea8d8c3e653f2e45b50f4c
|
|
7
|
+
data.tar.gz: c57ab5e00e9913046525460a56df0595d33f2499d0945985991b458b5cbff9fea7cd47456eb0cc7c088e949cb1c0e06e09d75daa701dde332b65966d05c4c148
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dfareporting_v5
|
|
2
2
|
|
|
3
|
+
### v0.5.0 (2026-02-15)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260213
|
|
6
|
+
|
|
7
|
+
### v0.4.0 (2025-11-02)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251023
|
|
10
|
+
|
|
3
11
|
### v0.3.0 (2025-10-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251009
|
|
@@ -650,6 +650,11 @@ module Google
|
|
|
650
650
|
# @return [String]
|
|
651
651
|
attr_accessor :compatibility
|
|
652
652
|
|
|
653
|
+
# Contextual Keyword Targeting.
|
|
654
|
+
# Corresponds to the JSON property `contextualKeywordTargeting`
|
|
655
|
+
# @return [Google::Apis::DfareportingV5::ContextualKeywordTargeting]
|
|
656
|
+
attr_accessor :contextual_keyword_targeting
|
|
657
|
+
|
|
653
658
|
# Modification timestamp.
|
|
654
659
|
# Corresponds to the JSON property `createInfo`
|
|
655
660
|
# @return [Google::Apis::DfareportingV5::LastModifiedInfo]
|
|
@@ -820,6 +825,7 @@ module Google
|
|
|
820
825
|
@click_through_url_suffix_properties = args[:click_through_url_suffix_properties] if args.key?(:click_through_url_suffix_properties)
|
|
821
826
|
@comments = args[:comments] if args.key?(:comments)
|
|
822
827
|
@compatibility = args[:compatibility] if args.key?(:compatibility)
|
|
828
|
+
@contextual_keyword_targeting = args[:contextual_keyword_targeting] if args.key?(:contextual_keyword_targeting)
|
|
823
829
|
@create_info = args[:create_info] if args.key?(:create_info)
|
|
824
830
|
@creative_group_assignments = args[:creative_group_assignments] if args.key?(:creative_group_assignments)
|
|
825
831
|
@creative_rotation = args[:creative_rotation] if args.key?(:creative_rotation)
|
|
@@ -2033,10 +2039,10 @@ module Google
|
|
|
2033
2039
|
end
|
|
2034
2040
|
end
|
|
2035
2041
|
|
|
2036
|
-
#
|
|
2037
|
-
#
|
|
2038
|
-
#
|
|
2039
|
-
#
|
|
2042
|
+
# Contains additional information about cart data. This field may only be used
|
|
2043
|
+
# when calling batchinsert; it is not supported by batchupdate. Cart data
|
|
2044
|
+
# reporting is only supported in SA360. [Learn more](https://support.google.com/
|
|
2045
|
+
# sa360/topic/13425788)
|
|
2040
2046
|
class CartData
|
|
2041
2047
|
include Google::Apis::Core::Hashable
|
|
2042
2048
|
|
|
@@ -2793,6 +2799,44 @@ module Google
|
|
|
2793
2799
|
end
|
|
2794
2800
|
end
|
|
2795
2801
|
|
|
2802
|
+
# Contains information about a Contextual Keyword that can be targeted by ads.
|
|
2803
|
+
class ContextualKeyword
|
|
2804
|
+
include Google::Apis::Core::Hashable
|
|
2805
|
+
|
|
2806
|
+
# The keyword that can be targeted by ads.
|
|
2807
|
+
# Corresponds to the JSON property `keyword`
|
|
2808
|
+
# @return [String]
|
|
2809
|
+
attr_accessor :keyword
|
|
2810
|
+
|
|
2811
|
+
def initialize(**args)
|
|
2812
|
+
update!(**args)
|
|
2813
|
+
end
|
|
2814
|
+
|
|
2815
|
+
# Update properties of this object
|
|
2816
|
+
def update!(**args)
|
|
2817
|
+
@keyword = args[:keyword] if args.key?(:keyword)
|
|
2818
|
+
end
|
|
2819
|
+
end
|
|
2820
|
+
|
|
2821
|
+
# Contextual Keyword Targeting.
|
|
2822
|
+
class ContextualKeywordTargeting
|
|
2823
|
+
include Google::Apis::Core::Hashable
|
|
2824
|
+
|
|
2825
|
+
# Contextual keywords that this ad targets
|
|
2826
|
+
# Corresponds to the JSON property `keywords`
|
|
2827
|
+
# @return [Array<Google::Apis::DfareportingV5::ContextualKeyword>]
|
|
2828
|
+
attr_accessor :keywords
|
|
2829
|
+
|
|
2830
|
+
def initialize(**args)
|
|
2831
|
+
update!(**args)
|
|
2832
|
+
end
|
|
2833
|
+
|
|
2834
|
+
# Update properties of this object
|
|
2835
|
+
def update!(**args)
|
|
2836
|
+
@keywords = args[:keywords] if args.key?(:keywords)
|
|
2837
|
+
end
|
|
2838
|
+
end
|
|
2839
|
+
|
|
2796
2840
|
# A Conversion represents when a user successfully performs a desired action
|
|
2797
2841
|
# after seeing an ad.
|
|
2798
2842
|
class Conversion
|
|
@@ -2803,10 +2847,10 @@ module Google
|
|
|
2803
2847
|
# @return [String]
|
|
2804
2848
|
attr_accessor :ad_user_data_consent
|
|
2805
2849
|
|
|
2806
|
-
#
|
|
2807
|
-
#
|
|
2808
|
-
#
|
|
2809
|
-
#
|
|
2850
|
+
# Contains additional information about cart data. This field may only be used
|
|
2851
|
+
# when calling batchinsert; it is not supported by batchupdate. Cart data
|
|
2852
|
+
# reporting is only supported in SA360. [Learn more](https://support.google.com/
|
|
2853
|
+
# sa360/topic/13425788)
|
|
2810
2854
|
# Corresponds to the JSON property `cartData`
|
|
2811
2855
|
# @return [Google::Apis::DfareportingV5::CartData]
|
|
2812
2856
|
attr_accessor :cart_data
|
|
@@ -3247,6 +3291,11 @@ module Google
|
|
|
3247
3291
|
attr_accessor :ssl_enabled
|
|
3248
3292
|
alias_method :ssl_enabled?, :ssl_enabled
|
|
3249
3293
|
|
|
3294
|
+
# Output only. The TV data providers supported in this country.
|
|
3295
|
+
# Corresponds to the JSON property `tvDataProviders`
|
|
3296
|
+
# @return [Array<String>]
|
|
3297
|
+
attr_accessor :tv_data_providers
|
|
3298
|
+
|
|
3250
3299
|
def initialize(**args)
|
|
3251
3300
|
update!(**args)
|
|
3252
3301
|
end
|
|
@@ -3258,6 +3307,7 @@ module Google
|
|
|
3258
3307
|
@kind = args[:kind] if args.key?(:kind)
|
|
3259
3308
|
@name = args[:name] if args.key?(:name)
|
|
3260
3309
|
@ssl_enabled = args[:ssl_enabled] if args.key?(:ssl_enabled)
|
|
3310
|
+
@tv_data_providers = args[:tv_data_providers] if args.key?(:tv_data_providers)
|
|
3261
3311
|
end
|
|
3262
3312
|
end
|
|
3263
3313
|
|
|
@@ -5893,7 +5943,9 @@ module Google
|
|
|
5893
5943
|
end
|
|
5894
5944
|
end
|
|
5895
5945
|
|
|
5896
|
-
#
|
|
5946
|
+
# *Beta:* This API resource is available only to a very limited number of
|
|
5947
|
+
# customers. If you'd like to use this resource, please reach out to your Google
|
|
5948
|
+
# sales representative. Contains dynamic feed information.
|
|
5897
5949
|
class DynamicFeed
|
|
5898
5950
|
include Google::Apis::Core::Hashable
|
|
5899
5951
|
|
|
@@ -5984,12 +6036,14 @@ module Google
|
|
|
5984
6036
|
end
|
|
5985
6037
|
|
|
5986
6038
|
# Dynamic profile ID is required for dynamic feed insert as the current GPA API
|
|
5987
|
-
# only can create a dynamic feed under profile context,even though the
|
|
5988
|
-
# feed itself don't need the dynamic profile id.
|
|
6039
|
+
# only can create a dynamic feed under profile context,even though the dynamic
|
|
6040
|
+
# feed itself don't need the dynamic profile id.
|
|
5989
6041
|
class DynamicFeedsInsertRequest
|
|
5990
6042
|
include Google::Apis::Core::Hashable
|
|
5991
6043
|
|
|
5992
|
-
#
|
|
6044
|
+
# *Beta:* This API resource is available only to a very limited number of
|
|
6045
|
+
# customers. If you'd like to use this resource, please reach out to your Google
|
|
6046
|
+
# sales representative. Contains dynamic feed information.
|
|
5993
6047
|
# Corresponds to the JSON property `dynamicFeed`
|
|
5994
6048
|
# @return [Google::Apis::DfareportingV5::DynamicFeed]
|
|
5995
6049
|
attr_accessor :dynamic_feed
|
|
@@ -6010,7 +6064,9 @@ module Google
|
|
|
6010
6064
|
end
|
|
6011
6065
|
end
|
|
6012
6066
|
|
|
6013
|
-
#
|
|
6067
|
+
# *Beta:* This API resource is available only to a very limited number of
|
|
6068
|
+
# customers. If you'd like to use this resource, please reach out to your Google
|
|
6069
|
+
# sales representative. Contains dynamic profile information.
|
|
6014
6070
|
class DynamicProfile
|
|
6015
6071
|
include Google::Apis::Core::Hashable
|
|
6016
6072
|
|
|
@@ -6129,7 +6185,7 @@ module Google
|
|
|
6129
6185
|
class DynamicProfileGenerateCodeResponse
|
|
6130
6186
|
include Google::Apis::Core::Hashable
|
|
6131
6187
|
|
|
6132
|
-
# Generated code for the dynamic profile.
|
|
6188
|
+
# Generated code for the dynamic profile. The code will need to be unescaped.
|
|
6133
6189
|
# Corresponds to the JSON property `code`
|
|
6134
6190
|
# @return [String]
|
|
6135
6191
|
attr_accessor :code
|
|
@@ -9269,7 +9325,8 @@ module Google
|
|
|
9269
9325
|
# DV360 (DBM) * `9`, Innovid * `10`, MediaMath * `11`, Roku OneView DSP * `12`,
|
|
9270
9326
|
# TabMo Hawk * `13`, The Trade Desk * `14`, Xandr Invest DSP * `15`, Yahoo DSP *
|
|
9271
9327
|
# `16`, Zeta Global * `17`, Scaleout * `18`, Bidtellect * `19`, Unicorn * `20`,
|
|
9272
|
-
# Teads * `21`, Quantcast * `22`, Cognitiv
|
|
9328
|
+
# Teads * `21`, Quantcast * `22`, Cognitiv * `23`, AdTheorent * `24`, DeepIntent
|
|
9329
|
+
# * `25`, Pulsepoint
|
|
9273
9330
|
# Corresponds to the JSON property `adServingPlatformId`
|
|
9274
9331
|
# @return [Fixnum]
|
|
9275
9332
|
attr_accessor :ad_serving_platform_id
|
|
@@ -11637,7 +11694,8 @@ module Google
|
|
|
11637
11694
|
# Innovid * `10`, MediaMath * `11`, Roku OneView DSP * `12`, TabMo Hawk * `13`,
|
|
11638
11695
|
# The Trade Desk * `14`, Xandr Invest DSP * `15`, Yahoo DSP * `16`, Zeta Global *
|
|
11639
11696
|
# `17`, Scaleout * `18`, Bidtellect * `19`, Unicorn * `20`, Teads * `21`,
|
|
11640
|
-
# Quantcast * `22`, Cognitiv
|
|
11697
|
+
# Quantcast * `22`, Cognitiv * `23`, AdTheorent * `24`, DeepIntent * `25`,
|
|
11698
|
+
# Pulsepoint
|
|
11641
11699
|
# Corresponds to the JSON property `adServingPlatformId`
|
|
11642
11700
|
# @return [Fixnum]
|
|
11643
11701
|
attr_accessor :ad_serving_platform_id
|
|
@@ -12213,7 +12271,9 @@ module Google
|
|
|
12213
12271
|
end
|
|
12214
12272
|
end
|
|
12215
12273
|
|
|
12216
|
-
#
|
|
12274
|
+
# *Beta:* This API resource is available only to a very limited number of
|
|
12275
|
+
# customers. If you'd like to use this resource, please reach out to your Google
|
|
12276
|
+
# sales representative. Contains studio creative information.
|
|
12217
12277
|
class StudioCreative
|
|
12218
12278
|
include Google::Apis::Core::Hashable
|
|
12219
12279
|
|
|
@@ -12223,7 +12283,8 @@ module Google
|
|
|
12223
12283
|
# @return [Array<Fixnum>]
|
|
12224
12284
|
attr_accessor :asset_ids
|
|
12225
12285
|
|
|
12226
|
-
# Backup image asset ID of this studio creative.
|
|
12286
|
+
# Backup image asset ID of this studio creative. It is a required field on
|
|
12287
|
+
# insertion.
|
|
12227
12288
|
# Corresponds to the JSON property `backupImageAssetId`
|
|
12228
12289
|
# @return [Fixnum]
|
|
12229
12290
|
attr_accessor :backup_image_asset_id
|
|
@@ -12310,7 +12371,9 @@ module Google
|
|
|
12310
12371
|
end
|
|
12311
12372
|
end
|
|
12312
12373
|
|
|
12313
|
-
#
|
|
12374
|
+
# *Beta:* This API resource is available only to a very limited number of
|
|
12375
|
+
# customers. If you'd like to use this resource, please reach out to your Google
|
|
12376
|
+
# sales representative. Contains studio creative asset information.
|
|
12314
12377
|
class StudioCreativeAsset
|
|
12315
12378
|
include Google::Apis::Core::Hashable
|
|
12316
12379
|
|
|
@@ -12815,6 +12878,11 @@ module Google
|
|
|
12815
12878
|
# @return [Google::Apis::DfareportingV5::DimensionValue]
|
|
12816
12879
|
attr_accessor :advertiser_id_dimension_value
|
|
12817
12880
|
|
|
12881
|
+
# Contextual Keyword Targeting.
|
|
12882
|
+
# Corresponds to the JSON property `contextualKeywordTargeting`
|
|
12883
|
+
# @return [Google::Apis::DfareportingV5::ContextualKeywordTargeting]
|
|
12884
|
+
attr_accessor :contextual_keyword_targeting
|
|
12885
|
+
|
|
12818
12886
|
# Day Part Targeting.
|
|
12819
12887
|
# Corresponds to the JSON property `dayPartTargeting`
|
|
12820
12888
|
# @return [Google::Apis::DfareportingV5::DayPartTargeting]
|
|
@@ -12877,6 +12945,7 @@ module Google
|
|
|
12877
12945
|
@account_id = args[:account_id] if args.key?(:account_id)
|
|
12878
12946
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
|
12879
12947
|
@advertiser_id_dimension_value = args[:advertiser_id_dimension_value] if args.key?(:advertiser_id_dimension_value)
|
|
12948
|
+
@contextual_keyword_targeting = args[:contextual_keyword_targeting] if args.key?(:contextual_keyword_targeting)
|
|
12880
12949
|
@day_part_targeting = args[:day_part_targeting] if args.key?(:day_part_targeting)
|
|
12881
12950
|
@geo_targeting = args[:geo_targeting] if args.key?(:geo_targeting)
|
|
12882
12951
|
@id = args[:id] if args.key?(:id)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DfareportingV5
|
|
18
18
|
# Version of the google-apis-dfareporting_v5 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.5.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 = "20260213"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -340,6 +340,18 @@ module Google
|
|
|
340
340
|
include Google::Apis::Core::JsonObjectSupport
|
|
341
341
|
end
|
|
342
342
|
|
|
343
|
+
class ContextualKeyword
|
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
345
|
+
|
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
class ContextualKeywordTargeting
|
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
|
+
|
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
353
|
+
end
|
|
354
|
+
|
|
343
355
|
class Conversion
|
|
344
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
345
357
|
|
|
@@ -1781,6 +1793,8 @@ module Google
|
|
|
1781
1793
|
|
|
1782
1794
|
property :comments, as: 'comments'
|
|
1783
1795
|
property :compatibility, as: 'compatibility'
|
|
1796
|
+
property :contextual_keyword_targeting, as: 'contextualKeywordTargeting', class: Google::Apis::DfareportingV5::ContextualKeywordTargeting, decorator: Google::Apis::DfareportingV5::ContextualKeywordTargeting::Representation
|
|
1797
|
+
|
|
1784
1798
|
property :create_info, as: 'createInfo', class: Google::Apis::DfareportingV5::LastModifiedInfo, decorator: Google::Apis::DfareportingV5::LastModifiedInfo::Representation
|
|
1785
1799
|
|
|
1786
1800
|
collection :creative_group_assignments, as: 'creativeGroupAssignments', class: Google::Apis::DfareportingV5::CreativeGroupAssignment, decorator: Google::Apis::DfareportingV5::CreativeGroupAssignment::Representation
|
|
@@ -2338,6 +2352,21 @@ module Google
|
|
|
2338
2352
|
end
|
|
2339
2353
|
end
|
|
2340
2354
|
|
|
2355
|
+
class ContextualKeyword
|
|
2356
|
+
# @private
|
|
2357
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2358
|
+
property :keyword, as: 'keyword'
|
|
2359
|
+
end
|
|
2360
|
+
end
|
|
2361
|
+
|
|
2362
|
+
class ContextualKeywordTargeting
|
|
2363
|
+
# @private
|
|
2364
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2365
|
+
collection :keywords, as: 'keywords', class: Google::Apis::DfareportingV5::ContextualKeyword, decorator: Google::Apis::DfareportingV5::ContextualKeyword::Representation
|
|
2366
|
+
|
|
2367
|
+
end
|
|
2368
|
+
end
|
|
2369
|
+
|
|
2341
2370
|
class Conversion
|
|
2342
2371
|
# @private
|
|
2343
2372
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2449,6 +2478,7 @@ module Google
|
|
|
2449
2478
|
property :kind, as: 'kind'
|
|
2450
2479
|
property :name, as: 'name'
|
|
2451
2480
|
property :ssl_enabled, as: 'sslEnabled'
|
|
2481
|
+
collection :tv_data_providers, as: 'tvDataProviders'
|
|
2452
2482
|
end
|
|
2453
2483
|
end
|
|
2454
2484
|
|
|
@@ -4848,6 +4878,8 @@ module Google
|
|
|
4848
4878
|
property :advertiser_id, :numeric_string => true, as: 'advertiserId'
|
|
4849
4879
|
property :advertiser_id_dimension_value, as: 'advertiserIdDimensionValue', class: Google::Apis::DfareportingV5::DimensionValue, decorator: Google::Apis::DfareportingV5::DimensionValue::Representation
|
|
4850
4880
|
|
|
4881
|
+
property :contextual_keyword_targeting, as: 'contextualKeywordTargeting', class: Google::Apis::DfareportingV5::ContextualKeywordTargeting, decorator: Google::Apis::DfareportingV5::ContextualKeywordTargeting::Representation
|
|
4882
|
+
|
|
4851
4883
|
property :day_part_targeting, as: 'dayPartTargeting', class: Google::Apis::DfareportingV5::DayPartTargeting, decorator: Google::Apis::DfareportingV5::DayPartTargeting::Representation
|
|
4852
4884
|
|
|
4853
4885
|
property :geo_targeting, as: 'geoTargeting', class: Google::Apis::DfareportingV5::GeoTargeting, decorator: Google::Apis::DfareportingV5::GeoTargeting::Representation
|
|
@@ -3769,7 +3769,8 @@ module Google
|
|
|
3769
3769
|
execute_or_queue_command(command, &block)
|
|
3770
3770
|
end
|
|
3771
3771
|
|
|
3772
|
-
# Retransforms a dynamic feed.
|
|
3772
|
+
# Retransforms a dynamic feed. Only draft feeds can be retransformed (i.e. the
|
|
3773
|
+
# feed has not been published).
|
|
3773
3774
|
# @param [Fixnum] dynamic_feed_id
|
|
3774
3775
|
# Required. Dynamic feed ID.
|
|
3775
3776
|
# @param [String] fields
|
|
@@ -3799,7 +3800,9 @@ module Google
|
|
|
3799
3800
|
execute_or_queue_command(command, &block)
|
|
3800
3801
|
end
|
|
3801
3802
|
|
|
3802
|
-
# Updates a new dynamic feed.
|
|
3803
|
+
# Updates a new dynamic feed. For draft feeds, only Element can be updated. For
|
|
3804
|
+
# published feeds, only FeedSchedule can be updated. Other fields will be
|
|
3805
|
+
# ignored.
|
|
3803
3806
|
# @param [Google::Apis::DfareportingV5::DynamicFeed] dynamic_feed_object
|
|
3804
3807
|
# @param [String] fields
|
|
3805
3808
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -3829,7 +3832,7 @@ module Google
|
|
|
3829
3832
|
execute_or_queue_command(command, &block)
|
|
3830
3833
|
end
|
|
3831
3834
|
|
|
3832
|
-
# Generates code for a dynamic profile.
|
|
3835
|
+
# Generates code for a dynamic profile, which will need unescaping.
|
|
3833
3836
|
# @param [Fixnum] dynamic_profile_id
|
|
3834
3837
|
# Required. Dynamic profile ID.
|
|
3835
3838
|
# @param [String] fields
|
|
@@ -7857,6 +7860,11 @@ module Google
|
|
|
7857
7860
|
# Required. TV Campaign ID.
|
|
7858
7861
|
# @param [Fixnum] account_id
|
|
7859
7862
|
# Required. Account ID associated with this request.
|
|
7863
|
+
# @param [Fixnum] country_dart_id
|
|
7864
|
+
# Optional. Country Dart ID. If not specified, defaults to 256 (US).
|
|
7865
|
+
# @param [String] tv_data_provider
|
|
7866
|
+
# Optional. TV data provider. If not specified, defaults to `
|
|
7867
|
+
# COMSCORE_NATIONAL_US`.
|
|
7860
7868
|
# @param [String] fields
|
|
7861
7869
|
# Selector specifying which fields to include in a partial response.
|
|
7862
7870
|
# @param [String] quota_user
|
|
@@ -7874,13 +7882,15 @@ module Google
|
|
|
7874
7882
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7875
7883
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7876
7884
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7877
|
-
def get_tv_campaign_detail(profile_id, id, account_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
7885
|
+
def get_tv_campaign_detail(profile_id, id, account_id: nil, country_dart_id: nil, tv_data_provider: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
7878
7886
|
command = make_simple_command(:get, 'userprofiles/{+profileId}/tvCampaignDetails/{+id}', options)
|
|
7879
7887
|
command.response_representation = Google::Apis::DfareportingV5::TvCampaignDetail::Representation
|
|
7880
7888
|
command.response_class = Google::Apis::DfareportingV5::TvCampaignDetail
|
|
7881
7889
|
command.params['profileId'] = profile_id unless profile_id.nil?
|
|
7882
7890
|
command.params['id'] = id unless id.nil?
|
|
7883
7891
|
command.query['accountId'] = account_id unless account_id.nil?
|
|
7892
|
+
command.query['countryDartId'] = country_dart_id unless country_dart_id.nil?
|
|
7893
|
+
command.query['tvDataProvider'] = tv_data_provider unless tv_data_provider.nil?
|
|
7884
7894
|
command.query['fields'] = fields unless fields.nil?
|
|
7885
7895
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7886
7896
|
execute_or_queue_command(command, &block)
|
|
@@ -7891,9 +7901,14 @@ module Google
|
|
|
7891
7901
|
# Required. User profile ID associated with this request.
|
|
7892
7902
|
# @param [Fixnum] account_id
|
|
7893
7903
|
# Required. Account ID associated with this request.
|
|
7904
|
+
# @param [Fixnum] country_dart_id
|
|
7905
|
+
# Optional. Country Dart ID. If not specified, defaults to 256 (US).
|
|
7894
7906
|
# @param [String] name
|
|
7895
7907
|
# Required. Search string to filter the list of TV campaign summaries. Matches
|
|
7896
7908
|
# any substring. Required field.
|
|
7909
|
+
# @param [String] tv_data_provider
|
|
7910
|
+
# Optional. TV data provider. If not specified, defaults to `
|
|
7911
|
+
# COMSCORE_NATIONAL_US`.
|
|
7897
7912
|
# @param [String] fields
|
|
7898
7913
|
# Selector specifying which fields to include in a partial response.
|
|
7899
7914
|
# @param [String] quota_user
|
|
@@ -7911,13 +7926,15 @@ module Google
|
|
|
7911
7926
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7912
7927
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7913
7928
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7914
|
-
def list_tv_campaign_summaries(profile_id, account_id: nil, name: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
7929
|
+
def list_tv_campaign_summaries(profile_id, account_id: nil, country_dart_id: nil, name: nil, tv_data_provider: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
7915
7930
|
command = make_simple_command(:get, 'userprofiles/{+profileId}/tvCampaignSummaries', options)
|
|
7916
7931
|
command.response_representation = Google::Apis::DfareportingV5::TvCampaignSummariesListResponse::Representation
|
|
7917
7932
|
command.response_class = Google::Apis::DfareportingV5::TvCampaignSummariesListResponse
|
|
7918
7933
|
command.params['profileId'] = profile_id unless profile_id.nil?
|
|
7919
7934
|
command.query['accountId'] = account_id unless account_id.nil?
|
|
7935
|
+
command.query['countryDartId'] = country_dart_id unless country_dart_id.nil?
|
|
7920
7936
|
command.query['name'] = name unless name.nil?
|
|
7937
|
+
command.query['tvDataProvider'] = tv_data_provider unless tv_data_provider.nil?
|
|
7921
7938
|
command.query['fields'] = fields unless fields.nil?
|
|
7922
7939
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7923
7940
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dfareporting_v5
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.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-dfareporting_v5/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v5/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v5/v0.5.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v5
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|