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