google-apis-dfareporting_v4 0.24.0 → 0.26.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: a13291519e35bc72c88ad7c0cb1eecb2cf758195043693784a53f2f1dd1f735a
|
|
4
|
+
data.tar.gz: 39331f4250a038fabdfca934e879ccdb7806e58cf9b6ce0011e497fcfc59eeaa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e63c52b1c8ab7f45370d172641e62d0c973d280b46ace28b92f10cb9a677145814c9141a9e893c92bb0c517aaf0fbfdeb2f8eaaf8e2588115143d5bfb524115
|
|
7
|
+
data.tar.gz: 624421ba6a280f238446dda6ee872a1b1cac6aeb096f593b6631c395798e0bcfb7ff3f1c8bd9e00c0a55d576c6186801fbbcb49fa7cb7c8f4ba86713d7b8c270
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dfareporting_v4
|
|
2
2
|
|
|
3
|
+
### v0.26.0 (2025-11-02)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251023
|
|
6
|
+
|
|
7
|
+
### v0.25.0 (2025-10-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251009
|
|
10
|
+
|
|
3
11
|
### v0.24.0 (2025-09-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250902
|
|
@@ -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::DfareportingV4::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::DfareportingV4::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)
|
|
@@ -2859,6 +2865,44 @@ module Google
|
|
|
2859
2865
|
end
|
|
2860
2866
|
end
|
|
2861
2867
|
|
|
2868
|
+
# Contains information about a Contextual Keyword that can be targeted by ads.
|
|
2869
|
+
class ContextualKeyword
|
|
2870
|
+
include Google::Apis::Core::Hashable
|
|
2871
|
+
|
|
2872
|
+
# The keyword that can be targeted by ads.
|
|
2873
|
+
# Corresponds to the JSON property `keyword`
|
|
2874
|
+
# @return [String]
|
|
2875
|
+
attr_accessor :keyword
|
|
2876
|
+
|
|
2877
|
+
def initialize(**args)
|
|
2878
|
+
update!(**args)
|
|
2879
|
+
end
|
|
2880
|
+
|
|
2881
|
+
# Update properties of this object
|
|
2882
|
+
def update!(**args)
|
|
2883
|
+
@keyword = args[:keyword] if args.key?(:keyword)
|
|
2884
|
+
end
|
|
2885
|
+
end
|
|
2886
|
+
|
|
2887
|
+
# Contextual Keyword Targeting.
|
|
2888
|
+
class ContextualKeywordTargeting
|
|
2889
|
+
include Google::Apis::Core::Hashable
|
|
2890
|
+
|
|
2891
|
+
# Contextual keywords that this ad targets
|
|
2892
|
+
# Corresponds to the JSON property `keywords`
|
|
2893
|
+
# @return [Array<Google::Apis::DfareportingV4::ContextualKeyword>]
|
|
2894
|
+
attr_accessor :keywords
|
|
2895
|
+
|
|
2896
|
+
def initialize(**args)
|
|
2897
|
+
update!(**args)
|
|
2898
|
+
end
|
|
2899
|
+
|
|
2900
|
+
# Update properties of this object
|
|
2901
|
+
def update!(**args)
|
|
2902
|
+
@keywords = args[:keywords] if args.key?(:keywords)
|
|
2903
|
+
end
|
|
2904
|
+
end
|
|
2905
|
+
|
|
2862
2906
|
# A Conversion represents when a user successfully performs a desired action
|
|
2863
2907
|
# after seeing an ad.
|
|
2864
2908
|
class Conversion
|
|
@@ -5583,6 +5627,39 @@ module Google
|
|
|
5583
5627
|
end
|
|
5584
5628
|
end
|
|
5585
5629
|
|
|
5630
|
+
# Request message for DfareportingStudioCreativeAssets.Insert.
|
|
5631
|
+
class DfareportingStudioCreativeAssetsInsertRequest
|
|
5632
|
+
include Google::Apis::Core::Hashable
|
|
5633
|
+
|
|
5634
|
+
# Optional. Studio account ID of the studio creative asset. It is a optional.
|
|
5635
|
+
# Corresponds to the JSON property `studioAccountId`
|
|
5636
|
+
# @return [Fixnum]
|
|
5637
|
+
attr_accessor :studio_account_id
|
|
5638
|
+
|
|
5639
|
+
# Required. Studio advertiser ID of the studio creative asset. It is a required
|
|
5640
|
+
# field on insertion.
|
|
5641
|
+
# Corresponds to the JSON property `studioAdvertiserId`
|
|
5642
|
+
# @return [Fixnum]
|
|
5643
|
+
attr_accessor :studio_advertiser_id
|
|
5644
|
+
|
|
5645
|
+
# Optional. Studio creative ID of the studio creative asset. It is a optional
|
|
5646
|
+
# field. If it is set, the asset will be associated to the creative.
|
|
5647
|
+
# Corresponds to the JSON property `studioCreativeId`
|
|
5648
|
+
# @return [Fixnum]
|
|
5649
|
+
attr_accessor :studio_creative_id
|
|
5650
|
+
|
|
5651
|
+
def initialize(**args)
|
|
5652
|
+
update!(**args)
|
|
5653
|
+
end
|
|
5654
|
+
|
|
5655
|
+
# Update properties of this object
|
|
5656
|
+
def update!(**args)
|
|
5657
|
+
@studio_account_id = args[:studio_account_id] if args.key?(:studio_account_id)
|
|
5658
|
+
@studio_advertiser_id = args[:studio_advertiser_id] if args.key?(:studio_advertiser_id)
|
|
5659
|
+
@studio_creative_id = args[:studio_creative_id] if args.key?(:studio_creative_id)
|
|
5660
|
+
end
|
|
5661
|
+
end
|
|
5662
|
+
|
|
5586
5663
|
# Google Ad Manager Settings
|
|
5587
5664
|
class DfpSettings
|
|
5588
5665
|
include Google::Apis::Core::Hashable
|
|
@@ -6066,8 +6143,7 @@ module Google
|
|
|
6066
6143
|
|
|
6067
6144
|
# Dynamic profile ID is required for dynamic feed insert as the current GPA API
|
|
6068
6145
|
# only can create a dynamic feed under profile context,even though the dynnamic
|
|
6069
|
-
# feed itself don't need the dynamic profile id. See
|
|
6070
|
-
# interface
|
|
6146
|
+
# feed itself don't need the dynamic profile id. See
|
|
6071
6147
|
class DynamicFeedsInsertRequest
|
|
6072
6148
|
include Google::Apis::Core::Hashable
|
|
6073
6149
|
|
|
@@ -6207,6 +6283,25 @@ module Google
|
|
|
6207
6283
|
end
|
|
6208
6284
|
end
|
|
6209
6285
|
|
|
6286
|
+
# Response message for DfareportingDynamicProfiles.GenerateCode.
|
|
6287
|
+
class DynamicProfileGenerateCodeResponse
|
|
6288
|
+
include Google::Apis::Core::Hashable
|
|
6289
|
+
|
|
6290
|
+
# Generated code for the dynamic profile.
|
|
6291
|
+
# Corresponds to the JSON property `code`
|
|
6292
|
+
# @return [String]
|
|
6293
|
+
attr_accessor :code
|
|
6294
|
+
|
|
6295
|
+
def initialize(**args)
|
|
6296
|
+
update!(**args)
|
|
6297
|
+
end
|
|
6298
|
+
|
|
6299
|
+
# Update properties of this object
|
|
6300
|
+
def update!(**args)
|
|
6301
|
+
@code = args[:code] if args.key?(:code)
|
|
6302
|
+
end
|
|
6303
|
+
end
|
|
6304
|
+
|
|
6210
6305
|
# Contains dynamic profile version information.
|
|
6211
6306
|
class DynamicProfileVersion
|
|
6212
6307
|
include Google::Apis::Core::Hashable
|
|
@@ -9747,7 +9842,8 @@ module Google
|
|
|
9747
9842
|
# DV360 (DBM) * `9`, Innovid * `10`, MediaMath * `11`, Roku OneView DSP * `12`,
|
|
9748
9843
|
# TabMo Hawk * `13`, The Trade Desk * `14`, Xandr Invest DSP * `15`, Yahoo DSP *
|
|
9749
9844
|
# `16`, Zeta Global * `17`, Scaleout * `18`, Bidtellect * `19`, Unicorn * `20`,
|
|
9750
|
-
# Teads * `21`, Quantcast * `22`, Cognitiv
|
|
9845
|
+
# Teads * `21`, Quantcast * `22`, Cognitiv * `23`, AdTheorent * `24`, DeepIntent
|
|
9846
|
+
# * `25`, Pulsepoint
|
|
9751
9847
|
# Corresponds to the JSON property `adServingPlatformId`
|
|
9752
9848
|
# @return [Fixnum]
|
|
9753
9849
|
attr_accessor :ad_serving_platform_id
|
|
@@ -12459,7 +12555,8 @@ module Google
|
|
|
12459
12555
|
# Innovid * `10`, MediaMath * `11`, Roku OneView DSP * `12`, TabMo Hawk * `13`,
|
|
12460
12556
|
# The Trade Desk * `14`, Xandr Invest DSP * `15`, Yahoo DSP * `16`, Zeta Global *
|
|
12461
12557
|
# `17`, Scaleout * `18`, Bidtellect * `19`, Unicorn * `20`, Teads * `21`,
|
|
12462
|
-
# Quantcast * `22`, Cognitiv
|
|
12558
|
+
# Quantcast * `22`, Cognitiv * `23`, AdTheorent * `24`, DeepIntent * `25`,
|
|
12559
|
+
# Pulsepoint
|
|
12463
12560
|
# Corresponds to the JSON property `adServingPlatformId`
|
|
12464
12561
|
# @return [Fixnum]
|
|
12465
12562
|
attr_accessor :ad_serving_platform_id
|
|
@@ -13035,6 +13132,225 @@ module Google
|
|
|
13035
13132
|
end
|
|
13036
13133
|
end
|
|
13037
13134
|
|
|
13135
|
+
# Contains studio creative information.
|
|
13136
|
+
class StudioCreative
|
|
13137
|
+
include Google::Apis::Core::Hashable
|
|
13138
|
+
|
|
13139
|
+
# List of assets associated with this studio creative. It is a required field on
|
|
13140
|
+
# insertion.
|
|
13141
|
+
# Corresponds to the JSON property `assetIds`
|
|
13142
|
+
# @return [Array<Fixnum>]
|
|
13143
|
+
attr_accessor :asset_ids
|
|
13144
|
+
|
|
13145
|
+
# Backup image asset ID of this studio creative.
|
|
13146
|
+
# Corresponds to the JSON property `backupImageAssetId`
|
|
13147
|
+
# @return [Fixnum]
|
|
13148
|
+
attr_accessor :backup_image_asset_id
|
|
13149
|
+
|
|
13150
|
+
# Modification timestamp.
|
|
13151
|
+
# Corresponds to the JSON property `createdInfo`
|
|
13152
|
+
# @return [Google::Apis::DfareportingV4::LastModifiedInfo]
|
|
13153
|
+
attr_accessor :created_info
|
|
13154
|
+
|
|
13155
|
+
# Dimension information for a studio creative.
|
|
13156
|
+
# Corresponds to the JSON property `dimension`
|
|
13157
|
+
# @return [Google::Apis::DfareportingV4::StudioCreativeDimension]
|
|
13158
|
+
attr_accessor :dimension
|
|
13159
|
+
|
|
13160
|
+
# Dynamic profile ID of this studio creative.
|
|
13161
|
+
# Corresponds to the JSON property `dynamicProfileId`
|
|
13162
|
+
# @return [Fixnum]
|
|
13163
|
+
attr_accessor :dynamic_profile_id
|
|
13164
|
+
|
|
13165
|
+
# Format of this studio creative. This is a required field on insertion.
|
|
13166
|
+
# Corresponds to the JSON property `format`
|
|
13167
|
+
# @return [String]
|
|
13168
|
+
attr_accessor :format
|
|
13169
|
+
|
|
13170
|
+
# Output only. Unique ID of this studio creative. This is a read-only, auto-
|
|
13171
|
+
# generated field.
|
|
13172
|
+
# Corresponds to the JSON property `id`
|
|
13173
|
+
# @return [Fixnum]
|
|
13174
|
+
attr_accessor :id
|
|
13175
|
+
|
|
13176
|
+
# Modification timestamp.
|
|
13177
|
+
# Corresponds to the JSON property `lastModifiedInfo`
|
|
13178
|
+
# @return [Google::Apis::DfareportingV4::LastModifiedInfo]
|
|
13179
|
+
attr_accessor :last_modified_info
|
|
13180
|
+
|
|
13181
|
+
# Identifier. Name of this studio creative. This is a required field on
|
|
13182
|
+
# insertion.
|
|
13183
|
+
# Corresponds to the JSON property `name`
|
|
13184
|
+
# @return [String]
|
|
13185
|
+
attr_accessor :name
|
|
13186
|
+
|
|
13187
|
+
# Output only. Status of this studio creative. It is a read-only field.
|
|
13188
|
+
# Corresponds to the JSON property `status`
|
|
13189
|
+
# @return [String]
|
|
13190
|
+
attr_accessor :status
|
|
13191
|
+
|
|
13192
|
+
# Studio account ID of this creative. This field, if left unset, will be auto-
|
|
13193
|
+
# populated.
|
|
13194
|
+
# Corresponds to the JSON property `studioAccountId`
|
|
13195
|
+
# @return [Fixnum]
|
|
13196
|
+
attr_accessor :studio_account_id
|
|
13197
|
+
|
|
13198
|
+
# Studio advertiser ID of this studio creative. This is a required field on
|
|
13199
|
+
# insertion.
|
|
13200
|
+
# Corresponds to the JSON property `studioAdvertiserId`
|
|
13201
|
+
# @return [Fixnum]
|
|
13202
|
+
attr_accessor :studio_advertiser_id
|
|
13203
|
+
|
|
13204
|
+
# Studio campaign ID of this studio creative. This is a required field on
|
|
13205
|
+
# insertion.
|
|
13206
|
+
# Corresponds to the JSON property `studioCampaignId`
|
|
13207
|
+
# @return [Fixnum]
|
|
13208
|
+
attr_accessor :studio_campaign_id
|
|
13209
|
+
|
|
13210
|
+
def initialize(**args)
|
|
13211
|
+
update!(**args)
|
|
13212
|
+
end
|
|
13213
|
+
|
|
13214
|
+
# Update properties of this object
|
|
13215
|
+
def update!(**args)
|
|
13216
|
+
@asset_ids = args[:asset_ids] if args.key?(:asset_ids)
|
|
13217
|
+
@backup_image_asset_id = args[:backup_image_asset_id] if args.key?(:backup_image_asset_id)
|
|
13218
|
+
@created_info = args[:created_info] if args.key?(:created_info)
|
|
13219
|
+
@dimension = args[:dimension] if args.key?(:dimension)
|
|
13220
|
+
@dynamic_profile_id = args[:dynamic_profile_id] if args.key?(:dynamic_profile_id)
|
|
13221
|
+
@format = args[:format] if args.key?(:format)
|
|
13222
|
+
@id = args[:id] if args.key?(:id)
|
|
13223
|
+
@last_modified_info = args[:last_modified_info] if args.key?(:last_modified_info)
|
|
13224
|
+
@name = args[:name] if args.key?(:name)
|
|
13225
|
+
@status = args[:status] if args.key?(:status)
|
|
13226
|
+
@studio_account_id = args[:studio_account_id] if args.key?(:studio_account_id)
|
|
13227
|
+
@studio_advertiser_id = args[:studio_advertiser_id] if args.key?(:studio_advertiser_id)
|
|
13228
|
+
@studio_campaign_id = args[:studio_campaign_id] if args.key?(:studio_campaign_id)
|
|
13229
|
+
end
|
|
13230
|
+
end
|
|
13231
|
+
|
|
13232
|
+
# Contains studio creative asset information.
|
|
13233
|
+
class StudioCreativeAsset
|
|
13234
|
+
include Google::Apis::Core::Hashable
|
|
13235
|
+
|
|
13236
|
+
# Modification timestamp.
|
|
13237
|
+
# Corresponds to the JSON property `createInfo`
|
|
13238
|
+
# @return [Google::Apis::DfareportingV4::LastModifiedInfo]
|
|
13239
|
+
attr_accessor :create_info
|
|
13240
|
+
|
|
13241
|
+
# The filename of the studio creative asset. It is default to the original
|
|
13242
|
+
# filename of the asset.
|
|
13243
|
+
# Corresponds to the JSON property `filename`
|
|
13244
|
+
# @return [String]
|
|
13245
|
+
attr_accessor :filename
|
|
13246
|
+
|
|
13247
|
+
# The filesize of the studio creative asset. This is a read-only field.
|
|
13248
|
+
# Corresponds to the JSON property `filesize`
|
|
13249
|
+
# @return [Fixnum]
|
|
13250
|
+
attr_accessor :filesize
|
|
13251
|
+
|
|
13252
|
+
# Output only. Unique ID of this studio creative asset. This is a read-only,
|
|
13253
|
+
# auto-generated field.
|
|
13254
|
+
# Corresponds to the JSON property `id`
|
|
13255
|
+
# @return [Fixnum]
|
|
13256
|
+
attr_accessor :id
|
|
13257
|
+
|
|
13258
|
+
# Modification timestamp.
|
|
13259
|
+
# Corresponds to the JSON property `lastModifiedInfo`
|
|
13260
|
+
# @return [Google::Apis::DfareportingV4::LastModifiedInfo]
|
|
13261
|
+
attr_accessor :last_modified_info
|
|
13262
|
+
|
|
13263
|
+
# Studio account ID of this studio creative asset. This field, if left unset,
|
|
13264
|
+
# will be auto-populated..
|
|
13265
|
+
# Corresponds to the JSON property `studioAccountId`
|
|
13266
|
+
# @return [Fixnum]
|
|
13267
|
+
attr_accessor :studio_account_id
|
|
13268
|
+
|
|
13269
|
+
# Studio advertiser ID of this studio creative asset. This is a required field
|
|
13270
|
+
# on insertion.
|
|
13271
|
+
# Corresponds to the JSON property `studioAdvertiserId`
|
|
13272
|
+
# @return [Fixnum]
|
|
13273
|
+
attr_accessor :studio_advertiser_id
|
|
13274
|
+
|
|
13275
|
+
# Studio creative ID of this studio creative asset. The asset will be associated
|
|
13276
|
+
# to the creative if creative id is set.
|
|
13277
|
+
# Corresponds to the JSON property `studioCreativeId`
|
|
13278
|
+
# @return [Fixnum]
|
|
13279
|
+
attr_accessor :studio_creative_id
|
|
13280
|
+
|
|
13281
|
+
# The type of the studio creative asset. It is a auto-generated, read-only field.
|
|
13282
|
+
# Corresponds to the JSON property `type`
|
|
13283
|
+
# @return [String]
|
|
13284
|
+
attr_accessor :type
|
|
13285
|
+
|
|
13286
|
+
# Contains processing data for a video asset.
|
|
13287
|
+
# Corresponds to the JSON property `videoProcessingData`
|
|
13288
|
+
# @return [Google::Apis::DfareportingV4::VideoProcessingData]
|
|
13289
|
+
attr_accessor :video_processing_data
|
|
13290
|
+
|
|
13291
|
+
def initialize(**args)
|
|
13292
|
+
update!(**args)
|
|
13293
|
+
end
|
|
13294
|
+
|
|
13295
|
+
# Update properties of this object
|
|
13296
|
+
def update!(**args)
|
|
13297
|
+
@create_info = args[:create_info] if args.key?(:create_info)
|
|
13298
|
+
@filename = args[:filename] if args.key?(:filename)
|
|
13299
|
+
@filesize = args[:filesize] if args.key?(:filesize)
|
|
13300
|
+
@id = args[:id] if args.key?(:id)
|
|
13301
|
+
@last_modified_info = args[:last_modified_info] if args.key?(:last_modified_info)
|
|
13302
|
+
@studio_account_id = args[:studio_account_id] if args.key?(:studio_account_id)
|
|
13303
|
+
@studio_advertiser_id = args[:studio_advertiser_id] if args.key?(:studio_advertiser_id)
|
|
13304
|
+
@studio_creative_id = args[:studio_creative_id] if args.key?(:studio_creative_id)
|
|
13305
|
+
@type = args[:type] if args.key?(:type)
|
|
13306
|
+
@video_processing_data = args[:video_processing_data] if args.key?(:video_processing_data)
|
|
13307
|
+
end
|
|
13308
|
+
end
|
|
13309
|
+
|
|
13310
|
+
# Response message for DfareportingStudioCreativeAssets.Insert.
|
|
13311
|
+
class StudioCreativeAssetsResponse
|
|
13312
|
+
include Google::Apis::Core::Hashable
|
|
13313
|
+
|
|
13314
|
+
# The list of studio creative assets.
|
|
13315
|
+
# Corresponds to the JSON property `assets`
|
|
13316
|
+
# @return [Array<Google::Apis::DfareportingV4::StudioCreativeAsset>]
|
|
13317
|
+
attr_accessor :assets
|
|
13318
|
+
|
|
13319
|
+
def initialize(**args)
|
|
13320
|
+
update!(**args)
|
|
13321
|
+
end
|
|
13322
|
+
|
|
13323
|
+
# Update properties of this object
|
|
13324
|
+
def update!(**args)
|
|
13325
|
+
@assets = args[:assets] if args.key?(:assets)
|
|
13326
|
+
end
|
|
13327
|
+
end
|
|
13328
|
+
|
|
13329
|
+
# Dimension information for a studio creative.
|
|
13330
|
+
class StudioCreativeDimension
|
|
13331
|
+
include Google::Apis::Core::Hashable
|
|
13332
|
+
|
|
13333
|
+
# Height of the studio creative.
|
|
13334
|
+
# Corresponds to the JSON property `height`
|
|
13335
|
+
# @return [Fixnum]
|
|
13336
|
+
attr_accessor :height
|
|
13337
|
+
|
|
13338
|
+
# Width of the studio creative.
|
|
13339
|
+
# Corresponds to the JSON property `width`
|
|
13340
|
+
# @return [Fixnum]
|
|
13341
|
+
attr_accessor :width
|
|
13342
|
+
|
|
13343
|
+
def initialize(**args)
|
|
13344
|
+
update!(**args)
|
|
13345
|
+
end
|
|
13346
|
+
|
|
13347
|
+
# Update properties of this object
|
|
13348
|
+
def update!(**args)
|
|
13349
|
+
@height = args[:height] if args.key?(:height)
|
|
13350
|
+
@width = args[:width] if args.key?(:width)
|
|
13351
|
+
end
|
|
13352
|
+
end
|
|
13353
|
+
|
|
13038
13354
|
# Contains properties of a Campaign Manager subaccount.
|
|
13039
13355
|
class Subaccount
|
|
13040
13356
|
include Google::Apis::Core::Hashable
|
|
@@ -13418,6 +13734,11 @@ module Google
|
|
|
13418
13734
|
# @return [Google::Apis::DfareportingV4::DimensionValue]
|
|
13419
13735
|
attr_accessor :advertiser_id_dimension_value
|
|
13420
13736
|
|
|
13737
|
+
# Contextual Keyword Targeting.
|
|
13738
|
+
# Corresponds to the JSON property `contextualKeywordTargeting`
|
|
13739
|
+
# @return [Google::Apis::DfareportingV4::ContextualKeywordTargeting]
|
|
13740
|
+
attr_accessor :contextual_keyword_targeting
|
|
13741
|
+
|
|
13421
13742
|
# Day Part Targeting.
|
|
13422
13743
|
# Corresponds to the JSON property `dayPartTargeting`
|
|
13423
13744
|
# @return [Google::Apis::DfareportingV4::DayPartTargeting]
|
|
@@ -13480,6 +13801,7 @@ module Google
|
|
|
13480
13801
|
@account_id = args[:account_id] if args.key?(:account_id)
|
|
13481
13802
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
|
13482
13803
|
@advertiser_id_dimension_value = args[:advertiser_id_dimension_value] if args.key?(:advertiser_id_dimension_value)
|
|
13804
|
+
@contextual_keyword_targeting = args[:contextual_keyword_targeting] if args.key?(:contextual_keyword_targeting)
|
|
13483
13805
|
@day_part_targeting = args[:day_part_targeting] if args.key?(:day_part_targeting)
|
|
13484
13806
|
@geo_targeting = args[:geo_targeting] if args.key?(:geo_targeting)
|
|
13485
13807
|
@id = args[:id] if args.key?(:id)
|
|
@@ -14348,6 +14670,31 @@ module Google
|
|
|
14348
14670
|
end
|
|
14349
14671
|
end
|
|
14350
14672
|
|
|
14673
|
+
# Contains processing data for a video asset.
|
|
14674
|
+
class VideoProcessingData
|
|
14675
|
+
include Google::Apis::Core::Hashable
|
|
14676
|
+
|
|
14677
|
+
# For a FAILED processing state, the error reason discovered.
|
|
14678
|
+
# Corresponds to the JSON property `errorReason`
|
|
14679
|
+
# @return [String]
|
|
14680
|
+
attr_accessor :error_reason
|
|
14681
|
+
|
|
14682
|
+
# Output only. The processing state of the studio creative asset.
|
|
14683
|
+
# Corresponds to the JSON property `processingState`
|
|
14684
|
+
# @return [String]
|
|
14685
|
+
attr_accessor :processing_state
|
|
14686
|
+
|
|
14687
|
+
def initialize(**args)
|
|
14688
|
+
update!(**args)
|
|
14689
|
+
end
|
|
14690
|
+
|
|
14691
|
+
# Update properties of this object
|
|
14692
|
+
def update!(**args)
|
|
14693
|
+
@error_reason = args[:error_reason] if args.key?(:error_reason)
|
|
14694
|
+
@processing_state = args[:processing_state] if args.key?(:processing_state)
|
|
14695
|
+
end
|
|
14696
|
+
end
|
|
14697
|
+
|
|
14351
14698
|
# Video Settings
|
|
14352
14699
|
class VideoSettings
|
|
14353
14700
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DfareportingV4
|
|
18
18
|
# Version of the google-apis-dfareporting_v4 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.26.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 = "20251023"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -346,6 +346,18 @@ module Google
|
|
|
346
346
|
include Google::Apis::Core::JsonObjectSupport
|
|
347
347
|
end
|
|
348
348
|
|
|
349
|
+
class ContextualKeyword
|
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
|
+
|
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
353
|
+
end
|
|
354
|
+
|
|
355
|
+
class ContextualKeywordTargeting
|
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
|
+
|
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
359
|
+
end
|
|
360
|
+
|
|
349
361
|
class Conversion
|
|
350
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
363
|
|
|
@@ -598,6 +610,12 @@ module Google
|
|
|
598
610
|
include Google::Apis::Core::JsonObjectSupport
|
|
599
611
|
end
|
|
600
612
|
|
|
613
|
+
class DfareportingStudioCreativeAssetsInsertRequest
|
|
614
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
615
|
+
|
|
616
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
617
|
+
end
|
|
618
|
+
|
|
601
619
|
class DfpSettings
|
|
602
620
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
603
621
|
|
|
@@ -676,6 +694,12 @@ module Google
|
|
|
676
694
|
include Google::Apis::Core::JsonObjectSupport
|
|
677
695
|
end
|
|
678
696
|
|
|
697
|
+
class DynamicProfileGenerateCodeResponse
|
|
698
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
699
|
+
|
|
700
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
701
|
+
end
|
|
702
|
+
|
|
679
703
|
class DynamicProfileVersion
|
|
680
704
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
681
705
|
|
|
@@ -1462,6 +1486,30 @@ module Google
|
|
|
1462
1486
|
include Google::Apis::Core::JsonObjectSupport
|
|
1463
1487
|
end
|
|
1464
1488
|
|
|
1489
|
+
class StudioCreative
|
|
1490
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1491
|
+
|
|
1492
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1493
|
+
end
|
|
1494
|
+
|
|
1495
|
+
class StudioCreativeAsset
|
|
1496
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1497
|
+
|
|
1498
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1499
|
+
end
|
|
1500
|
+
|
|
1501
|
+
class StudioCreativeAssetsResponse
|
|
1502
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1503
|
+
|
|
1504
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1505
|
+
end
|
|
1506
|
+
|
|
1507
|
+
class StudioCreativeDimension
|
|
1508
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1509
|
+
|
|
1510
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1511
|
+
end
|
|
1512
|
+
|
|
1465
1513
|
class Subaccount
|
|
1466
1514
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1467
1515
|
|
|
@@ -1654,6 +1702,12 @@ module Google
|
|
|
1654
1702
|
include Google::Apis::Core::JsonObjectSupport
|
|
1655
1703
|
end
|
|
1656
1704
|
|
|
1705
|
+
class VideoProcessingData
|
|
1706
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1707
|
+
|
|
1708
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1709
|
+
end
|
|
1710
|
+
|
|
1657
1711
|
class VideoSettings
|
|
1658
1712
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1659
1713
|
|
|
@@ -1817,6 +1871,8 @@ module Google
|
|
|
1817
1871
|
|
|
1818
1872
|
property :comments, as: 'comments'
|
|
1819
1873
|
property :compatibility, as: 'compatibility'
|
|
1874
|
+
property :contextual_keyword_targeting, as: 'contextualKeywordTargeting', class: Google::Apis::DfareportingV4::ContextualKeywordTargeting, decorator: Google::Apis::DfareportingV4::ContextualKeywordTargeting::Representation
|
|
1875
|
+
|
|
1820
1876
|
property :create_info, as: 'createInfo', class: Google::Apis::DfareportingV4::LastModifiedInfo, decorator: Google::Apis::DfareportingV4::LastModifiedInfo::Representation
|
|
1821
1877
|
|
|
1822
1878
|
collection :creative_group_assignments, as: 'creativeGroupAssignments', class: Google::Apis::DfareportingV4::CreativeGroupAssignment, decorator: Google::Apis::DfareportingV4::CreativeGroupAssignment::Representation
|
|
@@ -2388,6 +2444,21 @@ module Google
|
|
|
2388
2444
|
end
|
|
2389
2445
|
end
|
|
2390
2446
|
|
|
2447
|
+
class ContextualKeyword
|
|
2448
|
+
# @private
|
|
2449
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2450
|
+
property :keyword, as: 'keyword'
|
|
2451
|
+
end
|
|
2452
|
+
end
|
|
2453
|
+
|
|
2454
|
+
class ContextualKeywordTargeting
|
|
2455
|
+
# @private
|
|
2456
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2457
|
+
collection :keywords, as: 'keywords', class: Google::Apis::DfareportingV4::ContextualKeyword, decorator: Google::Apis::DfareportingV4::ContextualKeyword::Representation
|
|
2458
|
+
|
|
2459
|
+
end
|
|
2460
|
+
end
|
|
2461
|
+
|
|
2391
2462
|
class Conversion
|
|
2392
2463
|
# @private
|
|
2393
2464
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3011,6 +3082,15 @@ module Google
|
|
|
3011
3082
|
end
|
|
3012
3083
|
end
|
|
3013
3084
|
|
|
3085
|
+
class DfareportingStudioCreativeAssetsInsertRequest
|
|
3086
|
+
# @private
|
|
3087
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3088
|
+
property :studio_account_id, :numeric_string => true, as: 'studioAccountId'
|
|
3089
|
+
property :studio_advertiser_id, :numeric_string => true, as: 'studioAdvertiserId'
|
|
3090
|
+
property :studio_creative_id, :numeric_string => true, as: 'studioCreativeId'
|
|
3091
|
+
end
|
|
3092
|
+
end
|
|
3093
|
+
|
|
3014
3094
|
class DfpSettings
|
|
3015
3095
|
# @private
|
|
3016
3096
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3177,6 +3257,13 @@ module Google
|
|
|
3177
3257
|
end
|
|
3178
3258
|
end
|
|
3179
3259
|
|
|
3260
|
+
class DynamicProfileGenerateCodeResponse
|
|
3261
|
+
# @private
|
|
3262
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3263
|
+
property :code, as: 'code'
|
|
3264
|
+
end
|
|
3265
|
+
end
|
|
3266
|
+
|
|
3180
3267
|
class DynamicProfileVersion
|
|
3181
3268
|
# @private
|
|
3182
3269
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4925,6 +5012,63 @@ module Google
|
|
|
4925
5012
|
end
|
|
4926
5013
|
end
|
|
4927
5014
|
|
|
5015
|
+
class StudioCreative
|
|
5016
|
+
# @private
|
|
5017
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5018
|
+
collection :asset_ids, as: 'assetIds'
|
|
5019
|
+
property :backup_image_asset_id, :numeric_string => true, as: 'backupImageAssetId'
|
|
5020
|
+
property :created_info, as: 'createdInfo', class: Google::Apis::DfareportingV4::LastModifiedInfo, decorator: Google::Apis::DfareportingV4::LastModifiedInfo::Representation
|
|
5021
|
+
|
|
5022
|
+
property :dimension, as: 'dimension', class: Google::Apis::DfareportingV4::StudioCreativeDimension, decorator: Google::Apis::DfareportingV4::StudioCreativeDimension::Representation
|
|
5023
|
+
|
|
5024
|
+
property :dynamic_profile_id, :numeric_string => true, as: 'dynamicProfileId'
|
|
5025
|
+
property :format, as: 'format'
|
|
5026
|
+
property :id, :numeric_string => true, as: 'id'
|
|
5027
|
+
property :last_modified_info, as: 'lastModifiedInfo', class: Google::Apis::DfareportingV4::LastModifiedInfo, decorator: Google::Apis::DfareportingV4::LastModifiedInfo::Representation
|
|
5028
|
+
|
|
5029
|
+
property :name, as: 'name'
|
|
5030
|
+
property :status, as: 'status'
|
|
5031
|
+
property :studio_account_id, :numeric_string => true, as: 'studioAccountId'
|
|
5032
|
+
property :studio_advertiser_id, :numeric_string => true, as: 'studioAdvertiserId'
|
|
5033
|
+
property :studio_campaign_id, :numeric_string => true, as: 'studioCampaignId'
|
|
5034
|
+
end
|
|
5035
|
+
end
|
|
5036
|
+
|
|
5037
|
+
class StudioCreativeAsset
|
|
5038
|
+
# @private
|
|
5039
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5040
|
+
property :create_info, as: 'createInfo', class: Google::Apis::DfareportingV4::LastModifiedInfo, decorator: Google::Apis::DfareportingV4::LastModifiedInfo::Representation
|
|
5041
|
+
|
|
5042
|
+
property :filename, as: 'filename'
|
|
5043
|
+
property :filesize, :numeric_string => true, as: 'filesize'
|
|
5044
|
+
property :id, :numeric_string => true, as: 'id'
|
|
5045
|
+
property :last_modified_info, as: 'lastModifiedInfo', class: Google::Apis::DfareportingV4::LastModifiedInfo, decorator: Google::Apis::DfareportingV4::LastModifiedInfo::Representation
|
|
5046
|
+
|
|
5047
|
+
property :studio_account_id, :numeric_string => true, as: 'studioAccountId'
|
|
5048
|
+
property :studio_advertiser_id, :numeric_string => true, as: 'studioAdvertiserId'
|
|
5049
|
+
property :studio_creative_id, :numeric_string => true, as: 'studioCreativeId'
|
|
5050
|
+
property :type, as: 'type'
|
|
5051
|
+
property :video_processing_data, as: 'videoProcessingData', class: Google::Apis::DfareportingV4::VideoProcessingData, decorator: Google::Apis::DfareportingV4::VideoProcessingData::Representation
|
|
5052
|
+
|
|
5053
|
+
end
|
|
5054
|
+
end
|
|
5055
|
+
|
|
5056
|
+
class StudioCreativeAssetsResponse
|
|
5057
|
+
# @private
|
|
5058
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5059
|
+
collection :assets, as: 'assets', class: Google::Apis::DfareportingV4::StudioCreativeAsset, decorator: Google::Apis::DfareportingV4::StudioCreativeAsset::Representation
|
|
5060
|
+
|
|
5061
|
+
end
|
|
5062
|
+
end
|
|
5063
|
+
|
|
5064
|
+
class StudioCreativeDimension
|
|
5065
|
+
# @private
|
|
5066
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5067
|
+
property :height, as: 'height'
|
|
5068
|
+
property :width, as: 'width'
|
|
5069
|
+
end
|
|
5070
|
+
end
|
|
5071
|
+
|
|
4928
5072
|
class Subaccount
|
|
4929
5073
|
# @private
|
|
4930
5074
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5020,6 +5164,8 @@ module Google
|
|
|
5020
5164
|
property :advertiser_id, :numeric_string => true, as: 'advertiserId'
|
|
5021
5165
|
property :advertiser_id_dimension_value, as: 'advertiserIdDimensionValue', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
|
|
5022
5166
|
|
|
5167
|
+
property :contextual_keyword_targeting, as: 'contextualKeywordTargeting', class: Google::Apis::DfareportingV4::ContextualKeywordTargeting, decorator: Google::Apis::DfareportingV4::ContextualKeywordTargeting::Representation
|
|
5168
|
+
|
|
5023
5169
|
property :day_part_targeting, as: 'dayPartTargeting', class: Google::Apis::DfareportingV4::DayPartTargeting, decorator: Google::Apis::DfareportingV4::DayPartTargeting::Representation
|
|
5024
5170
|
|
|
5025
5171
|
property :geo_targeting, as: 'geoTargeting', class: Google::Apis::DfareportingV4::GeoTargeting, decorator: Google::Apis::DfareportingV4::GeoTargeting::Representation
|
|
@@ -5277,6 +5423,14 @@ module Google
|
|
|
5277
5423
|
end
|
|
5278
5424
|
end
|
|
5279
5425
|
|
|
5426
|
+
class VideoProcessingData
|
|
5427
|
+
# @private
|
|
5428
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5429
|
+
property :error_reason, as: 'errorReason'
|
|
5430
|
+
property :processing_state, as: 'processingState'
|
|
5431
|
+
end
|
|
5432
|
+
end
|
|
5433
|
+
|
|
5280
5434
|
class VideoSettings
|
|
5281
5435
|
# @private
|
|
5282
5436
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3769,6 +3769,96 @@ module Google
|
|
|
3769
3769
|
execute_or_queue_command(command, &block)
|
|
3770
3770
|
end
|
|
3771
3771
|
|
|
3772
|
+
# Retransforms a dynamic feed.
|
|
3773
|
+
# @param [Fixnum] dynamic_feed_id
|
|
3774
|
+
# Required. Dynamic feed ID.
|
|
3775
|
+
# @param [String] fields
|
|
3776
|
+
# Selector specifying which fields to include in a partial response.
|
|
3777
|
+
# @param [String] quota_user
|
|
3778
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
3779
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3780
|
+
# @param [Google::Apis::RequestOptions] options
|
|
3781
|
+
# Request-specific options
|
|
3782
|
+
#
|
|
3783
|
+
# @yield [result, err] Result & error if block supplied
|
|
3784
|
+
# @yieldparam result [Google::Apis::DfareportingV4::DynamicFeed] parsed result object
|
|
3785
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
3786
|
+
#
|
|
3787
|
+
# @return [Google::Apis::DfareportingV4::DynamicFeed]
|
|
3788
|
+
#
|
|
3789
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3790
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3791
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3792
|
+
def retransform_dynamic_feed(dynamic_feed_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
3793
|
+
command = make_simple_command(:post, 'studio/dynamicFeeds/{+dynamicFeedId}/retransform', options)
|
|
3794
|
+
command.response_representation = Google::Apis::DfareportingV4::DynamicFeed::Representation
|
|
3795
|
+
command.response_class = Google::Apis::DfareportingV4::DynamicFeed
|
|
3796
|
+
command.params['dynamicFeedId'] = dynamic_feed_id unless dynamic_feed_id.nil?
|
|
3797
|
+
command.query['fields'] = fields unless fields.nil?
|
|
3798
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3799
|
+
execute_or_queue_command(command, &block)
|
|
3800
|
+
end
|
|
3801
|
+
|
|
3802
|
+
# Updates a new dynamic feed.
|
|
3803
|
+
# @param [Google::Apis::DfareportingV4::DynamicFeed] dynamic_feed_object
|
|
3804
|
+
# @param [String] fields
|
|
3805
|
+
# Selector specifying which fields to include in a partial response.
|
|
3806
|
+
# @param [String] quota_user
|
|
3807
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
3808
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3809
|
+
# @param [Google::Apis::RequestOptions] options
|
|
3810
|
+
# Request-specific options
|
|
3811
|
+
#
|
|
3812
|
+
# @yield [result, err] Result & error if block supplied
|
|
3813
|
+
# @yieldparam result [Google::Apis::DfareportingV4::DynamicFeed] parsed result object
|
|
3814
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
3815
|
+
#
|
|
3816
|
+
# @return [Google::Apis::DfareportingV4::DynamicFeed]
|
|
3817
|
+
#
|
|
3818
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3819
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3820
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3821
|
+
def update_dynamic_feed(dynamic_feed_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3822
|
+
command = make_simple_command(:put, 'studio/dynamicFeeds', options)
|
|
3823
|
+
command.request_representation = Google::Apis::DfareportingV4::DynamicFeed::Representation
|
|
3824
|
+
command.request_object = dynamic_feed_object
|
|
3825
|
+
command.response_representation = Google::Apis::DfareportingV4::DynamicFeed::Representation
|
|
3826
|
+
command.response_class = Google::Apis::DfareportingV4::DynamicFeed
|
|
3827
|
+
command.query['fields'] = fields unless fields.nil?
|
|
3828
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3829
|
+
execute_or_queue_command(command, &block)
|
|
3830
|
+
end
|
|
3831
|
+
|
|
3832
|
+
# Generates code for a dynamic profile.
|
|
3833
|
+
# @param [Fixnum] dynamic_profile_id
|
|
3834
|
+
# Required. Dynamic profile ID.
|
|
3835
|
+
# @param [String] fields
|
|
3836
|
+
# Selector specifying which fields to include in a partial response.
|
|
3837
|
+
# @param [String] quota_user
|
|
3838
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
3839
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3840
|
+
# @param [Google::Apis::RequestOptions] options
|
|
3841
|
+
# Request-specific options
|
|
3842
|
+
#
|
|
3843
|
+
# @yield [result, err] Result & error if block supplied
|
|
3844
|
+
# @yieldparam result [Google::Apis::DfareportingV4::DynamicProfileGenerateCodeResponse] parsed result object
|
|
3845
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
3846
|
+
#
|
|
3847
|
+
# @return [Google::Apis::DfareportingV4::DynamicProfileGenerateCodeResponse]
|
|
3848
|
+
#
|
|
3849
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3850
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3851
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3852
|
+
def generate_dynamic_profile_code(dynamic_profile_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
3853
|
+
command = make_simple_command(:get, 'studio/dynamicProfiles/{+dynamicProfileId}/generateCode', options)
|
|
3854
|
+
command.response_representation = Google::Apis::DfareportingV4::DynamicProfileGenerateCodeResponse::Representation
|
|
3855
|
+
command.response_class = Google::Apis::DfareportingV4::DynamicProfileGenerateCodeResponse
|
|
3856
|
+
command.params['dynamicProfileId'] = dynamic_profile_id unless dynamic_profile_id.nil?
|
|
3857
|
+
command.query['fields'] = fields unless fields.nil?
|
|
3858
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3859
|
+
execute_or_queue_command(command, &block)
|
|
3860
|
+
end
|
|
3861
|
+
|
|
3772
3862
|
# Gets a dynamic profile by ID.
|
|
3773
3863
|
# @param [Fixnum] dynamic_profile_id
|
|
3774
3864
|
# Required. Dynamic profile ID.
|
|
@@ -3829,6 +3919,34 @@ module Google
|
|
|
3829
3919
|
execute_or_queue_command(command, &block)
|
|
3830
3920
|
end
|
|
3831
3921
|
|
|
3922
|
+
# Publish for a dynamic profile.
|
|
3923
|
+
# @param [Fixnum] dynamic_profile_id
|
|
3924
|
+
# Required. Dynamic profile ID.
|
|
3925
|
+
# @param [String] fields
|
|
3926
|
+
# Selector specifying which fields to include in a partial response.
|
|
3927
|
+
# @param [String] quota_user
|
|
3928
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
3929
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
3930
|
+
# @param [Google::Apis::RequestOptions] options
|
|
3931
|
+
# Request-specific options
|
|
3932
|
+
#
|
|
3933
|
+
# @yield [result, err] Result & error if block supplied
|
|
3934
|
+
# @yieldparam result [NilClass] No result returned for this method
|
|
3935
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
3936
|
+
#
|
|
3937
|
+
# @return [void]
|
|
3938
|
+
#
|
|
3939
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3940
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3941
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3942
|
+
def publish_dynamic_profile(dynamic_profile_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
3943
|
+
command = make_simple_command(:post, 'studio/dynamicProfiles/{+dynamicProfileId}/publish', options)
|
|
3944
|
+
command.params['dynamicProfileId'] = dynamic_profile_id unless dynamic_profile_id.nil?
|
|
3945
|
+
command.query['fields'] = fields unless fields.nil?
|
|
3946
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3947
|
+
execute_or_queue_command(command, &block)
|
|
3948
|
+
end
|
|
3949
|
+
|
|
3832
3950
|
# Updates an existing dynamic profile.
|
|
3833
3951
|
# @param [Google::Apis::DfareportingV4::DynamicProfile] dynamic_profile_object
|
|
3834
3952
|
# @param [String] fields
|
|
@@ -7449,6 +7567,134 @@ module Google
|
|
|
7449
7567
|
execute_or_queue_command(command, &block)
|
|
7450
7568
|
end
|
|
7451
7569
|
|
|
7570
|
+
# Inserts a new studio creative asset.
|
|
7571
|
+
# @param [Google::Apis::DfareportingV4::DfareportingStudioCreativeAssetsInsertRequest] dfareporting_studio_creative_assets_insert_request_object
|
|
7572
|
+
# @param [String] fields
|
|
7573
|
+
# Selector specifying which fields to include in a partial response.
|
|
7574
|
+
# @param [String] quota_user
|
|
7575
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
7576
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
7577
|
+
# @param [IO, String] upload_source
|
|
7578
|
+
# IO stream or filename containing content to upload
|
|
7579
|
+
# @param [String] content_type
|
|
7580
|
+
# Content type of the uploaded content.
|
|
7581
|
+
# @param [Google::Apis::RequestOptions] options
|
|
7582
|
+
# Request-specific options
|
|
7583
|
+
#
|
|
7584
|
+
# @yield [result, err] Result & error if block supplied
|
|
7585
|
+
# @yieldparam result [Google::Apis::DfareportingV4::StudioCreativeAssetsResponse] parsed result object
|
|
7586
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
7587
|
+
#
|
|
7588
|
+
# @return [Google::Apis::DfareportingV4::StudioCreativeAssetsResponse]
|
|
7589
|
+
#
|
|
7590
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7591
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7592
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7593
|
+
def insert_studio_creative_asset(dfareporting_studio_creative_assets_insert_request_object = nil, fields: nil, quota_user: nil, upload_source: nil, content_type: nil, options: nil, &block)
|
|
7594
|
+
if upload_source.nil?
|
|
7595
|
+
command = make_simple_command(:post, 'studio/creativeAssets', options)
|
|
7596
|
+
else
|
|
7597
|
+
command = make_upload_command(:post, 'studio/creativeAssets', options)
|
|
7598
|
+
command.upload_source = upload_source
|
|
7599
|
+
command.upload_content_type = content_type
|
|
7600
|
+
end
|
|
7601
|
+
command.request_representation = Google::Apis::DfareportingV4::DfareportingStudioCreativeAssetsInsertRequest::Representation
|
|
7602
|
+
command.request_object = dfareporting_studio_creative_assets_insert_request_object
|
|
7603
|
+
command.response_representation = Google::Apis::DfareportingV4::StudioCreativeAssetsResponse::Representation
|
|
7604
|
+
command.response_class = Google::Apis::DfareportingV4::StudioCreativeAssetsResponse
|
|
7605
|
+
command.query['fields'] = fields unless fields.nil?
|
|
7606
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7607
|
+
execute_or_queue_command(command, &block)
|
|
7608
|
+
end
|
|
7609
|
+
|
|
7610
|
+
# Gets a studio creative by ID.
|
|
7611
|
+
# @param [Fixnum] studio_creative_id
|
|
7612
|
+
# Required. Studio creative ID.
|
|
7613
|
+
# @param [String] fields
|
|
7614
|
+
# Selector specifying which fields to include in a partial response.
|
|
7615
|
+
# @param [String] quota_user
|
|
7616
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
7617
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
7618
|
+
# @param [Google::Apis::RequestOptions] options
|
|
7619
|
+
# Request-specific options
|
|
7620
|
+
#
|
|
7621
|
+
# @yield [result, err] Result & error if block supplied
|
|
7622
|
+
# @yieldparam result [Google::Apis::DfareportingV4::StudioCreative] parsed result object
|
|
7623
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
7624
|
+
#
|
|
7625
|
+
# @return [Google::Apis::DfareportingV4::StudioCreative]
|
|
7626
|
+
#
|
|
7627
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7628
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7629
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7630
|
+
def get_studio_creative(studio_creative_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
7631
|
+
command = make_simple_command(:get, 'studio/creatives/{+studioCreativeId}', options)
|
|
7632
|
+
command.response_representation = Google::Apis::DfareportingV4::StudioCreative::Representation
|
|
7633
|
+
command.response_class = Google::Apis::DfareportingV4::StudioCreative
|
|
7634
|
+
command.params['studioCreativeId'] = studio_creative_id unless studio_creative_id.nil?
|
|
7635
|
+
command.query['fields'] = fields unless fields.nil?
|
|
7636
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7637
|
+
execute_or_queue_command(command, &block)
|
|
7638
|
+
end
|
|
7639
|
+
|
|
7640
|
+
# Inserts a new studio creative.
|
|
7641
|
+
# @param [Google::Apis::DfareportingV4::StudioCreative] studio_creative_object
|
|
7642
|
+
# @param [String] fields
|
|
7643
|
+
# Selector specifying which fields to include in a partial response.
|
|
7644
|
+
# @param [String] quota_user
|
|
7645
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
7646
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
7647
|
+
# @param [Google::Apis::RequestOptions] options
|
|
7648
|
+
# Request-specific options
|
|
7649
|
+
#
|
|
7650
|
+
# @yield [result, err] Result & error if block supplied
|
|
7651
|
+
# @yieldparam result [Google::Apis::DfareportingV4::StudioCreative] parsed result object
|
|
7652
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
7653
|
+
#
|
|
7654
|
+
# @return [Google::Apis::DfareportingV4::StudioCreative]
|
|
7655
|
+
#
|
|
7656
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7657
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7658
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7659
|
+
def insert_studio_creative(studio_creative_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
7660
|
+
command = make_simple_command(:post, 'studio/creatives', options)
|
|
7661
|
+
command.request_representation = Google::Apis::DfareportingV4::StudioCreative::Representation
|
|
7662
|
+
command.request_object = studio_creative_object
|
|
7663
|
+
command.response_representation = Google::Apis::DfareportingV4::StudioCreative::Representation
|
|
7664
|
+
command.response_class = Google::Apis::DfareportingV4::StudioCreative
|
|
7665
|
+
command.query['fields'] = fields unless fields.nil?
|
|
7666
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7667
|
+
execute_or_queue_command(command, &block)
|
|
7668
|
+
end
|
|
7669
|
+
|
|
7670
|
+
# Publish for a studio creative.
|
|
7671
|
+
# @param [Fixnum] studio_creative_id
|
|
7672
|
+
# Required. Studio creative ID.
|
|
7673
|
+
# @param [String] fields
|
|
7674
|
+
# Selector specifying which fields to include in a partial response.
|
|
7675
|
+
# @param [String] quota_user
|
|
7676
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
7677
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
7678
|
+
# @param [Google::Apis::RequestOptions] options
|
|
7679
|
+
# Request-specific options
|
|
7680
|
+
#
|
|
7681
|
+
# @yield [result, err] Result & error if block supplied
|
|
7682
|
+
# @yieldparam result [NilClass] No result returned for this method
|
|
7683
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
7684
|
+
#
|
|
7685
|
+
# @return [void]
|
|
7686
|
+
#
|
|
7687
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
7688
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
7689
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
7690
|
+
def publish_studio_creative(studio_creative_id, fields: nil, quota_user: nil, options: nil, &block)
|
|
7691
|
+
command = make_simple_command(:post, 'studio/creatives/{+studioCreativeId}/publish', options)
|
|
7692
|
+
command.params['studioCreativeId'] = studio_creative_id unless studio_creative_id.nil?
|
|
7693
|
+
command.query['fields'] = fields unless fields.nil?
|
|
7694
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
7695
|
+
execute_or_queue_command(command, &block)
|
|
7696
|
+
end
|
|
7697
|
+
|
|
7452
7698
|
# Gets one subaccount by ID.
|
|
7453
7699
|
# @param [Fixnum] profile_id
|
|
7454
7700
|
# User profile ID associated with this request.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dfareporting_v4
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.26.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_v4/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.26.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v4
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|