google-apis-searchads360_v0 0.5.0 → 0.7.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: a01ff665b1d6688c8e377555b32bc55e742a5dcf8ec2cecd0baf88045f2ef7dc
4
- data.tar.gz: 506baf8f4821dabc04f0421962cf8898a1c3ff0779e172512958b000058f4bf3
3
+ metadata.gz: 33fbd4502f2c1acb39d57aedf63f541e6b1a442de681c6b649d2b5941fdaf870
4
+ data.tar.gz: 6b350f9c05086fdd66b6bfbbdf2ba6de94bc8ba04664f605405f1d4b5fe1c557
5
5
  SHA512:
6
- metadata.gz: 16831e3a676a4b621e08d1af3752254cd181dea39365b74ff540be9970af62455e44e146c2500d7346039136d0b7ef315fd74a72cb2be02ee4517b5bd1d0e444
7
- data.tar.gz: 1fbc1031ef0849512da16915f21d7671ccf49c3fada60babdc569c1de293cbd7901f98939fda67320f877ff1fa27c4b0d3f350d7d98a2fa74540d69de0d528d7
6
+ metadata.gz: 2b1d66dbe0c198ae71ea0d2fca6f569efb29bba5d6bd0cb09ce73a83968011b5807580ff782aadd3cf96316505634cf4a8e8ed755844a44dfeaf9a299d9aba49
7
+ data.tar.gz: 042777eada12400dff6ff6315140479a7396ec2699883858f25bee503475a9250bbb20b9fd82da4313f9ac278fee1df212723e4a550af98b3b46ccef9ed2e883
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-searchads360_v0
2
2
 
3
+ ### v0.7.0 (2023-07-02)
4
+
5
+ * Regenerated from discovery document revision 20230625
6
+
7
+ ### v0.6.0 (2023-05-07)
8
+
9
+ * Regenerated from discovery document revision 20230502
10
+
3
11
  ### v0.5.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230425
@@ -135,6 +135,31 @@ module Google
135
135
  end
136
136
  end
137
137
 
138
+ # A Keyword criterion segment.
139
+ class GoogleAdsSearchads360V0CommonKeyword
140
+ include Google::Apis::Core::Hashable
141
+
142
+ # The AdGroupCriterion resource name.
143
+ # Corresponds to the JSON property `adGroupCriterion`
144
+ # @return [String]
145
+ attr_accessor :ad_group_criterion
146
+
147
+ # A keyword criterion.
148
+ # Corresponds to the JSON property `info`
149
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeywordInfo]
150
+ attr_accessor :info
151
+
152
+ def initialize(**args)
153
+ update!(**args)
154
+ end
155
+
156
+ # Update properties of this object
157
+ def update!(**args)
158
+ @ad_group_criterion = args[:ad_group_criterion] if args.key?(:ad_group_criterion)
159
+ @info = args[:info] if args.key?(:info)
160
+ end
161
+ end
162
+
138
163
  # A keyword criterion.
139
164
  class GoogleAdsSearchads360V0CommonKeywordInfo
140
165
  include Google::Apis::Core::Hashable
@@ -912,6 +937,33 @@ module Google
912
937
  end
913
938
  end
914
939
 
940
+ # An asset representing a mobile app.
941
+ class GoogleAdsSearchads360V0CommonMobileAppAsset
942
+ include Google::Apis::Core::Hashable
943
+
944
+ # Required. A string that uniquely identifies a mobile application. It should
945
+ # just contain the platform native id, like "com.android.ebay" for Android or "
946
+ # 12345689" for iOS.
947
+ # Corresponds to the JSON property `appId`
948
+ # @return [String]
949
+ attr_accessor :app_id
950
+
951
+ # Required. The application store that distributes this specific app.
952
+ # Corresponds to the JSON property `appStore`
953
+ # @return [String]
954
+ attr_accessor :app_store
955
+
956
+ def initialize(**args)
957
+ update!(**args)
958
+ end
959
+
960
+ # Update properties of this object
961
+ def update!(**args)
962
+ @app_id = args[:app_id] if args.key?(:app_id)
963
+ @app_store = args[:app_store] if args.key?(:app_store)
964
+ end
965
+ end
966
+
915
967
  # A bidding strategy where bids are a fraction of the advertised price for some
916
968
  # good or service.
917
969
  class GoogleAdsSearchads360V0CommonPercentCpc
@@ -964,14 +1016,150 @@ module Google
964
1016
  end
965
1017
  end
966
1018
 
