akamai_api 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/Guardfile +5 -15
  3. data/README.md +106 -36
  4. data/Thorfile +5 -0
  5. data/akamai_api.gemspec +6 -3
  6. data/bin/akamai_api +1 -2
  7. data/cassettes/akamai_api_ccu_arl_invalidate/invalid_credentials.yml +37 -0
  8. data/cassettes/akamai_api_ccu_arl_invalidate/invalid_item.yml +36 -0
  9. data/cassettes/akamai_api_ccu_arl_invalidate/multiple_items.yml +38 -0
  10. data/cassettes/akamai_api_ccu_arl_invalidate/single_item.yml +38 -0
  11. data/cassettes/akamai_api_ccu_arl_remove/invalid_credentials.yml +37 -0
  12. data/cassettes/akamai_api_ccu_arl_remove/invalid_item.yml +36 -0
  13. data/cassettes/akamai_api_ccu_arl_remove/multiple_items.yml +38 -0
  14. data/cassettes/akamai_api_ccu_arl_remove/single_item.yml +38 -0
  15. data/cassettes/akamai_api_ccu_cpcode_invalidate/invalid_credentials.yml +37 -0
  16. data/cassettes/akamai_api_ccu_cpcode_invalidate/invalid_item.yml +36 -0
  17. data/cassettes/akamai_api_ccu_cpcode_invalidate/multiple_items.yml +38 -0
  18. data/cassettes/akamai_api_ccu_cpcode_invalidate/single_item.yml +38 -0
  19. data/cassettes/akamai_api_ccu_cpcode_remove/invalid_credentials.yml +37 -0
  20. data/cassettes/akamai_api_ccu_cpcode_remove/invalid_item.yml +36 -0
  21. data/cassettes/akamai_api_ccu_cpcode_remove/multiple_items.yml +38 -0
  22. data/cassettes/akamai_api_ccu_cpcode_remove/single_item.yml +38 -0
  23. data/cassettes/akamai_api_ccu_purge_status/completed_request.yml +35 -0
  24. data/cassettes/akamai_api_ccu_purge_status/enqueued_request.yml +35 -0
  25. data/cassettes/akamai_api_ccu_purge_status/invalid_credentials.yml +35 -0
  26. data/cassettes/akamai_api_ccu_purge_status/not_found_request.yml +37 -0
  27. data/cassettes/akamai_api_ccu_status/invalid_credentials.yml +35 -0
  28. data/cassettes/akamai_api_ccu_status/valid_credentials.yml +34 -0
  29. data/cassettes/akamai_api_eccu_last_request/invalid_credentials.yml +68 -0
  30. data/cassettes/akamai_api_eccu_last_request/valid_credentials.yml +140 -0
  31. data/cassettes/akamai_api_eccu_publish/invalid_credentials.yml +73 -0
  32. data/cassettes/akamai_api_eccu_publish/invalid_domain.yml +60 -0
  33. data/cassettes/akamai_api_eccu_publish/successful.yml +126 -0
  34. data/cassettes/akamai_api_eccu_requests/invalid_credentials.yml +68 -0
  35. data/cassettes/akamai_api_eccu_requests/valid_credentials.yml +325 -0
  36. data/features/ccu_arl_invalidate.feature +83 -0
  37. data/features/ccu_arl_remove.feature +83 -0
  38. data/features/ccu_cpcode_invalidate.feature +83 -0
  39. data/features/ccu_cpcode_remove.feature +83 -0
  40. data/features/ccu_purge_status.feature +83 -0
  41. data/features/ccu_status.feature +31 -0
  42. data/features/eccu_last_request.feature +47 -0
  43. data/features/eccu_publish.feature +98 -0
  44. data/features/eccu_requests.feature +43 -0
  45. data/features/step_definitions/contain_multiple_times_steps.rb +3 -0
  46. data/features/support/env.rb +58 -0
  47. data/lib/akamai_api/ccu/purge/request.rb +76 -0
  48. data/lib/akamai_api/ccu/purge/response.rb +31 -0
  49. data/lib/akamai_api/ccu/purge.rb +5 -0
  50. data/lib/akamai_api/ccu/purge_status/not_found_response.rb +9 -0
  51. data/lib/akamai_api/ccu/purge_status/request.rb +32 -0
  52. data/lib/akamai_api/ccu/purge_status/response.rb +19 -0
  53. data/lib/akamai_api/ccu/purge_status/successful_response.rb +25 -0
  54. data/lib/akamai_api/ccu/purge_status.rb +10 -0
  55. data/lib/akamai_api/ccu/response.rb +18 -0
  56. data/lib/akamai_api/ccu/status/request.rb +23 -0
  57. data/lib/akamai_api/ccu/status/response.rb +11 -0
  58. data/lib/akamai_api/ccu/status.rb +2 -0
  59. data/lib/akamai_api/ccu.rb +14 -50
  60. data/lib/akamai_api/cli/app.rb +2 -2
  61. data/lib/akamai_api/cli/ccu/arl.rb +36 -0
  62. data/lib/akamai_api/cli/ccu/base.rb +18 -0
  63. data/lib/akamai_api/cli/ccu/cp_code.rb +39 -0
  64. data/lib/akamai_api/cli/ccu/purge_renderer.rb +49 -0
  65. data/lib/akamai_api/cli/ccu/status_renderer.rb +69 -0
  66. data/lib/akamai_api/cli/ccu.rb +5 -10
  67. data/lib/akamai_api/cli/eccu/entry_renderer.rb +63 -0
  68. data/lib/akamai_api/cli/eccu.rb +16 -14
  69. data/lib/akamai_api/cli.rb +7 -2
  70. data/lib/akamai_api/eccu_request.rb +19 -1
  71. data/lib/akamai_api/version.rb +1 -1
  72. data/lib/akamai_api.rb +3 -1
  73. data/spec/features/ccu/purge_request_spec.rb +94 -0
  74. data/spec/features/ccu/purge_status_request_spec.rb +31 -0
  75. data/spec/features/ccu/status_request_spec.rb +17 -0
  76. data/spec/fixtures/ccu/successful_purge.json +1 -0
  77. data/spec/lib/akamai_api/ccu/purge/request_spec.rb +124 -0
  78. data/spec/lib/akamai_api/ccu/purge/response_spec.rb +54 -0
  79. data/spec/lib/akamai_api/ccu/purge_status/not_found_response_spec.rb +41 -0
  80. data/spec/lib/akamai_api/ccu/purge_status/request_spec.rb +64 -0
  81. data/spec/lib/akamai_api/ccu/purge_status/successful_response_spec.rb +86 -0
  82. data/spec/lib/akamai_api/ccu/response_spec.rb +15 -0
  83. data/spec/lib/akamai_api/ccu/status/request_spec.rb +22 -0
  84. data/spec/lib/akamai_api/ccu/status/response_spec.rb +29 -0
  85. data/spec/lib/akamai_api/ccu_spec.rb +49 -61
  86. data/spec/lib/akamai_api/cli/ccu/status_renderer_spec.rb +36 -0
  87. data/spec/lib/akamai_api/eccu_request_spec.rb +5 -5
  88. data/spec/spec_helper.rb +21 -1
  89. metadata +163 -26
  90. data/lib/akamai_api/ccu_response.rb +0 -51
  91. data/lib/akamai_api/cli/ccu_arl.rb +0 -40
  92. data/lib/akamai_api/cli/ccu_cp_code.rb +0 -48
  93. data/lib/akamai_api/cli/template.rb +0 -36
  94. data/lib/akamai_api/cp_code.rb +0 -33
  95. data/spec/fixtures/ccu/successful_purge.xml +0 -15
  96. data/spec/fixtures/cp_code/collection.xml +0 -21
  97. data/spec/fixtures/cp_code/single.xml +0 -16
  98. data/spec/lib/akamai_api/cp_code_spec.rb +0 -47
  99. data/wsdls/cpcode.wsdl +0 -2765
