google-apis-searchads360_v0 0.18.0 → 0.19.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: 4ebc31b008300f4ae35bea84447e02ccdd03bac4fdd427713037d1ac41d2c01a
|
4
|
+
data.tar.gz: 3008ccb8261cc675a090a83a61d3f8883c4d146c1678a78db1aac4f49d07daca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6adea95a64d4af82934bdae049da830ee85aa8073a0feff144fe9982cf5d8f1be090c5d2d85d3bee7d353d74a04819ca5c492aaa1e98f210699c1ed538c1c7cd
|
7
|
+
data.tar.gz: a103fb2c0617bb05a71ba7a20f0387e8682d74b650967e421824f838ddcedc5439ba2f50f314fe3f25c3d38db252ab0123e70df7141e70658a920b26afd47096
|
data/CHANGELOG.md
CHANGED
@@ -4254,6 +4254,12 @@ module Google
|
|
4254
4254
|
# @return [String]
|
4255
4255
|
attr_accessor :creation_time
|
4256
4256
|
|
4257
|
+
# Output only. The resource names of effective labels attached to this ad. An
|
4258
|
+
# effective label is a label inherited or directly assigned to this ad.
|
4259
|
+
# Corresponds to the JSON property `effectiveLabels`
|
4260
|
+
# @return [Array<String>]
|
4261
|
+
attr_accessor :effective_labels
|
4262
|
+
|
4257
4263
|
# Output only. ID of the ad in the external engine account. This field is for
|
4258
4264
|
# Search Ads 360 account only, for example, Yahoo Japan, Microsoft, Baidu etc.
|
4259
4265
|
# For non-Search Ads 360 entity, use "ad_group_ad.ad.id" instead.
|
@@ -4299,6 +4305,7 @@ module Google
|
|
4299
4305
|
def update!(**args)
|
4300
4306
|
@ad = args[:ad] if args.key?(:ad)
|
4301
4307
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
4308
|
+
@effective_labels = args[:effective_labels] if args.key?(:effective_labels)
|
4302
4309
|
@engine_id = args[:engine_id] if args.key?(:engine_id)
|
4303
4310
|
@engine_status = args[:engine_status] if args.key?(:engine_status)
|
4304
4311
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -4308,6 +4315,46 @@ module Google
|
|
4308
4315
|
end
|
4309
4316
|
end
|
4310
4317
|
|
4318
|
+
# A relationship between an ad group ad and an effective label. An effective
|
4319
|
+
# label is a label inherited or directly assigned to this ad group ad.
|
4320
|
+
class GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel
|
4321
|
+
include Google::Apis::Core::Hashable
|
4322
|
+
|
4323
|
+
# Immutable. The ad group ad to which the effective label is attached.
|
4324
|
+
# Corresponds to the JSON property `adGroupAd`
|
4325
|
+
# @return [String]
|
4326
|
+
attr_accessor :ad_group_ad
|
4327
|
+
|
4328
|
+
# Immutable. The effective label assigned to the ad group ad.
|
4329
|
+
# Corresponds to the JSON property `label`
|
4330
|
+
# @return [String]
|
4331
|
+
attr_accessor :label
|
4332
|
+
|
4333
|
+
# Output only. The ID of the Customer which owns the effective label.
|
4334
|
+
# Corresponds to the JSON property `ownerCustomerId`
|
4335
|
+
# @return [Fixnum]
|
4336
|
+
attr_accessor :owner_customer_id
|
4337
|
+
|
4338
|
+
# Immutable. The resource name of the ad group ad effective label. Ad group ad
|
4339
|
+
# effective label resource names have the form: `customers/`customer_id`/
|
4340
|
+
# adGroupAdEffectiveLabels/`ad_group_id`~`ad_id`~`label_id``
|
4341
|
+
# Corresponds to the JSON property `resourceName`
|
4342
|
+
# @return [String]
|
4343
|
+
attr_accessor :resource_name
|
4344
|
+
|
4345
|
+
def initialize(**args)
|
4346
|
+
update!(**args)
|
4347
|
+
end
|
4348
|
+
|
4349
|
+
# Update properties of this object
|
4350
|
+
def update!(**args)
|
4351
|
+
@ad_group_ad = args[:ad_group_ad] if args.key?(:ad_group_ad)
|
4352
|
+
@label = args[:label] if args.key?(:label)
|
4353
|
+
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
4354
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
4355
|
+
end
|
4356
|
+
end
|
4357
|
+
|
4311
4358
|
# A relationship between an ad group ad and a label.
|
4312
4359
|
class GoogleAdsSearchads360V0ResourcesAdGroupAdLabel
|
4313
4360
|
include Google::Apis::Core::Hashable
|
@@ -4526,6 +4573,13 @@ module Google
|
|
4526
4573
|
# @return [Fixnum]
|
4527
4574
|
attr_accessor :effective_cpc_bid_micros
|
4528
4575
|
|
4576
|
+
# Output only. The resource names of effective labels attached to this ad group
|
4577
|
+
# criterion. An effective label is a label inherited or directly assigned to
|
4578
|
+
# this ad group criterion.
|
4579
|
+
# Corresponds to the JSON property `effectiveLabels`
|
4580
|
+
# @return [Array<String>]
|
4581
|
+
attr_accessor :effective_labels
|
4582
|
+
|
4529
4583
|
# Output only. ID of the ad group criterion in the external engine account. This
|
4530
4584
|
# field is for non-Google Ads account only, for example, Yahoo Japan, Microsoft,
|
4531
4585
|
# Baidu etc. For Google Ads entity, use "ad_group_criterion.criterion_id"
|
@@ -4652,6 +4706,7 @@ module Google
|
|
4652
4706
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
4653
4707
|
@criterion_id = args[:criterion_id] if args.key?(:criterion_id)
|
4654
4708
|
@effective_cpc_bid_micros = args[:effective_cpc_bid_micros] if args.key?(:effective_cpc_bid_micros)
|
4709
|
+
@effective_labels = args[:effective_labels] if args.key?(:effective_labels)
|
4655
4710
|
@engine_id = args[:engine_id] if args.key?(:engine_id)
|
4656
4711
|
@engine_status = args[:engine_status] if args.key?(:engine_status)
|
4657
4712
|
@final_url_suffix = args[:final_url_suffix] if args.key?(:final_url_suffix)
|
@@ -4674,6 +4729,48 @@ module Google
|
|
4674
4729
|
end
|
4675
4730
|
end
|
4676
4731
|
|
4732
|
+
# A relationship between an ad group criterion and an effective label. An
|
4733
|
+
# effective label is a label inherited or directly assigned to this ad group
|
4734
|
+
# criterion.
|
4735
|
+
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel
|
4736
|
+
include Google::Apis::Core::Hashable
|
4737
|
+
|
4738
|
+
# Immutable. The ad group criterion to which the effective label is attached.
|
4739
|
+
# Corresponds to the JSON property `adGroupCriterion`
|
4740
|
+
# @return [String]
|
4741
|
+
attr_accessor :ad_group_criterion
|
4742
|
+
|
4743
|
+
# Immutable. The effective label assigned to the ad group criterion.
|
4744
|
+
# Corresponds to the JSON property `label`
|
4745
|
+
# @return [String]
|
4746
|
+
attr_accessor :label
|
4747
|
+
|
4748
|
+
# Output only. The ID of the Customer which owns the effective label.
|
4749
|
+
# Corresponds to the JSON property `ownerCustomerId`
|
4750
|
+
# @return [Fixnum]
|
4751
|
+
attr_accessor :owner_customer_id
|
4752
|
+
|
4753
|
+
# Immutable. The resource name of the ad group criterion effective label. Ad
|
4754
|
+
# group criterion effective label resource names have the form: `customers/`
|
4755
|
+
# customer_id`/adGroupCriterionEffectiveLabels/`ad_group_id`~`criterion_id`~`
|
4756
|
+
# label_id``
|
4757
|
+
# Corresponds to the JSON property `resourceName`
|
4758
|
+
# @return [String]
|
4759
|
+
attr_accessor :resource_name
|
4760
|
+
|
4761
|
+
def initialize(**args)
|
4762
|
+
update!(**args)
|
4763
|
+
end
|
4764
|
+
|
4765
|
+
# Update properties of this object
|
4766
|
+
def update!(**args)
|
4767
|
+
@ad_group_criterion = args[:ad_group_criterion] if args.key?(:ad_group_criterion)
|
4768
|
+
@label = args[:label] if args.key?(:label)
|
4769
|
+
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
4770
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
4771
|
+
end
|
4772
|
+
end
|
4773
|
+
|
4677
4774
|
# A relationship between an ad group criterion and a label.
|
4678
4775
|
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel
|
4679
4776
|
include Google::Apis::Core::Hashable
|
@@ -7712,6 +7809,43 @@ module Google
|
|
7712
7809
|
end
|
7713
7810
|
end
|
7714
7811
|
|
7812
|
+
# A user location view. User Location View includes all metrics aggregated at
|
7813
|
+
# the country level, one row per country. It reports metrics at the actual
|
7814
|
+
# physical location of the user by targeted or not targeted location. If other
|
7815
|
+
# segment fields are used, you may get more than one row per country.
|
7816
|
+
class GoogleAdsSearchads360V0ResourcesUserLocationView
|
7817
|
+
include Google::Apis::Core::Hashable
|
7818
|
+
|
7819
|
+
# Output only. Criterion Id for the country.
|
7820
|
+
# Corresponds to the JSON property `countryCriterionId`
|
7821
|
+
# @return [Fixnum]
|
7822
|
+
attr_accessor :country_criterion_id
|
7823
|
+
|
7824
|
+
# Output only. The resource name of the user location view. UserLocation view
|
7825
|
+
# resource names have the form: `customers/`customer_id`/userLocationViews/`
|
7826
|
+
# country_criterion_id`~`targeting_location``
|
7827
|
+
# Corresponds to the JSON property `resourceName`
|
7828
|
+
# @return [String]
|
7829
|
+
attr_accessor :resource_name
|
7830
|
+
|
7831
|
+
# Output only. Indicates whether location was targeted or not.
|
7832
|
+
# Corresponds to the JSON property `targetingLocation`
|
7833
|
+
# @return [Boolean]
|
7834
|
+
attr_accessor :targeting_location
|
7835
|
+
alias_method :targeting_location?, :targeting_location
|
7836
|
+
|
7837
|
+
def initialize(**args)
|
7838
|
+
update!(**args)
|
7839
|
+
end
|
7840
|
+
|
7841
|
+
# Update properties of this object
|
7842
|
+
def update!(**args)
|
7843
|
+
@country_criterion_id = args[:country_criterion_id] if args.key?(:country_criterion_id)
|
7844
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
7845
|
+
@targeting_location = args[:targeting_location] if args.key?(:targeting_location)
|
7846
|
+
end
|
7847
|
+
end
|
7848
|
+
|
7715
7849
|
# A visit.
|
7716
7850
|
class GoogleAdsSearchads360V0ResourcesVisit
|
7717
7851
|
include Google::Apis::Core::Hashable
|
@@ -8035,6 +8169,12 @@ module Google
|
|
8035
8169
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd]
|
8036
8170
|
attr_accessor :ad_group_ad
|
8037
8171
|
|
8172
|
+
# A relationship between an ad group ad and an effective label. An effective
|
8173
|
+
# label is a label inherited or directly assigned to this ad group ad.
|
8174
|
+
# Corresponds to the JSON property `adGroupAdEffectiveLabel`
|
8175
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel]
|
8176
|
+
attr_accessor :ad_group_ad_effective_label
|
8177
|
+
|
8038
8178
|
# A relationship between an ad group ad and a label.
|
8039
8179
|
# Corresponds to the JSON property `adGroupAdLabel`
|
8040
8180
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdLabel]
|
@@ -8069,6 +8209,13 @@ module Google
|
|
8069
8209
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterion]
|
8070
8210
|
attr_accessor :ad_group_criterion
|
8071
8211
|
|
8212
|
+
# A relationship between an ad group criterion and an effective label. An
|
8213
|
+
# effective label is a label inherited or directly assigned to this ad group
|
8214
|
+
# criterion.
|
8215
|
+
# Corresponds to the JSON property `adGroupCriterionEffectiveLabel`
|
8216
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel]
|
8217
|
+
attr_accessor :ad_group_criterion_effective_label
|
8218
|
+
|
8072
8219
|
# A relationship between an ad group criterion and a label.
|
8073
8220
|
# Corresponds to the JSON property `adGroupCriterionLabel`
|
8074
8221
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel]
|
@@ -8325,6 +8472,14 @@ module Google
|
|
8325
8472
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserList]
|
8326
8473
|
attr_accessor :user_list
|
8327
8474
|
|
8475
|
+
# A user location view. User Location View includes all metrics aggregated at
|
8476
|
+
# the country level, one row per country. It reports metrics at the actual
|
8477
|
+
# physical location of the user by targeted or not targeted location. If other
|
8478
|
+
# segment fields are used, you may get more than one row per country.
|
8479
|
+
# Corresponds to the JSON property `userLocationView`
|
8480
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserLocationView]
|
8481
|
+
attr_accessor :user_location_view
|
8482
|
+
|
8328
8483
|
# A visit.
|
8329
8484
|
# Corresponds to the JSON property `visit`
|
8330
8485
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesVisit]
|
@@ -8344,12 +8499,14 @@ module Google
|
|
8344
8499
|
@accessible_bidding_strategy = args[:accessible_bidding_strategy] if args.key?(:accessible_bidding_strategy)
|
8345
8500
|
@ad_group = args[:ad_group] if args.key?(:ad_group)
|
8346
8501
|
@ad_group_ad = args[:ad_group_ad] if args.key?(:ad_group_ad)
|
8502
|
+
@ad_group_ad_effective_label = args[:ad_group_ad_effective_label] if args.key?(:ad_group_ad_effective_label)
|
8347
8503
|
@ad_group_ad_label = args[:ad_group_ad_label] if args.key?(:ad_group_ad_label)
|
8348
8504
|
@ad_group_asset = args[:ad_group_asset] if args.key?(:ad_group_asset)
|
8349
8505
|
@ad_group_asset_set = args[:ad_group_asset_set] if args.key?(:ad_group_asset_set)
|
8350
8506
|
@ad_group_audience_view = args[:ad_group_audience_view] if args.key?(:ad_group_audience_view)
|
8351
8507
|
@ad_group_bid_modifier = args[:ad_group_bid_modifier] if args.key?(:ad_group_bid_modifier)
|
8352
8508
|
@ad_group_criterion = args[:ad_group_criterion] if args.key?(:ad_group_criterion)
|
8509
|
+
@ad_group_criterion_effective_label = args[:ad_group_criterion_effective_label] if args.key?(:ad_group_criterion_effective_label)
|
8353
8510
|
@ad_group_criterion_label = args[:ad_group_criterion_label] if args.key?(:ad_group_criterion_label)
|
8354
8511
|
@ad_group_effective_label = args[:ad_group_effective_label] if args.key?(:ad_group_effective_label)
|
8355
8512
|
@ad_group_label = args[:ad_group_label] if args.key?(:ad_group_label)
|
@@ -8395,6 +8552,7 @@ module Google
|
|
8395
8552
|
@segments = args[:segments] if args.key?(:segments)
|
8396
8553
|
@shopping_performance_view = args[:shopping_performance_view] if args.key?(:shopping_performance_view)
|
8397
8554
|
@user_list = args[:user_list] if args.key?(:user_list)
|
8555
|
+
@user_location_view = args[:user_location_view] if args.key?(:user_location_view)
|
8398
8556
|
@visit = args[:visit] if args.key?(:visit)
|
8399
8557
|
@webpage_view = args[:webpage_view] if args.key?(:webpage_view)
|
8400
8558
|
end
|
@@ -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.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241108"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -580,6 +580,12 @@ module Google
|
|
580
580
|
include Google::Apis::Core::JsonObjectSupport
|
581
581
|
end
|
582
582
|
|
583
|
+
class GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
|
+
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
587
|
+
end
|
588
|
+
|
583
589
|
class GoogleAdsSearchads360V0ResourcesAdGroupAdLabel
|
584
590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
591
|
|
@@ -616,6 +622,12 @@ module Google
|
|
616
622
|
include Google::Apis::Core::JsonObjectSupport
|
617
623
|
end
|
618
624
|
|
625
|
+
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
627
|
+
|
628
|
+
include Google::Apis::Core::JsonObjectSupport
|
629
|
+
end
|
630
|
+
|
619
631
|
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel
|
620
632
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
621
633
|
|
@@ -910,6 +922,12 @@ module Google
|
|
910
922
|
include Google::Apis::Core::JsonObjectSupport
|
911
923
|
end
|
912
924
|
|
925
|
+
class GoogleAdsSearchads360V0ResourcesUserLocationView
|
926
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
927
|
+
|
928
|
+
include Google::Apis::Core::JsonObjectSupport
|
929
|
+
end
|
930
|
+
|
913
931
|
class GoogleAdsSearchads360V0ResourcesVisit
|
914
932
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
915
933
|
|
@@ -1990,6 +2008,7 @@ module Google
|
|
1990
2008
|
property :ad, as: 'ad', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAd, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAd::Representation
|
1991
2009
|
|
1992
2010
|
property :creation_time, as: 'creationTime'
|
2011
|
+
collection :effective_labels, as: 'effectiveLabels'
|
1993
2012
|
property :engine_id, as: 'engineId'
|
1994
2013
|
property :engine_status, as: 'engineStatus'
|
1995
2014
|
collection :labels, as: 'labels'
|
@@ -1999,6 +2018,16 @@ module Google
|
|
1999
2018
|
end
|
2000
2019
|
end
|
2001
2020
|
|
2021
|
+
class GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel
|
2022
|
+
# @private
|
2023
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2024
|
+
property :ad_group_ad, as: 'adGroupAd'
|
2025
|
+
property :label, as: 'label'
|
2026
|
+
property :owner_customer_id, :numeric_string => true, as: 'ownerCustomerId'
|
2027
|
+
property :resource_name, as: 'resourceName'
|
2028
|
+
end
|
2029
|
+
end
|
2030
|
+
|
2002
2031
|
class GoogleAdsSearchads360V0ResourcesAdGroupAdLabel
|
2003
2032
|
# @private
|
2004
2033
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2057,6 +2086,7 @@ module Google
|
|
2057
2086
|
property :creation_time, as: 'creationTime'
|
2058
2087
|
property :criterion_id, :numeric_string => true, as: 'criterionId'
|
2059
2088
|
property :effective_cpc_bid_micros, :numeric_string => true, as: 'effectiveCpcBidMicros'
|
2089
|
+
collection :effective_labels, as: 'effectiveLabels'
|
2060
2090
|
property :engine_id, as: 'engineId'
|
2061
2091
|
property :engine_status, as: 'engineStatus'
|
2062
2092
|
property :final_url_suffix, as: 'finalUrlSuffix'
|
@@ -2087,6 +2117,16 @@ module Google
|
|
2087
2117
|
end
|
2088
2118
|
end
|
2089
2119
|
|
2120
|
+
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel
|
2121
|
+
# @private
|
2122
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2123
|
+
property :ad_group_criterion, as: 'adGroupCriterion'
|
2124
|
+
property :label, as: 'label'
|
2125
|
+
property :owner_customer_id, :numeric_string => true, as: 'ownerCustomerId'
|
2126
|
+
property :resource_name, as: 'resourceName'
|
2127
|
+
end
|
2128
|
+
end
|
2129
|
+
|
2090
2130
|
class GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel
|
2091
2131
|
# @private
|
2092
2132
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2793,6 +2833,15 @@ module Google
|
|
2793
2833
|
end
|
2794
2834
|
end
|
2795
2835
|
|
2836
|
+
class GoogleAdsSearchads360V0ResourcesUserLocationView
|
2837
|
+
# @private
|
2838
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2839
|
+
property :country_criterion_id, :numeric_string => true, as: 'countryCriterionId'
|
2840
|
+
property :resource_name, as: 'resourceName'
|
2841
|
+
property :targeting_location, as: 'targetingLocation'
|
2842
|
+
end
|
2843
|
+
end
|
2844
|
+
|
2796
2845
|
class GoogleAdsSearchads360V0ResourcesVisit
|
2797
2846
|
# @private
|
2798
2847
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2885,6 +2934,8 @@ module Google
|
|
2885
2934
|
|
2886
2935
|
property :ad_group_ad, as: 'adGroupAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd::Representation
|
2887
2936
|
|
2937
|
+
property :ad_group_ad_effective_label, as: 'adGroupAdEffectiveLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel::Representation
|
2938
|
+
|
2888
2939
|
property :ad_group_ad_label, as: 'adGroupAdLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdLabel::Representation
|
2889
2940
|
|
2890
2941
|
property :ad_group_asset, as: 'adGroupAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAsset::Representation
|
@@ -2897,6 +2948,8 @@ module Google
|
|
2897
2948
|
|
2898
2949
|
property :ad_group_criterion, as: 'adGroupCriterion', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterion, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterion::Representation
|
2899
2950
|
|
2951
|
+
property :ad_group_criterion_effective_label, as: 'adGroupCriterionEffectiveLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel::Representation
|
2952
|
+
|
2900
2953
|
property :ad_group_criterion_label, as: 'adGroupCriterionLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel::Representation
|
2901
2954
|
|
2902
2955
|
property :ad_group_effective_label, as: 'adGroupEffectiveLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupEffectiveLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupEffectiveLabel::Representation
|
@@ -2987,6 +3040,8 @@ module Google
|
|
2987
3040
|
|
2988
3041
|
property :user_list, as: 'userList', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserList, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserList::Representation
|
2989
3042
|
|
3043
|
+
property :user_location_view, as: 'userLocationView', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserLocationView, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserLocationView::Representation
|
3044
|
+
|
2990
3045
|
property :visit, as: 'visit', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesVisit, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesVisit::Representation
|
2991
3046
|
|
2992
3047
|
property :webpage_view, as: 'webpageView', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesWebpageView, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesWebpageView::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.19.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-12-04 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.19.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Search Ads 360 Reporting API V0
|