1019
+ # An expanded dynamic search ad.
1020
+ class GoogleAdsSearchads360V0CommonSearchAds360ExpandedDynamicSearchAdInfo
1021
+ include Google::Apis::Core::Hashable
1022
+
1023
+ # The tracking id of the ad.
1024
+ # Corresponds to the JSON property `adTrackingId`
1025
+ # @return [Fixnum]
1026
+ attr_accessor :ad_tracking_id
1027
+
1028
+ # The first line of the ad's description.
1029
+ # Corresponds to the JSON property `description1`
1030
+ # @return [String]
1031
+ attr_accessor :description1
1032
+
1033
+ # The second line of the ad's description.
1034
+ # Corresponds to the JSON property `description2`
1035
+ # @return [String]
1036
+ attr_accessor :description2
1037
+
1038
+ def initialize(**args)
1039
+ update!(**args)
1040
+ end
1041
+
1042
+ # Update properties of this object
1043
+ def update!(**args)
1044
+ @ad_tracking_id = args[:ad_tracking_id] if args.key?(:ad_tracking_id)
1045
+ @description1 = args[:description1] if args.key?(:description1)
1046
+ @description2 = args[:description2] if args.key?(:description2)
1047
+ end
1048
+ end
1049
+
1050
+ # A Search Ads 360 expanded text ad.
1051
+ class GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo
1052
+ include Google::Apis::Core::Hashable
1053
+
1054
+ # The tracking id of the ad.
1055
+ # Corresponds to the JSON property `adTrackingId`
1056
+ # @return [Fixnum]
1057
+ attr_accessor :ad_tracking_id
1058
+
1059
+ # The first line of the ad's description.
1060
+ # Corresponds to the JSON property `description1`
1061
+ # @return [String]
1062
+ attr_accessor :description1
1063
+
1064
+ # The second line of the ad's description.
1065
+ # Corresponds to the JSON property `description2`
1066
+ # @return [String]
1067
+ attr_accessor :description2
1068
+
1069
+ # The headline of the ad.
1070
+ # Corresponds to the JSON property `headline`
1071
+ # @return [String]
1072
+ attr_accessor :headline
1073
+
1074
+ # The second headline of the ad.
1075
+ # Corresponds to the JSON property `headline2`
1076
+ # @return [String]
1077
+ attr_accessor :headline2
1078
+
1079
+ # The third headline of the ad.
1080
+ # Corresponds to the JSON property `headline3`
1081
+ # @return [String]
1082
+ attr_accessor :headline3
1083
+
1084
+ # Text appended to the auto-generated visible URL with a delimiter.
1085
+ # Corresponds to the JSON property `path1`
1086
+ # @return [String]
1087
+ attr_accessor :path1
1088
+
1089
+ # Text appended to path1 with a delimiter.
1090
+ # Corresponds to the JSON property `path2`
1091
+ # @return [String]
1092
+ attr_accessor :path2
1093
+
1094
+ def initialize(**args)
1095
+ update!(**args)
1096
+ end
1097
+
1098
+ # Update properties of this object
1099
+ def update!(**args)
1100
+ @ad_tracking_id = args[:ad_tracking_id] if args.key?(:ad_tracking_id)
1101
+ @description1 = args[:description1] if args.key?(:description1)
1102
+ @description2 = args[:description2] if args.key?(:description2)
1103
+ @headline = args[:headline] if args.key?(:headline)
1104
+ @headline2 = args[:headline2] if args.key?(:headline2)
1105
+ @headline3 = args[:headline3] if args.key?(:headline3)
1106
+ @path1 = args[:path1] if args.key?(:path1)
1107
+ @path2 = args[:path2] if args.key?(:path2)
1108
+ end
1109
+ end
1110
+
1111
+ # A Search Ads 360 product ad.
1112
+ class GoogleAdsSearchads360V0CommonSearchAds360ProductAdInfo
1113
+ include Google::Apis::Core::Hashable
1114
+
1115
+ def initialize(**args)
1116
+ update!(**args)
1117
+ end
1118
+
1119
+ # Update properties of this object
1120
+ def update!(**args)
1121
+ end
1122
+ end
1123
+
1124
+ # A Search Ads 360 responsive search ad.
1125
+ class GoogleAdsSearchads360V0CommonSearchAds360ResponsiveSearchAdInfo
1126
+ include Google::Apis::Core::Hashable
1127
+
1128
+ # The tracking id of the ad.
1129
+ # Corresponds to the JSON property `adTrackingId`
1130
+ # @return [Fixnum]
1131
+ attr_accessor :ad_tracking_id
1132
+
1133
+ # Text appended to the auto-generated visible URL with a delimiter.
1134
+ # Corresponds to the JSON property `path1`
1135
+ # @return [String]
1136
+ attr_accessor :path1
1137
+
1138
+ # Text appended to path1 with a delimiter.
1139
+ # Corresponds to the JSON property `path2`
1140
+ # @return [String]
1141
+ attr_accessor :path2
1142
+
1143
+ def initialize(**args)
1144
+ update!(**args)
1145
+ end
1146
+
1147
+ # Update properties of this object
1148
+ def update!(**args)
1149
+ @ad_tracking_id = args[:ad_tracking_id] if args.key?(:ad_tracking_id)
1150
+ @path1 = args[:path1] if args.key?(:path1)
1151
+ @path2 = args[:path2] if args.key?(:path2)
1152
+ end
1153
+ end
1154
+
967
1155
  # A Search Ads 360 text ad.
