google-apis-searchads360_v0 0.13.0 → 0.14.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: efe90a653b341198d663afabb79d685798a06f4ff1d7e8141aa91296abcfdf0d
|
4
|
+
data.tar.gz: 1c293489cf4fc37e708d5348020004d832e2849c5183798290b23eddaed2b116
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3731a6300cdfda1a263201842a352678982537b8014674a48fde7f1d53a4d8794b7242efea65d1d3ed49e81e65d4ae6b573d563013a9f4f06e8df601cd9ca453
|
7
|
+
data.tar.gz: faa813cc72ce634abb1bd2d615e8f5fb896a12a2153b1bfe9d9c85e87d90e6898906a32dd1cfabd2b432febbc2019dae313cde70c5c4d8ac071bf8bbc2b1cf13
|
data/CHANGELOG.md
CHANGED
@@ -3106,6 +3106,166 @@ module Google
|
|
3106
3106
|
end
|
3107
3107
|
end
|
3108
3108
|
|
3109
|
+
# An automated bidding strategy to help get the most conversion value for your
|
3110
|
+
# campaigns while spending your budget.
|
3111
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversionValue
|
3112
|
+
include Google::Apis::Core::Hashable
|
3113
|
+
|
3114
|
+
# Output only. The target return on ad spend (ROAS) option. If set, the bid
|
3115
|
+
# strategy will maximize revenue while averaging the target return on ad spend.
|
3116
|
+
# If the target ROAS is high, the bid strategy may not be able to spend the full
|
3117
|
+
# budget. If the target ROAS is not set, the bid strategy will aim to achieve
|
3118
|
+
# the highest possible ROAS for the budget.
|
3119
|
+
# Corresponds to the JSON property `targetRoas`
|
3120
|
+
# @return [Float]
|
3121
|
+
attr_accessor :target_roas
|
3122
|
+
|
3123
|
+
def initialize(**args)
|
3124
|
+
update!(**args)
|
3125
|
+
end
|
3126
|
+
|
3127
|
+
# Update properties of this object
|
3128
|
+
def update!(**args)
|
3129
|
+
@target_roas = args[:target_roas] if args.key?(:target_roas)
|
3130
|
+
end
|
3131
|
+
end
|
3132
|
+
|
3133
|
+
# An automated bidding strategy to help get the most conversions for your
|
3134
|
+
# campaigns while spending your budget.
|
3135
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversions
|
3136
|
+
include Google::Apis::Core::Hashable
|
3137
|
+
|
3138
|
+
# Output only. The target cost per acquisition (CPA) option. This is the average
|
3139
|
+
# amount that you would like to spend per acquisition.
|
3140
|
+
# Corresponds to the JSON property `targetCpa`
|
3141
|
+
# @return [Fixnum]
|
3142
|
+
attr_accessor :target_cpa
|
3143
|
+
|
3144
|
+
# Output only. The target cost per acquisition (CPA) option. This is the average
|
3145
|
+
# amount that you would like to spend per acquisition.
|
3146
|
+
# Corresponds to the JSON property `targetCpaMicros`
|
3147
|
+
# @return [Fixnum]
|
3148
|
+
attr_accessor :target_cpa_micros
|
3149
|
+
|
3150
|
+
def initialize(**args)
|
3151
|
+
update!(**args)
|
3152
|
+
end
|
3153
|
+
|
3154
|
+
# Update properties of this object
|
3155
|
+
def update!(**args)
|
3156
|
+
@target_cpa = args[:target_cpa] if args.key?(:target_cpa)
|
3157
|
+
@target_cpa_micros = args[:target_cpa_micros] if args.key?(:target_cpa_micros)
|
3158
|
+
end
|
3159
|
+
end
|
3160
|
+
|
3161
|
+
# An automated bid strategy that sets bids to help get as many conversions as
|
3162
|
+
# possible at the target cost-per-acquisition (CPA) you set.
|
3163
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetCpa
|
3164
|
+
include Google::Apis::Core::Hashable
|
3165
|
+
|
3166
|
+
# Output only. Average CPA target. This target should be greater than or equal
|
3167
|
+
# to minimum billable unit based on the currency for the account.
|
3168
|
+
# Corresponds to the JSON property `targetCpaMicros`
|
3169
|
+
# @return [Fixnum]
|
3170
|
+
attr_accessor :target_cpa_micros
|
3171
|
+
|
3172
|
+
def initialize(**args)
|
3173
|
+
update!(**args)
|
3174
|
+
end
|
3175
|
+
|
3176
|
+
# Update properties of this object
|
3177
|
+
def update!(**args)
|
3178
|
+
@target_cpa_micros = args[:target_cpa_micros] if args.key?(:target_cpa_micros)
|
3179
|
+
end
|
3180
|
+
end
|
3181
|
+
|
3182
|
+
# An automated bidding strategy that sets bids so that a certain percentage of
|
3183
|
+
# search ads are shown at the top of the first page (or other targeted location).
|
3184
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetImpressionShare
|
3185
|
+
include Google::Apis::Core::Hashable
|
3186
|
+
|
3187
|
+
# Output only. The highest CPC bid the automated bidding system is permitted to
|
3188
|
+
# specify. This is a required field entered by the advertiser that sets the
|
3189
|
+
# ceiling and specified in local micros.
|
3190
|
+
# Corresponds to the JSON property `cpcBidCeilingMicros`
|
3191
|
+
# @return [Fixnum]
|
3192
|
+
attr_accessor :cpc_bid_ceiling_micros
|
3193
|
+
|
3194
|
+
# Output only. The targeted location on the search results page.
|
3195
|
+
# Corresponds to the JSON property `location`
|
3196
|
+
# @return [String]
|
3197
|
+
attr_accessor :location
|
3198
|
+
|
3199
|
+
# The chosen fraction of ads to be shown in the targeted location in micros. For
|
3200
|
+
# example, 1% equals 10,000.
|
3201
|
+
# Corresponds to the JSON property `locationFractionMicros`
|
3202
|
+
# @return [Fixnum]
|
3203
|
+
attr_accessor :location_fraction_micros
|
3204
|
+
|
3205
|
+
def initialize(**args)
|
3206
|
+
update!(**args)
|
3207
|
+
end
|
3208
|
+
|
3209
|
+
# Update properties of this object
|
3210
|
+
def update!(**args)
|
3211
|
+
@cpc_bid_ceiling_micros = args[:cpc_bid_ceiling_micros] if args.key?(:cpc_bid_ceiling_micros)
|
3212
|
+
@location = args[:location] if args.key?(:location)
|
3213
|
+
@location_fraction_micros = args[:location_fraction_micros] if args.key?(:location_fraction_micros)
|
3214
|
+
end
|
3215
|
+
end
|
3216
|
+
|
3217
|
+
# An automated bidding strategy that helps you maximize revenue while averaging
|
3218
|
+
# a specific target return on ad spend (ROAS).
|
3219
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetRoas
|
3220
|
+
include Google::Apis::Core::Hashable
|
3221
|
+
|
3222
|
+
# Output only. The chosen revenue (based on conversion data) per unit of spend.
|
3223
|
+
# Corresponds to the JSON property `targetRoas`
|
3224
|
+
# @return [Float]
|
3225
|
+
attr_accessor :target_roas
|
3226
|
+
|
3227
|
+
def initialize(**args)
|
3228
|
+
update!(**args)
|
3229
|
+
end
|
3230
|
+
|
3231
|
+
# Update properties of this object
|
3232
|
+
def update!(**args)
|
3233
|
+
@target_roas = args[:target_roas] if args.key?(:target_roas)
|
3234
|
+
end
|
3235
|
+
end
|
3236
|
+
|
3237
|
+
# An automated bid strategy that sets your bids to help get as many clicks as
|
3238
|
+
# possible within your budget.
|
3239
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetSpend
|
3240
|
+
include Google::Apis::Core::Hashable
|
3241
|
+
|
3242
|
+
# Output only. Maximum bid limit that can be set by the bid strategy. The limit
|
3243
|
+
# applies to all keywords managed by the strategy.
|
3244
|
+
# Corresponds to the JSON property `cpcBidCeilingMicros`
|
3245
|
+
# @return [Fixnum]
|
3246
|
+
attr_accessor :cpc_bid_ceiling_micros
|
3247
|
+
|
3248
|
+
# Output only. The spend target under which to maximize clicks. A TargetSpend
|
3249
|
+
# bidder will attempt to spend the smaller of this value or the natural
|
3250
|
+
# throttling spend amount. If not specified, the budget is used as the spend
|
3251
|
+
# target. This field is deprecated and should no longer be used. See https://ads-
|
3252
|
+
# developers.googleblog.com/2020/05/reminder-about-sunset-creation-of.html for
|
3253
|
+
# details.
|
3254
|
+
# Corresponds to the JSON property `targetSpendMicros`
|
3255
|
+
# @return [Fixnum]
|
3256
|
+
attr_accessor :target_spend_micros
|
3257
|
+
|
3258
|
+
def initialize(**args)
|
3259
|
+
update!(**args)
|
3260
|
+
end
|
3261
|
+
|
3262
|
+
# Update properties of this object
|
3263
|
+
def update!(**args)
|
3264
|
+
@cpc_bid_ceiling_micros = args[:cpc_bid_ceiling_micros] if args.key?(:cpc_bid_ceiling_micros)
|
3265
|
+
@target_spend_micros = args[:target_spend_micros] if args.key?(:target_spend_micros)
|
3266
|
+
end
|
3267
|
+
end
|
3268
|
+
|
3109
3269
|
# Estimates for criterion bids at various positions.
|
3110
3270
|
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionPositionEstimates
|
3111
3271
|
include Google::Apis::Core::Hashable
|
@@ -3651,6 +3811,103 @@ module Google
|
|
3651
3811
|
end
|
3652
3812
|
end
|
3653
3813
|
|
3814
|
+
# Represents a view of BiddingStrategies owned by and shared with the customer.
|
3815
|
+
# In contrast to BiddingStrategy, this resource includes strategies owned by
|
3816
|
+
# managers of the customer and shared with this customer - in addition to
|
3817
|
+
# strategies owned by this customer. This resource does not provide metrics and
|
3818
|
+
# only exposes a limited subset of the BiddingStrategy attributes.
|
3819
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategy
|
3820
|
+
include Google::Apis::Core::Hashable
|
3821
|
+
|
3822
|
+
# Output only. The ID of the bidding strategy.
|
3823
|
+
# Corresponds to the JSON property `id`
|
3824
|
+
# @return [Fixnum]
|
3825
|
+
attr_accessor :id
|
3826
|
+
|
3827
|
+
# An automated bidding strategy to help get the most conversion value for your
|
3828
|
+
# campaigns while spending your budget.
|
3829
|
+
# Corresponds to the JSON property `maximizeConversionValue`
|
3830
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversionValue]
|
3831
|
+
attr_accessor :maximize_conversion_value
|
3832
|
+
|
3833
|
+
# An automated bidding strategy to help get the most conversions for your
|
3834
|
+
# campaigns while spending your budget.
|
3835
|
+
# Corresponds to the JSON property `maximizeConversions`
|
3836
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversions]
|
3837
|
+
attr_accessor :maximize_conversions
|
3838
|
+
|
3839
|
+
# Output only. The name of the bidding strategy.
|
3840
|
+
# Corresponds to the JSON property `name`
|
3841
|
+
# @return [String]
|
3842
|
+
attr_accessor :name
|
3843
|
+
|
3844
|
+
# Output only. The ID of the Customer which owns the bidding strategy.
|
3845
|
+
# Corresponds to the JSON property `ownerCustomerId`
|
3846
|
+
# @return [Fixnum]
|
3847
|
+
attr_accessor :owner_customer_id
|
3848
|
+
|
3849
|
+
# Output only. descriptive_name of the Customer which owns the bidding strategy.
|
3850
|
+
# Corresponds to the JSON property `ownerDescriptiveName`
|
3851
|
+
# @return [String]
|
3852
|
+
attr_accessor :owner_descriptive_name
|
3853
|
+
|
3854
|
+
# Output only. The resource name of the accessible bidding strategy.
|
3855
|
+
# AccessibleBiddingStrategy resource names have the form: `customers/`
|
3856
|
+
# customer_id`/accessibleBiddingStrategies/`bidding_strategy_id``
|
3857
|
+
# Corresponds to the JSON property `resourceName`
|
3858
|
+
# @return [String]
|
3859
|
+
attr_accessor :resource_name
|
3860
|
+
|
3861
|
+
# An automated bid strategy that sets bids to help get as many conversions as
|
3862
|
+
# possible at the target cost-per-acquisition (CPA) you set.
|
3863
|
+
# Corresponds to the JSON property `targetCpa`
|
3864
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetCpa]
|
3865
|
+
attr_accessor :target_cpa
|
3866
|
+
|
3867
|
+
# An automated bidding strategy that sets bids so that a certain percentage of
|
3868
|
+
# search ads are shown at the top of the first page (or other targeted location).
|
3869
|
+
# Corresponds to the JSON property `targetImpressionShare`
|
3870
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetImpressionShare]
|
3871
|
+
attr_accessor :target_impression_share
|
3872
|
+
|
3873
|
+
# An automated bidding strategy that helps you maximize revenue while averaging
|
3874
|
+
# a specific target return on ad spend (ROAS).
|
3875
|
+
# Corresponds to the JSON property `targetRoas`
|
3876
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetRoas]
|
3877
|
+
attr_accessor :target_roas
|
3878
|
+
|
3879
|
+
# An automated bid strategy that sets your bids to help get as many clicks as
|
3880
|
+
# possible within your budget.
|
3881
|
+
# Corresponds to the JSON property `targetSpend`
|
3882
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetSpend]
|
3883
|
+
attr_accessor :target_spend
|
3884
|
+
|
3885
|
+
# Output only. The type of the bidding strategy.
|
3886
|
+
# Corresponds to the JSON property `type`
|
3887
|
+
# @return [String]
|
3888
|
+
attr_accessor :type
|
3889
|
+
|
3890
|
+
def initialize(**args)
|
3891
|
+
update!(**args)
|
3892
|
+
end
|
3893
|
+
|
3894
|
+
# Update properties of this object
|
3895
|
+
def update!(**args)
|
3896
|
+
@id = args[:id] if args.key?(:id)
|
3897
|
+
@maximize_conversion_value = args[:maximize_conversion_value] if args.key?(:maximize_conversion_value)
|
3898
|
+
@maximize_conversions = args[:maximize_conversions] if args.key?(:maximize_conversions)
|
3899
|
+
@name = args[:name] if args.key?(:name)
|
3900
|
+
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
3901
|
+
@owner_descriptive_name = args[:owner_descriptive_name] if args.key?(:owner_descriptive_name)
|
3902
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
3903
|
+
@target_cpa = args[:target_cpa] if args.key?(:target_cpa)
|
3904
|
+
@target_impression_share = args[:target_impression_share] if args.key?(:target_impression_share)
|
3905
|
+
@target_roas = args[:target_roas] if args.key?(:target_roas)
|
3906
|
+
@target_spend = args[:target_spend] if args.key?(:target_spend)
|
3907
|
+
@type = args[:type] if args.key?(:type)
|
3908
|
+
end
|
3909
|
+
end
|
3910
|
+
|
3654
3911
|
# An ad.
|
3655
3912
|
class GoogleAdsSearchads360V0ResourcesAd
|
3656
3913
|
include Google::Apis::Core::Hashable
|
@@ -5052,6 +5309,18 @@ module Google
|
|
5052
5309
|
class GoogleAdsSearchads360V0ResourcesCampaign
|
5053
5310
|
include Google::Apis::Core::Hashable
|
5054
5311
|
|
5312
|
+
# Output only. Resource name of AccessibleBiddingStrategy, a read-only view of
|
5313
|
+
# the unrestricted attributes of the attached portfolio bidding strategy
|
5314
|
+
# identified by 'bidding_strategy'. Empty, if the campaign does not use a
|
5315
|
+
# portfolio strategy. Unrestricted strategy attributes are available to all
|
5316
|
+
# customers with whom the strategy is shared and are read from the
|
5317
|
+
# AccessibleBiddingStrategy resource. In contrast, restricted attributes are
|
5318
|
+
# only available to the owner customer of the strategy and their managers.
|
5319
|
+
# Restricted attributes can only be read from the BiddingStrategy resource.
|
5320
|
+
# Corresponds to the JSON property `accessibleBiddingStrategy`
|
5321
|
+
# @return [String]
|
5322
|
+
attr_accessor :accessible_bidding_strategy
|
5323
|
+
|
5055
5324
|
# The ad serving optimization status of the campaign.
|
5056
5325
|
# Corresponds to the JSON property `adServingOptimizationStatus`
|
5057
5326
|
# @return [String]
|
@@ -5326,6 +5595,7 @@ module Google
|
|
5326
5595
|
|
5327
5596
|
# Update properties of this object
|
5328
5597
|
def update!(**args)
|
5598
|
+
@accessible_bidding_strategy = args[:accessible_bidding_strategy] if args.key?(:accessible_bidding_strategy)
|
5329
5599
|
@ad_serving_optimization_status = args[:ad_serving_optimization_status] if args.key?(:ad_serving_optimization_status)
|
5330
5600
|
@advertising_channel_sub_type = args[:advertising_channel_sub_type] if args.key?(:advertising_channel_sub_type)
|
5331
5601
|
@advertising_channel_type = args[:advertising_channel_type] if args.key?(:advertising_channel_type)
|
@@ -7505,6 +7775,15 @@ module Google
|
|
7505
7775
|
class GoogleAdsSearchads360V0ServicesSearchAds360Row
|
7506
7776
|
include Google::Apis::Core::Hashable
|
7507
7777
|
|
7778
|
+
# Represents a view of BiddingStrategies owned by and shared with the customer.
|
7779
|
+
# In contrast to BiddingStrategy, this resource includes strategies owned by
|
7780
|
+
# managers of the customer and shared with this customer - in addition to
|
7781
|
+
# strategies owned by this customer. This resource does not provide metrics and
|
7782
|
+
# only exposes a limited subset of the BiddingStrategy attributes.
|
7783
|
+
# Corresponds to the JSON property `accessibleBiddingStrategy`
|
7784
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategy]
|
7785
|
+
attr_accessor :accessible_bidding_strategy
|
7786
|
+
|
7508
7787
|
# An ad group.
|
7509
7788
|
# Corresponds to the JSON property `adGroup`
|
7510
7789
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroup]
|
@@ -7809,6 +8088,7 @@ module Google
|
|
7809
8088
|
|
7810
8089
|
# Update properties of this object
|
7811
8090
|
def update!(**args)
|
8091
|
+
@accessible_bidding_strategy = args[:accessible_bidding_strategy] if args.key?(:accessible_bidding_strategy)
|
7812
8092
|
@ad_group = args[:ad_group] if args.key?(:ad_group)
|
7813
8093
|
@ad_group_ad = args[:ad_group_ad] if args.key?(:ad_group_ad)
|
7814
8094
|
@ad_group_ad_label = args[:ad_group_ad_label] if args.key?(:ad_group_ad_label)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module Searchads360V0
|
18
18
|
# Version of the google-apis-searchads360_v0 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240414"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -394,6 +394,42 @@ module Google
|
|
394
394
|
include Google::Apis::Core::JsonObjectSupport
|
395
395
|
end
|
396
396
|
|
397
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversionValue
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
403
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversions
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
409
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetCpa
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
415
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetImpressionShare
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
421
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetRoas
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
427
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetSpend
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
397
433
|
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionPositionEstimates
|
398
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
435
|
|
@@ -514,6 +550,12 @@ module Google
|
|
514
550
|
include Google::Apis::Core::JsonObjectSupport
|
515
551
|
end
|
516
552
|
|
553
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategy
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
|
+
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
557
|
+
end
|
558
|
+
|
517
559
|
class GoogleAdsSearchads360V0ResourcesAd
|
518
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
519
561
|
|
@@ -1627,6 +1669,52 @@ module Google
|
|
1627
1669
|
end
|
1628
1670
|
end
|
1629
1671
|
|
1672
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversionValue
|
1673
|
+
# @private
|
1674
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1675
|
+
property :target_roas, as: 'targetRoas'
|
1676
|
+
end
|
1677
|
+
end
|
1678
|
+
|
1679
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversions
|
1680
|
+
# @private
|
1681
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1682
|
+
property :target_cpa, :numeric_string => true, as: 'targetCpa'
|
1683
|
+
property :target_cpa_micros, :numeric_string => true, as: 'targetCpaMicros'
|
1684
|
+
end
|
1685
|
+
end
|
1686
|
+
|
1687
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetCpa
|
1688
|
+
# @private
|
1689
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1690
|
+
property :target_cpa_micros, :numeric_string => true, as: 'targetCpaMicros'
|
1691
|
+
end
|
1692
|
+
end
|
1693
|
+
|
1694
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetImpressionShare
|
1695
|
+
# @private
|
1696
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1697
|
+
property :cpc_bid_ceiling_micros, :numeric_string => true, as: 'cpcBidCeilingMicros'
|
1698
|
+
property :location, as: 'location'
|
1699
|
+
property :location_fraction_micros, :numeric_string => true, as: 'locationFractionMicros'
|
1700
|
+
end
|
1701
|
+
end
|
1702
|
+
|
1703
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetRoas
|
1704
|
+
# @private
|
1705
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1706
|
+
property :target_roas, as: 'targetRoas'
|
1707
|
+
end
|
1708
|
+
end
|
1709
|
+
|
1710
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetSpend
|
1711
|
+
# @private
|
1712
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1713
|
+
property :cpc_bid_ceiling_micros, :numeric_string => true, as: 'cpcBidCeilingMicros'
|
1714
|
+
property :target_spend_micros, :numeric_string => true, as: 'targetSpendMicros'
|
1715
|
+
end
|
1716
|
+
end
|
1717
|
+
|
1630
1718
|
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionPositionEstimates
|
1631
1719
|
# @private
|
1632
1720
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1787,6 +1875,30 @@ module Google
|
|
1787
1875
|
end
|
1788
1876
|
end
|
1789
1877
|
|
1878
|
+
class GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategy
|
1879
|
+
# @private
|
1880
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1881
|
+
property :id, :numeric_string => true, as: 'id'
|
1882
|
+
property :maximize_conversion_value, as: 'maximizeConversionValue', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversionValue, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversionValue::Representation
|
1883
|
+
|
1884
|
+
property :maximize_conversions, as: 'maximizeConversions', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversions, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyMaximizeConversions::Representation
|
1885
|
+
|
1886
|
+
property :name, as: 'name'
|
1887
|
+
property :owner_customer_id, :numeric_string => true, as: 'ownerCustomerId'
|
1888
|
+
property :owner_descriptive_name, as: 'ownerDescriptiveName'
|
1889
|
+
property :resource_name, as: 'resourceName'
|
1890
|
+
property :target_cpa, as: 'targetCpa', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetCpa, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetCpa::Representation
|
1891
|
+
|
1892
|
+
property :target_impression_share, as: 'targetImpressionShare', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetImpressionShare, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetImpressionShare::Representation
|
1893
|
+
|
1894
|
+
property :target_roas, as: 'targetRoas', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetRoas, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetRoas::Representation
|
1895
|
+
|
1896
|
+
property :target_spend, as: 'targetSpend', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetSpend, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategyTargetSpend::Representation
|
1897
|
+
|
1898
|
+
property :type, as: 'type'
|
1899
|
+
end
|
1900
|
+
end
|
1901
|
+
|
1790
1902
|
class GoogleAdsSearchads360V0ResourcesAd
|
1791
1903
|
# @private
|
1792
1904
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2127,6 +2239,7 @@ module Google
|
|
2127
2239
|
class GoogleAdsSearchads360V0ResourcesCampaign
|
2128
2240
|
# @private
|
2129
2241
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2242
|
+
property :accessible_bidding_strategy, as: 'accessibleBiddingStrategy'
|
2130
2243
|
property :ad_serving_optimization_status, as: 'adServingOptimizationStatus'
|
2131
2244
|
property :advertising_channel_sub_type, as: 'advertisingChannelSubType'
|
2132
2245
|
property :advertising_channel_type, as: 'advertisingChannelType'
|
@@ -2699,6 +2812,8 @@ module Google
|
|
2699
2812
|
class GoogleAdsSearchads360V0ServicesSearchAds360Row
|
2700
2813
|
# @private
|
2701
2814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2815
|
+
property :accessible_bidding_strategy, as: 'accessibleBiddingStrategy', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategy, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAccessibleBiddingStrategy::Representation
|
2816
|
+
|
2702
2817
|
property :ad_group, as: 'adGroup', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroup, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroup::Representation
|
2703
2818
|
|
2704
2819
|
property :ad_group_ad, as: 'adGroupAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-searchads360_v0
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchads360_v0/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchads360_v0
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|