google-apis-searchads360_v0 0.18.0 → 0.20.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: 22b62a56548a5ab29b874a93f3aa04b783e40cdd554bbf158cbeb307a5222283
|
4
|
+
data.tar.gz: 9556768b321ff55f7d74c41331dd95451c8140794a34ded0f968148e9c47743e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c432b3450500c77835c6f80a40bfd244b6c3138290e7a4a0889e342fcbe11122f38ae848f5ef221a352b2dbb9b50fd8e396970f9d3f00505230f633bc70d2d30
|
7
|
+
data.tar.gz: 193c71a074d90f07861cc6a7b5fc0e958db7de235bf09d36de18b32efb9fceba80efdb12f603f09aeef7eedb249d1a6be1ec70b1688eef2e55e02754c6c658a9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-searchads360_v0
|
2
2
|
|
3
|
+
### v0.20.0 (2025-04-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250407
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.19.0 (2024-11-17)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241108
|
11
|
+
|
3
12
|
### v0.18.0 (2024-10-06)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241002
|
@@ -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
|
@@ -5202,7 +5299,7 @@ module Google
|
|
5202
5299
|
end
|
5203
5300
|
end
|
5204
5301
|
|
5205
|
-
# A view on the usage of
|
5302
|
+
# A view on the usage of asset group asset top combinations.
|
5206
5303
|
class GoogleAdsSearchads360V0ResourcesAssetGroupTopCombinationView
|
5207
5304
|
include Google::Apis::Core::Hashable
|
5208
5305
|
|
@@ -6742,6 +6839,12 @@ module Google
|
|
6742
6839
|
class GoogleAdsSearchads360V0ResourcesCustomer
|
6743
6840
|
include Google::Apis::Core::Hashable
|
6744
6841
|
|
6842
|
+
# Output only. The account level of the customer: Manager, Sub-manager,
|
6843
|
+
# Associate manager, Service account.
|
6844
|
+
# Corresponds to the JSON property `accountLevel`
|
6845
|
+
# @return [String]
|
6846
|
+
attr_accessor :account_level
|
6847
|
+
|
6745
6848
|
# Output only. Account status, for example, Enabled, Paused, Removed, etc.
|
6746
6849
|
# Corresponds to the JSON property `accountStatus`
|
6747
6850
|
# @return [String]
|
@@ -6753,6 +6856,17 @@ module Google
|
|
6753
6856
|
# @return [String]
|
6754
6857
|
attr_accessor :account_type
|
6755
6858
|
|
6859
|
+
# Output only. The descriptive name of the associate manager.
|
6860
|
+
# Corresponds to the JSON property `associateManagerDescriptiveName`
|
6861
|
+
# @return [String]
|
6862
|
+
attr_accessor :associate_manager_descriptive_name
|
6863
|
+
|
6864
|
+
# Output only. The customer ID of the associate manager. A 0 value indicates
|
6865
|
+
# that the customer has no SA360 associate manager.
|
6866
|
+
# Corresponds to the JSON property `associateManagerId`
|
6867
|
+
# @return [Fixnum]
|
6868
|
+
attr_accessor :associate_manager_id
|
6869
|
+
|
6756
6870
|
# Whether auto-tagging is enabled for the customer.
|
6757
6871
|
# Corresponds to the JSON property `autoTaggingEnabled`
|
6758
6872
|
# @return [Boolean]
|
@@ -6814,6 +6928,17 @@ module Google
|
|
6814
6928
|
attr_accessor :manager
|
6815
6929
|
alias_method :manager?, :manager
|
6816
6930
|
|
6931
|
+
# Output only. The descriptive name of the manager.
|
6932
|
+
# Corresponds to the JSON property `managerDescriptiveName`
|
6933
|
+
# @return [String]
|
6934
|
+
attr_accessor :manager_descriptive_name
|
6935
|
+
|
6936
|
+
# Output only. The customer ID of the manager. A 0 value indicates that the
|
6937
|
+
# customer has no SA360 manager.
|
6938
|
+
# Corresponds to the JSON property `managerId`
|
6939
|
+
# @return [Fixnum]
|
6940
|
+
attr_accessor :manager_id
|
6941
|
+
|
6817
6942
|
# Immutable. The resource name of the customer. Customer resource names have the
|
6818
6943
|
# form: `customers/`customer_id``
|
6819
6944
|
# Corresponds to the JSON property `resourceName`
|
@@ -6825,6 +6950,17 @@ module Google
|
|
6825
6950
|
# @return [String]
|
6826
6951
|
attr_accessor :status
|
6827
6952
|
|
6953
|
+
# Output only. The descriptive name of the sub manager.
|
6954
|
+
# Corresponds to the JSON property `subManagerDescriptiveName`
|
6955
|
+
# @return [String]
|
6956
|
+
attr_accessor :sub_manager_descriptive_name
|
6957
|
+
|
6958
|
+
# Output only. The customer ID of the sub manager. A 0 value indicates that the
|
6959
|
+
# customer has no sub SA360 manager.
|
6960
|
+
# Corresponds to the JSON property `subManagerId`
|
6961
|
+
# @return [Fixnum]
|
6962
|
+
attr_accessor :sub_manager_id
|
6963
|
+
|
6828
6964
|
# Immutable. The local timezone ID of the customer.
|
6829
6965
|
# Corresponds to the JSON property `timeZone`
|
6830
6966
|
# @return [String]
|
@@ -6841,8 +6977,11 @@ module Google
|
|
6841
6977
|
|
6842
6978
|
# Update properties of this object
|
6843
6979
|
def update!(**args)
|
6980
|
+
@account_level = args[:account_level] if args.key?(:account_level)
|
6844
6981
|
@account_status = args[:account_status] if args.key?(:account_status)
|
6845
6982
|
@account_type = args[:account_type] if args.key?(:account_type)
|
6983
|
+
@associate_manager_descriptive_name = args[:associate_manager_descriptive_name] if args.key?(:associate_manager_descriptive_name)
|
6984
|
+
@associate_manager_id = args[:associate_manager_id] if args.key?(:associate_manager_id)
|
6846
6985
|
@auto_tagging_enabled = args[:auto_tagging_enabled] if args.key?(:auto_tagging_enabled)
|
6847
6986
|
@conversion_tracking_setting = args[:conversion_tracking_setting] if args.key?(:conversion_tracking_setting)
|
6848
6987
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
@@ -6854,8 +6993,12 @@ module Google
|
|
6854
6993
|
@id = args[:id] if args.key?(:id)
|
6855
6994
|
@last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
|
6856
6995
|
@manager = args[:manager] if args.key?(:manager)
|
6996
|
+
@manager_descriptive_name = args[:manager_descriptive_name] if args.key?(:manager_descriptive_name)
|
6997
|
+
@manager_id = args[:manager_id] if args.key?(:manager_id)
|
6857
6998
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
6858
6999
|
@status = args[:status] if args.key?(:status)
|
7000
|
+
@sub_manager_descriptive_name = args[:sub_manager_descriptive_name] if args.key?(:sub_manager_descriptive_name)
|
7001
|
+
@sub_manager_id = args[:sub_manager_id] if args.key?(:sub_manager_id)
|
6859
7002
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
6860
7003
|
@tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
|
6861
7004
|
end
|
@@ -7712,6 +7855,43 @@ module Google
|
|
7712
7855
|
end
|
7713
7856
|
end
|
7714
7857
|
|
7858
|
+
# A user location view. User Location View includes all metrics aggregated at
|
7859
|
+
# the country level, one row per country. It reports metrics at the actual
|
7860
|
+
# physical location of the user by targeted or not targeted location. If other
|
7861
|
+
# segment fields are used, you may get more than one row per country.
|
7862
|
+
class GoogleAdsSearchads360V0ResourcesUserLocationView
|
7863
|
+
include Google::Apis::Core::Hashable
|
7864
|
+
|
7865
|
+
# Output only. Criterion Id for the country.
|
7866
|
+
# Corresponds to the JSON property `countryCriterionId`
|
7867
|
+
# @return [Fixnum]
|
7868
|
+
attr_accessor :country_criterion_id
|
7869
|
+
|
7870
|
+
# Output only. The resource name of the user location view. UserLocation view
|
7871
|
+
# resource names have the form: `customers/`customer_id`/userLocationViews/`
|
7872
|
+
# country_criterion_id`~`targeting_location``
|
7873
|
+
# Corresponds to the JSON property `resourceName`
|
7874
|
+
# @return [String]
|
7875
|
+
attr_accessor :resource_name
|
7876
|
+
|
7877
|
+
# Output only. Indicates whether location was targeted or not.
|
7878
|
+
# Corresponds to the JSON property `targetingLocation`
|
7879
|
+
# @return [Boolean]
|
7880
|
+
attr_accessor :targeting_location
|
7881
|
+
alias_method :targeting_location?, :targeting_location
|
7882
|
+
|
7883
|
+
def initialize(**args)
|
7884
|
+
update!(**args)
|
7885
|
+
end
|
7886
|
+
|
7887
|
+
# Update properties of this object
|
7888
|
+
def update!(**args)
|
7889
|
+
@country_criterion_id = args[:country_criterion_id] if args.key?(:country_criterion_id)
|
7890
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
7891
|
+
@targeting_location = args[:targeting_location] if args.key?(:targeting_location)
|
7892
|
+
end
|
7893
|
+
end
|
7894
|
+
|
7715
7895
|
# A visit.
|
7716
7896
|
class GoogleAdsSearchads360V0ResourcesVisit
|
7717
7897
|
include Google::Apis::Core::Hashable
|
@@ -8035,6 +8215,12 @@ module Google
|
|
8035
8215
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd]
|
8036
8216
|
attr_accessor :ad_group_ad
|
8037
8217
|
|
8218
|
+
# A relationship between an ad group ad and an effective label. An effective
|
8219
|
+
# label is a label inherited or directly assigned to this ad group ad.
|
8220
|
+
# Corresponds to the JSON property `adGroupAdEffectiveLabel`
|
8221
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel]
|
8222
|
+
attr_accessor :ad_group_ad_effective_label
|
8223
|
+
|
8038
8224
|
# A relationship between an ad group ad and a label.
|
8039
8225
|
# Corresponds to the JSON property `adGroupAdLabel`
|
8040
8226
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdLabel]
|
@@ -8069,6 +8255,13 @@ module Google
|
|
8069
8255
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterion]
|
8070
8256
|
attr_accessor :ad_group_criterion
|
8071
8257
|
|
8258
|
+
# A relationship between an ad group criterion and an effective label. An
|
8259
|
+
# effective label is a label inherited or directly assigned to this ad group
|
8260
|
+
# criterion.
|
8261
|
+
# Corresponds to the JSON property `adGroupCriterionEffectiveLabel`
|
8262
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel]
|
8263
|
+
attr_accessor :ad_group_criterion_effective_label
|
8264
|
+
|
8072
8265
|
# A relationship between an ad group criterion and a label.
|
8073
8266
|
# Corresponds to the JSON property `adGroupCriterionLabel`
|
8074
8267
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel]
|
@@ -8124,7 +8317,7 @@ module Google
|
|
8124
8317
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAssetGroupSignal]
|
8125
8318
|
attr_accessor :asset_group_signal
|
8126
8319
|
|
8127
|
-
# A view on the usage of
|
8320
|
+
# A view on the usage of asset group asset top combinations.
|
8128
8321
|
# Corresponds to the JSON property `assetGroupTopCombinationView`
|
8129
8322
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAssetGroupTopCombinationView]
|
8130
8323
|
attr_accessor :asset_group_top_combination_view
|
@@ -8325,6 +8518,14 @@ module Google
|
|
8325
8518
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserList]
|
8326
8519
|
attr_accessor :user_list
|
8327
8520
|
|
8521
|
+
# A user location view. User Location View includes all metrics aggregated at
|
8522
|
+
# the country level, one row per country. It reports metrics at the actual
|
8523
|
+
# physical location of the user by targeted or not targeted location. If other
|
8524
|
+
# segment fields are used, you may get more than one row per country.
|
8525
|
+
# Corresponds to the JSON property `userLocationView`
|
8526
|
+
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserLocationView]
|
8527
|
+
attr_accessor :user_location_view
|
8528
|
+
|
8328
8529
|
# A visit.
|
8329
8530
|
# Corresponds to the JSON property `visit`
|
8330
8531
|
# @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesVisit]
|
@@ -8344,12 +8545,14 @@ module Google
|
|
8344
8545
|
@accessible_bidding_strategy = args[:accessible_bidding_strategy] if args.key?(:accessible_bidding_strategy)
|
8345
8546
|
@ad_group = args[:ad_group] if args.key?(:ad_group)
|
8346
8547
|
@ad_group_ad = args[:ad_group_ad] if args.key?(:ad_group_ad)
|
8548
|
+
@ad_group_ad_effective_label = args[:ad_group_ad_effective_label] if args.key?(:ad_group_ad_effective_label)
|
8347
8549
|
@ad_group_ad_label = args[:ad_group_ad_label] if args.key?(:ad_group_ad_label)
|
8348
8550
|
@ad_group_asset = args[:ad_group_asset] if args.key?(:ad_group_asset)
|
8349
8551
|
@ad_group_asset_set = args[:ad_group_asset_set] if args.key?(:ad_group_asset_set)
|
8350
8552
|
@ad_group_audience_view = args[:ad_group_audience_view] if args.key?(:ad_group_audience_view)
|
8351
8553
|
@ad_group_bid_modifier = args[:ad_group_bid_modifier] if args.key?(:ad_group_bid_modifier)
|
8352
8554
|
@ad_group_criterion = args[:ad_group_criterion] if args.key?(:ad_group_criterion)
|
8555
|
+
@ad_group_criterion_effective_label = args[:ad_group_criterion_effective_label] if args.key?(:ad_group_criterion_effective_label)
|
8353
8556
|
@ad_group_criterion_label = args[:ad_group_criterion_label] if args.key?(:ad_group_criterion_label)
|
8354
8557
|
@ad_group_effective_label = args[:ad_group_effective_label] if args.key?(:ad_group_effective_label)
|
8355
8558
|
@ad_group_label = args[:ad_group_label] if args.key?(:ad_group_label)
|
@@ -8395,6 +8598,7 @@ module Google
|
|
8395
8598
|
@segments = args[:segments] if args.key?(:segments)
|
8396
8599
|
@shopping_performance_view = args[:shopping_performance_view] if args.key?(:shopping_performance_view)
|
8397
8600
|
@user_list = args[:user_list] if args.key?(:user_list)
|
8601
|
+
@user_location_view = args[:user_location_view] if args.key?(:user_location_view)
|
8398
8602
|
@visit = args[:visit] if args.key?(:visit)
|
8399
8603
|
@webpage_view = args[:webpage_view] if args.key?(:webpage_view)
|
8400
8604
|
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.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250407"
|
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
|
@@ -2562,8 +2602,11 @@ module Google
|
|
2562
2602
|
class GoogleAdsSearchads360V0ResourcesCustomer
|
2563
2603
|
# @private
|
2564
2604
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2605
|
+
property :account_level, as: 'accountLevel'
|
2565
2606
|
property :account_status, as: 'accountStatus'
|
2566
2607
|
property :account_type, as: 'accountType'
|
2608
|
+
property :associate_manager_descriptive_name, as: 'associateManagerDescriptiveName'
|
2609
|
+
property :associate_manager_id, :numeric_string => true, as: 'associateManagerId'
|
2567
2610
|
property :auto_tagging_enabled, as: 'autoTaggingEnabled'
|
2568
2611
|
property :conversion_tracking_setting, as: 'conversionTrackingSetting', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesConversionTrackingSetting, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesConversionTrackingSetting::Representation
|
2569
2612
|
|
@@ -2577,8 +2620,12 @@ module Google
|
|
2577
2620
|
property :id, :numeric_string => true, as: 'id'
|
2578
2621
|
property :last_modified_time, as: 'lastModifiedTime'
|
2579
2622
|
property :manager, as: 'manager'
|
2623
|
+
property :manager_descriptive_name, as: 'managerDescriptiveName'
|
2624
|
+
property :manager_id, :numeric_string => true, as: 'managerId'
|
2580
2625
|
property :resource_name, as: 'resourceName'
|
2581
2626
|
property :status, as: 'status'
|
2627
|
+
property :sub_manager_descriptive_name, as: 'subManagerDescriptiveName'
|
2628
|
+
property :sub_manager_id, :numeric_string => true, as: 'subManagerId'
|
2582
2629
|
property :time_zone, as: 'timeZone'
|
2583
2630
|
property :tracking_url_template, as: 'trackingUrlTemplate'
|
2584
2631
|
end
|
@@ -2793,6 +2840,15 @@ module Google
|
|
2793
2840
|
end
|
2794
2841
|
end
|
2795
2842
|
|
2843
|
+
class GoogleAdsSearchads360V0ResourcesUserLocationView
|
2844
|
+
# @private
|
2845
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2846
|
+
property :country_criterion_id, :numeric_string => true, as: 'countryCriterionId'
|
2847
|
+
property :resource_name, as: 'resourceName'
|
2848
|
+
property :targeting_location, as: 'targetingLocation'
|
2849
|
+
end
|
2850
|
+
end
|
2851
|
+
|
2796
2852
|
class GoogleAdsSearchads360V0ResourcesVisit
|
2797
2853
|
# @private
|
2798
2854
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2885,6 +2941,8 @@ module Google
|
|
2885
2941
|
|
2886
2942
|
property :ad_group_ad, as: 'adGroupAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd::Representation
|
2887
2943
|
|
2944
|
+
property :ad_group_ad_effective_label, as: 'adGroupAdEffectiveLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdEffectiveLabel::Representation
|
2945
|
+
|
2888
2946
|
property :ad_group_ad_label, as: 'adGroupAdLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAdLabel::Representation
|
2889
2947
|
|
2890
2948
|
property :ad_group_asset, as: 'adGroupAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAsset::Representation
|
@@ -2897,6 +2955,8 @@ module Google
|
|
2897
2955
|
|
2898
2956
|
property :ad_group_criterion, as: 'adGroupCriterion', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterion, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterion::Representation
|
2899
2957
|
|
2958
|
+
property :ad_group_criterion_effective_label, as: 'adGroupCriterionEffectiveLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionEffectiveLabel::Representation
|
2959
|
+
|
2900
2960
|
property :ad_group_criterion_label, as: 'adGroupCriterionLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupCriterionLabel::Representation
|
2901
2961
|
|
2902
2962
|
property :ad_group_effective_label, as: 'adGroupEffectiveLabel', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupEffectiveLabel, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupEffectiveLabel::Representation
|
@@ -2987,6 +3047,8 @@ module Google
|
|
2987
3047
|
|
2988
3048
|
property :user_list, as: 'userList', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserList, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserList::Representation
|
2989
3049
|
|
3050
|
+
property :user_location_view, as: 'userLocationView', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserLocationView, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesUserLocationView::Representation
|
3051
|
+
|
2990
3052
|
property :visit, as: 'visit', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesVisit, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesVisit::Representation
|
2991
3053
|
|
2992
3054
|
property :webpage_view, as: 'webpageView', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesWebpageView, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesWebpageView::Representation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-20 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.20.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchads360_v0
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Search Ads 360 Reporting API V0
|
82
79
|
test_files: []
|