968
1156
  class GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo
969
1157
  include Google::Apis::Core::Hashable
970
1158
 
971
1159
  # The tracking id of the ad.
972
- # Corresponds to the JSON property `adTrackId`
1160
+ # Corresponds to the JSON property `adTrackingId`
973
1161
  # @return [Fixnum]
974
- attr_accessor :ad_track_id
1162
+ attr_accessor :ad_tracking_id
975
1163
 
976
1164
  # The first line of the ad's description.
977
1165
  # Corresponds to the JSON property `description1`
@@ -1004,7 +1192,7 @@ module Google
1004
1192
 
1005
1193
  # Update properties of this object
1006
1194
  def update!(**args)
1007
- @ad_track_id = args[:ad_track_id] if args.key?(:ad_track_id)
1195
+ @ad_tracking_id = args[:ad_tracking_id] if args.key?(:ad_tracking_id)
1008
1196
  @description1 = args[:description1] if args.key?(:description1)
1009
1197
  @description2 = args[:description2] if args.key?(:description2)
1010
1198
  @display_mobile_url = args[:display_mobile_url] if args.key?(:display_mobile_url)
@@ -1017,6 +1205,11 @@ module Google
1017
1205
  class GoogleAdsSearchads360V0CommonSegments
1018
1206
  include Google::Apis::Core::Hashable
1019
1207
 
1208
+ # Ad network type.
1209
+ # Corresponds to the JSON property `adNetworkType`
1210
+ # @return [String]
1211
+ attr_accessor :ad_network_type
1212
+
1020
1213
  # Resource name of the conversion action.
1021
1214
  # Corresponds to the JSON property `conversionAction`
1022
1215
  # @return [String]
@@ -1047,6 +1240,11 @@ module Google
1047
1240
  # @return [String]
1048
1241
  attr_accessor :device
1049
1242
 
1243
+ # A Keyword criterion segment.
1244
+ # Corresponds to the JSON property `keyword`
1245
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeyword]
1246
+ attr_accessor :keyword
1247
+
1050
1248
  # Month as represented by the date of the first day of a month. Formatted as
1051
1249
  # yyyy-MM-dd.
1052
1250
  # Corresponds to the JSON property `month`
@@ -1077,12 +1275,14 @@ module Google
1077
1275
 
1078
1276
  # Update properties of this object
1079
1277
  def update!(**args)
1278
+ @ad_network_type = args[:ad_network_type] if args.key?(:ad_network_type)
1080
1279
  @conversion_action = args[:conversion_action] if args.key?(:conversion_action)
1081
1280
  @conversion_action_category = args[:conversion_action_category] if args.key?(:conversion_action_category)
1082
1281
  @conversion_action_name = args[:conversion_action_name] if args.key?(:conversion_action_name)
1083
1282
  @date = args[:date] if args.key?(:date)
1084
1283
  @day_of_week = args[:day_of_week] if args.key?(:day_of_week)
1085
1284
  @device = args[:device] if args.key?(:device)
1285
+ @keyword = args[:keyword] if args.key?(:keyword)
1086
1286
  @month = args[:month] if args.key?(:month)
1087
1287
  @quarter = args[:quarter] if args.key?(:quarter)
1088
1288
  @week = args[:week] if args.key?(:week)
@@ -1522,6 +1722,11 @@ module Google
1522
1722
  # @return [String]
1523
1723
  attr_accessor :authorization_error
1524
1724
 
1725
+ # The reasons for the custom column error
1726
+ # Corresponds to the JSON property `customColumnError`
1727
+ # @return [String]
1728
+ attr_accessor :custom_column_error
1729
+
1525
1730
  # The reasons for the date error
1526
1731
  # Corresponds to the JSON property `dateError`
1527
1732
  # @return [String]
@@ -1575,6 +1780,7 @@ module Google
1575
1780
  def update!(**args)
1576
1781
  @authentication_error = args[:authentication_error] if args.key?(:authentication_error)
1577
1782
  @authorization_error = args[:authorization_error] if args.key?(:authorization_error)
1783
+ @custom_column_error = args[:custom_column_error] if args.key?(:custom_column_error)
1578
1784
  @date_error = args[:date_error] if args.key?(:date_error)