data/wsdls/cpcode.wsdl DELETED
@@ -1,2765 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <wsdl:definitions targetNamespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" xmlns:akaaimsdt="https://control.akamai.com/Data.xsd" xmlns:akaawsdt="https://control.akamai.com/AWS.xsd" xmlns:akasiteDeldt="https://control.akamai.com/SiteAcceleratorReportService.xsd" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3
-
4
- <!--WSDL created by Apache Axis version: 1.3
5
- Built on Jan 26, 2006 (05:12:02 PST)-->
6
-
7
- <wsdl:types>
8
-
9
- <schema targetNamespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" xmlns="http://www.w3.org/2001/XMLSchema">
10
-
11
- <import namespace="https://control.akamai.com/AWS.xsd"/>
12
-
13
- <import namespace="https://control.akamai.com/Data.xsd"/>
14
-
15
- <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
16
-
17
- <complexType name="ArrayOfString">
18
-
19
- <complexContent>
20
-
21
- <restriction base="soapenc:Array">
22
-
23
- <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>
24
-
25
- </restriction>
26
-
27
- </complexContent>
28
-
29
- </complexType>
30
-
31
- <complexType name="ArrayOfInt">
32
-
33
- <complexContent>
34
-
35
- <restriction base="soapenc:Array">
36
-
37
- <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:int[]"/>
38
-
39
- </restriction>
40
-
41
- </complexContent>
42
-
43
- </complexType>
44
-
45
- <complexType name="ArrayOfCPCodeInfo">
46
-
47
- <complexContent>
48
-
49
- <restriction base="soapenc:Array">
50
-
51
- <attribute ref="soapenc:arrayType" wsdl:arrayType="akaaimsdt:CPCodeInfo[]"/>
52
-
53
- </restriction>
54
-
55
- </complexContent>
56
-
57
- </complexType>
58
-
59
- </schema>
60
-
61
- <schema targetNamespace="https://control.akamai.com/AWS.xsd" xmlns="http://www.w3.org/2001/XMLSchema">
62
-
63
- <import namespace="https://control.akamai.com/Data.xsd"/>
64
-
65
- <import namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd"/>
66
-
67
- <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
68
-
69
- <complexType name="AWSFault">
70
-
71
- <sequence/>
72
-
73
- </complexType>
74
-
75
- </schema>
76
-
77
- <schema targetNamespace="https://control.akamai.com/Data.xsd" xmlns="http://www.w3.org/2001/XMLSchema">
78
-
79
- <import namespace="https://control.akamai.com/AWS.xsd"/>
80
-
81
- <import namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd"/>
82
-
83
- <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
84
-
85
- <simpleType name="UrlReportFilterOperatorEnum">
86
-
87
- <restriction base="xsd:string">
88
-
89
- <enumeration value="contains"/>
90
-
91
- <enumeration value="starts_with"/>
92
-
93
- <enumeration value="ends_with"/>
94
-
95
- <enumeration value="not_contains"/>
96
-
97
- <enumeration value="not_starts_with"/>
98
-
99
- <enumeration value="not_ends_with"/>
100
-
101
- <enumeration value="match_regular_expression"/>
102
-
103
- <enumeration value="not_match_regular_expression"/>
104
-
105
- <enumeration value="exact_match"/>
106
-
107
- </restriction>
108
-
109
- </simpleType>
110
-
111
- <complexType name="UrlReportFilter">
112
-
113
- <sequence>
114
-
115
- <element name="caseSensitive" type="xsd:boolean"/>
116
-
117
- <element name="operand" nillable="true" type="xsd:string"/>
118
-
119
- <element name="operator" nillable="true" type="akaaimsdt:UrlReportFilterOperatorEnum"/>
120
-
121
- <element name="isJava" type="xsd:boolean"/>
122
-
123
- </sequence>
124
-
125
- </complexType>
126
-
127
- <complexType name="CPCodeInfo">
128
-
129
- <sequence>
130
-
131
- <element name="cpcode" type="xsd:int"/>
132
-
133
- <element name="description" nillable="true" type="xsd:string"/>
134
-
135
- <element name="service" nillable="true" type="xsd:string"/>
136
-
137
- </sequence>
138
-
139
- </complexType>
140
-
141
- </schema>
142
-
143
- </wsdl:types>
144
-
145
-
146
- <wsdl:message name="getVisitorByCAProvinceForCPCodeResponse">
147
-
148
-
149
- <wsdl:part name="getVisitorByCAProvinceForCPCodeReturn" type="xsd:string"/>
150
-
151
-
152
- </wsdl:message>
153
-
154
-
155
- <wsdl:message name="getVisitorByCAProvinceForReportGroupRequest">
156
-
157
-
158
- <wsdl:part name="repgrp" type="xsd:string"/>
159
-
160
-
161
- <wsdl:part name="date" type="xsd:string"/>
162
-
163
-
164
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
165
-
166
-
167
- </wsdl:message>
168
-
169
-
170
- <wsdl:message name="getVisitorBySoftwareForCPCodeResponse">
171
-
172
-
173
- <wsdl:part name="getVisitorBySoftwareForCPCodeReturn" type="xsd:string"/>
174
-
175
-
176
- </wsdl:message>
177
-
178
-
179
- <wsdl:message name="getVisitorByCountryForReportGroupResponse">
180
-
181
-
182
- <wsdl:part name="getVisitorByCountryForReportGroupReturn" type="xsd:string"/>
183
-
184
-
185
- </wsdl:message>
186
-
187
-
188
- <wsdl:message name="getCPCodesResponse">
189
-
190
-
191
- <wsdl:part name="getCPCodesReturn" type="akasiteDeldt:ArrayOfCPCodeInfo"/>
192
-
193
-
194
- </wsdl:message>
195
-
196
-
197
- <wsdl:message name="getUserLocationByCountryForCPCodeResponse">
198
-
199
-
200
- <wsdl:part name="getUserLocationByCountryForCPCodeReturn" type="xsd:string"/>
201
-
202
-
203
- </wsdl:message>
204
-
205
-
206
- <wsdl:message name="getNumURLForCPCodeResponse">
207
-
208
-
209
- <wsdl:part name="getNumURLForCPCodeReturn" type="xsd:string"/>
210
-
211
-
212
- </wsdl:message>
213
-
214
-
215
- <wsdl:message name="getTrafficSummaryForReportGroupResponse">
216
-
217
-
218
- <wsdl:part name="getTrafficSummaryForReportGroupReturn" type="xsd:string"/>
219
-
220
-
221
- </wsdl:message>
222
-
223
-
224
- <wsdl:message name="getVisitorByUSStateForReportGroupResponse">
225
-
226
-
227
- <wsdl:part name="getVisitorByUSStateForReportGroupReturn" type="xsd:string"/>
228
-
229
-
230
- </wsdl:message>
231
-
232
-
233
- <wsdl:message name="getURLForCPCodeRequest">
234
-
235
-
236
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
237
-
238
-
239
- <wsdl:part name="startDate" type="xsd:string"/>
240
-
241
-
242
- <wsdl:part name="endDate" type="xsd:string"/>
243
-
244
-
245
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
246
-
247
-
248
- <wsdl:part name="sortColumn" type="xsd:string"/>
249
-
250
-
251
- <wsdl:part name="filter" type="akaaimsdt:UrlReportFilter"/>
252
-
253
-
254
- </wsdl:message>
255
-
256
-
257
- <wsdl:message name="getUserLocationByCountryForCPCodeRequest">
258
-
259
-
260
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
261
-
262
-
263
- <wsdl:part name="startDate" type="xsd:string"/>
264
-
265
-
266
- <wsdl:part name="endDate" type="xsd:string"/>
267
-
268
-
269
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
270
-
271
-
272
- </wsdl:message>
273
-
274
-
275
- <wsdl:message name="getVisitorByCAProvinceForCPCodeRequest">
276
-
277
-
278
- <wsdl:part name="cpcode" type="xsd:int"/>
279
-
280
-
281
- <wsdl:part name="date" type="xsd:string"/>
282
-
283
-
284
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
285
-
286
-
287
- </wsdl:message>
288
-
289
-
290
- <wsdl:message name="getVisitorByOSForCPCodeResponse">
291
-
292
-
293
- <wsdl:part name="getVisitorByOSForCPCodeReturn" type="xsd:string"/>
294
-
295
-
296
- </wsdl:message>
297
-
298
-
299
- <wsdl:message name="getURLForReportGroupResponse">
300
-
301
-
302
- <wsdl:part name="getURLForReportGroupReturn" type="xsd:string"/>
303
-
304
-
305
- </wsdl:message>
306
-
307
-
308
- <wsdl:message name="getUniqueVisitorForCPCodeResponse">
309
-
310
-
311
- <wsdl:part name="getUniqueVisitorForCPCodeReturn" type="xsd:string"/>
312
-
313
-
314
- </wsdl:message>
315
-
316
-
317
- <wsdl:message name="getVisitorByUSStateForReportGroupRequest">
318
-
319
-
320
- <wsdl:part name="repgrp" type="xsd:string"/>
321
-
322
-
323
- <wsdl:part name="date" type="xsd:string"/>
324
-
325
-
326
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
327
-
328
-
329
- </wsdl:message>
330
-
331
-
332
- <wsdl:message name="getPerformanceReportForCPCodeRequest">
333
-
334
-
335
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
336
-
337
-
338
- <wsdl:part name="start" type="xsd:dateTime"/>
339
-
340
-
341
- <wsdl:part name="end" type="xsd:dateTime"/>
342
-
343
-
344
- <wsdl:part name="timeZone" type="xsd:string"/>
345
-
346
-
347
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
348
-
349
-
350
- </wsdl:message>
351
-
352
-
353
- <wsdl:message name="getUserLocationByCAProvinceForReportGroupResponse">
354
-
355
-
356
- <wsdl:part name="getUserLocationByCAProvinceForReportGroupReturn" type="xsd:string"/>
357
-
358
-
359
- </wsdl:message>
360
-
361
-
362
- <wsdl:message name="getVisitorByOSForReportGroupRequest">
363
-
364
-
365
- <wsdl:part name="repgrp" type="xsd:string"/>
366
-
367
-
368
- <wsdl:part name="date" type="xsd:string"/>
369
-
370
-
371
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
372
-
373
-
374
- </wsdl:message>
375
-
376
-
377
- <wsdl:message name="getVisitorBySoftwareForCPCodeRequest">
378
-
379
-
380
- <wsdl:part name="cpcode" type="xsd:int"/>
381
-
382
-
383
- <wsdl:part name="date" type="xsd:string"/>
384
-
385
-
386
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
387
-
388
-
389
- </wsdl:message>
390
-
391
-
392
- <wsdl:message name="getURLForReportGroupRequest">
393
-
394
-
395
- <wsdl:part name="repgrp" type="xsd:string"/>
396
-
397
-
398
- <wsdl:part name="startDate" type="xsd:string"/>
399
-
400
-
401
- <wsdl:part name="endDate" type="xsd:string"/>
402
-
403
-
404
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
405
-
406
-
407
- <wsdl:part name="sortColumn" type="xsd:string"/>
408
-
409
-
410
- <wsdl:part name="filter" type="akaaimsdt:UrlReportFilter"/>
411
-
412
-
413
- </wsdl:message>
414
-
415
-
416
- <wsdl:message name="getVisitorBySoftwareForReportGroupRequest">
417
-
418
-
419
- <wsdl:part name="repgrp" type="xsd:string"/>
420
-
421
-
422
- <wsdl:part name="date" type="xsd:string"/>
423
-
424
-
425
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
426
-
427
-
428
- </wsdl:message>
429
-
430
-
431
- <wsdl:message name="getUniqueVisitorForCPCodeRequest">
432
-
433
-
434
- <wsdl:part name="cpcode" type="xsd:int"/>
435
-
436
-
437
- <wsdl:part name="date" type="xsd:string"/>
438
-
439
-
440
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
441
-
442
-
443
- </wsdl:message>
444
-
445
-
446
- <wsdl:message name="getTrafficSummaryGranularityForReportGroupRequest">
447
-
448
-
449
- <wsdl:part name="repgrp" type="xsd:string"/>
450
-
451
-
452
- <wsdl:part name="start" type="xsd:dateTime"/>
453
-
454
-
455
- <wsdl:part name="end" type="xsd:dateTime"/>
456
-
457
-
458
- <wsdl:part name="gran" type="xsd:string"/>
459
-
460
-
461
- <wsdl:part name="timeZone" type="xsd:string"/>
462
-
463
-
464
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
465
-
466
-
467
- </wsdl:message>
468
-
469
-
470
- <wsdl:message name="getPerformanceReportForReportGroupResponse">
471
-
472
-
473
- <wsdl:part name="getPerformanceReportForReportGroupReturn" type="xsd:string"/>
474
-
475
-
476
- </wsdl:message>
477
-
478
-
479
- <wsdl:message name="getTopVisitorForCPCodeResponse">
480
-
481
-
482
- <wsdl:part name="getTopVisitorForCPCodeReturn" type="xsd:string"/>
483
-
484
-
485
- </wsdl:message>
486
-
487
-
488
- <wsdl:message name="getVisitorBySoftwareForReportGroupResponse">
489
-
490
-
491
- <wsdl:part name="getVisitorBySoftwareForReportGroupReturn" type="xsd:string"/>
492
-
493
-
494
- </wsdl:message>
495
-
496
-
497
- <wsdl:message name="getTopVisitorForCPCodeRequest">
498
-
499
-
500
- <wsdl:part name="cpcode" type="xsd:int"/>
501
-
502
-
503
- <wsdl:part name="date" type="xsd:string"/>
504
-
505
-
506
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
507
-
508
-
509
- </wsdl:message>
510
-
511
-
512
- <wsdl:message name="getUserLocationByCAProvinceForReportGroupRequest">
513
-
514
-
515
- <wsdl:part name="repgrp" type="xsd:string"/>
516
-
517
-
518
- <wsdl:part name="startDate" type="xsd:string"/>
519
-
520
-
521
- <wsdl:part name="endDate" type="xsd:string"/>
522
-
523
-
524
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
525
-
526
-
527
- </wsdl:message>
528
-
529
-
530
- <wsdl:message name="getNumURLForReportGroupResponse">
531
-
532
-
533
- <wsdl:part name="getNumURLForReportGroupReturn" type="xsd:string"/>
534
-
535
-
536
- </wsdl:message>
537
-
538
-
539
- <wsdl:message name="getTopVisitorForReportGroupResponse">
540
-
541
-
542
- <wsdl:part name="getTopVisitorForReportGroupReturn" type="xsd:string"/>
543
-
544
-
545
- </wsdl:message>
546
-
547
-
548
- <wsdl:message name="getTrafficSummaryForCPCodeRequest">
549
-
550
-
551
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
552
-
553
-
554
- <wsdl:part name="start" type="xsd:dateTime"/>
555
-
556
-
557
- <wsdl:part name="end" type="xsd:dateTime"/>
558
-
559
-
560
- <wsdl:part name="timeZone" type="xsd:string"/>
561
-
562
-
563
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
564
-
565
-
566
- </wsdl:message>
567
-
568
-
569
- <wsdl:message name="getURLDailyAggregationForReportGroupRequest">
570
-
571
-
572
- <wsdl:part name="repgrp" type="xsd:string"/>
573
-
574
-
575
- <wsdl:part name="startDate" type="xsd:string"/>
576
-
577
-
578
- <wsdl:part name="endDate" type="xsd:string"/>
579
-
580
-
581
- <wsdl:part name="aggregateColumn" type="xsd:string"/>
582
-
583
-
584
- <wsdl:part name="filter" type="akaaimsdt:UrlReportFilter"/>
585
-
586
-
587
- </wsdl:message>
588
-
589
-
590
- <wsdl:message name="getUserLocationByCountryForReportGroupRequest">
591
-
592
-
593
- <wsdl:part name="repgrp" type="xsd:string"/>
594
-
595
-
596
- <wsdl:part name="startDate" type="xsd:string"/>
597
-
598
-
599
- <wsdl:part name="endDate" type="xsd:string"/>
600
-
601
-
602
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
603
-
604
-
605
- </wsdl:message>
606
-
607
-
608
- <wsdl:message name="getUserLocationByUSStateForReportGroupRequest">
609
-
610
-
611
- <wsdl:part name="repgrp" type="xsd:string"/>
612
-
613
-
614
- <wsdl:part name="startDate" type="xsd:string"/>
615
-
616
-
617
- <wsdl:part name="endDate" type="xsd:string"/>
618
-
619
-
620
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
621
-
622
-
623
- </wsdl:message>
624
-
625
-
626
- <wsdl:message name="AWSFault">
627
-
628
-
629
- <wsdl:part name="fault" type="akaawsdt:AWSFault"/>
630
-
631
-
632
- </wsdl:message>
633
-
634
-
635
- <wsdl:message name="getTrafficSummaryForCPCodeResponse">
636
-
637
-
638
- <wsdl:part name="getTrafficSummaryForCPCodeReturn" type="xsd:string"/>
639
-
640
-
641
- </wsdl:message>
642
-
643
-
644
- <wsdl:message name="getTrafficSummaryForReportGroupRequest">
645
-
646
-
647
- <wsdl:part name="repgrp" type="xsd:string"/>
648
-
649
-
650
- <wsdl:part name="start" type="xsd:dateTime"/>
651
-
652
-
653
- <wsdl:part name="end" type="xsd:dateTime"/>
654
-
655
-
656
- <wsdl:part name="timeZone" type="xsd:string"/>
657
-
658
-
659
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
660
-
661
-
662
- </wsdl:message>
663
-
664
-
665
- <wsdl:message name="getVisitorByCountryForCPCodeRequest">
666
-
667
-
668
- <wsdl:part name="cpcode" type="xsd:int"/>
669
-
670
-
671
- <wsdl:part name="date" type="xsd:string"/>
672
-
673
-
674
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
675
-
676
-
677
- </wsdl:message>
678
-
679
-
680
- <wsdl:message name="getVisitorByOSForReportGroupResponse">
681
-
682
-
683
- <wsdl:part name="getVisitorByOSForReportGroupReturn" type="xsd:string"/>
684
-
685
-
686
- </wsdl:message>
687
-
688
-
689
- <wsdl:message name="getVisitorByCAProvinceForReportGroupResponse">
690
-
691
-
692
- <wsdl:part name="getVisitorByCAProvinceForReportGroupReturn" type="xsd:string"/>
693
-
694
-
695
- </wsdl:message>
696
-
697
-
698
- <wsdl:message name="getURLDailyAggregationForCPCodeRequest">
699
-
700
-
701
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
702
-
703
-
704
- <wsdl:part name="startDate" type="xsd:string"/>
705
-
706
-
707
- <wsdl:part name="endDate" type="xsd:string"/>
708
-
709
-
710
- <wsdl:part name="aggregateColumn" type="xsd:string"/>
711
-
712
-
713
- <wsdl:part name="filter" type="akaaimsdt:UrlReportFilter"/>
714
-
715
-
716
- </wsdl:message>
717
-
718
-
719
- <wsdl:message name="getUniqueVisitorForReportGroupResponse">
720
-
721
-
722
- <wsdl:part name="getUniqueVisitorForReportGroupReturn" type="xsd:string"/>
723
-
724
-
725
- </wsdl:message>
726
-
727
-
728
- <wsdl:message name="getVisitorByCountryForReportGroupRequest">
729
-
730
-
731
- <wsdl:part name="repgrp" type="xsd:string"/>
732
-
733
-
734
- <wsdl:part name="date" type="xsd:string"/>
735
-
736
-
737
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
738
-
739
-
740
- </wsdl:message>
741
-
742
-
743
- <wsdl:message name="getUserLocationByCountryForReportGroupResponse">
744
-
745
-
746
- <wsdl:part name="getUserLocationByCountryForReportGroupReturn" type="xsd:string"/>
747
-
748
-
749
- </wsdl:message>
750
-
751
-
752
- <wsdl:message name="getUserLocationByUSStateForCPCodeResponse">
753
-
754
-
755
- <wsdl:part name="getUserLocationByUSStateForCPCodeReturn" type="xsd:string"/>
756
-
757
-
758
- </wsdl:message>
759
-
760
-
761
- <wsdl:message name="getTopVisitorForReportGroupRequest">
762
-
763
-
764
- <wsdl:part name="repgrp" type="xsd:string"/>
765
-
766
-
767
- <wsdl:part name="date" type="xsd:string"/>
768
-
769
-
770
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
771
-
772
-
773
- </wsdl:message>
774
-
775
-
776
- <wsdl:message name="getUserLocationByUSStateForCPCodeRequest">
777
-
778
-
779
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
780
-
781
-
782
- <wsdl:part name="startDate" type="xsd:string"/>
783
-
784
-
785
- <wsdl:part name="endDate" type="xsd:string"/>
786
-
787
-
788
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
789
-
790
-
791
- </wsdl:message>
792
-
793
-
794
- <wsdl:message name="getUniqueVisitorForReportGroupRequest">
795
-
796
-
797
- <wsdl:part name="repgrp" type="xsd:string"/>
798
-
799
-
800
- <wsdl:part name="date" type="xsd:string"/>
801
-
802
-
803
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
804
-
805
-
806
- </wsdl:message>
807
-
808
-
809
- <wsdl:message name="getUserLocationByUSStateForReportGroupResponse">
810
-
811
-
812
- <wsdl:part name="getUserLocationByUSStateForReportGroupReturn" type="xsd:string"/>
813
-
814
-
815
- </wsdl:message>
816
-
817
-
818
- <wsdl:message name="getURLDailyAggregationForReportGroupResponse">
819
-
820
-
821
- <wsdl:part name="getURLDailyAggregationForReportGroupReturn" type="xsd:string"/>
822
-
823
-
824
- </wsdl:message>
825
-
826
-
827
- <wsdl:message name="getTrafficSummaryGranularityForCPCodeRequest">
828
-
829
-
830
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
831
-
832
-
833
- <wsdl:part name="start" type="xsd:dateTime"/>
834
-
835
-
836
- <wsdl:part name="end" type="xsd:dateTime"/>
837
-
838
-
839
- <wsdl:part name="gran" type="xsd:string"/>
840
-
841
-
842
- <wsdl:part name="timeZone" type="xsd:string"/>
843
-
844
-
845
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
846
-
847
-
848
- </wsdl:message>
849
-
850
-
851
- <wsdl:message name="getVisitorByUSStateForCPCodeRequest">
852
-
853
-
854
- <wsdl:part name="cpcode" type="xsd:int"/>
855
-
856
-
857
- <wsdl:part name="date" type="xsd:string"/>
858
-
859
-
860
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
861
-
862
-
863
- </wsdl:message>
864
-
865
-
866
- <wsdl:message name="getTrafficSummaryGranularityForReportGroupResponse">
867
-
868
-
869
- <wsdl:part name="getTrafficSummaryGranularityForReportGroupReturn" type="xsd:string"/>
870
-
871
-
872
- </wsdl:message>
873
-
874
-
875
- <wsdl:message name="getVisitorByCountryForCPCodeResponse">
876
-
877
-
878
- <wsdl:part name="getVisitorByCountryForCPCodeReturn" type="xsd:string"/>
879
-
880
-
881
- </wsdl:message>
882
-
883
-
884
- <wsdl:message name="getVisitorByOSForCPCodeRequest">
885
-
886
-
887
- <wsdl:part name="cpcode" type="xsd:int"/>
888
-
889
-
890
- <wsdl:part name="date" type="xsd:string"/>
891
-
892
-
893
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
894
-
895
-
896
- </wsdl:message>
897
-
898
-
899
- <wsdl:message name="getPerformanceReportForCPCodeResponse">
900
-
901
-
902
- <wsdl:part name="getPerformanceReportForCPCodeReturn" type="xsd:string"/>
903
-
904
-
905
- </wsdl:message>
906
-
907
-
908
- <wsdl:message name="getURLDailyAggregationForCPCodeResponse">
909
-
910
-
911
- <wsdl:part name="getURLDailyAggregationForCPCodeReturn" type="xsd:string"/>
912
-
913
-
914
- </wsdl:message>
915
-
916
-
917
- <wsdl:message name="getNumURLForCPCodeRequest">
918
-
919
-
920
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
921
-
922
-
923
- <wsdl:part name="startDate" type="xsd:string"/>
924
-
925
-
926
- <wsdl:part name="endDate" type="xsd:string"/>
927
-
928
-
929
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
930
-
931
-
932
- <wsdl:part name="sortColumn" type="xsd:string"/>
933
-
934
-
935
- <wsdl:part name="filter" type="akaaimsdt:UrlReportFilter"/>
936
-
937
-
938
- <wsdl:part name="numRows" type="xsd:int"/>
939
-
940
-
941
- </wsdl:message>
942
-
943
-
944
- <wsdl:message name="getNumURLForReportGroupRequest">
945
-
946
-
947
- <wsdl:part name="repgrp" type="xsd:string"/>
948
-
949
-
950
- <wsdl:part name="startDate" type="xsd:string"/>
951
-
952
-
953
- <wsdl:part name="endDate" type="xsd:string"/>
954
-
955
-
956
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
957
-
958
-
959
- <wsdl:part name="sortColumn" type="xsd:string"/>
960
-
961
-
962
- <wsdl:part name="filter" type="akaaimsdt:UrlReportFilter"/>
963
-
964
-
965
- <wsdl:part name="numRows" type="xsd:int"/>
966
-
967
-
968
- </wsdl:message>
969
-
970
-
971
- <wsdl:message name="getUserLocationByCAProvinceForCPCodeResponse">
972
-
973
-
974
- <wsdl:part name="getUserLocationByCAProvinceForCPCodeReturn" type="xsd:string"/>
975
-
976
-
977
- </wsdl:message>
978
-
979
-
980
- <wsdl:message name="getUserLocationByCAProvinceForCPCodeRequest">
981
-
982
-
983
- <wsdl:part name="cpcodes" type="akasiteDeldt:ArrayOfInt"/>
984
-
985
-
986
- <wsdl:part name="startDate" type="xsd:string"/>
987
-
988
-
989
- <wsdl:part name="endDate" type="xsd:string"/>
990
-
991
-
992
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
993
-
994
-
995
- </wsdl:message>
996
-
997
-
998
- <wsdl:message name="getCPCodesRequest">
999
-
1000
-
1001
- </wsdl:message>
1002
-
1003
-
1004
- <wsdl:message name="getURLForCPCodeResponse">
1005
-
1006
-
1007
- <wsdl:part name="getURLForCPCodeReturn" type="xsd:string"/>
1008
-
1009
-
1010
- </wsdl:message>
1011
-
1012
-
1013
- <wsdl:message name="getTrafficSummaryGranularityForCPCodeResponse">
1014
-
1015
-
1016
- <wsdl:part name="getTrafficSummaryGranularityForCPCodeReturn" type="xsd:string"/>
1017
-
1018
-
1019
- </wsdl:message>
1020
-
1021
-
1022
- <wsdl:message name="getVisitorByUSStateForCPCodeResponse">
1023
-
1024
-
1025
- <wsdl:part name="getVisitorByUSStateForCPCodeReturn" type="xsd:string"/>
1026
-
1027
-
1028
- </wsdl:message>
1029
-
1030
-
1031
- <wsdl:message name="getPerformanceReportForReportGroupRequest">
1032
-
1033
-
1034
- <wsdl:part name="repgrp" type="xsd:string"/>
1035
-
1036
-
1037
- <wsdl:part name="start" type="xsd:dateTime"/>
1038
-
1039
-
1040
- <wsdl:part name="end" type="xsd:dateTime"/>
1041
-
1042
-
1043
- <wsdl:part name="timeZone" type="xsd:string"/>
1044
-
1045
-
1046
- <wsdl:part name="columns" type="akasiteDeldt:ArrayOfString"/>
1047
-
1048
-
1049
- </wsdl:message>
1050
-
1051
-
1052
- <wsdl:portType name="SiteAcceleratorReportService">
1053
-
1054
-
1055
- <wsdl:operation name="getVisitorBySoftwareForReportGroup" parameterOrder="repgrp date columns">
1056
-
1057
-
1058
- <wsdl:input message="akasiteDeldt:getVisitorBySoftwareForReportGroupRequest" name="getVisitorBySoftwareForReportGroupRequest"/>
1059
-
1060
-
1061
- <wsdl:output message="akasiteDeldt:getVisitorBySoftwareForReportGroupResponse" name="getVisitorBySoftwareForReportGroupResponse"/>
1062
-
1063
-
1064
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1065
-
1066
-
1067
- </wsdl:operation>
1068
-
1069
-
1070
- <wsdl:operation name="getNumURLForReportGroup" parameterOrder="repgrp startDate endDate columns sortColumn filter numRows">
1071
-
1072
-
1073
- <wsdl:input message="akasiteDeldt:getNumURLForReportGroupRequest" name="getNumURLForReportGroupRequest"/>
1074
-
1075
-
1076
- <wsdl:output message="akasiteDeldt:getNumURLForReportGroupResponse" name="getNumURLForReportGroupResponse"/>
1077
-
1078
-
1079
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1080
-
1081
-
1082
- </wsdl:operation>
1083
-
1084
-
1085
- <wsdl:operation name="getTrafficSummaryForCPCode" parameterOrder="cpcodes start end timeZone columns">
1086
-
1087
-
1088
- <wsdl:input message="akasiteDeldt:getTrafficSummaryForCPCodeRequest" name="getTrafficSummaryForCPCodeRequest"/>
1089
-
1090
-
1091
- <wsdl:output message="akasiteDeldt:getTrafficSummaryForCPCodeResponse" name="getTrafficSummaryForCPCodeResponse"/>
1092
-
1093
-
1094
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1095
-
1096
-
1097
- </wsdl:operation>
1098
-
1099
-
1100
- <wsdl:operation name="getTrafficSummaryGranularityForCPCode" parameterOrder="cpcodes start end gran timeZone columns">
1101
-
1102
-
1103
- <wsdl:input message="akasiteDeldt:getTrafficSummaryGranularityForCPCodeRequest" name="getTrafficSummaryGranularityForCPCodeRequest"/>
1104
-
1105
-
1106
- <wsdl:output message="akasiteDeldt:getTrafficSummaryGranularityForCPCodeResponse" name="getTrafficSummaryGranularityForCPCodeResponse"/>
1107
-
1108
-
1109
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1110
-
1111
-
1112
- </wsdl:operation>
1113
-
1114
-
1115
- <wsdl:operation name="getTrafficSummaryForReportGroup" parameterOrder="repgrp start end timeZone columns">
1116
-
1117
-
1118
- <wsdl:input message="akasiteDeldt:getTrafficSummaryForReportGroupRequest" name="getTrafficSummaryForReportGroupRequest"/>
1119
-
1120
-
1121
- <wsdl:output message="akasiteDeldt:getTrafficSummaryForReportGroupResponse" name="getTrafficSummaryForReportGroupResponse"/>
1122
-
1123
-
1124
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1125
-
1126
-
1127
- </wsdl:operation>
1128
-
1129
-
1130
- <wsdl:operation name="getTrafficSummaryGranularityForReportGroup" parameterOrder="repgrp start end gran timeZone columns">
1131
-
1132
-
1133
- <wsdl:input message="akasiteDeldt:getTrafficSummaryGranularityForReportGroupRequest" name="getTrafficSummaryGranularityForReportGroupRequest"/>
1134
-
1135
-
1136
- <wsdl:output message="akasiteDeldt:getTrafficSummaryGranularityForReportGroupResponse" name="getTrafficSummaryGranularityForReportGroupResponse"/>
1137
-
1138
-
1139
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1140
-
1141
-
1142
- </wsdl:operation>
1143
-
1144
-
1145
- <wsdl:operation name="getPerformanceReportForCPCode" parameterOrder="cpcodes start end timeZone columns">
1146
-
1147
-
1148
- <wsdl:input message="akasiteDeldt:getPerformanceReportForCPCodeRequest" name="getPerformanceReportForCPCodeRequest"/>
1149
-
1150
-
1151
- <wsdl:output message="akasiteDeldt:getPerformanceReportForCPCodeResponse" name="getPerformanceReportForCPCodeResponse"/>
1152
-
1153
-
1154
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1155
-
1156
-
1157
- </wsdl:operation>
1158
-
1159
-
1160
- <wsdl:operation name="getVisitorByOSForCPCode" parameterOrder="cpcode date columns">
1161
-
1162
-
1163
- <wsdl:input message="akasiteDeldt:getVisitorByOSForCPCodeRequest" name="getVisitorByOSForCPCodeRequest"/>
1164
-
1165
-
1166
- <wsdl:output message="akasiteDeldt:getVisitorByOSForCPCodeResponse" name="getVisitorByOSForCPCodeResponse"/>
1167
-
1168
-
1169
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1170
-
1171
-
1172
- </wsdl:operation>
1173
-
1174
-
1175
- <wsdl:operation name="getVisitorByOSForReportGroup" parameterOrder="repgrp date columns">
1176
-
1177
-
1178
- <wsdl:input message="akasiteDeldt:getVisitorByOSForReportGroupRequest" name="getVisitorByOSForReportGroupRequest"/>
1179
-
1180
-
1181
- <wsdl:output message="akasiteDeldt:getVisitorByOSForReportGroupResponse" name="getVisitorByOSForReportGroupResponse"/>
1182
-
1183
-
1184
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1185
-
1186
-
1187
- </wsdl:operation>
1188
-
1189
-
1190
- <wsdl:operation name="getVisitorBySoftwareForCPCode" parameterOrder="cpcode date columns">
1191
-
1192
-
1193
- <wsdl:input message="akasiteDeldt:getVisitorBySoftwareForCPCodeRequest" name="getVisitorBySoftwareForCPCodeRequest"/>
1194
-
1195
-
1196
- <wsdl:output message="akasiteDeldt:getVisitorBySoftwareForCPCodeResponse" name="getVisitorBySoftwareForCPCodeResponse"/>
1197
-
1198
-
1199
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1200
-
1201
-
1202
- </wsdl:operation>
1203
-
1204
-
1205
- <wsdl:operation name="getUserLocationByCountryForReportGroup" parameterOrder="repgrp startDate endDate columns">
1206
-
1207
-
1208
- <wsdl:input message="akasiteDeldt:getUserLocationByCountryForReportGroupRequest" name="getUserLocationByCountryForReportGroupRequest"/>
1209
-
1210
-
1211
- <wsdl:output message="akasiteDeldt:getUserLocationByCountryForReportGroupResponse" name="getUserLocationByCountryForReportGroupResponse"/>
1212
-
1213
-
1214
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1215
-
1216
-
1217
- </wsdl:operation>
1218
-
1219
-
1220
- <wsdl:operation name="getVisitorByUSStateForCPCode" parameterOrder="cpcode date columns">
1221
-
1222
-
1223
- <wsdl:input message="akasiteDeldt:getVisitorByUSStateForCPCodeRequest" name="getVisitorByUSStateForCPCodeRequest"/>
1224
-
1225
-
1226
- <wsdl:output message="akasiteDeldt:getVisitorByUSStateForCPCodeResponse" name="getVisitorByUSStateForCPCodeResponse"/>
1227
-
1228
-
1229
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1230
-
1231
-
1232
- </wsdl:operation>
1233
-
1234
-
1235
- <wsdl:operation name="getVisitorByUSStateForReportGroup" parameterOrder="repgrp date columns">
1236
-
1237
-
1238
- <wsdl:input message="akasiteDeldt:getVisitorByUSStateForReportGroupRequest" name="getVisitorByUSStateForReportGroupRequest"/>
1239
-
1240
-
1241
- <wsdl:output message="akasiteDeldt:getVisitorByUSStateForReportGroupResponse" name="getVisitorByUSStateForReportGroupResponse"/>
1242
-
1243
-
1244
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1245
-
1246
-
1247
- </wsdl:operation>
1248
-
1249
-
1250
- <wsdl:operation name="getUserLocationByUSStateForCPCode" parameterOrder="cpcodes startDate endDate columns">
1251
-
1252
-
1253
- <wsdl:input message="akasiteDeldt:getUserLocationByUSStateForCPCodeRequest" name="getUserLocationByUSStateForCPCodeRequest"/>
1254
-
1255
-
1256
- <wsdl:output message="akasiteDeldt:getUserLocationByUSStateForCPCodeResponse" name="getUserLocationByUSStateForCPCodeResponse"/>
1257
-
1258
-
1259
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1260
-
1261
-
1262
- </wsdl:operation>
1263
-
1264
-
1265
- <wsdl:operation name="getUserLocationByUSStateForReportGroup" parameterOrder="repgrp startDate endDate columns">
1266
-
1267
-
1268
- <wsdl:input message="akasiteDeldt:getUserLocationByUSStateForReportGroupRequest" name="getUserLocationByUSStateForReportGroupRequest"/>
1269
-
1270
-
1271
- <wsdl:output message="akasiteDeldt:getUserLocationByUSStateForReportGroupResponse" name="getUserLocationByUSStateForReportGroupResponse"/>
1272
-
1273
-
1274
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1275
-
1276
-
1277
- </wsdl:operation>
1278
-
1279
-
1280
- <wsdl:operation name="getVisitorByCAProvinceForCPCode" parameterOrder="cpcode date columns">
1281
-
1282
-
1283
- <wsdl:input message="akasiteDeldt:getVisitorByCAProvinceForCPCodeRequest" name="getVisitorByCAProvinceForCPCodeRequest"/>
1284
-
1285
-
1286
- <wsdl:output message="akasiteDeldt:getVisitorByCAProvinceForCPCodeResponse" name="getVisitorByCAProvinceForCPCodeResponse"/>
1287
-
1288
-
1289
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1290
-
1291
-
1292
- </wsdl:operation>
1293
-
1294
-
1295
- <wsdl:operation name="getVisitorByCAProvinceForReportGroup" parameterOrder="repgrp date columns">
1296
-
1297
-
1298
- <wsdl:input message="akasiteDeldt:getVisitorByCAProvinceForReportGroupRequest" name="getVisitorByCAProvinceForReportGroupRequest"/>
1299
-
1300
-
1301
- <wsdl:output message="akasiteDeldt:getVisitorByCAProvinceForReportGroupResponse" name="getVisitorByCAProvinceForReportGroupResponse"/>
1302
-
1303
-
1304
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1305
-
1306
-
1307
- </wsdl:operation>
1308
-
1309
-
1310
- <wsdl:operation name="getUserLocationByCAProvinceForCPCode" parameterOrder="cpcodes startDate endDate columns">
1311
-
1312
-
1313
- <wsdl:input message="akasiteDeldt:getUserLocationByCAProvinceForCPCodeRequest" name="getUserLocationByCAProvinceForCPCodeRequest"/>
1314
-
1315
-
1316
- <wsdl:output message="akasiteDeldt:getUserLocationByCAProvinceForCPCodeResponse" name="getUserLocationByCAProvinceForCPCodeResponse"/>
1317
-
1318
-
1319
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1320
-
1321
-
1322
- </wsdl:operation>
1323
-
1324
-
1325
- <wsdl:operation name="getUserLocationByCAProvinceForReportGroup" parameterOrder="repgrp startDate endDate columns">
1326
-
1327
-
1328
- <wsdl:input message="akasiteDeldt:getUserLocationByCAProvinceForReportGroupRequest" name="getUserLocationByCAProvinceForReportGroupRequest"/>
1329
-
1330
-
1331
- <wsdl:output message="akasiteDeldt:getUserLocationByCAProvinceForReportGroupResponse" name="getUserLocationByCAProvinceForReportGroupResponse"/>
1332
-
1333
-
1334
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1335
-
1336
-
1337
- </wsdl:operation>
1338
-
1339
-
1340
- <wsdl:operation name="getURLForReportGroup" parameterOrder="repgrp startDate endDate columns sortColumn filter">
1341
-
1342
-
1343
- <wsdl:input message="akasiteDeldt:getURLForReportGroupRequest" name="getURLForReportGroupRequest"/>
1344
-
1345
-
1346
- <wsdl:output message="akasiteDeldt:getURLForReportGroupResponse" name="getURLForReportGroupResponse"/>
1347
-
1348
-
1349
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1350
-
1351
-
1352
- </wsdl:operation>
1353
-
1354
-
1355
- <wsdl:operation name="getURLForCPCode" parameterOrder="cpcodes startDate endDate columns sortColumn filter">
1356
-
1357
-
1358
- <wsdl:input message="akasiteDeldt:getURLForCPCodeRequest" name="getURLForCPCodeRequest"/>
1359
-
1360
-
1361
- <wsdl:output message="akasiteDeldt:getURLForCPCodeResponse" name="getURLForCPCodeResponse"/>
1362
-
1363
-
1364
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1365
-
1366
-
1367
- </wsdl:operation>
1368
-
1369
-
1370
- <wsdl:operation name="getURLDailyAggregationForCPCode" parameterOrder="cpcodes startDate endDate aggregateColumn filter">
1371
-
1372
-
1373
- <wsdl:input message="akasiteDeldt:getURLDailyAggregationForCPCodeRequest" name="getURLDailyAggregationForCPCodeRequest"/>
1374
-
1375
-
1376
- <wsdl:output message="akasiteDeldt:getURLDailyAggregationForCPCodeResponse" name="getURLDailyAggregationForCPCodeResponse"/>
1377
-
1378
-
1379
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1380
-
1381
-
1382
- </wsdl:operation>
1383
-
1384
-
1385
- <wsdl:operation name="getURLDailyAggregationForReportGroup" parameterOrder="repgrp startDate endDate aggregateColumn filter">
1386
-
1387
-
1388
- <wsdl:input message="akasiteDeldt:getURLDailyAggregationForReportGroupRequest" name="getURLDailyAggregationForReportGroupRequest"/>
1389
-
1390
-
1391
- <wsdl:output message="akasiteDeldt:getURLDailyAggregationForReportGroupResponse" name="getURLDailyAggregationForReportGroupResponse"/>
1392
-
1393
-
1394
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1395
-
1396
-
1397
- </wsdl:operation>
1398
-
1399
-
1400
- <wsdl:operation name="getNumURLForCPCode" parameterOrder="cpcodes startDate endDate columns sortColumn filter numRows">
1401
-
1402
-
1403
- <wsdl:input message="akasiteDeldt:getNumURLForCPCodeRequest" name="getNumURLForCPCodeRequest"/>
1404
-
1405
-
1406
- <wsdl:output message="akasiteDeldt:getNumURLForCPCodeResponse" name="getNumURLForCPCodeResponse"/>
1407
-
1408
-
1409
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1410
-
1411
-
1412
- </wsdl:operation>
1413
-
1414
-
1415
- <wsdl:operation name="getCPCodes">
1416
-
1417
-
1418
- <wsdl:input message="akasiteDeldt:getCPCodesRequest" name="getCPCodesRequest"/>
1419
-
1420
-
1421
- <wsdl:output message="akasiteDeldt:getCPCodesResponse" name="getCPCodesResponse"/>
1422
-
1423
-
1424
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1425
-
1426
-
1427
- </wsdl:operation>
1428
-
1429
-
1430
- <wsdl:operation name="getUniqueVisitorForCPCode" parameterOrder="cpcode date columns">
1431
-
1432
-
1433
- <wsdl:input message="akasiteDeldt:getUniqueVisitorForCPCodeRequest" name="getUniqueVisitorForCPCodeRequest"/>
1434
-
1435
-
1436
- <wsdl:output message="akasiteDeldt:getUniqueVisitorForCPCodeResponse" name="getUniqueVisitorForCPCodeResponse"/>
1437
-
1438
-
1439
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1440
-
1441
-
1442
- </wsdl:operation>
1443
-
1444
-
1445
- <wsdl:operation name="getUniqueVisitorForReportGroup" parameterOrder="repgrp date columns">
1446
-
1447
-
1448
- <wsdl:input message="akasiteDeldt:getUniqueVisitorForReportGroupRequest" name="getUniqueVisitorForReportGroupRequest"/>
1449
-
1450
-
1451
- <wsdl:output message="akasiteDeldt:getUniqueVisitorForReportGroupResponse" name="getUniqueVisitorForReportGroupResponse"/>
1452
-
1453
-
1454
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1455
-
1456
-
1457
- </wsdl:operation>
1458
-
1459
-
1460
- <wsdl:operation name="getTopVisitorForCPCode" parameterOrder="cpcode date columns">
1461
-
1462
-
1463
- <wsdl:input message="akasiteDeldt:getTopVisitorForCPCodeRequest" name="getTopVisitorForCPCodeRequest"/>
1464
-
1465
-
1466
- <wsdl:output message="akasiteDeldt:getTopVisitorForCPCodeResponse" name="getTopVisitorForCPCodeResponse"/>
1467
-
1468
-
1469
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1470
-
1471
-
1472
- </wsdl:operation>
1473
-
1474
-
1475
- <wsdl:operation name="getTopVisitorForReportGroup" parameterOrder="repgrp date columns">
1476
-
1477
-
1478
- <wsdl:input message="akasiteDeldt:getTopVisitorForReportGroupRequest" name="getTopVisitorForReportGroupRequest"/>
1479
-
1480
-
1481
- <wsdl:output message="akasiteDeldt:getTopVisitorForReportGroupResponse" name="getTopVisitorForReportGroupResponse"/>
1482
-
1483
-
1484
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1485
-
1486
-
1487
- </wsdl:operation>
1488
-
1489
-
1490
- <wsdl:operation name="getVisitorByCountryForCPCode" parameterOrder="cpcode date columns">
1491
-
1492
-
1493
- <wsdl:input message="akasiteDeldt:getVisitorByCountryForCPCodeRequest" name="getVisitorByCountryForCPCodeRequest"/>
1494
-
1495
-
1496
- <wsdl:output message="akasiteDeldt:getVisitorByCountryForCPCodeResponse" name="getVisitorByCountryForCPCodeResponse"/>
1497
-
1498
-
1499
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1500
-
1501
-
1502
- </wsdl:operation>
1503
-
1504
-
1505
- <wsdl:operation name="getVisitorByCountryForReportGroup" parameterOrder="repgrp date columns">
1506
-
1507
-
1508
- <wsdl:input message="akasiteDeldt:getVisitorByCountryForReportGroupRequest" name="getVisitorByCountryForReportGroupRequest"/>
1509
-
1510
-
1511
- <wsdl:output message="akasiteDeldt:getVisitorByCountryForReportGroupResponse" name="getVisitorByCountryForReportGroupResponse"/>
1512
-
1513
-
1514
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1515
-
1516
-
1517
- </wsdl:operation>
1518
-
1519
-
1520
- <wsdl:operation name="getUserLocationByCountryForCPCode" parameterOrder="cpcodes startDate endDate columns">
1521
-
1522
-
1523
- <wsdl:input message="akasiteDeldt:getUserLocationByCountryForCPCodeRequest" name="getUserLocationByCountryForCPCodeRequest"/>
1524
-
1525
-
1526
- <wsdl:output message="akasiteDeldt:getUserLocationByCountryForCPCodeResponse" name="getUserLocationByCountryForCPCodeResponse"/>
1527
-
1528
-
1529
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1530
-
1531
-
1532
- </wsdl:operation>
1533
-
1534
-
1535
- <wsdl:operation name="getPerformanceReportForReportGroup" parameterOrder="repgrp start end timeZone columns">
1536
-
1537
-
1538
- <wsdl:input message="akasiteDeldt:getPerformanceReportForReportGroupRequest" name="getPerformanceReportForReportGroupRequest"/>
1539
-
1540
-
1541
- <wsdl:output message="akasiteDeldt:getPerformanceReportForReportGroupResponse" name="getPerformanceReportForReportGroupResponse"/>
1542
-
1543
-
1544
- <wsdl:fault message="akasiteDeldt:AWSFault" name="AWSFault"/>
1545
-
1546
-
1547
- </wsdl:operation>
1548
-
1549
-
1550
- </wsdl:portType>
1551
-
1552
-
1553
- <wsdl:binding name="SiteAcceleratorReportService" type="akasiteDeldt:SiteAcceleratorReportService">
1554
-
1555
-
1556
- <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
1557
-
1558
-
1559
- <wsdl:operation name="getVisitorBySoftwareForReportGroup">
1560
-
1561
-
1562
- <wsdlsoap:operation soapAction=""/>
1563
-
1564
-
1565
- <wsdl:input name="getVisitorBySoftwareForReportGroupRequest">
1566
-
1567
-
1568
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1569
-
1570
-
1571
- </wsdl:input>
1572
-
1573
-
1574
- <wsdl:output name="getVisitorBySoftwareForReportGroupResponse">
1575
-
1576
-
1577
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1578
-
1579
-
1580
- </wsdl:output>
1581
-
1582
-
1583
- <wsdl:fault name="AWSFault">
1584
-
1585
-
1586
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1587
-
1588
-
1589
- </wsdl:fault>
1590
-
1591
-
1592
- </wsdl:operation>
1593
-
1594
-
1595
- <wsdl:operation name="getNumURLForReportGroup">
1596
-
1597
-
1598
- <wsdlsoap:operation soapAction=""/>
1599
-
1600
-
1601
- <wsdl:input name="getNumURLForReportGroupRequest">
1602
-
1603
-
1604
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1605
-
1606
-
1607
- </wsdl:input>
1608
-
1609
-
1610
- <wsdl:output name="getNumURLForReportGroupResponse">
1611
-
1612
-
1613
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1614
-
1615
-
1616
- </wsdl:output>
1617
-
1618
-
1619
- <wsdl:fault name="AWSFault">
1620
-
1621
-
1622
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1623
-
1624
-
1625
- </wsdl:fault>
1626
-
1627
-
1628
- </wsdl:operation>
1629
-
1630
-
1631
- <wsdl:operation name="getTrafficSummaryForCPCode">
1632
-
1633
-
1634
- <wsdlsoap:operation soapAction=""/>
1635
-
1636
-
1637
- <wsdl:input name="getTrafficSummaryForCPCodeRequest">
1638
-
1639
-
1640
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1641
-
1642
-
1643
- </wsdl:input>
1644
-
1645
-
1646
- <wsdl:output name="getTrafficSummaryForCPCodeResponse">
1647
-
1648
-
1649
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1650
-
1651
-
1652
- </wsdl:output>
1653
-
1654
-
1655
- <wsdl:fault name="AWSFault">
1656
-
1657
-
1658
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1659
-
1660
-
1661
- </wsdl:fault>
1662
-
1663
-
1664
- </wsdl:operation>
1665
-
1666
-
1667
- <wsdl:operation name="getTrafficSummaryGranularityForCPCode">
1668
-
1669
-
1670
- <wsdlsoap:operation soapAction=""/>
1671
-
1672
-
1673
- <wsdl:input name="getTrafficSummaryGranularityForCPCodeRequest">
1674
-
1675
-
1676
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1677
-
1678
-
1679
- </wsdl:input>
1680
-
1681
-
1682
- <wsdl:output name="getTrafficSummaryGranularityForCPCodeResponse">
1683
-
1684
-
1685
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1686
-
1687
-
1688
- </wsdl:output>
1689
-
1690
-
1691
- <wsdl:fault name="AWSFault">
1692
-
1693
-
1694
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1695
-
1696
-
1697
- </wsdl:fault>
1698
-
1699
-
1700
- </wsdl:operation>
1701
-
1702
-
1703
- <wsdl:operation name="getTrafficSummaryForReportGroup">
1704
-
1705
-
1706
- <wsdlsoap:operation soapAction=""/>
1707
-
1708
-
1709
- <wsdl:input name="getTrafficSummaryForReportGroupRequest">
1710
-
1711
-
1712
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1713
-
1714
-
1715
- </wsdl:input>
1716
-
1717
-
1718
- <wsdl:output name="getTrafficSummaryForReportGroupResponse">
1719
-
1720
-
1721
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1722
-
1723
-
1724
- </wsdl:output>
1725
-
1726
-
1727
- <wsdl:fault name="AWSFault">
1728
-
1729
-
1730
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1731
-
1732
-
1733
- </wsdl:fault>
1734
-
1735
-
1736
- </wsdl:operation>
1737
-
1738
-
1739
- <wsdl:operation name="getTrafficSummaryGranularityForReportGroup">
1740
-
1741
-
1742
- <wsdlsoap:operation soapAction=""/>
1743
-
1744
-
1745
- <wsdl:input name="getTrafficSummaryGranularityForReportGroupRequest">
1746
-
1747
-
1748
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1749
-
1750
-
1751
- </wsdl:input>
1752
-
1753
-
1754
- <wsdl:output name="getTrafficSummaryGranularityForReportGroupResponse">
1755
-
1756
-
1757
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1758
-
1759
-
1760
- </wsdl:output>
1761
-
1762
-
1763
- <wsdl:fault name="AWSFault">
1764
-
1765
-
1766
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1767
-
1768
-
1769
- </wsdl:fault>
1770
-
1771
-
1772
- </wsdl:operation>
1773
-
1774
-
1775
- <wsdl:operation name="getPerformanceReportForCPCode">
1776
-
1777
-
1778
- <wsdlsoap:operation soapAction=""/>
1779
-
1780
-
1781
- <wsdl:input name="getPerformanceReportForCPCodeRequest">
1782
-
1783
-
1784
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1785
-
1786
-
1787
- </wsdl:input>
1788
-
1789
-
1790
- <wsdl:output name="getPerformanceReportForCPCodeResponse">
1791
-
1792
-
1793
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1794
-
1795
-
1796
- </wsdl:output>
1797
-
1798
-
1799
- <wsdl:fault name="AWSFault">
1800
-
1801
-
1802
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1803
-
1804
-
1805
- </wsdl:fault>
1806
-
1807
-
1808
- </wsdl:operation>
1809
-
1810
-
1811
- <wsdl:operation name="getVisitorByOSForCPCode">
1812
-
1813
-
1814
- <wsdlsoap:operation soapAction=""/>
1815
-
1816
-
1817
- <wsdl:input name="getVisitorByOSForCPCodeRequest">
1818
-
1819
-
1820
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1821
-
1822
-
1823
- </wsdl:input>
1824
-
1825
-
1826
- <wsdl:output name="getVisitorByOSForCPCodeResponse">
1827
-
1828
-
1829
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1830
-
1831
-
1832
- </wsdl:output>
1833
-
1834
-
1835
- <wsdl:fault name="AWSFault">
1836
-
1837
-
1838
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1839
-
1840
-
1841
- </wsdl:fault>
1842
-
1843
-
1844
- </wsdl:operation>
1845
-
1846
-
1847
- <wsdl:operation name="getVisitorByOSForReportGroup">
1848
-
1849
-
1850
- <wsdlsoap:operation soapAction=""/>
1851
-
1852
-
1853
- <wsdl:input name="getVisitorByOSForReportGroupRequest">
1854
-
1855
-
1856
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1857
-
1858
-
1859
- </wsdl:input>
1860
-
1861
-
1862
- <wsdl:output name="getVisitorByOSForReportGroupResponse">
1863
-
1864
-
1865
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1866
-
1867
-
1868
- </wsdl:output>
1869
-
1870
-
1871
- <wsdl:fault name="AWSFault">
1872
-
1873
-
1874
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1875
-
1876
-
1877
- </wsdl:fault>
1878
-
1879
-
1880
- </wsdl:operation>
1881
-
1882
-
1883
- <wsdl:operation name="getVisitorBySoftwareForCPCode">
1884
-
1885
-
1886
- <wsdlsoap:operation soapAction=""/>
1887
-
1888
-
1889
- <wsdl:input name="getVisitorBySoftwareForCPCodeRequest">
1890
-
1891
-
1892
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1893
-
1894
-
1895
- </wsdl:input>
1896
-
1897
-
1898
- <wsdl:output name="getVisitorBySoftwareForCPCodeResponse">
1899
-
1900
-
1901
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1902
-
1903
-
1904
- </wsdl:output>
1905
-
1906
-
1907
- <wsdl:fault name="AWSFault">
1908
-
1909
-
1910
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1911
-
1912
-
1913
- </wsdl:fault>
1914
-
1915
-
1916
- </wsdl:operation>
1917
-
1918
-
1919
- <wsdl:operation name="getUserLocationByCountryForReportGroup">
1920
-
1921
-
1922
- <wsdlsoap:operation soapAction=""/>
1923
-
1924
-
1925
- <wsdl:input name="getUserLocationByCountryForReportGroupRequest">
1926
-
1927
-
1928
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1929
-
1930
-
1931
- </wsdl:input>
1932
-
1933
-
1934
- <wsdl:output name="getUserLocationByCountryForReportGroupResponse">
1935
-
1936
-
1937
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1938
-
1939
-
1940
- </wsdl:output>
1941
-
1942
-
1943
- <wsdl:fault name="AWSFault">
1944
-
1945
-
1946
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1947
-
1948
-
1949
- </wsdl:fault>
1950
-
1951
-
1952
- </wsdl:operation>
1953
-
1954
-
1955
- <wsdl:operation name="getVisitorByUSStateForCPCode">
1956
-
1957
-
1958
- <wsdlsoap:operation soapAction=""/>
1959
-
1960
-
1961
- <wsdl:input name="getVisitorByUSStateForCPCodeRequest">
1962
-
1963
-
1964
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1965
-
1966
-
1967
- </wsdl:input>
1968
-
1969
-
1970
- <wsdl:output name="getVisitorByUSStateForCPCodeResponse">
1971
-
1972
-
1973
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1974
-
1975
-
1976
- </wsdl:output>
1977
-
1978
-
1979
- <wsdl:fault name="AWSFault">
1980
-
1981
-
1982
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
1983
-
1984
-
1985
- </wsdl:fault>
1986
-
1987
-
1988
- </wsdl:operation>
1989
-
1990
-
1991
- <wsdl:operation name="getVisitorByUSStateForReportGroup">
1992
-
1993
-
1994
- <wsdlsoap:operation soapAction=""/>
1995
-
1996
-
1997
- <wsdl:input name="getVisitorByUSStateForReportGroupRequest">
1998
-
1999
-
2000
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2001
-
2002
-
2003
- </wsdl:input>
2004
-
2005
-
2006
- <wsdl:output name="getVisitorByUSStateForReportGroupResponse">
2007
-
2008
-
2009
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2010
-
2011
-
2012
- </wsdl:output>
2013
-
2014
-
2015
- <wsdl:fault name="AWSFault">
2016
-
2017
-
2018
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2019
-
2020
-
2021
- </wsdl:fault>
2022
-
2023
-
2024
- </wsdl:operation>
2025
-
2026
-
2027
- <wsdl:operation name="getUserLocationByUSStateForCPCode">
2028
-
2029
-
2030
- <wsdlsoap:operation soapAction=""/>
2031
-
2032
-
2033
- <wsdl:input name="getUserLocationByUSStateForCPCodeRequest">
2034
-
2035
-
2036
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2037
-
2038
-
2039
- </wsdl:input>
2040
-
2041
-
2042
- <wsdl:output name="getUserLocationByUSStateForCPCodeResponse">
2043
-
2044
-
2045
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2046
-
2047
-
2048
- </wsdl:output>
2049
-
2050
-
2051
- <wsdl:fault name="AWSFault">
2052
-
2053
-
2054
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2055
-
2056
-
2057
- </wsdl:fault>
2058
-
2059
-
2060
- </wsdl:operation>
2061
-
2062
-
2063
- <wsdl:operation name="getUserLocationByUSStateForReportGroup">
2064
-
2065
-
2066
- <wsdlsoap:operation soapAction=""/>
2067
-
2068
-
2069
- <wsdl:input name="getUserLocationByUSStateForReportGroupRequest">
2070
-
2071
-
2072
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2073
-
2074
-
2075
- </wsdl:input>
2076
-
2077
-
2078
- <wsdl:output name="getUserLocationByUSStateForReportGroupResponse">
2079
-
2080
-
2081
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2082
-
2083
-
2084
- </wsdl:output>
2085
-
2086
-
2087
- <wsdl:fault name="AWSFault">
2088
-
2089
-
2090
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2091
-
2092
-
2093
- </wsdl:fault>
2094
-
2095
-
2096
- </wsdl:operation>
2097
-
2098
-
2099
- <wsdl:operation name="getVisitorByCAProvinceForCPCode">
2100
-
2101
-
2102
- <wsdlsoap:operation soapAction=""/>
2103
-
2104
-
2105
- <wsdl:input name="getVisitorByCAProvinceForCPCodeRequest">
2106
-
2107
-
2108
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2109
-
2110
-
2111
- </wsdl:input>
2112
-
2113
-
2114
- <wsdl:output name="getVisitorByCAProvinceForCPCodeResponse">
2115
-
2116
-
2117
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2118
-
2119
-
2120
- </wsdl:output>
2121
-
2122
-
2123
- <wsdl:fault name="AWSFault">
2124
-
2125
-
2126
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2127
-
2128
-
2129
- </wsdl:fault>
2130
-
2131
-
2132
- </wsdl:operation>
2133
-
2134
-
2135
- <wsdl:operation name="getVisitorByCAProvinceForReportGroup">
2136
-
2137
-
2138
- <wsdlsoap:operation soapAction=""/>
2139
-
2140
-
2141
- <wsdl:input name="getVisitorByCAProvinceForReportGroupRequest">
2142
-
2143
-
2144
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2145
-
2146
-
2147
- </wsdl:input>
2148
-
2149
-
2150
- <wsdl:output name="getVisitorByCAProvinceForReportGroupResponse">
2151
-
2152
-
2153
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2154
-
2155
-
2156
- </wsdl:output>
2157
-
2158
-
2159
- <wsdl:fault name="AWSFault">
2160
-
2161
-
2162
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2163
-
2164
-
2165
- </wsdl:fault>
2166
-
2167
-
2168
- </wsdl:operation>
2169
-
2170
-
2171
- <wsdl:operation name="getUserLocationByCAProvinceForCPCode">
2172
-
2173
-
2174
- <wsdlsoap:operation soapAction=""/>
2175
-
2176
-
2177
- <wsdl:input name="getUserLocationByCAProvinceForCPCodeRequest">
2178
-
2179
-
2180
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2181
-
2182
-
2183
- </wsdl:input>
2184
-
2185
-
2186
- <wsdl:output name="getUserLocationByCAProvinceForCPCodeResponse">
2187
-
2188
-
2189
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2190
-
2191
-
2192
- </wsdl:output>
2193
-
2194
-
2195
- <wsdl:fault name="AWSFault">
2196
-
2197
-
2198
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2199
-
2200
-
2201
- </wsdl:fault>
2202
-
2203
-
2204
- </wsdl:operation>
2205
-
2206
-
2207
- <wsdl:operation name="getUserLocationByCAProvinceForReportGroup">
2208
-
2209
-
2210
- <wsdlsoap:operation soapAction=""/>
2211
-
2212
-
2213
- <wsdl:input name="getUserLocationByCAProvinceForReportGroupRequest">
2214
-
2215
-
2216
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2217
-
2218
-
2219
- </wsdl:input>
2220
-
2221
-
2222
- <wsdl:output name="getUserLocationByCAProvinceForReportGroupResponse">
2223
-
2224
-
2225
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2226
-
2227
-
2228
- </wsdl:output>
2229
-
2230
-
2231
- <wsdl:fault name="AWSFault">
2232
-
2233
-
2234
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2235
-
2236
-
2237
- </wsdl:fault>
2238
-
2239
-
2240
- </wsdl:operation>
2241
-
2242
-
2243
- <wsdl:operation name="getURLForReportGroup">
2244
-
2245
-
2246
- <wsdlsoap:operation soapAction=""/>
2247
-
2248
-
2249
- <wsdl:input name="getURLForReportGroupRequest">
2250
-
2251
-
2252
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2253
-
2254
-
2255
- </wsdl:input>
2256
-
2257
-
2258
- <wsdl:output name="getURLForReportGroupResponse">
2259
-
2260
-
2261
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2262
-
2263
-
2264
- </wsdl:output>
2265
-
2266
-
2267
- <wsdl:fault name="AWSFault">
2268
-
2269
-
2270
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2271
-
2272
-
2273
- </wsdl:fault>
2274
-
2275
-
2276
- </wsdl:operation>
2277
-
2278
-
2279
- <wsdl:operation name="getURLForCPCode">
2280
-
2281
-
2282
- <wsdlsoap:operation soapAction=""/>
2283
-
2284
-
2285
- <wsdl:input name="getURLForCPCodeRequest">
2286
-
2287
-
2288
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2289
-
2290
-
2291
- </wsdl:input>
2292
-
2293
-
2294
- <wsdl:output name="getURLForCPCodeResponse">
2295
-
2296
-
2297
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2298
-
2299
-
2300
- </wsdl:output>
2301
-
2302
-
2303
- <wsdl:fault name="AWSFault">
2304
-
2305
-
2306
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2307
-
2308
-
2309
- </wsdl:fault>
2310
-
2311
-
2312
- </wsdl:operation>
2313
-
2314
-
2315
- <wsdl:operation name="getURLDailyAggregationForCPCode">
2316
-
2317
-
2318
- <wsdlsoap:operation soapAction=""/>
2319
-
2320
-
2321
- <wsdl:input name="getURLDailyAggregationForCPCodeRequest">
2322
-
2323
-
2324
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2325
-
2326
-
2327
- </wsdl:input>
2328
-
2329
-
2330
- <wsdl:output name="getURLDailyAggregationForCPCodeResponse">
2331
-
2332
-
2333
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2334
-
2335
-
2336
- </wsdl:output>
2337
-
2338
-
2339
- <wsdl:fault name="AWSFault">
2340
-
2341
-
2342
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2343
-
2344
-
2345
- </wsdl:fault>
2346
-
2347
-
2348
- </wsdl:operation>
2349
-
2350
-
2351
- <wsdl:operation name="getURLDailyAggregationForReportGroup">
2352
-
2353
-
2354
- <wsdlsoap:operation soapAction=""/>
2355
-
2356
-
2357
- <wsdl:input name="getURLDailyAggregationForReportGroupRequest">
2358
-
2359
-
2360
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2361
-
2362
-
2363
- </wsdl:input>
2364
-
2365
-
2366
- <wsdl:output name="getURLDailyAggregationForReportGroupResponse">
2367
-
2368
-
2369
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2370
-
2371
-
2372
- </wsdl:output>
2373
-
2374
-
2375
- <wsdl:fault name="AWSFault">
2376
-
2377
-
2378
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2379
-
2380
-
2381
- </wsdl:fault>
2382
-
2383
-
2384
- </wsdl:operation>
2385
-
2386
-
2387
- <wsdl:operation name="getNumURLForCPCode">
2388
-
2389
-
2390
- <wsdlsoap:operation soapAction=""/>
2391
-
2392
-
2393
- <wsdl:input name="getNumURLForCPCodeRequest">
2394
-
2395
-
2396
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2397
-
2398
-
2399
- </wsdl:input>
2400
-
2401
-
2402
- <wsdl:output name="getNumURLForCPCodeResponse">
2403
-
2404
-
2405
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2406
-
2407
-
2408
- </wsdl:output>
2409
-
2410
-
2411
- <wsdl:fault name="AWSFault">
2412
-
2413
-
2414
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2415
-
2416
-
2417
- </wsdl:fault>
2418
-
2419
-
2420
- </wsdl:operation>
2421
-
2422
-
2423
- <wsdl:operation name="getCPCodes">
2424
-
2425
-
2426
- <wsdlsoap:operation soapAction=""/>
2427
-
2428
-
2429
- <wsdl:input name="getCPCodesRequest">
2430
-
2431
-
2432
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2433
-
2434
-
2435
- </wsdl:input>
2436
-
2437
-
2438
- <wsdl:output name="getCPCodesResponse">
2439
-
2440
-
2441
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2442
-
2443
-
2444
- </wsdl:output>
2445
-
2446
-
2447
- <wsdl:fault name="AWSFault">
2448
-
2449
-
2450
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2451
-
2452
-
2453
- </wsdl:fault>
2454
-
2455
-
2456
- </wsdl:operation>
2457
-
2458
-
2459
- <wsdl:operation name="getUniqueVisitorForCPCode">
2460
-
2461
-
2462
- <wsdlsoap:operation soapAction=""/>
2463
-
2464
-
2465
- <wsdl:input name="getUniqueVisitorForCPCodeRequest">
2466
-
2467
-
2468
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2469
-
2470
-
2471
- </wsdl:input>
2472
-
2473
-
2474
- <wsdl:output name="getUniqueVisitorForCPCodeResponse">
2475
-
2476
-
2477
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2478
-
2479
-
2480
- </wsdl:output>
2481
-
2482
-
2483
- <wsdl:fault name="AWSFault">
2484
-
2485
-
2486
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2487
-
2488
-
2489
- </wsdl:fault>
2490
-
2491
-
2492
- </wsdl:operation>
2493
-
2494
-
2495
- <wsdl:operation name="getUniqueVisitorForReportGroup">
2496
-
2497
-
2498
- <wsdlsoap:operation soapAction=""/>
2499
-
2500
-
2501
- <wsdl:input name="getUniqueVisitorForReportGroupRequest">
2502
-
2503
-
2504
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2505
-
2506
-
2507
- </wsdl:input>
2508
-
2509
-
2510
- <wsdl:output name="getUniqueVisitorForReportGroupResponse">
2511
-
2512
-
2513
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2514
-
2515
-
2516
- </wsdl:output>
2517
-
2518
-
2519
- <wsdl:fault name="AWSFault">
2520
-
2521
-
2522
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2523
-
2524
-
2525
- </wsdl:fault>
2526
-
2527
-
2528
- </wsdl:operation>
2529
-
2530
-
2531
- <wsdl:operation name="getTopVisitorForCPCode">
2532
-
2533
-
2534
- <wsdlsoap:operation soapAction=""/>
2535
-
2536
-
2537
- <wsdl:input name="getTopVisitorForCPCodeRequest">
2538
-
2539
-
2540
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2541
-
2542
-
2543
- </wsdl:input>
2544
-
2545
-
2546
- <wsdl:output name="getTopVisitorForCPCodeResponse">
2547
-
2548
-
2549
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2550
-
2551
-
2552
- </wsdl:output>
2553
-
2554
-
2555
- <wsdl:fault name="AWSFault">
2556
-
2557
-
2558
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2559
-
2560
-
2561
- </wsdl:fault>
2562
-
2563
-
2564
- </wsdl:operation>
2565
-
2566
-
2567
- <wsdl:operation name="getTopVisitorForReportGroup">
2568
-
2569
-
2570
- <wsdlsoap:operation soapAction=""/>
2571
-
2572
-
2573
- <wsdl:input name="getTopVisitorForReportGroupRequest">
2574
-
2575
-
2576
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2577
-
2578
-
2579
- </wsdl:input>
2580
-
2581
-
2582
- <wsdl:output name="getTopVisitorForReportGroupResponse">
2583
-
2584
-
2585
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2586
-
2587
-
2588
- </wsdl:output>
2589
-
2590
-
2591
- <wsdl:fault name="AWSFault">
2592
-
2593
-
2594
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2595
-
2596
-
2597
- </wsdl:fault>
2598
-
2599
-
2600
- </wsdl:operation>
2601
-
2602
-
2603
- <wsdl:operation name="getVisitorByCountryForCPCode">
2604
-
2605
-
2606
- <wsdlsoap:operation soapAction=""/>
2607
-
2608
-
2609
- <wsdl:input name="getVisitorByCountryForCPCodeRequest">
2610
-
2611
-
2612
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2613
-
2614
-
2615
- </wsdl:input>
2616
-
2617
-
2618
- <wsdl:output name="getVisitorByCountryForCPCodeResponse">
2619
-
2620
-
2621
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2622
-
2623
-
2624
- </wsdl:output>
2625
-
2626
-
2627
- <wsdl:fault name="AWSFault">
2628
-
2629
-
2630
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2631
-
2632
-
2633
- </wsdl:fault>
2634
-
2635
-
2636
- </wsdl:operation>
2637
-
2638
-
2639
- <wsdl:operation name="getVisitorByCountryForReportGroup">
2640
-
2641
-
2642
- <wsdlsoap:operation soapAction=""/>
2643
-
2644
-
2645
- <wsdl:input name="getVisitorByCountryForReportGroupRequest">
2646
-
2647
-
2648
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2649
-
2650
-
2651
- </wsdl:input>
2652
-
2653
-
2654
- <wsdl:output name="getVisitorByCountryForReportGroupResponse">
2655
-
2656
-
2657
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2658
-
2659
-
2660
- </wsdl:output>
2661
-
2662
-
2663
- <wsdl:fault name="AWSFault">
2664
-
2665
-
2666
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2667
-
2668
-
2669
- </wsdl:fault>
2670
-
2671
-
2672
- </wsdl:operation>
2673
-
2674
-
2675
- <wsdl:operation name="getUserLocationByCountryForCPCode">
2676
-
2677
-
2678
- <wsdlsoap:operation soapAction=""/>
2679
-
2680
-
2681
- <wsdl:input name="getUserLocationByCountryForCPCodeRequest">
2682
-
2683
-
2684
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2685
-
2686
-
2687
- </wsdl:input>
2688
-
2689
-
2690
- <wsdl:output name="getUserLocationByCountryForCPCodeResponse">
2691
-
2692
-
2693
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2694
-
2695
-
2696
- </wsdl:output>
2697
-
2698
-
2699
- <wsdl:fault name="AWSFault">
2700
-
2701
-
2702
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2703
-
2704
-
2705
- </wsdl:fault>
2706
-
2707
-
2708
- </wsdl:operation>
2709
-
2710
-
2711
- <wsdl:operation name="getPerformanceReportForReportGroup">
2712
-
2713
-
2714
- <wsdlsoap:operation soapAction=""/>
2715
-
2716
-
2717
- <wsdl:input name="getPerformanceReportForReportGroupRequest">
2718
-
2719
-
2720
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2721
-
2722
-
2723
- </wsdl:input>
2724
-
2725
-
2726
- <wsdl:output name="getPerformanceReportForReportGroupResponse">
2727
-
2728
-
2729
- <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2730
-
2731
-
2732
- </wsdl:output>
2733
-
2734
-
2735
- <wsdl:fault name="AWSFault">
2736
-
2737
-
2738
- <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="AWSFault" namespace="https://control.akamai.com/SiteAcceleratorReportService.xsd" use="encoded"/>
2739
-
2740
-
2741
- </wsdl:fault>
2742
-
2743
-
2744
- </wsdl:operation>
2745
-
2746
-
2747
- </wsdl:binding>
2748
-
2749
-
2750
- <wsdl:service name="SiteAcceleratorReportService">
2751
-
2752
-
2753
- <wsdl:port binding="akasiteDeldt:SiteAcceleratorReportService" name="SiteAcceleratorReportService">
2754
-
2755
-
2756
- <wsdlsoap:address location="https://control.akamai.com/nmrws/services/SiteAcceleratorReportService"/>
2757
-
2758
-
2759
- </wsdl:port>
2760
-
2761
-
2762
- </wsdl:service>
2763
-
2764
-
2765
- </wsdl:definitions>