adcenter-client 7.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +23 -0
- data/History.txt +6 -0
- data/Manifest.txt +55 -0
- data/README.txt +78 -0
- data/Rakefile.rb +31 -0
- data/TODO +12 -0
- data/bin/gen_wsdl_drivers.rb +26 -0
- data/bin/wsdl.yml +16 -0
- data/lib/AdministrationService.rb +79 -0
- data/lib/AdministrationServiceClient.rb +40 -0
- data/lib/AdministrationServiceDriver.rb +55 -0
- data/lib/AdministrationServiceMappingRegistry.rb +148 -0
- data/lib/CampaignManagementService.rb +3458 -0
- data/lib/CampaignManagementServiceClient.rb +1370 -0
- data/lib/CampaignManagementServiceDriver.rb +719 -0
- data/lib/CampaignManagementServiceMappingRegistry.rb +5107 -0
- data/lib/CustomerBillingService.rb +390 -0
- data/lib/CustomerBillingServiceClient.rb +126 -0
- data/lib/CustomerBillingServiceDriver.rb +95 -0
- data/lib/CustomerBillingServiceMappingRegistry.rb +676 -0
- data/lib/CustomerManagementService.rb +1284 -0
- data/lib/CustomerManagementServiceClient.rb +282 -0
- data/lib/CustomerManagementServiceDriver.rb +175 -0
- data/lib/CustomerManagementServiceMappingRegistry.rb +1471 -0
- data/lib/NotificationManagementClient.rb +89 -0
- data/lib/ReportingService.rb +2121 -0
- data/lib/ReportingServiceClient.rb +42 -0
- data/lib/ReportingServiceDriver.rb +55 -0
- data/lib/ReportingServiceMappingRegistry.rb +3164 -0
- data/lib/SecureDataManagementService.rb +203 -0
- data/lib/SecureDataManagementServiceClient.rb +26 -0
- data/lib/SecureDataManagementServiceDriver.rb +47 -0
- data/lib/SecureDataManagementServiceMappingRegistry.rb +376 -0
- data/lib/adcenter_client.rb +103 -0
- data/lib/adcenter_service.rb +70 -0
- data/lib/administration_service.rb +7 -0
- data/lib/campaign_management_service.rb +7 -0
- data/lib/custom_assertions.rb +5 -0
- data/lib/custom_exceptions.rb +1 -0
- data/lib/customer_billing_service.rb +7 -0
- data/lib/customer_management_service.rb +9 -0
- data/lib/default.rb +636 -0
- data/lib/defaultDriver.rb +63 -0
- data/lib/defaultMappingRegistry.rb +525 -0
- data/lib/notification_management.rb +7 -0
- data/lib/reporting_service.rb +7 -0
- data/lib/secure_data_management_service.rb +7 -0
- data/tasks/doctask.rake +9 -0
- data/tasks/testtask.rake +13 -0
- data/test/adcenter_client_test.rb +13 -0
- data/test/administration_service_test.rb +19 -0
- data/test/customer_management_service_test.rb +20 -0
- data/test/report_service_test.rb +34 -0
- data/test/test_credentials.yml-sample +7 -0
- data/test/test_helper.rb +8 -0
- metadata +188 -0
@@ -0,0 +1,1370 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'CampaignManagementServiceDriver.rb'
|
3
|
+
|
4
|
+
endpoint_url = ARGV.shift
|
5
|
+
obj = ICampaignManagementService.new(endpoint_url)
|
6
|
+
|
7
|
+
# run ruby with -d to see SOAP wiredumps.
|
8
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
9
|
+
|
10
|
+
# SYNOPSIS
|
11
|
+
# UpdateBehavioralBids(parameters)
|
12
|
+
#
|
13
|
+
# ARGS
|
14
|
+
# parameters UpdateBehavioralBidsRequest - {https://adcenter.microsoft.com/v7}UpdateBehavioralBidsRequest
|
15
|
+
#
|
16
|
+
# RETURNS
|
17
|
+
# parameters UpdateBehavioralBidsResponse - {https://adcenter.microsoft.com/v7}UpdateBehavioralBidsResponse
|
18
|
+
#
|
19
|
+
# RAISES
|
20
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
21
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
22
|
+
#
|
23
|
+
parameters = nil
|
24
|
+
puts obj.updateBehavioralBids(parameters)
|
25
|
+
|
26
|
+
# SYNOPSIS
|
27
|
+
# GetCustomSegments(parameters)
|
28
|
+
#
|
29
|
+
# ARGS
|
30
|
+
# parameters GetCustomSegmentsRequest - {https://adcenter.microsoft.com/v7}GetCustomSegmentsRequest
|
31
|
+
#
|
32
|
+
# RETURNS
|
33
|
+
# parameters GetCustomSegmentsResponse - {https://adcenter.microsoft.com/v7}GetCustomSegmentsResponse
|
34
|
+
#
|
35
|
+
# RAISES
|
36
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
37
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
38
|
+
#
|
39
|
+
parameters = nil
|
40
|
+
puts obj.getCustomSegments(parameters)
|
41
|
+
|
42
|
+
# SYNOPSIS
|
43
|
+
# AddSegments(parameters)
|
44
|
+
#
|
45
|
+
# ARGS
|
46
|
+
# parameters AddSegmentsRequest - {https://adcenter.microsoft.com/v7}AddSegmentsRequest
|
47
|
+
#
|
48
|
+
# RETURNS
|
49
|
+
# parameters AddSegmentsResponse - {https://adcenter.microsoft.com/v7}AddSegmentsResponse
|
50
|
+
#
|
51
|
+
# RAISES
|
52
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
53
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
54
|
+
#
|
55
|
+
parameters = nil
|
56
|
+
puts obj.addSegments(parameters)
|
57
|
+
|
58
|
+
# SYNOPSIS
|
59
|
+
# DeleteSegments(parameters)
|
60
|
+
#
|
61
|
+
# ARGS
|
62
|
+
# parameters DeleteSegmentsRequest - {https://adcenter.microsoft.com/v7}DeleteSegmentsRequest
|
63
|
+
#
|
64
|
+
# RETURNS
|
65
|
+
# parameters DeleteSegmentsResponse - {https://adcenter.microsoft.com/v7}DeleteSegmentsResponse
|
66
|
+
#
|
67
|
+
# RAISES
|
68
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
69
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
70
|
+
#
|
71
|
+
parameters = nil
|
72
|
+
puts obj.deleteSegments(parameters)
|
73
|
+
|
74
|
+
# SYNOPSIS
|
75
|
+
# GetSegmentsByIds(parameters)
|
76
|
+
#
|
77
|
+
# ARGS
|
78
|
+
# parameters GetSegmentsByIdsRequest - {https://adcenter.microsoft.com/v7}GetSegmentsByIdsRequest
|
79
|
+
#
|
80
|
+
# RETURNS
|
81
|
+
# parameters GetSegmentsByIdsResponse - {https://adcenter.microsoft.com/v7}GetSegmentsByIdsResponse
|
82
|
+
#
|
83
|
+
# RAISES
|
84
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
85
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
86
|
+
#
|
87
|
+
parameters = nil
|
88
|
+
puts obj.getSegmentsByIds(parameters)
|
89
|
+
|
90
|
+
# SYNOPSIS
|
91
|
+
# GetSegments(parameters)
|
92
|
+
#
|
93
|
+
# ARGS
|
94
|
+
# parameters GetSegmentsRequest - {https://adcenter.microsoft.com/v7}GetSegmentsRequest
|
95
|
+
#
|
96
|
+
# RETURNS
|
97
|
+
# parameters GetSegmentsResponse - {https://adcenter.microsoft.com/v7}GetSegmentsResponse
|
98
|
+
#
|
99
|
+
# RAISES
|
100
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
101
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
102
|
+
#
|
103
|
+
parameters = nil
|
104
|
+
puts obj.getSegments(parameters)
|
105
|
+
|
106
|
+
# SYNOPSIS
|
107
|
+
# SetUsersToSegments(parameters)
|
108
|
+
#
|
109
|
+
# ARGS
|
110
|
+
# parameters SetUsersToSegmentsRequest - {https://adcenter.microsoft.com/v7}SetUsersToSegmentsRequest
|
111
|
+
#
|
112
|
+
# RETURNS
|
113
|
+
# parameters SetUsersToSegmentsResponse - {https://adcenter.microsoft.com/v7}SetUsersToSegmentsResponse
|
114
|
+
#
|
115
|
+
# RAISES
|
116
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
117
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
118
|
+
#
|
119
|
+
parameters = nil
|
120
|
+
puts obj.setUsersToSegments(parameters)
|
121
|
+
|
122
|
+
# SYNOPSIS
|
123
|
+
# DeleteUsersFromSegment(parameters)
|
124
|
+
#
|
125
|
+
# ARGS
|
126
|
+
# parameters DeleteUsersFromSegmentRequest - {https://adcenter.microsoft.com/v7}DeleteUsersFromSegmentRequest
|
127
|
+
#
|
128
|
+
# RETURNS
|
129
|
+
# parameters DeleteUsersFromSegmentResponse - {https://adcenter.microsoft.com/v7}DeleteUsersFromSegmentResponse
|
130
|
+
#
|
131
|
+
# RAISES
|
132
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
133
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
134
|
+
#
|
135
|
+
parameters = nil
|
136
|
+
puts obj.deleteUsersFromSegment(parameters)
|
137
|
+
|
138
|
+
# SYNOPSIS
|
139
|
+
# GetNormalizedStrings(parameters)
|
140
|
+
#
|
141
|
+
# ARGS
|
142
|
+
# parameters GetNormalizedStringsRequest - {https://adcenter.microsoft.com/v7}GetNormalizedStringsRequest
|
143
|
+
#
|
144
|
+
# RETURNS
|
145
|
+
# parameters GetNormalizedStringsResponse - {https://adcenter.microsoft.com/v7}GetNormalizedStringsResponse
|
146
|
+
#
|
147
|
+
# RAISES
|
148
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
149
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
150
|
+
#
|
151
|
+
parameters = nil
|
152
|
+
puts obj.getNormalizedStrings(parameters)
|
153
|
+
|
154
|
+
# SYNOPSIS
|
155
|
+
# GetKeywordEditorialReasonsByIds(parameters)
|
156
|
+
#
|
157
|
+
# ARGS
|
158
|
+
# parameters GetKeywordEditorialReasonsByIdsRequest - {https://adcenter.microsoft.com/v7}GetKeywordEditorialReasonsByIdsRequest
|
159
|
+
#
|
160
|
+
# RETURNS
|
161
|
+
# parameters GetKeywordEditorialReasonsByIdsResponse - {https://adcenter.microsoft.com/v7}GetKeywordEditorialReasonsByIdsResponse
|
162
|
+
#
|
163
|
+
# RAISES
|
164
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
165
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
166
|
+
#
|
167
|
+
parameters = nil
|
168
|
+
puts obj.getKeywordEditorialReasonsByIds(parameters)
|
169
|
+
|
170
|
+
# SYNOPSIS
|
171
|
+
# GetAdEditorialReasonsByIds(parameters)
|
172
|
+
#
|
173
|
+
# ARGS
|
174
|
+
# parameters GetAdEditorialReasonsByIdsRequest - {https://adcenter.microsoft.com/v7}GetAdEditorialReasonsByIdsRequest
|
175
|
+
#
|
176
|
+
# RETURNS
|
177
|
+
# parameters GetAdEditorialReasonsByIdsResponse - {https://adcenter.microsoft.com/v7}GetAdEditorialReasonsByIdsResponse
|
178
|
+
#
|
179
|
+
# RAISES
|
180
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
181
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
182
|
+
#
|
183
|
+
parameters = nil
|
184
|
+
puts obj.getAdEditorialReasonsByIds(parameters)
|
185
|
+
|
186
|
+
# SYNOPSIS
|
187
|
+
# GetNetworksByAdGroupIds(parameters)
|
188
|
+
#
|
189
|
+
# ARGS
|
190
|
+
# parameters GetNetworksByAdGroupIdsRequest - {https://adcenter.microsoft.com/v7}GetNetworksByAdGroupIdsRequest
|
191
|
+
#
|
192
|
+
# RETURNS
|
193
|
+
# parameters GetNetworksByAdGroupIdsResponse - {https://adcenter.microsoft.com/v7}GetNetworksByAdGroupIdsResponse
|
194
|
+
#
|
195
|
+
# RAISES
|
196
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
197
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
198
|
+
#
|
199
|
+
parameters = nil
|
200
|
+
puts obj.getNetworksByAdGroupIds(parameters)
|
201
|
+
|
202
|
+
# SYNOPSIS
|
203
|
+
# SetNetworksToAdGroups(parameters)
|
204
|
+
#
|
205
|
+
# ARGS
|
206
|
+
# parameters SetNetworksToAdGroupsRequest - {https://adcenter.microsoft.com/v7}SetNetworksToAdGroupsRequest
|
207
|
+
#
|
208
|
+
# RETURNS
|
209
|
+
# parameters SetNetworksToAdGroupsResponse - {https://adcenter.microsoft.com/v7}SetNetworksToAdGroupsResponse
|
210
|
+
#
|
211
|
+
# RAISES
|
212
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
213
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
214
|
+
#
|
215
|
+
parameters = nil
|
216
|
+
puts obj.setNetworksToAdGroups(parameters)
|
217
|
+
|
218
|
+
# SYNOPSIS
|
219
|
+
# AddAds(parameters)
|
220
|
+
#
|
221
|
+
# ARGS
|
222
|
+
# parameters AddAdsRequest - {https://adcenter.microsoft.com/v7}AddAdsRequest
|
223
|
+
#
|
224
|
+
# RETURNS
|
225
|
+
# parameters AddAdsResponse - {https://adcenter.microsoft.com/v7}AddAdsResponse
|
226
|
+
#
|
227
|
+
# RAISES
|
228
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
229
|
+
# detail EditorialApiFaultDetail - {https://adcenter.microsoft.com/v7}EditorialApiFaultDetail
|
230
|
+
#
|
231
|
+
parameters = nil
|
232
|
+
puts obj.addAds(parameters)
|
233
|
+
|
234
|
+
# SYNOPSIS
|
235
|
+
# DeleteAds(parameters)
|
236
|
+
#
|
237
|
+
# ARGS
|
238
|
+
# parameters DeleteAdsRequest - {https://adcenter.microsoft.com/v7}DeleteAdsRequest
|
239
|
+
#
|
240
|
+
# RETURNS
|
241
|
+
# parameters DeleteAdsResponse - {https://adcenter.microsoft.com/v7}DeleteAdsResponse
|
242
|
+
#
|
243
|
+
# RAISES
|
244
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
245
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
246
|
+
#
|
247
|
+
parameters = nil
|
248
|
+
puts obj.deleteAds(parameters)
|
249
|
+
|
250
|
+
# SYNOPSIS
|
251
|
+
# GetAdsByEditorialStatus(parameters)
|
252
|
+
#
|
253
|
+
# ARGS
|
254
|
+
# parameters GetAdsByEditorialStatusRequest - {https://adcenter.microsoft.com/v7}GetAdsByEditorialStatusRequest
|
255
|
+
#
|
256
|
+
# RETURNS
|
257
|
+
# parameters GetAdsByEditorialStatusResponse - {https://adcenter.microsoft.com/v7}GetAdsByEditorialStatusResponse
|
258
|
+
#
|
259
|
+
# RAISES
|
260
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
261
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
262
|
+
#
|
263
|
+
parameters = nil
|
264
|
+
puts obj.getAdsByEditorialStatus(parameters)
|
265
|
+
|
266
|
+
# SYNOPSIS
|
267
|
+
# GetAdsByIds(parameters)
|
268
|
+
#
|
269
|
+
# ARGS
|
270
|
+
# parameters GetAdsByIdsRequest - {https://adcenter.microsoft.com/v7}GetAdsByIdsRequest
|
271
|
+
#
|
272
|
+
# RETURNS
|
273
|
+
# parameters GetAdsByIdsResponse - {https://adcenter.microsoft.com/v7}GetAdsByIdsResponse
|
274
|
+
#
|
275
|
+
# RAISES
|
276
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
277
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
278
|
+
#
|
279
|
+
parameters = nil
|
280
|
+
puts obj.getAdsByIds(parameters)
|
281
|
+
|
282
|
+
# SYNOPSIS
|
283
|
+
# GetAdsByAdGroupId(parameters)
|
284
|
+
#
|
285
|
+
# ARGS
|
286
|
+
# parameters GetAdsByAdGroupIdRequest - {https://adcenter.microsoft.com/v7}GetAdsByAdGroupIdRequest
|
287
|
+
#
|
288
|
+
# RETURNS
|
289
|
+
# parameters GetAdsByAdGroupIdResponse - {https://adcenter.microsoft.com/v7}GetAdsByAdGroupIdResponse
|
290
|
+
#
|
291
|
+
# RAISES
|
292
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
293
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
294
|
+
#
|
295
|
+
parameters = nil
|
296
|
+
puts obj.getAdsByAdGroupId(parameters)
|
297
|
+
|
298
|
+
# SYNOPSIS
|
299
|
+
# UpdateAds(parameters)
|
300
|
+
#
|
301
|
+
# ARGS
|
302
|
+
# parameters UpdateAdsRequest - {https://adcenter.microsoft.com/v7}UpdateAdsRequest
|
303
|
+
#
|
304
|
+
# RETURNS
|
305
|
+
# parameters UpdateAdsResponse - {https://adcenter.microsoft.com/v7}UpdateAdsResponse
|
306
|
+
#
|
307
|
+
# RAISES
|
308
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
309
|
+
# detail EditorialApiFaultDetail - {https://adcenter.microsoft.com/v7}EditorialApiFaultDetail
|
310
|
+
#
|
311
|
+
parameters = nil
|
312
|
+
puts obj.updateAds(parameters)
|
313
|
+
|
314
|
+
# SYNOPSIS
|
315
|
+
# PauseAds(parameters)
|
316
|
+
#
|
317
|
+
# ARGS
|
318
|
+
# parameters PauseAdsRequest - {https://adcenter.microsoft.com/v7}PauseAdsRequest
|
319
|
+
#
|
320
|
+
# RETURNS
|
321
|
+
# parameters PauseAdsResponse - {https://adcenter.microsoft.com/v7}PauseAdsResponse
|
322
|
+
#
|
323
|
+
# RAISES
|
324
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
325
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
326
|
+
#
|
327
|
+
parameters = nil
|
328
|
+
puts obj.pauseAds(parameters)
|
329
|
+
|
330
|
+
# SYNOPSIS
|
331
|
+
# ResumeAds(parameters)
|
332
|
+
#
|
333
|
+
# ARGS
|
334
|
+
# parameters ResumeAdsRequest - {https://adcenter.microsoft.com/v7}ResumeAdsRequest
|
335
|
+
#
|
336
|
+
# RETURNS
|
337
|
+
# parameters ResumeAdsResponse - {https://adcenter.microsoft.com/v7}ResumeAdsResponse
|
338
|
+
#
|
339
|
+
# RAISES
|
340
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
341
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
342
|
+
#
|
343
|
+
parameters = nil
|
344
|
+
puts obj.resumeAds(parameters)
|
345
|
+
|
346
|
+
# SYNOPSIS
|
347
|
+
# AddKeywords(parameters)
|
348
|
+
#
|
349
|
+
# ARGS
|
350
|
+
# parameters AddKeywordsRequest - {https://adcenter.microsoft.com/v7}AddKeywordsRequest
|
351
|
+
#
|
352
|
+
# RETURNS
|
353
|
+
# parameters AddKeywordsResponse - {https://adcenter.microsoft.com/v7}AddKeywordsResponse
|
354
|
+
#
|
355
|
+
# RAISES
|
356
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
357
|
+
# detail EditorialApiFaultDetail - {https://adcenter.microsoft.com/v7}EditorialApiFaultDetail
|
358
|
+
#
|
359
|
+
parameters = nil
|
360
|
+
puts obj.addKeywords(parameters)
|
361
|
+
|
362
|
+
# SYNOPSIS
|
363
|
+
# DeleteKeywords(parameters)
|
364
|
+
#
|
365
|
+
# ARGS
|
366
|
+
# parameters DeleteKeywordsRequest - {https://adcenter.microsoft.com/v7}DeleteKeywordsRequest
|
367
|
+
#
|
368
|
+
# RETURNS
|
369
|
+
# parameters DeleteKeywordsResponse - {https://adcenter.microsoft.com/v7}DeleteKeywordsResponse
|
370
|
+
#
|
371
|
+
# RAISES
|
372
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
373
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
374
|
+
#
|
375
|
+
parameters = nil
|
376
|
+
puts obj.deleteKeywords(parameters)
|
377
|
+
|
378
|
+
# SYNOPSIS
|
379
|
+
# GetKeywordsByEditorialStatus(parameters)
|
380
|
+
#
|
381
|
+
# ARGS
|
382
|
+
# parameters GetKeywordsByEditorialStatusRequest - {https://adcenter.microsoft.com/v7}GetKeywordsByEditorialStatusRequest
|
383
|
+
#
|
384
|
+
# RETURNS
|
385
|
+
# parameters GetKeywordsByEditorialStatusResponse - {https://adcenter.microsoft.com/v7}GetKeywordsByEditorialStatusResponse
|
386
|
+
#
|
387
|
+
# RAISES
|
388
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
389
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
390
|
+
#
|
391
|
+
parameters = nil
|
392
|
+
puts obj.getKeywordsByEditorialStatus(parameters)
|
393
|
+
|
394
|
+
# SYNOPSIS
|
395
|
+
# GetKeywordsByIds(parameters)
|
396
|
+
#
|
397
|
+
# ARGS
|
398
|
+
# parameters GetKeywordsByIdsRequest - {https://adcenter.microsoft.com/v7}GetKeywordsByIdsRequest
|
399
|
+
#
|
400
|
+
# RETURNS
|
401
|
+
# parameters GetKeywordsByIdsResponse - {https://adcenter.microsoft.com/v7}GetKeywordsByIdsResponse
|
402
|
+
#
|
403
|
+
# RAISES
|
404
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
405
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
406
|
+
#
|
407
|
+
parameters = nil
|
408
|
+
puts obj.getKeywordsByIds(parameters)
|
409
|
+
|
410
|
+
# SYNOPSIS
|
411
|
+
# GetKeywordsByAdGroupId(parameters)
|
412
|
+
#
|
413
|
+
# ARGS
|
414
|
+
# parameters GetKeywordsByAdGroupIdRequest - {https://adcenter.microsoft.com/v7}GetKeywordsByAdGroupIdRequest
|
415
|
+
#
|
416
|
+
# RETURNS
|
417
|
+
# parameters GetKeywordsByAdGroupIdResponse - {https://adcenter.microsoft.com/v7}GetKeywordsByAdGroupIdResponse
|
418
|
+
#
|
419
|
+
# RAISES
|
420
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
421
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
422
|
+
#
|
423
|
+
parameters = nil
|
424
|
+
puts obj.getKeywordsByAdGroupId(parameters)
|
425
|
+
|
426
|
+
# SYNOPSIS
|
427
|
+
# PauseKeywords(parameters)
|
428
|
+
#
|
429
|
+
# ARGS
|
430
|
+
# parameters PauseKeywordsRequest - {https://adcenter.microsoft.com/v7}PauseKeywordsRequest
|
431
|
+
#
|
432
|
+
# RETURNS
|
433
|
+
# parameters PauseKeywordsResponse - {https://adcenter.microsoft.com/v7}PauseKeywordsResponse
|
434
|
+
#
|
435
|
+
# RAISES
|
436
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
437
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
438
|
+
#
|
439
|
+
parameters = nil
|
440
|
+
puts obj.pauseKeywords(parameters)
|
441
|
+
|
442
|
+
# SYNOPSIS
|
443
|
+
# ResumeKeywords(parameters)
|
444
|
+
#
|
445
|
+
# ARGS
|
446
|
+
# parameters ResumeKeywordsRequest - {https://adcenter.microsoft.com/v7}ResumeKeywordsRequest
|
447
|
+
#
|
448
|
+
# RETURNS
|
449
|
+
# parameters ResumeKeywordsResponse - {https://adcenter.microsoft.com/v7}ResumeKeywordsResponse
|
450
|
+
#
|
451
|
+
# RAISES
|
452
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
453
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
454
|
+
#
|
455
|
+
parameters = nil
|
456
|
+
puts obj.resumeKeywords(parameters)
|
457
|
+
|
458
|
+
# SYNOPSIS
|
459
|
+
# UpdateKeywords(parameters)
|
460
|
+
#
|
461
|
+
# ARGS
|
462
|
+
# parameters UpdateKeywordsRequest - {https://adcenter.microsoft.com/v7}UpdateKeywordsRequest
|
463
|
+
#
|
464
|
+
# RETURNS
|
465
|
+
# parameters UpdateKeywordsResponse - {https://adcenter.microsoft.com/v7}UpdateKeywordsResponse
|
466
|
+
#
|
467
|
+
# RAISES
|
468
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
469
|
+
# detail EditorialApiFaultDetail - {https://adcenter.microsoft.com/v7}EditorialApiFaultDetail
|
470
|
+
#
|
471
|
+
parameters = nil
|
472
|
+
puts obj.updateKeywords(parameters)
|
473
|
+
|
474
|
+
# SYNOPSIS
|
475
|
+
# GetKeywordEstimatesByBids(parameters)
|
476
|
+
#
|
477
|
+
# ARGS
|
478
|
+
# parameters GetKeywordEstimatesByBidsRequest - {https://adcenter.microsoft.com/v7}GetKeywordEstimatesByBidsRequest
|
479
|
+
#
|
480
|
+
# RETURNS
|
481
|
+
# parameters GetKeywordEstimatesByBidsResponse - {https://adcenter.microsoft.com/v7}GetKeywordEstimatesByBidsResponse
|
482
|
+
#
|
483
|
+
# RAISES
|
484
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
485
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
486
|
+
#
|
487
|
+
parameters = nil
|
488
|
+
puts obj.getKeywordEstimatesByBids(parameters)
|
489
|
+
|
490
|
+
# SYNOPSIS
|
491
|
+
# AddBusinesses(parameters)
|
492
|
+
#
|
493
|
+
# ARGS
|
494
|
+
# parameters AddBusinessesRequest - {https://adcenter.microsoft.com/v7}AddBusinessesRequest
|
495
|
+
#
|
496
|
+
# RETURNS
|
497
|
+
# parameters AddBusinessesResponse - {https://adcenter.microsoft.com/v7}AddBusinessesResponse
|
498
|
+
#
|
499
|
+
# RAISES
|
500
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
501
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
502
|
+
#
|
503
|
+
parameters = nil
|
504
|
+
puts obj.addBusinesses(parameters)
|
505
|
+
|
506
|
+
# SYNOPSIS
|
507
|
+
# UpdateBusinesses(parameters)
|
508
|
+
#
|
509
|
+
# ARGS
|
510
|
+
# parameters UpdateBusinessesRequest - {https://adcenter.microsoft.com/v7}UpdateBusinessesRequest
|
511
|
+
#
|
512
|
+
# RETURNS
|
513
|
+
# parameters UpdateBusinessesResponse - {https://adcenter.microsoft.com/v7}UpdateBusinessesResponse
|
514
|
+
#
|
515
|
+
# RAISES
|
516
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
517
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
518
|
+
#
|
519
|
+
parameters = nil
|
520
|
+
puts obj.updateBusinesses(parameters)
|
521
|
+
|
522
|
+
# SYNOPSIS
|
523
|
+
# DeleteBusinesses(parameters)
|
524
|
+
#
|
525
|
+
# ARGS
|
526
|
+
# parameters DeleteBusinessesRequest - {https://adcenter.microsoft.com/v7}DeleteBusinessesRequest
|
527
|
+
#
|
528
|
+
# RETURNS
|
529
|
+
# parameters DeleteBusinessesResponse - {https://adcenter.microsoft.com/v7}DeleteBusinessesResponse
|
530
|
+
#
|
531
|
+
# RAISES
|
532
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
533
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
534
|
+
#
|
535
|
+
parameters = nil
|
536
|
+
puts obj.deleteBusinesses(parameters)
|
537
|
+
|
538
|
+
# SYNOPSIS
|
539
|
+
# GetBusinessesInfo(parameters)
|
540
|
+
#
|
541
|
+
# ARGS
|
542
|
+
# parameters GetBusinessesInfoRequest - {https://adcenter.microsoft.com/v7}GetBusinessesInfoRequest
|
543
|
+
#
|
544
|
+
# RETURNS
|
545
|
+
# parameters GetBusinessesInfoResponse - {https://adcenter.microsoft.com/v7}GetBusinessesInfoResponse
|
546
|
+
#
|
547
|
+
# RAISES
|
548
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
549
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
550
|
+
#
|
551
|
+
parameters = nil
|
552
|
+
puts obj.getBusinessesInfo(parameters)
|
553
|
+
|
554
|
+
# SYNOPSIS
|
555
|
+
# GetBusinessesByIds(parameters)
|
556
|
+
#
|
557
|
+
# ARGS
|
558
|
+
# parameters GetBusinessesByIdsRequest - {https://adcenter.microsoft.com/v7}GetBusinessesByIdsRequest
|
559
|
+
#
|
560
|
+
# RETURNS
|
561
|
+
# parameters GetBusinessesByIdsResponse - {https://adcenter.microsoft.com/v7}GetBusinessesByIdsResponse
|
562
|
+
#
|
563
|
+
# RAISES
|
564
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
565
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
566
|
+
#
|
567
|
+
parameters = nil
|
568
|
+
puts obj.getBusinessesByIds(parameters)
|
569
|
+
|
570
|
+
# SYNOPSIS
|
571
|
+
# AddSitePlacements(parameters)
|
572
|
+
#
|
573
|
+
# ARGS
|
574
|
+
# parameters AddSitePlacementsRequest - {https://adcenter.microsoft.com/v7}AddSitePlacementsRequest
|
575
|
+
#
|
576
|
+
# RETURNS
|
577
|
+
# parameters AddSitePlacementsResponse - {https://adcenter.microsoft.com/v7}AddSitePlacementsResponse
|
578
|
+
#
|
579
|
+
# RAISES
|
580
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
581
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
582
|
+
#
|
583
|
+
parameters = nil
|
584
|
+
puts obj.addSitePlacements(parameters)
|
585
|
+
|
586
|
+
# SYNOPSIS
|
587
|
+
# DeleteSitePlacements(parameters)
|
588
|
+
#
|
589
|
+
# ARGS
|
590
|
+
# parameters DeleteSitePlacementsRequest - {https://adcenter.microsoft.com/v7}DeleteSitePlacementsRequest
|
591
|
+
#
|
592
|
+
# RETURNS
|
593
|
+
# parameters DeleteSitePlacementsResponse - {https://adcenter.microsoft.com/v7}DeleteSitePlacementsResponse
|
594
|
+
#
|
595
|
+
# RAISES
|
596
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
597
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
598
|
+
#
|
599
|
+
parameters = nil
|
600
|
+
puts obj.deleteSitePlacements(parameters)
|
601
|
+
|
602
|
+
# SYNOPSIS
|
603
|
+
# GetSitePlacementsByIds(parameters)
|
604
|
+
#
|
605
|
+
# ARGS
|
606
|
+
# parameters GetSitePlacementsByIdsRequest - {https://adcenter.microsoft.com/v7}GetSitePlacementsByIdsRequest
|
607
|
+
#
|
608
|
+
# RETURNS
|
609
|
+
# parameters GetSitePlacementsByIdsResponse - {https://adcenter.microsoft.com/v7}GetSitePlacementsByIdsResponse
|
610
|
+
#
|
611
|
+
# RAISES
|
612
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
613
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
614
|
+
#
|
615
|
+
parameters = nil
|
616
|
+
puts obj.getSitePlacementsByIds(parameters)
|
617
|
+
|
618
|
+
# SYNOPSIS
|
619
|
+
# GetSitePlacementsByAdGroupId(parameters)
|
620
|
+
#
|
621
|
+
# ARGS
|
622
|
+
# parameters GetSitePlacementsByAdGroupIdRequest - {https://adcenter.microsoft.com/v7}GetSitePlacementsByAdGroupIdRequest
|
623
|
+
#
|
624
|
+
# RETURNS
|
625
|
+
# parameters GetSitePlacementsByAdGroupIdResponse - {https://adcenter.microsoft.com/v7}GetSitePlacementsByAdGroupIdResponse
|
626
|
+
#
|
627
|
+
# RAISES
|
628
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
629
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
630
|
+
#
|
631
|
+
parameters = nil
|
632
|
+
puts obj.getSitePlacementsByAdGroupId(parameters)
|
633
|
+
|
634
|
+
# SYNOPSIS
|
635
|
+
# PauseSitePlacements(parameters)
|
636
|
+
#
|
637
|
+
# ARGS
|
638
|
+
# parameters PauseSitePlacementsRequest - {https://adcenter.microsoft.com/v7}PauseSitePlacementsRequest
|
639
|
+
#
|
640
|
+
# RETURNS
|
641
|
+
# parameters PauseSitePlacementsResponse - {https://adcenter.microsoft.com/v7}PauseSitePlacementsResponse
|
642
|
+
#
|
643
|
+
# RAISES
|
644
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
645
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
646
|
+
#
|
647
|
+
parameters = nil
|
648
|
+
puts obj.pauseSitePlacements(parameters)
|
649
|
+
|
650
|
+
# SYNOPSIS
|
651
|
+
# ResumeSitePlacements(parameters)
|
652
|
+
#
|
653
|
+
# ARGS
|
654
|
+
# parameters ResumeSitePlacementsRequest - {https://adcenter.microsoft.com/v7}ResumeSitePlacementsRequest
|
655
|
+
#
|
656
|
+
# RETURNS
|
657
|
+
# parameters ResumeSitePlacementsResponse - {https://adcenter.microsoft.com/v7}ResumeSitePlacementsResponse
|
658
|
+
#
|
659
|
+
# RAISES
|
660
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
661
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
662
|
+
#
|
663
|
+
parameters = nil
|
664
|
+
puts obj.resumeSitePlacements(parameters)
|
665
|
+
|
666
|
+
# SYNOPSIS
|
667
|
+
# UpdateSitePlacements(parameters)
|
668
|
+
#
|
669
|
+
# ARGS
|
670
|
+
# parameters UpdateSitePlacementsRequest - {https://adcenter.microsoft.com/v7}UpdateSitePlacementsRequest
|
671
|
+
#
|
672
|
+
# RETURNS
|
673
|
+
# parameters UpdateSitePlacementsResponse - {https://adcenter.microsoft.com/v7}UpdateSitePlacementsResponse
|
674
|
+
#
|
675
|
+
# RAISES
|
676
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
677
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
678
|
+
#
|
679
|
+
parameters = nil
|
680
|
+
puts obj.updateSitePlacements(parameters)
|
681
|
+
|
682
|
+
# SYNOPSIS
|
683
|
+
# GetPlacementDetailsForUrls(parameters)
|
684
|
+
#
|
685
|
+
# ARGS
|
686
|
+
# parameters GetPlacementDetailsForUrlsRequest - {https://adcenter.microsoft.com/v7}GetPlacementDetailsForUrlsRequest
|
687
|
+
#
|
688
|
+
# RETURNS
|
689
|
+
# parameters GetPlacementDetailsForUrlsResponse - {https://adcenter.microsoft.com/v7}GetPlacementDetailsForUrlsResponse
|
690
|
+
#
|
691
|
+
# RAISES
|
692
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
693
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
694
|
+
#
|
695
|
+
parameters = nil
|
696
|
+
puts obj.getPlacementDetailsForUrls(parameters)
|
697
|
+
|
698
|
+
# SYNOPSIS
|
699
|
+
# AddBehavioralBids(parameters)
|
700
|
+
#
|
701
|
+
# ARGS
|
702
|
+
# parameters AddBehavioralBidsRequest - {https://adcenter.microsoft.com/v7}AddBehavioralBidsRequest
|
703
|
+
#
|
704
|
+
# RETURNS
|
705
|
+
# parameters AddBehavioralBidsResponse - {https://adcenter.microsoft.com/v7}AddBehavioralBidsResponse
|
706
|
+
#
|
707
|
+
# RAISES
|
708
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
709
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
710
|
+
#
|
711
|
+
parameters = nil
|
712
|
+
puts obj.addBehavioralBids(parameters)
|
713
|
+
|
714
|
+
# SYNOPSIS
|
715
|
+
# DeleteBehavioralBids(parameters)
|
716
|
+
#
|
717
|
+
# ARGS
|
718
|
+
# parameters DeleteBehavioralBidsRequest - {https://adcenter.microsoft.com/v7}DeleteBehavioralBidsRequest
|
719
|
+
#
|
720
|
+
# RETURNS
|
721
|
+
# parameters DeleteBehavioralBidsResponse - {https://adcenter.microsoft.com/v7}DeleteBehavioralBidsResponse
|
722
|
+
#
|
723
|
+
# RAISES
|
724
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
725
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
726
|
+
#
|
727
|
+
parameters = nil
|
728
|
+
puts obj.deleteBehavioralBids(parameters)
|
729
|
+
|
730
|
+
# SYNOPSIS
|
731
|
+
# GetBehavioralBidsByIds(parameters)
|
732
|
+
#
|
733
|
+
# ARGS
|
734
|
+
# parameters GetBehavioralBidsByIdsRequest - {https://adcenter.microsoft.com/v7}GetBehavioralBidsByIdsRequest
|
735
|
+
#
|
736
|
+
# RETURNS
|
737
|
+
# parameters GetBehavioralBidsByIdsResponse - {https://adcenter.microsoft.com/v7}GetBehavioralBidsByIdsResponse
|
738
|
+
#
|
739
|
+
# RAISES
|
740
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
741
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
742
|
+
#
|
743
|
+
parameters = nil
|
744
|
+
puts obj.getBehavioralBidsByIds(parameters)
|
745
|
+
|
746
|
+
# SYNOPSIS
|
747
|
+
# GetBehavioralBidsByAdGroupId(parameters)
|
748
|
+
#
|
749
|
+
# ARGS
|
750
|
+
# parameters GetBehavioralBidsByAdGroupIdRequest - {https://adcenter.microsoft.com/v7}GetBehavioralBidsByAdGroupIdRequest
|
751
|
+
#
|
752
|
+
# RETURNS
|
753
|
+
# parameters GetBehavioralBidsByAdGroupIdResponse - {https://adcenter.microsoft.com/v7}GetBehavioralBidsByAdGroupIdResponse
|
754
|
+
#
|
755
|
+
# RAISES
|
756
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
757
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
758
|
+
#
|
759
|
+
parameters = nil
|
760
|
+
puts obj.getBehavioralBidsByAdGroupId(parameters)
|
761
|
+
|
762
|
+
# SYNOPSIS
|
763
|
+
# PauseBehavioralBids(parameters)
|
764
|
+
#
|
765
|
+
# ARGS
|
766
|
+
# parameters PauseBehavioralBidsRequest - {https://adcenter.microsoft.com/v7}PauseBehavioralBidsRequest
|
767
|
+
#
|
768
|
+
# RETURNS
|
769
|
+
# parameters PauseBehavioralBidsResponse - {https://adcenter.microsoft.com/v7}PauseBehavioralBidsResponse
|
770
|
+
#
|
771
|
+
# RAISES
|
772
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
773
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
774
|
+
#
|
775
|
+
parameters = nil
|
776
|
+
puts obj.pauseBehavioralBids(parameters)
|
777
|
+
|
778
|
+
# SYNOPSIS
|
779
|
+
# ResumeBehavioralBids(parameters)
|
780
|
+
#
|
781
|
+
# ARGS
|
782
|
+
# parameters ResumeBehavioralBidsRequest - {https://adcenter.microsoft.com/v7}ResumeBehavioralBidsRequest
|
783
|
+
#
|
784
|
+
# RETURNS
|
785
|
+
# parameters ResumeBehavioralBidsResponse - {https://adcenter.microsoft.com/v7}ResumeBehavioralBidsResponse
|
786
|
+
#
|
787
|
+
# RAISES
|
788
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
789
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
790
|
+
#
|
791
|
+
parameters = nil
|
792
|
+
puts obj.resumeBehavioralBids(parameters)
|
793
|
+
|
794
|
+
# SYNOPSIS
|
795
|
+
# AddCampaigns(parameters)
|
796
|
+
#
|
797
|
+
# ARGS
|
798
|
+
# parameters AddCampaignsRequest - {https://adcenter.microsoft.com/v7}AddCampaignsRequest
|
799
|
+
#
|
800
|
+
# RETURNS
|
801
|
+
# parameters AddCampaignsResponse - {https://adcenter.microsoft.com/v7}AddCampaignsResponse
|
802
|
+
#
|
803
|
+
# RAISES
|
804
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
805
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
806
|
+
#
|
807
|
+
parameters = nil
|
808
|
+
puts obj.addCampaigns(parameters)
|
809
|
+
|
810
|
+
# SYNOPSIS
|
811
|
+
# GetCampaignsByAccountId(parameters)
|
812
|
+
#
|
813
|
+
# ARGS
|
814
|
+
# parameters GetCampaignsByAccountIdRequest - {https://adcenter.microsoft.com/v7}GetCampaignsByAccountIdRequest
|
815
|
+
#
|
816
|
+
# RETURNS
|
817
|
+
# parameters GetCampaignsByAccountIdResponse - {https://adcenter.microsoft.com/v7}GetCampaignsByAccountIdResponse
|
818
|
+
#
|
819
|
+
# RAISES
|
820
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
821
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
822
|
+
#
|
823
|
+
parameters = nil
|
824
|
+
puts obj.getCampaignsByAccountId(parameters)
|
825
|
+
|
826
|
+
# SYNOPSIS
|
827
|
+
# GetCampaignsByIds(parameters)
|
828
|
+
#
|
829
|
+
# ARGS
|
830
|
+
# parameters GetCampaignsByIdsRequest - {https://adcenter.microsoft.com/v7}GetCampaignsByIdsRequest
|
831
|
+
#
|
832
|
+
# RETURNS
|
833
|
+
# parameters GetCampaignsByIdsResponse - {https://adcenter.microsoft.com/v7}GetCampaignsByIdsResponse
|
834
|
+
#
|
835
|
+
# RAISES
|
836
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
837
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
838
|
+
#
|
839
|
+
parameters = nil
|
840
|
+
puts obj.getCampaignsByIds(parameters)
|
841
|
+
|
842
|
+
# SYNOPSIS
|
843
|
+
# PauseCampaigns(parameters)
|
844
|
+
#
|
845
|
+
# ARGS
|
846
|
+
# parameters PauseCampaignsRequest - {https://adcenter.microsoft.com/v7}PauseCampaignsRequest
|
847
|
+
#
|
848
|
+
# RETURNS
|
849
|
+
# parameters PauseCampaignsResponse - {https://adcenter.microsoft.com/v7}PauseCampaignsResponse
|
850
|
+
#
|
851
|
+
# RAISES
|
852
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
853
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
854
|
+
#
|
855
|
+
parameters = nil
|
856
|
+
puts obj.pauseCampaigns(parameters)
|
857
|
+
|
858
|
+
# SYNOPSIS
|
859
|
+
# ResumeCampaigns(parameters)
|
860
|
+
#
|
861
|
+
# ARGS
|
862
|
+
# parameters ResumeCampaignsRequest - {https://adcenter.microsoft.com/v7}ResumeCampaignsRequest
|
863
|
+
#
|
864
|
+
# RETURNS
|
865
|
+
# parameters ResumeCampaignsResponse - {https://adcenter.microsoft.com/v7}ResumeCampaignsResponse
|
866
|
+
#
|
867
|
+
# RAISES
|
868
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
869
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
870
|
+
#
|
871
|
+
parameters = nil
|
872
|
+
puts obj.resumeCampaigns(parameters)
|
873
|
+
|
874
|
+
# SYNOPSIS
|
875
|
+
# DeleteCampaigns(parameters)
|
876
|
+
#
|
877
|
+
# ARGS
|
878
|
+
# parameters DeleteCampaignsRequest - {https://adcenter.microsoft.com/v7}DeleteCampaignsRequest
|
879
|
+
#
|
880
|
+
# RETURNS
|
881
|
+
# parameters DeleteCampaignsResponse - {https://adcenter.microsoft.com/v7}DeleteCampaignsResponse
|
882
|
+
#
|
883
|
+
# RAISES
|
884
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
885
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
886
|
+
#
|
887
|
+
parameters = nil
|
888
|
+
puts obj.deleteCampaigns(parameters)
|
889
|
+
|
890
|
+
# SYNOPSIS
|
891
|
+
# UpdateCampaigns(parameters)
|
892
|
+
#
|
893
|
+
# ARGS
|
894
|
+
# parameters UpdateCampaignsRequest - {https://adcenter.microsoft.com/v7}UpdateCampaignsRequest
|
895
|
+
#
|
896
|
+
# RETURNS
|
897
|
+
# parameters UpdateCampaignsResponse - {https://adcenter.microsoft.com/v7}UpdateCampaignsResponse
|
898
|
+
#
|
899
|
+
# RAISES
|
900
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
901
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
902
|
+
#
|
903
|
+
parameters = nil
|
904
|
+
puts obj.updateCampaigns(parameters)
|
905
|
+
|
906
|
+
# SYNOPSIS
|
907
|
+
# GetCampaignsInfoByAccountId(parameters)
|
908
|
+
#
|
909
|
+
# ARGS
|
910
|
+
# parameters GetCampaignsInfoByAccountIdRequest - {https://adcenter.microsoft.com/v7}GetCampaignsInfoByAccountIdRequest
|
911
|
+
#
|
912
|
+
# RETURNS
|
913
|
+
# parameters GetCampaignsInfoByAccountIdResponse - {https://adcenter.microsoft.com/v7}GetCampaignsInfoByAccountIdResponse
|
914
|
+
#
|
915
|
+
# RAISES
|
916
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
917
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
918
|
+
#
|
919
|
+
parameters = nil
|
920
|
+
puts obj.getCampaignsInfoByAccountId(parameters)
|
921
|
+
|
922
|
+
# SYNOPSIS
|
923
|
+
# GetNegativeKeywordsByCampaignIds(parameters)
|
924
|
+
#
|
925
|
+
# ARGS
|
926
|
+
# parameters GetNegativeKeywordsByCampaignIdsRequest - {https://adcenter.microsoft.com/v7}GetNegativeKeywordsByCampaignIdsRequest
|
927
|
+
#
|
928
|
+
# RETURNS
|
929
|
+
# parameters GetNegativeKeywordsByCampaignIdsResponse - {https://adcenter.microsoft.com/v7}GetNegativeKeywordsByCampaignIdsResponse
|
930
|
+
#
|
931
|
+
# RAISES
|
932
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
933
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
934
|
+
#
|
935
|
+
parameters = nil
|
936
|
+
puts obj.getNegativeKeywordsByCampaignIds(parameters)
|
937
|
+
|
938
|
+
# SYNOPSIS
|
939
|
+
# SetNegativeKeywordsToCampaigns(parameters)
|
940
|
+
#
|
941
|
+
# ARGS
|
942
|
+
# parameters SetNegativeKeywordsToCampaignsRequest - {https://adcenter.microsoft.com/v7}SetNegativeKeywordsToCampaignsRequest
|
943
|
+
#
|
944
|
+
# RETURNS
|
945
|
+
# parameters SetNegativeKeywordsToCampaignsResponse - {https://adcenter.microsoft.com/v7}SetNegativeKeywordsToCampaignsResponse
|
946
|
+
#
|
947
|
+
# RAISES
|
948
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
949
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
950
|
+
#
|
951
|
+
parameters = nil
|
952
|
+
puts obj.setNegativeKeywordsToCampaigns(parameters)
|
953
|
+
|
954
|
+
# SYNOPSIS
|
955
|
+
# AddAdGroups(parameters)
|
956
|
+
#
|
957
|
+
# ARGS
|
958
|
+
# parameters AddAdGroupsRequest - {https://adcenter.microsoft.com/v7}AddAdGroupsRequest
|
959
|
+
#
|
960
|
+
# RETURNS
|
961
|
+
# parameters AddAdGroupsResponse - {https://adcenter.microsoft.com/v7}AddAdGroupsResponse
|
962
|
+
#
|
963
|
+
# RAISES
|
964
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
965
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
966
|
+
#
|
967
|
+
parameters = nil
|
968
|
+
puts obj.addAdGroups(parameters)
|
969
|
+
|
970
|
+
# SYNOPSIS
|
971
|
+
# DeleteAdGroups(parameters)
|
972
|
+
#
|
973
|
+
# ARGS
|
974
|
+
# parameters DeleteAdGroupsRequest - {https://adcenter.microsoft.com/v7}DeleteAdGroupsRequest
|
975
|
+
#
|
976
|
+
# RETURNS
|
977
|
+
# parameters DeleteAdGroupsResponse - {https://adcenter.microsoft.com/v7}DeleteAdGroupsResponse
|
978
|
+
#
|
979
|
+
# RAISES
|
980
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
981
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
982
|
+
#
|
983
|
+
parameters = nil
|
984
|
+
puts obj.deleteAdGroups(parameters)
|
985
|
+
|
986
|
+
# SYNOPSIS
|
987
|
+
# GetAdGroupsByIds(parameters)
|
988
|
+
#
|
989
|
+
# ARGS
|
990
|
+
# parameters GetAdGroupsByIdsRequest - {https://adcenter.microsoft.com/v7}GetAdGroupsByIdsRequest
|
991
|
+
#
|
992
|
+
# RETURNS
|
993
|
+
# parameters GetAdGroupsByIdsResponse - {https://adcenter.microsoft.com/v7}GetAdGroupsByIdsResponse
|
994
|
+
#
|
995
|
+
# RAISES
|
996
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
997
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
998
|
+
#
|
999
|
+
parameters = nil
|
1000
|
+
puts obj.getAdGroupsByIds(parameters)
|
1001
|
+
|
1002
|
+
# SYNOPSIS
|
1003
|
+
# GetAdGroupsByCampaignId(parameters)
|
1004
|
+
#
|
1005
|
+
# ARGS
|
1006
|
+
# parameters GetAdGroupsByCampaignIdRequest - {https://adcenter.microsoft.com/v7}GetAdGroupsByCampaignIdRequest
|
1007
|
+
#
|
1008
|
+
# RETURNS
|
1009
|
+
# parameters GetAdGroupsByCampaignIdResponse - {https://adcenter.microsoft.com/v7}GetAdGroupsByCampaignIdResponse
|
1010
|
+
#
|
1011
|
+
# RAISES
|
1012
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1013
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1014
|
+
#
|
1015
|
+
parameters = nil
|
1016
|
+
puts obj.getAdGroupsByCampaignId(parameters)
|
1017
|
+
|
1018
|
+
# SYNOPSIS
|
1019
|
+
# PauseAdGroups(parameters)
|
1020
|
+
#
|
1021
|
+
# ARGS
|
1022
|
+
# parameters PauseAdGroupsRequest - {https://adcenter.microsoft.com/v7}PauseAdGroupsRequest
|
1023
|
+
#
|
1024
|
+
# RETURNS
|
1025
|
+
# parameters PauseAdGroupsResponse - {https://adcenter.microsoft.com/v7}PauseAdGroupsResponse
|
1026
|
+
#
|
1027
|
+
# RAISES
|
1028
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1029
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1030
|
+
#
|
1031
|
+
parameters = nil
|
1032
|
+
puts obj.pauseAdGroups(parameters)
|
1033
|
+
|
1034
|
+
# SYNOPSIS
|
1035
|
+
# ResumeAdGroups(parameters)
|
1036
|
+
#
|
1037
|
+
# ARGS
|
1038
|
+
# parameters ResumeAdGroupsRequest - {https://adcenter.microsoft.com/v7}ResumeAdGroupsRequest
|
1039
|
+
#
|
1040
|
+
# RETURNS
|
1041
|
+
# parameters ResumeAdGroupsResponse - {https://adcenter.microsoft.com/v7}ResumeAdGroupsResponse
|
1042
|
+
#
|
1043
|
+
# RAISES
|
1044
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1045
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1046
|
+
#
|
1047
|
+
parameters = nil
|
1048
|
+
puts obj.resumeAdGroups(parameters)
|
1049
|
+
|
1050
|
+
# SYNOPSIS
|
1051
|
+
# SubmitAdGroupForApproval(parameters)
|
1052
|
+
#
|
1053
|
+
# ARGS
|
1054
|
+
# parameters SubmitAdGroupForApprovalRequest - {https://adcenter.microsoft.com/v7}SubmitAdGroupForApprovalRequest
|
1055
|
+
#
|
1056
|
+
# RETURNS
|
1057
|
+
# parameters SubmitAdGroupForApprovalResponse - {https://adcenter.microsoft.com/v7}SubmitAdGroupForApprovalResponse
|
1058
|
+
#
|
1059
|
+
# RAISES
|
1060
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1061
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1062
|
+
#
|
1063
|
+
parameters = nil
|
1064
|
+
puts obj.submitAdGroupForApproval(parameters)
|
1065
|
+
|
1066
|
+
# SYNOPSIS
|
1067
|
+
# UpdateAdGroups(parameters)
|
1068
|
+
#
|
1069
|
+
# ARGS
|
1070
|
+
# parameters UpdateAdGroupsRequest - {https://adcenter.microsoft.com/v7}UpdateAdGroupsRequest
|
1071
|
+
#
|
1072
|
+
# RETURNS
|
1073
|
+
# parameters UpdateAdGroupsResponse - {https://adcenter.microsoft.com/v7}UpdateAdGroupsResponse
|
1074
|
+
#
|
1075
|
+
# RAISES
|
1076
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1077
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1078
|
+
#
|
1079
|
+
parameters = nil
|
1080
|
+
puts obj.updateAdGroups(parameters)
|
1081
|
+
|
1082
|
+
# SYNOPSIS
|
1083
|
+
# GetAdGroupsInfoByCampaignId(parameters)
|
1084
|
+
#
|
1085
|
+
# ARGS
|
1086
|
+
# parameters GetAdGroupsInfoByCampaignIdRequest - {https://adcenter.microsoft.com/v7}GetAdGroupsInfoByCampaignIdRequest
|
1087
|
+
#
|
1088
|
+
# RETURNS
|
1089
|
+
# parameters GetAdGroupsInfoByCampaignIdResponse - {https://adcenter.microsoft.com/v7}GetAdGroupsInfoByCampaignIdResponse
|
1090
|
+
#
|
1091
|
+
# RAISES
|
1092
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1093
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1094
|
+
#
|
1095
|
+
parameters = nil
|
1096
|
+
puts obj.getAdGroupsInfoByCampaignId(parameters)
|
1097
|
+
|
1098
|
+
# SYNOPSIS
|
1099
|
+
# GetNegativeKeywordsByAdGroupIds(parameters)
|
1100
|
+
#
|
1101
|
+
# ARGS
|
1102
|
+
# parameters GetNegativeKeywordsByAdGroupIdsRequest - {https://adcenter.microsoft.com/v7}GetNegativeKeywordsByAdGroupIdsRequest
|
1103
|
+
#
|
1104
|
+
# RETURNS
|
1105
|
+
# parameters GetNegativeKeywordsByAdGroupIdsResponse - {https://adcenter.microsoft.com/v7}GetNegativeKeywordsByAdGroupIdsResponse
|
1106
|
+
#
|
1107
|
+
# RAISES
|
1108
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1109
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1110
|
+
#
|
1111
|
+
parameters = nil
|
1112
|
+
puts obj.getNegativeKeywordsByAdGroupIds(parameters)
|
1113
|
+
|
1114
|
+
# SYNOPSIS
|
1115
|
+
# SetNegativeKeywordsToAdGroups(parameters)
|
1116
|
+
#
|
1117
|
+
# ARGS
|
1118
|
+
# parameters SetNegativeKeywordsToAdGroupsRequest - {https://adcenter.microsoft.com/v7}SetNegativeKeywordsToAdGroupsRequest
|
1119
|
+
#
|
1120
|
+
# RETURNS
|
1121
|
+
# parameters SetNegativeKeywordsToAdGroupsResponse - {https://adcenter.microsoft.com/v7}SetNegativeKeywordsToAdGroupsResponse
|
1122
|
+
#
|
1123
|
+
# RAISES
|
1124
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1125
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1126
|
+
#
|
1127
|
+
parameters = nil
|
1128
|
+
puts obj.setNegativeKeywordsToAdGroups(parameters)
|
1129
|
+
|
1130
|
+
# SYNOPSIS
|
1131
|
+
# AddTarget(parameters)
|
1132
|
+
#
|
1133
|
+
# ARGS
|
1134
|
+
# parameters AddTargetRequest - {https://adcenter.microsoft.com/v7}AddTargetRequest
|
1135
|
+
#
|
1136
|
+
# RETURNS
|
1137
|
+
# parameters AddTargetResponse - {https://adcenter.microsoft.com/v7}AddTargetResponse
|
1138
|
+
#
|
1139
|
+
# RAISES
|
1140
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1141
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1142
|
+
#
|
1143
|
+
parameters = nil
|
1144
|
+
puts obj.addTarget(parameters)
|
1145
|
+
|
1146
|
+
# SYNOPSIS
|
1147
|
+
# DeleteTarget(parameters)
|
1148
|
+
#
|
1149
|
+
# ARGS
|
1150
|
+
# parameters DeleteTargetRequest - {https://adcenter.microsoft.com/v7}DeleteTargetRequest
|
1151
|
+
#
|
1152
|
+
# RETURNS
|
1153
|
+
# parameters DeleteTargetResponse - {https://adcenter.microsoft.com/v7}DeleteTargetResponse
|
1154
|
+
#
|
1155
|
+
# RAISES
|
1156
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1157
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1158
|
+
#
|
1159
|
+
parameters = nil
|
1160
|
+
puts obj.deleteTarget(parameters)
|
1161
|
+
|
1162
|
+
# SYNOPSIS
|
1163
|
+
# GetTargetByAdGroupId(parameters)
|
1164
|
+
#
|
1165
|
+
# ARGS
|
1166
|
+
# parameters GetTargetByAdGroupIdRequest - {https://adcenter.microsoft.com/v7}GetTargetByAdGroupIdRequest
|
1167
|
+
#
|
1168
|
+
# RETURNS
|
1169
|
+
# parameters GetTargetByAdGroupIdResponse - {https://adcenter.microsoft.com/v7}GetTargetByAdGroupIdResponse
|
1170
|
+
#
|
1171
|
+
# RAISES
|
1172
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1173
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1174
|
+
#
|
1175
|
+
parameters = nil
|
1176
|
+
puts obj.getTargetByAdGroupId(parameters)
|
1177
|
+
|
1178
|
+
# SYNOPSIS
|
1179
|
+
# UpdateTarget(parameters)
|
1180
|
+
#
|
1181
|
+
# ARGS
|
1182
|
+
# parameters UpdateTargetRequest - {https://adcenter.microsoft.com/v7}UpdateTargetRequest
|
1183
|
+
#
|
1184
|
+
# RETURNS
|
1185
|
+
# parameters UpdateTargetResponse - {https://adcenter.microsoft.com/v7}UpdateTargetResponse
|
1186
|
+
#
|
1187
|
+
# RAISES
|
1188
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1189
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1190
|
+
#
|
1191
|
+
parameters = nil
|
1192
|
+
puts obj.updateTarget(parameters)
|
1193
|
+
|
1194
|
+
# SYNOPSIS
|
1195
|
+
# AddTargetsToLibrary(parameters)
|
1196
|
+
#
|
1197
|
+
# ARGS
|
1198
|
+
# parameters AddTargetsToLibraryRequest - {https://adcenter.microsoft.com/v7}AddTargetsToLibraryRequest
|
1199
|
+
#
|
1200
|
+
# RETURNS
|
1201
|
+
# parameters AddTargetsToLibraryResponse - {https://adcenter.microsoft.com/v7}AddTargetsToLibraryResponse
|
1202
|
+
#
|
1203
|
+
# RAISES
|
1204
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1205
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1206
|
+
#
|
1207
|
+
parameters = nil
|
1208
|
+
puts obj.addTargetsToLibrary(parameters)
|
1209
|
+
|
1210
|
+
# SYNOPSIS
|
1211
|
+
# UpdateTargetsInLibrary(parameters)
|
1212
|
+
#
|
1213
|
+
# ARGS
|
1214
|
+
# parameters UpdateTargetsInLibraryRequest - {https://adcenter.microsoft.com/v7}UpdateTargetsInLibraryRequest
|
1215
|
+
#
|
1216
|
+
# RETURNS
|
1217
|
+
# parameters UpdateTargetsInLibraryResponse - {https://adcenter.microsoft.com/v7}UpdateTargetsInLibraryResponse
|
1218
|
+
#
|
1219
|
+
# RAISES
|
1220
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1221
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1222
|
+
#
|
1223
|
+
parameters = nil
|
1224
|
+
puts obj.updateTargetsInLibrary(parameters)
|
1225
|
+
|
1226
|
+
# SYNOPSIS
|
1227
|
+
# DeleteTargetsFromLibrary(parameters)
|
1228
|
+
#
|
1229
|
+
# ARGS
|
1230
|
+
# parameters DeleteTargetsFromLibraryRequest - {https://adcenter.microsoft.com/v7}DeleteTargetsFromLibraryRequest
|
1231
|
+
#
|
1232
|
+
# RETURNS
|
1233
|
+
# parameters DeleteTargetsFromLibraryResponse - {https://adcenter.microsoft.com/v7}DeleteTargetsFromLibraryResponse
|
1234
|
+
#
|
1235
|
+
# RAISES
|
1236
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1237
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1238
|
+
#
|
1239
|
+
parameters = nil
|
1240
|
+
puts obj.deleteTargetsFromLibrary(parameters)
|
1241
|
+
|
1242
|
+
# SYNOPSIS
|
1243
|
+
# GetTargetsInfoFromLibrary(parameters)
|
1244
|
+
#
|
1245
|
+
# ARGS
|
1246
|
+
# parameters GetTargetsInfoFromLibraryRequest - {https://adcenter.microsoft.com/v7}GetTargetsInfoFromLibraryRequest
|
1247
|
+
#
|
1248
|
+
# RETURNS
|
1249
|
+
# parameters GetTargetsInfoFromLibraryResponse - {https://adcenter.microsoft.com/v7}GetTargetsInfoFromLibraryResponse
|
1250
|
+
#
|
1251
|
+
# RAISES
|
1252
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1253
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1254
|
+
#
|
1255
|
+
parameters = nil
|
1256
|
+
puts obj.getTargetsInfoFromLibrary(parameters)
|
1257
|
+
|
1258
|
+
# SYNOPSIS
|
1259
|
+
# GetTargetsByIds(parameters)
|
1260
|
+
#
|
1261
|
+
# ARGS
|
1262
|
+
# parameters GetTargetsByIdsRequest - {https://adcenter.microsoft.com/v7}GetTargetsByIdsRequest
|
1263
|
+
#
|
1264
|
+
# RETURNS
|
1265
|
+
# parameters GetTargetsByIdsResponse - {https://adcenter.microsoft.com/v7}GetTargetsByIdsResponse
|
1266
|
+
#
|
1267
|
+
# RAISES
|
1268
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1269
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1270
|
+
#
|
1271
|
+
parameters = nil
|
1272
|
+
puts obj.getTargetsByIds(parameters)
|
1273
|
+
|
1274
|
+
# SYNOPSIS
|
1275
|
+
# SetTargetToAdGroup(parameters)
|
1276
|
+
#
|
1277
|
+
# ARGS
|
1278
|
+
# parameters SetTargetToAdGroupRequest - {https://adcenter.microsoft.com/v7}SetTargetToAdGroupRequest
|
1279
|
+
#
|
1280
|
+
# RETURNS
|
1281
|
+
# parameters SetTargetToAdGroupResponse - {https://adcenter.microsoft.com/v7}SetTargetToAdGroupResponse
|
1282
|
+
#
|
1283
|
+
# RAISES
|
1284
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1285
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1286
|
+
#
|
1287
|
+
parameters = nil
|
1288
|
+
puts obj.setTargetToAdGroup(parameters)
|
1289
|
+
|
1290
|
+
# SYNOPSIS
|
1291
|
+
# DeleteTargetFromAdGroup(parameters)
|
1292
|
+
#
|
1293
|
+
# ARGS
|
1294
|
+
# parameters DeleteTargetFromAdGroupRequest - {https://adcenter.microsoft.com/v7}DeleteTargetFromAdGroupRequest
|
1295
|
+
#
|
1296
|
+
# RETURNS
|
1297
|
+
# parameters DeleteTargetFromAdGroupResponse - {https://adcenter.microsoft.com/v7}DeleteTargetFromAdGroupResponse
|
1298
|
+
#
|
1299
|
+
# RAISES
|
1300
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1301
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1302
|
+
#
|
1303
|
+
parameters = nil
|
1304
|
+
puts obj.deleteTargetFromAdGroup(parameters)
|
1305
|
+
|
1306
|
+
# SYNOPSIS
|
1307
|
+
# GetTargetsByAdGroupIds(parameters)
|
1308
|
+
#
|
1309
|
+
# ARGS
|
1310
|
+
# parameters GetTargetsByAdGroupIdsRequest - {https://adcenter.microsoft.com/v7}GetTargetsByAdGroupIdsRequest
|
1311
|
+
#
|
1312
|
+
# RETURNS
|
1313
|
+
# parameters GetTargetsByAdGroupIdsResponse - {https://adcenter.microsoft.com/v7}GetTargetsByAdGroupIdsResponse
|
1314
|
+
#
|
1315
|
+
# RAISES
|
1316
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1317
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1318
|
+
#
|
1319
|
+
parameters = nil
|
1320
|
+
puts obj.getTargetsByAdGroupIds(parameters)
|
1321
|
+
|
1322
|
+
# SYNOPSIS
|
1323
|
+
# SetTargetToCampaign(parameters)
|
1324
|
+
#
|
1325
|
+
# ARGS
|
1326
|
+
# parameters SetTargetToCampaignRequest - {https://adcenter.microsoft.com/v7}SetTargetToCampaignRequest
|
1327
|
+
#
|
1328
|
+
# RETURNS
|
1329
|
+
# parameters SetTargetToCampaignResponse - {https://adcenter.microsoft.com/v7}SetTargetToCampaignResponse
|
1330
|
+
#
|
1331
|
+
# RAISES
|
1332
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1333
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1334
|
+
#
|
1335
|
+
parameters = nil
|
1336
|
+
puts obj.setTargetToCampaign(parameters)
|
1337
|
+
|
1338
|
+
# SYNOPSIS
|
1339
|
+
# DeleteTargetFromCampaign(parameters)
|
1340
|
+
#
|
1341
|
+
# ARGS
|
1342
|
+
# parameters DeleteTargetFromCampaignRequest - {https://adcenter.microsoft.com/v7}DeleteTargetFromCampaignRequest
|
1343
|
+
#
|
1344
|
+
# RETURNS
|
1345
|
+
# parameters DeleteTargetFromCampaignResponse - {https://adcenter.microsoft.com/v7}DeleteTargetFromCampaignResponse
|
1346
|
+
#
|
1347
|
+
# RAISES
|
1348
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1349
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1350
|
+
#
|
1351
|
+
parameters = nil
|
1352
|
+
puts obj.deleteTargetFromCampaign(parameters)
|
1353
|
+
|
1354
|
+
# SYNOPSIS
|
1355
|
+
# GetTargetsByCampaignIds(parameters)
|
1356
|
+
#
|
1357
|
+
# ARGS
|
1358
|
+
# parameters GetTargetsByCampaignIdsRequest - {https://adcenter.microsoft.com/v7}GetTargetsByCampaignIdsRequest
|
1359
|
+
#
|
1360
|
+
# RETURNS
|
1361
|
+
# parameters GetTargetsByCampaignIdsResponse - {https://adcenter.microsoft.com/v7}GetTargetsByCampaignIdsResponse
|
1362
|
+
#
|
1363
|
+
# RAISES
|
1364
|
+
# detail ApiFaultDetail - {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1365
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
1366
|
+
#
|
1367
|
+
parameters = nil
|
1368
|
+
puts obj.getTargetsByCampaignIds(parameters)
|
1369
|
+
|
1370
|
+
|