1579
1785
  @date_range_error = args[:date_range_error] if args.key?(:date_range_error)
1580
1786
  @distinct_error = args[:distinct_error] if args.key?(:distinct_error)
@@ -2083,6 +2289,16 @@ module Google
2083
2289
  # @return [String]
2084
2290
  attr_accessor :display_url
2085
2291
 
2292
+ # An expanded dynamic search ad.
2293
+ # Corresponds to the JSON property `expandedDynamicSearchAd`
2294
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedDynamicSearchAdInfo]
2295
+ attr_accessor :expanded_dynamic_search_ad
2296
+
2297
+ # A Search Ads 360 expanded text ad.
2298
+ # Corresponds to the JSON property `expandedTextAd`
2299
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo]
2300
+ attr_accessor :expanded_text_ad
2301
+
2086
2302
  # The list of possible final URLs after all cross-domain redirects for the ad.
2087
2303
  # Corresponds to the JSON property `finalUrls`
2088
2304
  # @return [Array<String>]
@@ -2101,12 +2317,22 @@ module Google
2101
2317
  # @return [String]
2102
2318
  attr_accessor :name
2103
2319
 
2320
+ # A Search Ads 360 product ad.
2321
+ # Corresponds to the JSON property `productAd`
2322
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ProductAdInfo]
2323
+ attr_accessor :product_ad
2324
+
2104
2325
  # Immutable. The resource name of the ad. Ad resource names have the form: `
2105
2326
  # customers/`customer_id`/ads/`ad_id``
2106
2327
  # Corresponds to the JSON property `resourceName`
2107
2328
  # @return [String]
2108
2329
  attr_accessor :resource_name
2109
2330
 
2331
+ # A Search Ads 360 responsive search ad.
2332
+ # Corresponds to the JSON property `responsiveSearchAd`
2333
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ResponsiveSearchAdInfo]
2334
+ attr_accessor :responsive_search_ad
2335
+
2110
2336
  # A Search Ads 360 text ad.
2111
2337
  # Corresponds to the JSON property `textAd`
2112
2338
  # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo]
@@ -2124,10 +2350,14 @@ module Google
2124
2350
  # Update properties of this object
2125
2351
  def update!(**args)
2126
2352
  @display_url = args[:display_url] if args.key?(:display_url)
2353
+ @expanded_dynamic_search_ad = args[:expanded_dynamic_search_ad] if args.key?(:expanded_dynamic_search_ad)
2354
+ @expanded_text_ad = args[:expanded_text_ad] if args.key?(:expanded_text_ad)
2127
2355
  @final_urls = args[:final_urls] if args.key?(:final_urls)
2128
2356
  @id = args[:id] if args.key?(:id)
2129
2357
  @name = args[:name] if args.key?(:name)
2358
+ @product_ad = args[:product_ad] if args.key?(:product_ad)
2130
2359
  @resource_name = args[:resource_name] if args.key?(:resource_name)
2360
+ @responsive_search_ad = args[:responsive_search_ad] if args.key?(:responsive_search_ad)
2131
2361
  @text_ad = args[:text_ad] if args.key?(:text_ad)
2132
2362
  @type = args[:type] if args.key?(:type)
2133
2363
  end
@@ -2694,6 +2924,112 @@ module Google
2694
2924
  end
2695
2925
  end
2696
2926
 
