adcenter-client 7.0.3 → 8.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemtest +0 -0
- data/History.txt +6 -0
- data/Manifest.txt +41 -19
- data/README.txt +1 -1
- data/Rakefile.rb +2 -2
- data/VERSION +1 -1
- data/devel/gen_wsdl_drivers.rb +1 -1
- data/devel/wsdl.yml +16 -13
- data/lib/AdIntelligenceService.rb +787 -0
- data/lib/AdIntelligenceServiceClient.rb +160 -0
- data/lib/AdIntelligenceServiceDriver.rb +115 -0
- data/lib/AdIntelligenceServiceMappingRegistry.rb +1378 -0
- data/lib/AdministrationService.rb +85 -0
- data/lib/AdministrationServiceClient.rb +46 -0
- data/lib/AdministrationServiceDriver.rb +8 -8
- data/lib/AdministrationServiceMappingRegistry.rb +8 -7
- data/lib/CampaignManagementService.rb +3413 -0
- data/lib/CampaignManagementServiceClient.rb +1330 -0
- data/lib/CampaignManagementServiceDriver.rb +335 -359
- data/lib/CampaignManagementServiceMappingRegistry.rb +2288 -2259
- data/lib/CustomerBillingService.rb +419 -0
- data/lib/CustomerBillingServiceClient.rb +148 -0
- data/lib/CustomerBillingServiceDriver.rb +17 -9
- data/lib/CustomerBillingServiceMappingRegistry.rb +50 -32
- data/lib/CustomerManagementService.rb +1502 -0
- data/lib/CustomerManagementServiceClient.rb +368 -0
- data/lib/CustomerManagementServiceDriver.rb +59 -19
- data/lib/CustomerManagementServiceMappingRegistry.rb +373 -145
- data/lib/NotificationService.rb +427 -0
- data/lib/NotificationServiceClient.rb +48 -0
- data/lib/NotificationServiceDriver.rb +59 -0
- data/lib/NotificationServiceMappingRegistry.rb +756 -0
- data/lib/OptimizerService.rb +265 -0
- data/lib/OptimizerServiceClient.rb +48 -0
- data/lib/OptimizerServiceDriver.rb +59 -0
- data/lib/OptimizerServiceMappingRegistry.rb +469 -0
- data/lib/ReportingService.rb +2376 -0
- data/lib/ReportingServiceClient.rb +48 -0
- data/lib/ReportingServiceDriver.rb +8 -8
- data/lib/ReportingServiceMappingRegistry.rb +1718 -1476
- data/lib/ad_intelligence_service.rb +9 -0
- data/lib/adcenter_client.rb +30 -23
- data/lib/adcenter_service.rb +15 -1
- data/lib/adcenter_wrapper_entities.rb +8179 -8164
- data/lib/administration_service.rb +1 -0
- data/lib/campaign_management_service.rb +2 -0
- data/lib/custom_assertions.rb +1 -0
- data/lib/customer_billing_service.rb +2 -0
- data/lib/customer_management_service.rb +4 -0
- data/lib/notification_management.rb +2 -0
- data/lib/notification_service.rb +7 -0
- data/lib/optimizer_service.rb +7 -0
- data/lib/reporting_service.rb +2 -0
- data/lib/secure_data_management_service.rb +2 -0
- data/tasks/doctask.rake +1 -1
- data/test/adcenter_client_test.rb +2 -1
- data/test/administration_service_test.rb +2 -2
- data/test/customer_management_service_test.rb +2 -2
- data/test/report_service_test.rb +16 -6
- metadata +54 -35
- data/lib/SecureDataManagementServiceDriver.rb +0 -51
- data/lib/SecureDataManagementServiceMappingRegistry.rb +0 -380
- data/lib/defaultDriver.rb +0 -67
@@ -0,0 +1,368 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'CustomerManagementServiceDriver.rb'
|
3
|
+
|
4
|
+
|
5
|
+
module AdCenterWrapper
|
6
|
+
|
7
|
+
endpoint_url = ARGV.shift
|
8
|
+
obj = ICustomerManagementService.new(endpoint_url)
|
9
|
+
|
10
|
+
# run ruby with -d to see SOAP wiredumps.
|
11
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
12
|
+
|
13
|
+
# SYNOPSIS
|
14
|
+
# GetAccountsInfo(parameters)
|
15
|
+
#
|
16
|
+
# ARGS
|
17
|
+
# parameters GetAccountsInfoRequest - {https://adcenter.microsoft.com/api/customermanagement}GetAccountsInfoRequest
|
18
|
+
#
|
19
|
+
# RETURNS
|
20
|
+
# parameters GetAccountsInfoResponse - {https://adcenter.microsoft.com/api/customermanagement}GetAccountsInfoResponse
|
21
|
+
#
|
22
|
+
# RAISES
|
23
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
24
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
25
|
+
#
|
26
|
+
parameters = nil
|
27
|
+
puts obj.getAccountsInfo(parameters)
|
28
|
+
|
29
|
+
# SYNOPSIS
|
30
|
+
# FindAccounts(parameters)
|
31
|
+
#
|
32
|
+
# ARGS
|
33
|
+
# parameters FindAccountsRequest - {https://adcenter.microsoft.com/api/customermanagement}FindAccountsRequest
|
34
|
+
#
|
35
|
+
# RETURNS
|
36
|
+
# parameters FindAccountsResponse - {https://adcenter.microsoft.com/api/customermanagement}FindAccountsResponse
|
37
|
+
#
|
38
|
+
# RAISES
|
39
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
40
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
41
|
+
#
|
42
|
+
parameters = nil
|
43
|
+
puts obj.findAccounts(parameters)
|
44
|
+
|
45
|
+
# SYNOPSIS
|
46
|
+
# AddAccount(parameters)
|
47
|
+
#
|
48
|
+
# ARGS
|
49
|
+
# parameters AddAccountRequest - {https://adcenter.microsoft.com/api/customermanagement}AddAccountRequest
|
50
|
+
#
|
51
|
+
# RETURNS
|
52
|
+
# parameters AddAccountResponse - {https://adcenter.microsoft.com/api/customermanagement}AddAccountResponse
|
53
|
+
#
|
54
|
+
# RAISES
|
55
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
56
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
57
|
+
#
|
58
|
+
parameters = nil
|
59
|
+
puts obj.addAccount(parameters)
|
60
|
+
|
61
|
+
# SYNOPSIS
|
62
|
+
# UpdateAccount(parameters)
|
63
|
+
#
|
64
|
+
# ARGS
|
65
|
+
# parameters UpdateAccountRequest - {https://adcenter.microsoft.com/api/customermanagement}UpdateAccountRequest
|
66
|
+
#
|
67
|
+
# RETURNS
|
68
|
+
# parameters UpdateAccountResponse - {https://adcenter.microsoft.com/api/customermanagement}UpdateAccountResponse
|
69
|
+
#
|
70
|
+
# RAISES
|
71
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
72
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
73
|
+
#
|
74
|
+
parameters = nil
|
75
|
+
puts obj.updateAccount(parameters)
|
76
|
+
|
77
|
+
# SYNOPSIS
|
78
|
+
# GetCustomer(parameters)
|
79
|
+
#
|
80
|
+
# ARGS
|
81
|
+
# parameters GetCustomerRequest - {https://adcenter.microsoft.com/api/customermanagement}GetCustomerRequest
|
82
|
+
#
|
83
|
+
# RETURNS
|
84
|
+
# parameters GetCustomerResponse - {https://adcenter.microsoft.com/api/customermanagement}GetCustomerResponse
|
85
|
+
#
|
86
|
+
# RAISES
|
87
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
88
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
89
|
+
#
|
90
|
+
parameters = nil
|
91
|
+
puts obj.getCustomer(parameters)
|
92
|
+
|
93
|
+
# SYNOPSIS
|
94
|
+
# UpdateCustomer(parameters)
|
95
|
+
#
|
96
|
+
# ARGS
|
97
|
+
# parameters UpdateCustomerRequest - {https://adcenter.microsoft.com/api/customermanagement}UpdateCustomerRequest
|
98
|
+
#
|
99
|
+
# RETURNS
|
100
|
+
# parameters UpdateCustomerResponse - {https://adcenter.microsoft.com/api/customermanagement}UpdateCustomerResponse
|
101
|
+
#
|
102
|
+
# RAISES
|
103
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
104
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
105
|
+
#
|
106
|
+
parameters = nil
|
107
|
+
puts obj.updateCustomer(parameters)
|
108
|
+
|
109
|
+
# SYNOPSIS
|
110
|
+
# SignupCustomer(parameters)
|
111
|
+
#
|
112
|
+
# ARGS
|
113
|
+
# parameters SignupCustomerRequest - {https://adcenter.microsoft.com/api/customermanagement}SignupCustomerRequest
|
114
|
+
#
|
115
|
+
# RETURNS
|
116
|
+
# parameters SignupCustomerResponse - {https://adcenter.microsoft.com/api/customermanagement}SignupCustomerResponse
|
117
|
+
#
|
118
|
+
# RAISES
|
119
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
120
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
121
|
+
#
|
122
|
+
parameters = nil
|
123
|
+
puts obj.signupCustomer(parameters)
|
124
|
+
|
125
|
+
# SYNOPSIS
|
126
|
+
# GetAccount(parameters)
|
127
|
+
#
|
128
|
+
# ARGS
|
129
|
+
# parameters GetAccountRequest - {https://adcenter.microsoft.com/api/customermanagement}GetAccountRequest
|
130
|
+
#
|
131
|
+
# RETURNS
|
132
|
+
# parameters GetAccountResponse - {https://adcenter.microsoft.com/api/customermanagement}GetAccountResponse
|
133
|
+
#
|
134
|
+
# RAISES
|
135
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
136
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
137
|
+
#
|
138
|
+
parameters = nil
|
139
|
+
puts obj.getAccount(parameters)
|
140
|
+
|
141
|
+
# SYNOPSIS
|
142
|
+
# GetCustomersInfo(parameters)
|
143
|
+
#
|
144
|
+
# ARGS
|
145
|
+
# parameters GetCustomersInfoRequest - {https://adcenter.microsoft.com/api/customermanagement}GetCustomersInfoRequest
|
146
|
+
#
|
147
|
+
# RETURNS
|
148
|
+
# parameters GetCustomersInfoResponse - {https://adcenter.microsoft.com/api/customermanagement}GetCustomersInfoResponse
|
149
|
+
#
|
150
|
+
# RAISES
|
151
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
152
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
153
|
+
#
|
154
|
+
parameters = nil
|
155
|
+
puts obj.getCustomersInfo(parameters)
|
156
|
+
|
157
|
+
# SYNOPSIS
|
158
|
+
# AddUser(parameters)
|
159
|
+
#
|
160
|
+
# ARGS
|
161
|
+
# parameters AddUserRequest - {https://adcenter.microsoft.com/api/customermanagement}AddUserRequest
|
162
|
+
#
|
163
|
+
# RETURNS
|
164
|
+
# parameters AddUserResponse - {https://adcenter.microsoft.com/api/customermanagement}AddUserResponse
|
165
|
+
#
|
166
|
+
# RAISES
|
167
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
168
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
169
|
+
#
|
170
|
+
parameters = nil
|
171
|
+
puts obj.addUser(parameters)
|
172
|
+
|
173
|
+
# SYNOPSIS
|
174
|
+
# DeleteAccount(parameters)
|
175
|
+
#
|
176
|
+
# ARGS
|
177
|
+
# parameters DeleteAccountRequest - {https://adcenter.microsoft.com/api/customermanagement}DeleteAccountRequest
|
178
|
+
#
|
179
|
+
# RETURNS
|
180
|
+
# parameters DeleteAccountResponse - {https://adcenter.microsoft.com/api/customermanagement}DeleteAccountResponse
|
181
|
+
#
|
182
|
+
# RAISES
|
183
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
184
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
185
|
+
#
|
186
|
+
parameters = nil
|
187
|
+
puts obj.deleteAccount(parameters)
|
188
|
+
|
189
|
+
# SYNOPSIS
|
190
|
+
# DeleteCustomer(parameters)
|
191
|
+
#
|
192
|
+
# ARGS
|
193
|
+
# parameters DeleteCustomerRequest - {https://adcenter.microsoft.com/api/customermanagement}DeleteCustomerRequest
|
194
|
+
#
|
195
|
+
# RETURNS
|
196
|
+
# parameters DeleteCustomerResponse - {https://adcenter.microsoft.com/api/customermanagement}DeleteCustomerResponse
|
197
|
+
#
|
198
|
+
# RAISES
|
199
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
200
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
201
|
+
#
|
202
|
+
parameters = nil
|
203
|
+
puts obj.deleteCustomer(parameters)
|
204
|
+
|
205
|
+
# SYNOPSIS
|
206
|
+
# UpdateUser(parameters)
|
207
|
+
#
|
208
|
+
# ARGS
|
209
|
+
# parameters UpdateUserRequest - {https://adcenter.microsoft.com/api/customermanagement}UpdateUserRequest
|
210
|
+
#
|
211
|
+
# RETURNS
|
212
|
+
# parameters UpdateUserResponse - {https://adcenter.microsoft.com/api/customermanagement}UpdateUserResponse
|
213
|
+
#
|
214
|
+
# RAISES
|
215
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
216
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
217
|
+
#
|
218
|
+
parameters = nil
|
219
|
+
puts obj.updateUser(parameters)
|
220
|
+
|
221
|
+
# SYNOPSIS
|
222
|
+
# UpdateUserRoles(parameters)
|
223
|
+
#
|
224
|
+
# ARGS
|
225
|
+
# parameters UpdateUserRolesRequest - {https://adcenter.microsoft.com/api/customermanagement}UpdateUserRolesRequest
|
226
|
+
#
|
227
|
+
# RETURNS
|
228
|
+
# parameters UpdateUserRolesResponse - {https://adcenter.microsoft.com/api/customermanagement}UpdateUserRolesResponse
|
229
|
+
#
|
230
|
+
# RAISES
|
231
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
232
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
233
|
+
#
|
234
|
+
parameters = nil
|
235
|
+
puts obj.updateUserRoles(parameters)
|
236
|
+
|
237
|
+
# SYNOPSIS
|
238
|
+
# GetUser(parameters)
|
239
|
+
#
|
240
|
+
# ARGS
|
241
|
+
# parameters GetUserRequest - {https://adcenter.microsoft.com/api/customermanagement}GetUserRequest
|
242
|
+
#
|
243
|
+
# RETURNS
|
244
|
+
# parameters GetUserResponse - {https://adcenter.microsoft.com/api/customermanagement}GetUserResponse
|
245
|
+
#
|
246
|
+
# RAISES
|
247
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
248
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
249
|
+
#
|
250
|
+
parameters = nil
|
251
|
+
puts obj.getUser(parameters)
|
252
|
+
|
253
|
+
# SYNOPSIS
|
254
|
+
# GetCurrentUser(parameters)
|
255
|
+
#
|
256
|
+
# ARGS
|
257
|
+
# parameters GetCurrentUserRequest - {https://adcenter.microsoft.com/api/customermanagement}GetCurrentUserRequest
|
258
|
+
#
|
259
|
+
# RETURNS
|
260
|
+
# parameters GetCurrentUserResponse - {https://adcenter.microsoft.com/api/customermanagement}GetCurrentUserResponse
|
261
|
+
#
|
262
|
+
# RAISES
|
263
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
264
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
265
|
+
#
|
266
|
+
parameters = nil
|
267
|
+
puts obj.getCurrentUser(parameters)
|
268
|
+
|
269
|
+
# SYNOPSIS
|
270
|
+
# DeleteUser(parameters)
|
271
|
+
#
|
272
|
+
# ARGS
|
273
|
+
# parameters DeleteUserRequest - {https://adcenter.microsoft.com/api/customermanagement}DeleteUserRequest
|
274
|
+
#
|
275
|
+
# RETURNS
|
276
|
+
# parameters DeleteUserResponse - {https://adcenter.microsoft.com/api/customermanagement}DeleteUserResponse
|
277
|
+
#
|
278
|
+
# RAISES
|
279
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
280
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
281
|
+
#
|
282
|
+
parameters = nil
|
283
|
+
puts obj.deleteUser(parameters)
|
284
|
+
|
285
|
+
# SYNOPSIS
|
286
|
+
# GetUsersInfo(parameters)
|
287
|
+
#
|
288
|
+
# ARGS
|
289
|
+
# parameters GetUsersInfoRequest - {https://adcenter.microsoft.com/api/customermanagement}GetUsersInfoRequest
|
290
|
+
#
|
291
|
+
# RETURNS
|
292
|
+
# parameters GetUsersInfoResponse - {https://adcenter.microsoft.com/api/customermanagement}GetUsersInfoResponse
|
293
|
+
#
|
294
|
+
# RAISES
|
295
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
296
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
297
|
+
#
|
298
|
+
parameters = nil
|
299
|
+
puts obj.getUsersInfo(parameters)
|
300
|
+
|
301
|
+
# SYNOPSIS
|
302
|
+
# GetCustomerPilotFeature(parameters)
|
303
|
+
#
|
304
|
+
# ARGS
|
305
|
+
# parameters GetCustomerPilotFeatureRequest - {https://adcenter.microsoft.com/api/customermanagement}GetCustomerPilotFeatureRequest
|
306
|
+
#
|
307
|
+
# RETURNS
|
308
|
+
# parameters GetCustomerPilotFeatureResponse - {https://adcenter.microsoft.com/api/customermanagement}GetCustomerPilotFeatureResponse
|
309
|
+
#
|
310
|
+
# RAISES
|
311
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
312
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
313
|
+
#
|
314
|
+
parameters = nil
|
315
|
+
puts obj.getCustomerPilotFeature(parameters)
|
316
|
+
|
317
|
+
# SYNOPSIS
|
318
|
+
# GetPilotFeaturesCountries(parameters)
|
319
|
+
#
|
320
|
+
# ARGS
|
321
|
+
# parameters GetPilotFeaturesCountriesRequest - {https://adcenter.microsoft.com/api/customermanagement}GetPilotFeaturesCountriesRequest
|
322
|
+
#
|
323
|
+
# RETURNS
|
324
|
+
# parameters GetPilotFeaturesCountriesResponse - {https://adcenter.microsoft.com/api/customermanagement}GetPilotFeaturesCountriesResponse
|
325
|
+
#
|
326
|
+
# RAISES
|
327
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
328
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
329
|
+
#
|
330
|
+
parameters = nil
|
331
|
+
puts obj.getPilotFeaturesCountries(parameters)
|
332
|
+
|
333
|
+
# SYNOPSIS
|
334
|
+
# GetAccessibleCustomer(parameters)
|
335
|
+
#
|
336
|
+
# ARGS
|
337
|
+
# parameters GetAccessibleCustomerRequest - {https://adcenter.microsoft.com/api/customermanagement}GetAccessibleCustomerRequest
|
338
|
+
#
|
339
|
+
# RETURNS
|
340
|
+
# parameters GetAccessibleCustomerResponse - {https://adcenter.microsoft.com/api/customermanagement}GetAccessibleCustomerResponse
|
341
|
+
#
|
342
|
+
# RAISES
|
343
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
344
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
345
|
+
#
|
346
|
+
parameters = nil
|
347
|
+
puts obj.getAccessibleCustomer(parameters)
|
348
|
+
|
349
|
+
# SYNOPSIS
|
350
|
+
# FindAccountsOrCustomersInfo(parameters)
|
351
|
+
#
|
352
|
+
# ARGS
|
353
|
+
# parameters FindAccountsOrCustomersInfoRequest - {https://adcenter.microsoft.com/api/customermanagement}FindAccountsOrCustomersInfoRequest
|
354
|
+
#
|
355
|
+
# RETURNS
|
356
|
+
# parameters FindAccountsOrCustomersInfoResponse - {https://adcenter.microsoft.com/api/customermanagement}FindAccountsOrCustomersInfoResponse
|
357
|
+
#
|
358
|
+
# RAISES
|
359
|
+
# detail ApiFault - {https://adcenter.microsoft.com/api/customermanagement/Exception}ApiFault
|
360
|
+
# detail AdApiFaultDetail - {https://adapi.microsoft.com}AdApiFaultDetail
|
361
|
+
#
|
362
|
+
parameters = nil
|
363
|
+
puts obj.findAccountsOrCustomersInfo(parameters)
|
364
|
+
|
365
|
+
|
366
|
+
|
367
|
+
|
368
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
require '
|
1
|
+
require 'CustomerManagementService.rb'
|
2
2
|
require 'CustomerManagementServiceMappingRegistry.rb'
|
3
3
|
require 'soap/rpc/driver'
|
4
4
|
|
5
5
|
module AdCenterWrapper
|
6
6
|
|
7
7
|
class ICustomerManagementService < ::SOAP::RPC::Driver
|
8
|
-
DefaultEndpointUrl = "https://sharedservices.adcenterapi.microsoft.com/Api/CustomerManagement/
|
8
|
+
DefaultEndpointUrl = "https://sharedservices.adcenterapi.microsoft.com/Api/CustomerManagement/v8/CustomerManagementService.svc"
|
9
9
|
|
10
10
|
Methods = [
|
11
11
|
[ "GetAccountsInfo",
|
@@ -14,7 +14,15 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
14
14
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetAccountsInfoResponse"]] ],
|
15
15
|
{ :request_style => :document, :request_use => :literal,
|
16
16
|
:response_style => :document, :response_use => :literal,
|
17
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
17
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
18
|
+
],
|
19
|
+
[ "FindAccounts",
|
20
|
+
"findAccounts",
|
21
|
+
[ ["in", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "FindAccountsRequest"]],
|
22
|
+
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "FindAccountsResponse"]] ],
|
23
|
+
{ :request_style => :document, :request_use => :literal,
|
24
|
+
:response_style => :document, :response_use => :literal,
|
25
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
18
26
|
],
|
19
27
|
[ "AddAccount",
|
20
28
|
"addAccount",
|
@@ -22,7 +30,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
22
30
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "AddAccountResponse"]] ],
|
23
31
|
{ :request_style => :document, :request_use => :literal,
|
24
32
|
:response_style => :document, :response_use => :literal,
|
25
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
33
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
26
34
|
],
|
27
35
|
[ "UpdateAccount",
|
28
36
|
"updateAccount",
|
@@ -30,7 +38,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
30
38
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "UpdateAccountResponse"]] ],
|
31
39
|
{ :request_style => :document, :request_use => :literal,
|
32
40
|
:response_style => :document, :response_use => :literal,
|
33
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
41
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
34
42
|
],
|
35
43
|
[ "GetCustomer",
|
36
44
|
"getCustomer",
|
@@ -38,7 +46,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
38
46
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetCustomerResponse"]] ],
|
39
47
|
{ :request_style => :document, :request_use => :literal,
|
40
48
|
:response_style => :document, :response_use => :literal,
|
41
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
49
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
42
50
|
],
|
43
51
|
[ "UpdateCustomer",
|
44
52
|
"updateCustomer",
|
@@ -46,7 +54,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
46
54
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "UpdateCustomerResponse"]] ],
|
47
55
|
{ :request_style => :document, :request_use => :literal,
|
48
56
|
:response_style => :document, :response_use => :literal,
|
49
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
57
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
50
58
|
],
|
51
59
|
[ "SignupCustomer",
|
52
60
|
"signupCustomer",
|
@@ -54,7 +62,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
54
62
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "SignupCustomerResponse"]] ],
|
55
63
|
{ :request_style => :document, :request_use => :literal,
|
56
64
|
:response_style => :document, :response_use => :literal,
|
57
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
65
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
58
66
|
],
|
59
67
|
[ "GetAccount",
|
60
68
|
"getAccount",
|
@@ -62,7 +70,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
62
70
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetAccountResponse"]] ],
|
63
71
|
{ :request_style => :document, :request_use => :literal,
|
64
72
|
:response_style => :document, :response_use => :literal,
|
65
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
73
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
66
74
|
],
|
67
75
|
[ "GetCustomersInfo",
|
68
76
|
"getCustomersInfo",
|
@@ -70,7 +78,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
70
78
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetCustomersInfoResponse"]] ],
|
71
79
|
{ :request_style => :document, :request_use => :literal,
|
72
80
|
:response_style => :document, :response_use => :literal,
|
73
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
81
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
74
82
|
],
|
75
83
|
[ "AddUser",
|
76
84
|
"addUser",
|
@@ -78,7 +86,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
78
86
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "AddUserResponse"]] ],
|
79
87
|
{ :request_style => :document, :request_use => :literal,
|
80
88
|
:response_style => :document, :response_use => :literal,
|
81
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
89
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
82
90
|
],
|
83
91
|
[ "DeleteAccount",
|
84
92
|
"deleteAccount",
|
@@ -86,7 +94,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
86
94
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "DeleteAccountResponse"]] ],
|
87
95
|
{ :request_style => :document, :request_use => :literal,
|
88
96
|
:response_style => :document, :response_use => :literal,
|
89
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
97
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
90
98
|
],
|
91
99
|
[ "DeleteCustomer",
|
92
100
|
"deleteCustomer",
|
@@ -94,7 +102,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
94
102
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "DeleteCustomerResponse"]] ],
|
95
103
|
{ :request_style => :document, :request_use => :literal,
|
96
104
|
:response_style => :document, :response_use => :literal,
|
97
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
105
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
98
106
|
],
|
99
107
|
[ "UpdateUser",
|
100
108
|
"updateUser",
|
@@ -102,7 +110,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
102
110
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "UpdateUserResponse"]] ],
|
103
111
|
{ :request_style => :document, :request_use => :literal,
|
104
112
|
:response_style => :document, :response_use => :literal,
|
105
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
113
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
106
114
|
],
|
107
115
|
[ "UpdateUserRoles",
|
108
116
|
"updateUserRoles",
|
@@ -110,7 +118,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
110
118
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "UpdateUserRolesResponse"]] ],
|
111
119
|
{ :request_style => :document, :request_use => :literal,
|
112
120
|
:response_style => :document, :response_use => :literal,
|
113
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
121
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
114
122
|
],
|
115
123
|
[ "GetUser",
|
116
124
|
"getUser",
|
@@ -118,7 +126,15 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
118
126
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetUserResponse"]] ],
|
119
127
|
{ :request_style => :document, :request_use => :literal,
|
120
128
|
:response_style => :document, :response_use => :literal,
|
121
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
129
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
130
|
+
],
|
131
|
+
[ "GetCurrentUser",
|
132
|
+
"getCurrentUser",
|
133
|
+
[ ["in", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetCurrentUserRequest"]],
|
134
|
+
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetCurrentUserResponse"]] ],
|
135
|
+
{ :request_style => :document, :request_use => :literal,
|
136
|
+
:response_style => :document, :response_use => :literal,
|
137
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
122
138
|
],
|
123
139
|
[ "DeleteUser",
|
124
140
|
"deleteUser",
|
@@ -126,7 +142,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
126
142
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "DeleteUserResponse"]] ],
|
127
143
|
{ :request_style => :document, :request_use => :literal,
|
128
144
|
:response_style => :document, :response_use => :literal,
|
129
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
145
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
130
146
|
],
|
131
147
|
[ "GetUsersInfo",
|
132
148
|
"getUsersInfo",
|
@@ -134,7 +150,7 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
134
150
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetUsersInfoResponse"]] ],
|
135
151
|
{ :request_style => :document, :request_use => :literal,
|
136
152
|
:response_style => :document, :response_use => :literal,
|
137
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
153
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
138
154
|
],
|
139
155
|
[ "GetCustomerPilotFeature",
|
140
156
|
"getCustomerPilotFeature",
|
@@ -142,7 +158,31 @@ class ICustomerManagementService < ::SOAP::RPC::Driver
|
|
142
158
|
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetCustomerPilotFeatureResponse"]] ],
|
143
159
|
{ :request_style => :document, :request_use => :literal,
|
144
160
|
:response_style => :document, :response_use => :literal,
|
145
|
-
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:
|
161
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
162
|
+
],
|
163
|
+
[ "GetPilotFeaturesCountries",
|
164
|
+
"getPilotFeaturesCountries",
|
165
|
+
[ ["in", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetPilotFeaturesCountriesRequest"]],
|
166
|
+
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetPilotFeaturesCountriesResponse"]] ],
|
167
|
+
{ :request_style => :document, :request_use => :literal,
|
168
|
+
:response_style => :document, :response_use => :literal,
|
169
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
170
|
+
],
|
171
|
+
[ "GetAccessibleCustomer",
|
172
|
+
"getAccessibleCustomer",
|
173
|
+
[ ["in", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetAccessibleCustomerRequest"]],
|
174
|
+
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "GetAccessibleCustomerResponse"]] ],
|
175
|
+
{ :request_style => :document, :request_use => :literal,
|
176
|
+
:response_style => :document, :response_use => :literal,
|
177
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
178
|
+
],
|
179
|
+
[ "FindAccountsOrCustomersInfo",
|
180
|
+
"findAccountsOrCustomersInfo",
|
181
|
+
[ ["in", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "FindAccountsOrCustomersInfoRequest"]],
|
182
|
+
["out", "parameters", ["::SOAP::SOAPElement", "https://adcenter.microsoft.com/api/customermanagement", "FindAccountsOrCustomersInfoResponse"]] ],
|
183
|
+
{ :request_style => :document, :request_use => :literal,
|
184
|
+
:response_style => :document, :response_use => :literal,
|
185
|
+
:faults => {"AdCenterWrapper::ApiFaultFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"ApiFaultFault"}, "AdCenterWrapper::AdApiFaultDetailFault"=>{:encodingstyle=>"document", :use=>"literal", :ns=>"https://adcenter.microsoft.com/api/customermanagement", :namespace=>nil, :name=>"AdApiFaultDetailFault"}} }
|
146
186
|
]
|
147
187
|
]
|
148
188
|
|