2927
+ # Asset is a part of an ad which can be shared across multiple ads. It can be an
2928
+ # image (ImageAsset), a video (YoutubeVideoAsset), etc. Assets are immutable and
2929
+ # cannot be removed. To stop an asset from serving, remove the asset from the
2930
+ # entity that is using it.
2931
+ class GoogleAdsSearchads360V0ResourcesAsset
2932
+ include Google::Apis::Core::Hashable
2933
+
2934
+ # Output only. The timestamp when this asset was created. The timestamp is in
2935
+ # the customer's time zone and in "yyyy-MM-dd HH:mm:ss" format.
2936
+ # Corresponds to the JSON property `creationTime`
2937
+ # @return [String]
2938
+ attr_accessor :creation_time
2939
+
2940
+ # Output only. The Engine Status for an asset.
2941
+ # Corresponds to the JSON property `engineStatus`
2942
+ # @return [String]
2943
+ attr_accessor :engine_status
2944
+
2945
+ # A list of possible final URLs after all cross domain redirects.
2946
+ # Corresponds to the JSON property `finalUrls`
2947
+ # @return [Array<String>]
2948
+ attr_accessor :final_urls
2949
+
2950
+ # Output only. The ID of the asset.
2951
+ # Corresponds to the JSON property `id`
2952
+ # @return [Fixnum]
2953
+ attr_accessor :id
2954
+
2955
+ # Output only. The datetime when this asset was last modified. The datetime is
2956
+ # in the customer's time zone and in "yyyy-MM-dd HH:mm:ss.ssssss" format.
2957
+ # Corresponds to the JSON property `lastModifiedTime`
2958
+ # @return [String]
2959
+ attr_accessor :last_modified_time
2960
+
2961
+ # An asset representing a mobile app.
2962
+ # Corresponds to the JSON property `mobileAppAsset`
2963
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonMobileAppAsset]
2964
+ attr_accessor :mobile_app_asset
2965
+
2966
+ # Immutable. The resource name of the asset. Asset resource names have the form:
2967
+ # `customers/`customer_id`/assets/`asset_id``
2968
+ # Corresponds to the JSON property `resourceName`
2969
+ # @return [String]
2970
+ attr_accessor :resource_name
2971
+
2972
+ # Output only. The status of the asset.
2973
+ # Corresponds to the JSON property `status`
2974
+ # @return [String]
2975
+ attr_accessor :status
2976
+
2977
+ # URL template for constructing a tracking URL.
2978
+ # Corresponds to the JSON property `trackingUrlTemplate`
2979
+ # @return [String]
2980
+ attr_accessor :tracking_url_template
2981
+
2982
+ # Output only. Type of the asset.
2983
+ # Corresponds to the JSON property `type`
2984
+ # @return [String]
2985
+ attr_accessor :type
2986
+
2987
+ def initialize(**args)
2988
+ update!(**args)
2989
+ end
2990
+
2991
+ # Update properties of this object
2992
+ def update!(**args)
2993
+ @creation_time = args[:creation_time] if args.key?(:creation_time)
2994
+ @engine_status = args[:engine_status] if args.key?(:engine_status)
2995
+ @final_urls = args[:final_urls] if args.key?(:final_urls)
2996
+ @id = args[:id] if args.key?(:id)
2997
+ @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
2998
+ @mobile_app_asset = args[:mobile_app_asset] if args.key?(:mobile_app_asset)
2999
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
3000
+ @status = args[:status] if args.key?(:status)
3001
+ @tracking_url_template = args[:tracking_url_template] if args.key?(:tracking_url_template)
3002
+ @type = args[:type] if args.key?(:type)
3003
+ end
3004
+ end
3005
+
3006
+ # An asset set representing a collection of assets. Use AssetSetAsset to link an
3007
+ # asset to the asset set.
3008
+ class GoogleAdsSearchads360V0ResourcesAssetSet
3009
+ include Google::Apis::Core::Hashable
3010
+
3011
+ # Output only. The ID of the asset set.
3012
+ # Corresponds to the JSON property `id`
3013
+ # @return [Fixnum]
3014
+ attr_accessor :id
3015
+
3016
+ # Immutable. The resource name of the asset set. Asset set resource names have
3017
+ # the form: `customers/`customer_id`/assetSets/`asset_set_id``
3018
+ # Corresponds to the JSON property `resourceName`
3019
+ # @return [String]
3020
+ attr_accessor :resource_name
3021
+
3022
+ def initialize(**args)
3023
+ update!(**args)
3024
+ end
3025
+
3026
+ # Update properties of this object
3027
+ def update!(**args)
3028
+ @id = args[:id] if args.key?(:id)
3029
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
3030
+ end
3031
+ end
3032
+
2697
3033
  # A bidding strategy.
2698
3034
  class GoogleAdsSearchads360V0ResourcesBiddingStrategy
2699
3035
  include Google::Apis::Core::Hashable
@@ -4321,6 +4657,26 @@ module Google
4321
4657
  end
4322
4658
  end
4323
4659
 
4660
+ # Response message for CustomerService.ListAccessibleCustomers.
4661
+ class GoogleAdsSearchads360V0ServicesListAccessibleCustomersResponse
4662
+ include Google::Apis::Core::Hashable
4663
+
4664
+ # Resource name of customers directly accessible by the user authenticating the
4665
+ # call.
4666
+ # Corresponds to the JSON property `resourceNames`
4667
+ # @return [Array<String>]
4668
+ attr_accessor :resource_names
4669
+
4670
+ def initialize(**args)
4671
+ update!(**args)
4672
+ end
4673
+
4674
+ # Update properties of this object
4675
+ def update!(**args)
4676
+ @resource_names = args[:resource_names] if args.key?(:resource_names)
4677
+ end
4678
+ end
4679
+
4324
4680
  # Response message for fetching all custom columns associated with a customer.
4325
4681
  class GoogleAdsSearchads360V0ServicesListCustomColumnsResponse
4326
4682
  include Google::Apis::Core::Hashable
@@ -4391,6 +4747,20 @@ module Google
4391
4747
  # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAgeRangeView]
4392
4748
  attr_accessor :age_range_view
4393
4749
 
4750
+ # Asset is a part of an ad which can be shared across multiple ads. It can be an
4751
+ # image (ImageAsset), a video (YoutubeVideoAsset), etc. Assets are immutable and
4752
+ # cannot be removed. To stop an asset from serving, remove the asset from the
4753
+ # entity that is using it.
4754
+ # Corresponds to the JSON property `asset`
4755
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAsset]
4756
+ attr_accessor :asset
4757
+
4758
+ # An asset set representing a collection of assets. Use AssetSetAsset to link an
4759
+ # asset to the asset set.
4760
+ # Corresponds to the JSON property `assetSet`
4761
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAssetSet]
4762
+ attr_accessor :asset_set
4763
+
4394
4764
  # A bidding strategy.
4395
4765
  # Corresponds to the JSON property `biddingStrategy`
4396
4766
  # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesBiddingStrategy]
@@ -4516,6 +4886,8 @@ module Google
4516
4886
  @ad_group_criterion_label = args[:ad_group_criterion_label] if args.key?(:ad_group_criterion_label)
4517
4887
  @ad_group_label = args[:ad_group_label] if args.key?(:ad_group_label)
4518
4888
  @age_range_view = args[:age_range_view] if args.key?(:age_range_view)
4889
+ @asset = args[:asset] if args.key?(:asset)
4890
+ @asset_set = args[:asset_set] if args.key?(:asset_set)
4519
4891
  @bidding_strategy = args[:bidding_strategy] if args.key?(:bidding_strategy)
4520
4892
  @campaign = args[:campaign] if args.key?(:campaign)
4521
4893
  @campaign_audience_view = args[:campaign_audience_view] if args.key?(:campaign_audience_view)
@@ -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.5.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230425"
25
+ REVISION = "20230625"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class GoogleAdsSearchads360V0CommonKeyword
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class GoogleAdsSearchads360V0CommonKeywordInfo
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -124,6 +130,12 @@ module Google
124
130
  include Google::Apis::Core::JsonObjectSupport
125
131
  end
126
132
 
133
+ class GoogleAdsSearchads360V0CommonMobileAppAsset
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
127
139
  class GoogleAdsSearchads360V0CommonPercentCpc
128
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
141
 
@@ -136,6 +148,30 @@ module Google
136
148
  include Google::Apis::Core::JsonObjectSupport
137
149
  end
138
150
 
151
+ class GoogleAdsSearchads360V0CommonSearchAds360ExpandedDynamicSearchAdInfo
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
157
+ class GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class GoogleAdsSearchads360V0CommonSearchAds360ProductAdInfo
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
169
+ class GoogleAdsSearchads360V0CommonSearchAds360ResponsiveSearchAdInfo
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
139
175
  class GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo
140
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
177
 
@@ -394,6 +430,18 @@ module Google
394
430
  include Google::Apis::Core::JsonObjectSupport
395
431
  end
396
432
 
433
+ class GoogleAdsSearchads360V0ResourcesAsset
434
+ class Representation < Google::Apis::Core::JsonRepresentation; end
435
+
436
+ include Google::Apis::Core::JsonObjectSupport
437
+ end
438
+
439
+ class GoogleAdsSearchads360V0ResourcesAssetSet
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
397
445
  class GoogleAdsSearchads360V0ResourcesBiddingStrategy
398
446
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
447
 
@@ -532,6 +580,12 @@ module Google
532
580
  include Google::Apis::Core::JsonObjectSupport
533
581
  end
534
582
 
583
+ class GoogleAdsSearchads360V0ServicesListAccessibleCustomersResponse
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
535
589
  class GoogleAdsSearchads360V0ServicesListCustomColumnsResponse
536
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
591
 
@@ -609,6 +663,15 @@ module Google
609
663
  end
610
664
  end
611
665
 
666
+ class GoogleAdsSearchads360V0CommonKeyword
667
+ # @private
668
+ class Representation < Google::Apis::Core::JsonRepresentation
669
+ property :ad_group_criterion, as: 'adGroupCriterion'
670
+ property :info, as: 'info', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeywordInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeywordInfo::Representation
671
+
672
+ end
673
+ end
674
+
612
675
  class GoogleAdsSearchads360V0CommonKeywordInfo
613
676
  # @private
614
677
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -758,6 +821,14 @@ module Google
758
821
  end
759
822
  end
760
823
 
824
+ class GoogleAdsSearchads360V0CommonMobileAppAsset
825
+ # @private
826
+ class Representation < Google::Apis::Core::JsonRepresentation
827
+ property :app_id, as: 'appId'
828
+ property :app_store, as: 'appStore'
829
+ end
830
+ end
831
+
761
832
  class GoogleAdsSearchads360V0CommonPercentCpc
762
833
  # @private
763
834
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -773,10 +844,48 @@ module Google
773
844
  end
774
845
  end
775
846
 
847
+ class GoogleAdsSearchads360V0CommonSearchAds360ExpandedDynamicSearchAdInfo
848
+ # @private
849
+ class Representation < Google::Apis::Core::JsonRepresentation
850
+ property :ad_tracking_id, :numeric_string => true, as: 'adTrackingId'
851
+ property :description1, as: 'description1'
852
+ property :description2, as: 'description2'
853
+ end
854
+ end
855
+
856
+ class GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo
857
+ # @private
858
+ class Representation < Google::Apis::Core::JsonRepresentation
859
+ property :ad_tracking_id, :numeric_string => true, as: 'adTrackingId'
860
+ property :description1, as: 'description1'
861
+ property :description2, as: 'description2'
862
+ property :headline, as: 'headline'
863
+ property :headline2, as: 'headline2'
864
+ property :headline3, as: 'headline3'
865
+ property :path1, as: 'path1'
866
+ property :path2, as: 'path2'
867
+ end
868
+ end
869
+
870
+ class GoogleAdsSearchads360V0CommonSearchAds360ProductAdInfo
871
+ # @private
872
+ class Representation < Google::Apis::Core::JsonRepresentation
873
+ end
874
+ end
875
+
876
+ class GoogleAdsSearchads360V0CommonSearchAds360ResponsiveSearchAdInfo
877
+ # @private
878
+ class Representation < Google::Apis::Core::JsonRepresentation
879
+ property :ad_tracking_id, :numeric_string => true, as: 'adTrackingId'
880
+ property :path1, as: 'path1'
881
+ property :path2, as: 'path2'
882
+ end
883
+ end
884
+
776
885
  class GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo
777
886
  # @private
778
887
  class Representation < Google::Apis::Core::JsonRepresentation
779
- property :ad_track_id, :numeric_string => true, as: 'adTrackId'
888
+ property :ad_tracking_id, :numeric_string => true, as: 'adTrackingId'
780
889
  property :description1, as: 'description1'
781
890
  property :description2, as: 'description2'
782
891
  property :display_mobile_url, as: 'displayMobileUrl'
@@ -788,12 +897,15 @@ module Google
788
897
  class GoogleAdsSearchads360V0CommonSegments
789
898
  # @private
790
899
  class Representation < Google::Apis::Core::JsonRepresentation
900
+ property :ad_network_type, as: 'adNetworkType'
791
901
  property :conversion_action, as: 'conversionAction'
792
902
  property :conversion_action_category, as: 'conversionActionCategory'
793
903
  property :conversion_action_name, as: 'conversionActionName'
794
904
  property :date, as: 'date'
795
905
  property :day_of_week, as: 'dayOfWeek'
796
906
  property :device, as: 'device'
907
+ property :keyword, as: 'keyword', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeyword, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonKeyword::Representation
908
+
797
909
  property :month, as: 'month'
798
910
  property :quarter, as: 'quarter'
799
911
  property :week, as: 'week'
@@ -923,6 +1035,7 @@ module Google
923
1035
  class Representation < Google::Apis::Core::JsonRepresentation
924
1036
  property :authentication_error, as: 'authenticationError'
925
1037
  property :authorization_error, as: 'authorizationError'
1038
+ property :custom_column_error, as: 'customColumnError'
926
1039
  property :date_error, as: 'dateError'
927
1040
  property :date_range_error, as: 'dateRangeError'
928
1041
  property :distinct_error, as: 'distinctError'
@@ -1082,10 +1195,18 @@ module Google
1082
1195
  # @private
1083
1196
  class Representation < Google::Apis::Core::JsonRepresentation
1084
1197
  property :display_url, as: 'displayUrl'
1198
+ property :expanded_dynamic_search_ad, as: 'expandedDynamicSearchAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedDynamicSearchAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedDynamicSearchAdInfo::Representation
1199
+
1200
+ property :expanded_text_ad, as: 'expandedTextAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ExpandedTextAdInfo::Representation
1201
+
1085
1202
  collection :final_urls, as: 'finalUrls'
1086
1203
  property :id, :numeric_string => true, as: 'id'
1087
1204
  property :name, as: 'name'
1205
+ property :product_ad, as: 'productAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ProductAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ProductAdInfo::Representation
1206
+
1088
1207
  property :resource_name, as: 'resourceName'
1208
+ property :responsive_search_ad, as: 'responsiveSearchAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ResponsiveSearchAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360ResponsiveSearchAdInfo::Representation
1209
+
1089
1210
  property :text_ad, as: 'textAd', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonSearchAds360TextAdInfo::Representation
1090
1211
 
1091
1212
  property :type, as: 'type'
@@ -1220,6 +1341,31 @@ module Google
1220
1341
  end
1221
1342
  end
1222
1343
 
1344
+ class GoogleAdsSearchads360V0ResourcesAsset
1345
+ # @private
1346
+ class Representation < Google::Apis::Core::JsonRepresentation
1347
+ property :creation_time, as: 'creationTime'
1348
+ property :engine_status, as: 'engineStatus'
1349
+ collection :final_urls, as: 'finalUrls'
1350
+ property :id, :numeric_string => true, as: 'id'
1351
+ property :last_modified_time, as: 'lastModifiedTime'
1352
+ property :mobile_app_asset, as: 'mobileAppAsset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonMobileAppAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonMobileAppAsset::Representation
1353
+
1354
+ property :resource_name, as: 'resourceName'
1355
+ property :status, as: 'status'
1356
+ property :tracking_url_template, as: 'trackingUrlTemplate'
1357
+ property :type, as: 'type'
1358
+ end
1359
+ end
1360
+
1361
+ class GoogleAdsSearchads360V0ResourcesAssetSet
1362
+ # @private
1363
+ class Representation < Google::Apis::Core::JsonRepresentation
1364
+ property :id, :numeric_string => true, as: 'id'
1365
+ property :resource_name, as: 'resourceName'
1366
+ end
1367
+ end
1368
+
1223
1369
  class GoogleAdsSearchads360V0ResourcesBiddingStrategy
1224
1370
  # @private
1225
1371
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1589,6 +1735,13 @@ module Google
1589
1735
  end
1590
1736
  end
1591
1737
 
1738
+ class GoogleAdsSearchads360V0ServicesListAccessibleCustomersResponse
1739
+ # @private
1740
+ class Representation < Google::Apis::Core::JsonRepresentation
1741
+ collection :resource_names, as: 'resourceNames'
1742
+ end
1743
+ end
1744
+
1592
1745
  class GoogleAdsSearchads360V0ServicesListCustomColumnsResponse
1593
1746
  # @private
1594
1747
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1618,6 +1771,10 @@ module Google
1618
1771
 
1619
1772
  property :age_range_view, as: 'ageRangeView', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAgeRangeView, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAgeRangeView::Representation
1620
1773
 
1774
+ property :asset, as: 'asset', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAsset, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAsset::Representation
1775
+
1776
+ property :asset_set, as: 'assetSet', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAssetSet, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAssetSet::Representation
1777
+
1621
1778
  property :bidding_strategy, as: 'biddingStrategy', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesBiddingStrategy, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesBiddingStrategy::Representation
1622
1779
 
1623
1780
  property :campaign, as: 'campaign', class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesCampaign, decorator: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesCampaign::Representation
@@ -50,6 +50,36 @@ module Google
50
50
  @batch_path = 'batch'
51
51
  end
52
52
 
53
+ # Returns resource names of customers directly accessible by the user
54
+ # authenticating the call. List of thrown errors: [AuthenticationError]() [
55
+ # AuthorizationError]() [HeaderError]() [InternalError]() [QuotaError]() [
56
+ # RequestError]()
57
+ # @param [String] fields
58
+ # Selector specifying which fields to include in a partial response.
59
+ # @param [String] quota_user
60
+ # Available to use for quota purposes for server-side applications. Can be any
61
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
62
+ # @param [Google::Apis::RequestOptions] options
63
+ # Request-specific options
64
+ #
65
+ # @yield [result, err] Result & error if block supplied
66
+ # @yieldparam result [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesListAccessibleCustomersResponse] parsed result object
67
+ # @yieldparam err [StandardError] error object if request failed
68
+ #
69
+ # @return [Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesListAccessibleCustomersResponse]
70
+ #
71
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
72
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
73
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
74
+ def list_customer_accessible_customers(fields: nil, quota_user: nil, options: nil, &block)
75
+ command = make_simple_command(:get, 'v0/customers:listAccessibleCustomers', options)
76
+ command.response_representation = Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesListAccessibleCustomersResponse::Representation
77
+ command.response_class = Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesListAccessibleCustomersResponse
78
+ command.query['fields'] = fields unless fields.nil?
79
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
80
+ execute_or_queue_command(command, &block)
81
+ end
82
+
53
83
  # Returns the requested custom column in full detail.
54
84
  # @param [String] resource_name
55
85
  # Required. The resource name of the custom column to fetch.
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.5.0
4
+ version: 0.7.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: 2023-04-30 00:00:00.000000000 Z
11
+ date: 2023-07-02 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.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-searchads360_v0/v0.7.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: []