postini 0.0.6 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/Manifest.txt +12 -26
- data/README.txt +11 -4
- data/Rakefile +27 -4
- data/features/development.feature +13 -0
- data/features/step_definitions/common_steps.rb +172 -0
- data/features/support/common.rb +29 -0
- data/features/support/env.rb +6 -0
- data/features/support/matchers.rb +11 -0
- data/lib/postini/automated_batch_service.rb +464 -0
- data/lib/postini/configuration_check.rb +25 -0
- data/lib/postini/endpoint_resolver_service.rb +41 -0
- data/lib/postini/endpoints.rb +26 -0
- data/lib/postini/exceptions.rb +85 -0
- data/lib/postini.rb +74 -102
- data/script/console +1 -1
- data/script/txt2html +5 -16
- data/spec/exceptions_spec.rb +19 -0
- data/spec/postini_spec.rb +5 -38
- data/spec/rcov.opts +1 -0
- data/spec/spec_helper.rb +1 -1
- data/tasks/rspec.rake +1 -19
- data/vendor/automatedbatch.wsdl +1 -1
- metadata +21 -54
- data/config/hoe.rb +0 -76
- data/config/requirements.rb +0 -15
- data/lib/postini/api/automatedbatch/AutomatedBatch.rb +0 -1244
- data/lib/postini/api/automatedbatch/AutomatedBatchDriver.rb +0 -216
- data/lib/postini/api/automatedbatch/AutomatedBatchMappingRegistry.rb +0 -1883
- data/lib/postini/api/automatedbatch/AutomatedBatchServiceClient.rb +0 -523
- data/lib/postini/api/endpointresolver/EndpointResolver.rb +0 -121
- data/lib/postini/api/endpointresolver/EndpointResolverDriver.rb +0 -51
- data/lib/postini/api/endpointresolver/EndpointResolverMappingRegistry.rb +0 -268
- data/lib/postini/api/endpointresolver/EndpointResolverServiceClient.rb +0 -38
- data/lib/postini/api.rb +0 -8
- data/lib/postini/domain.rb +0 -72
- data/lib/postini/helpers/attributes.rb +0 -94
- data/lib/postini/helpers.rb +0 -13
- data/lib/postini/user.rb +0 -91
- data/lib/postini/users/aliases.rb +0 -55
- data/lib/postini/version.rb +0 -9
- data/spec/attribute_helper_spec.rb +0 -47
- data/spec/domain_spec.rb +0 -36
- data/spec/user_spec.rb +0 -142
- data/website/index.html +0 -89
- data/website/index.txt +0 -60
- data/website/javascripts/rounded_corners_lite.inc.js +0 -285
- data/website/spam_box.png +0 -0
- data/website/stylesheets/screen.css +0 -143
- data/website/template.html.erb +0 -56
@@ -1,523 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
require 'AutomatedBatchDriver.rb'
|
3
|
-
|
4
|
-
|
5
|
-
module Postini::API::AutomatedBatch
|
6
|
-
|
7
|
-
endpoint_url = ARGV.shift
|
8
|
-
obj = AutomatedBatchPort.new(endpoint_url)
|
9
|
-
|
10
|
-
# run ruby with -d to see SOAP wiredumps.
|
11
|
-
obj.wiredump_dev = STDERR if $DEBUG
|
12
|
-
|
13
|
-
# SYNOPSIS
|
14
|
-
# test(parameters)
|
15
|
-
#
|
16
|
-
# ARGS
|
17
|
-
# parameters Test - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}test
|
18
|
-
#
|
19
|
-
# RETURNS
|
20
|
-
# parameters TestResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}testResponse
|
21
|
-
#
|
22
|
-
# RAISES
|
23
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
24
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
25
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
26
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
27
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
28
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
29
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
30
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
31
|
-
# fault StatusException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}StatusException
|
32
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
33
|
-
#
|
34
|
-
parameters = nil
|
35
|
-
puts obj.test(parameters)
|
36
|
-
|
37
|
-
# SYNOPSIS
|
38
|
-
# checkauth(parameters)
|
39
|
-
#
|
40
|
-
# ARGS
|
41
|
-
# parameters Checkauth - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}checkauth
|
42
|
-
#
|
43
|
-
# RETURNS
|
44
|
-
# parameters CheckauthResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}checkauthResponse
|
45
|
-
#
|
46
|
-
# RAISES
|
47
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
48
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
49
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
50
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
51
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
52
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
53
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
54
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
55
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
56
|
-
#
|
57
|
-
parameters = nil
|
58
|
-
puts obj.checkauth(parameters)
|
59
|
-
|
60
|
-
# SYNOPSIS
|
61
|
-
# addalias(parameters)
|
62
|
-
#
|
63
|
-
# ARGS
|
64
|
-
# parameters Addalias - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addalias
|
65
|
-
#
|
66
|
-
# RETURNS
|
67
|
-
# parameters AddaliasResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addaliasResponse
|
68
|
-
#
|
69
|
-
# RAISES
|
70
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
71
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
72
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
73
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
74
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
75
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
76
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
77
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
78
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
79
|
-
#
|
80
|
-
parameters = nil
|
81
|
-
puts obj.addalias(parameters)
|
82
|
-
|
83
|
-
# SYNOPSIS
|
84
|
-
# adddomain(parameters)
|
85
|
-
#
|
86
|
-
# ARGS
|
87
|
-
# parameters Adddomain - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adddomain
|
88
|
-
#
|
89
|
-
# RETURNS
|
90
|
-
# parameters AdddomainResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adddomainResponse
|
91
|
-
#
|
92
|
-
# RAISES
|
93
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
94
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
95
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
96
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
97
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
98
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
99
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
100
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
101
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
102
|
-
#
|
103
|
-
parameters = nil
|
104
|
-
puts obj.adddomain(parameters)
|
105
|
-
|
106
|
-
# SYNOPSIS
|
107
|
-
# addorg(parameters)
|
108
|
-
#
|
109
|
-
# ARGS
|
110
|
-
# parameters Addorg - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addorg
|
111
|
-
#
|
112
|
-
# RETURNS
|
113
|
-
# parameters AddorgResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}addorgResponse
|
114
|
-
#
|
115
|
-
# RAISES
|
116
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
117
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
118
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
119
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
120
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
121
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
122
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
123
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
124
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
125
|
-
#
|
126
|
-
parameters = nil
|
127
|
-
puts obj.addorg(parameters)
|
128
|
-
|
129
|
-
# SYNOPSIS
|
130
|
-
# adduser(parameters)
|
131
|
-
#
|
132
|
-
# ARGS
|
133
|
-
# parameters Adduser - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adduser
|
134
|
-
#
|
135
|
-
# RETURNS
|
136
|
-
# parameters AdduserResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}adduserResponse
|
137
|
-
#
|
138
|
-
# RAISES
|
139
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
140
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
141
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
142
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
143
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
144
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
145
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
146
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
147
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
148
|
-
#
|
149
|
-
parameters = nil
|
150
|
-
puts obj.adduser(parameters)
|
151
|
-
|
152
|
-
# SYNOPSIS
|
153
|
-
# deletealias(parameters)
|
154
|
-
#
|
155
|
-
# ARGS
|
156
|
-
# parameters Deletealias - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deletealias
|
157
|
-
#
|
158
|
-
# RETURNS
|
159
|
-
# parameters DeletealiasResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deletealiasResponse
|
160
|
-
#
|
161
|
-
# RAISES
|
162
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
163
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
164
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
165
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
166
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
167
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
168
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
169
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
170
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
171
|
-
#
|
172
|
-
parameters = nil
|
173
|
-
puts obj.deletealias(parameters)
|
174
|
-
|
175
|
-
# SYNOPSIS
|
176
|
-
# deletedomain(parameters)
|
177
|
-
#
|
178
|
-
# ARGS
|
179
|
-
# parameters Deletedomain - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deletedomain
|
180
|
-
#
|
181
|
-
# RETURNS
|
182
|
-
# parameters DeletedomainResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deletedomainResponse
|
183
|
-
#
|
184
|
-
# RAISES
|
185
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
186
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
187
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
188
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
189
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
190
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
191
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
192
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
193
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
194
|
-
#
|
195
|
-
parameters = nil
|
196
|
-
puts obj.deletedomain(parameters)
|
197
|
-
|
198
|
-
# SYNOPSIS
|
199
|
-
# deleteorg(parameters)
|
200
|
-
#
|
201
|
-
# ARGS
|
202
|
-
# parameters Deleteorg - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deleteorg
|
203
|
-
#
|
204
|
-
# RETURNS
|
205
|
-
# parameters DeleteorgResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deleteorgResponse
|
206
|
-
#
|
207
|
-
# RAISES
|
208
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
209
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
210
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
211
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
212
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
213
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
214
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
215
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
216
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
217
|
-
#
|
218
|
-
parameters = nil
|
219
|
-
puts obj.deleteorg(parameters)
|
220
|
-
|
221
|
-
# SYNOPSIS
|
222
|
-
# deleteuser(parameters)
|
223
|
-
#
|
224
|
-
# ARGS
|
225
|
-
# parameters Deleteuser - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deleteuser
|
226
|
-
#
|
227
|
-
# RETURNS
|
228
|
-
# parameters DeleteuserResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}deleteuserResponse
|
229
|
-
#
|
230
|
-
# RAISES
|
231
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
232
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
233
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
234
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
235
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
236
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
237
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
238
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
239
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
240
|
-
#
|
241
|
-
parameters = nil
|
242
|
-
puts obj.deleteuser(parameters)
|
243
|
-
|
244
|
-
# SYNOPSIS
|
245
|
-
# displaydomain(parameters)
|
246
|
-
#
|
247
|
-
# ARGS
|
248
|
-
# parameters Displaydomain - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displaydomain
|
249
|
-
#
|
250
|
-
# RETURNS
|
251
|
-
# parameters DisplaydomainResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displaydomainResponse
|
252
|
-
#
|
253
|
-
# RAISES
|
254
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
255
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
256
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
257
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
258
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
259
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
260
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
261
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
262
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
263
|
-
#
|
264
|
-
parameters = nil
|
265
|
-
puts obj.displaydomain(parameters)
|
266
|
-
|
267
|
-
# SYNOPSIS
|
268
|
-
# displayorg(parameters)
|
269
|
-
#
|
270
|
-
# ARGS
|
271
|
-
# parameters Displayorg - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayorg
|
272
|
-
#
|
273
|
-
# RETURNS
|
274
|
-
# parameters DisplayorgResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayorgResponse
|
275
|
-
#
|
276
|
-
# RAISES
|
277
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
278
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
279
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
280
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
281
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
282
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
283
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
284
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
285
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
286
|
-
#
|
287
|
-
parameters = nil
|
288
|
-
puts obj.displayorg(parameters)
|
289
|
-
|
290
|
-
# SYNOPSIS
|
291
|
-
# displayspool(parameters)
|
292
|
-
#
|
293
|
-
# ARGS
|
294
|
-
# parameters Displayspool - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayspool
|
295
|
-
#
|
296
|
-
# RETURNS
|
297
|
-
# parameters DisplayspoolResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayspoolResponse
|
298
|
-
#
|
299
|
-
# RAISES
|
300
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
301
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
302
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
303
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
304
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
305
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
306
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
307
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
308
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
309
|
-
#
|
310
|
-
parameters = nil
|
311
|
-
puts obj.displayspool(parameters)
|
312
|
-
|
313
|
-
# SYNOPSIS
|
314
|
-
# displayuser(parameters)
|
315
|
-
#
|
316
|
-
# ARGS
|
317
|
-
# parameters Displayuser - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayuser
|
318
|
-
#
|
319
|
-
# RETURNS
|
320
|
-
# parameters DisplayuserResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}displayuserResponse
|
321
|
-
#
|
322
|
-
# RAISES
|
323
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
324
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
325
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
326
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
327
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
328
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
329
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
330
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
331
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
332
|
-
#
|
333
|
-
parameters = nil
|
334
|
-
puts obj.displayuser(parameters)
|
335
|
-
|
336
|
-
# SYNOPSIS
|
337
|
-
# getorgreport(parameters)
|
338
|
-
#
|
339
|
-
# ARGS
|
340
|
-
# parameters Getorgreport - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}getorgreport
|
341
|
-
#
|
342
|
-
# RETURNS
|
343
|
-
# parameters GetorgreportResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}getorgreportResponse
|
344
|
-
#
|
345
|
-
# RAISES
|
346
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
347
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
348
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
349
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
350
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
351
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
352
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
353
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
354
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
355
|
-
#
|
356
|
-
parameters = nil
|
357
|
-
puts obj.getorgreport(parameters)
|
358
|
-
|
359
|
-
# SYNOPSIS
|
360
|
-
# listdomains(parameters)
|
361
|
-
#
|
362
|
-
# ARGS
|
363
|
-
# parameters Listdomains - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listdomains
|
364
|
-
#
|
365
|
-
# RETURNS
|
366
|
-
# parameters ListdomainsResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listdomainsResponse
|
367
|
-
#
|
368
|
-
# RAISES
|
369
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
370
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
371
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
372
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
373
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
374
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
375
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
376
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
377
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
378
|
-
#
|
379
|
-
parameters = nil
|
380
|
-
puts obj.listdomains(parameters)
|
381
|
-
|
382
|
-
# SYNOPSIS
|
383
|
-
# listorgs(parameters)
|
384
|
-
#
|
385
|
-
# ARGS
|
386
|
-
# parameters Listorgs - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listorgs
|
387
|
-
#
|
388
|
-
# RETURNS
|
389
|
-
# parameters ListorgsResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listorgsResponse
|
390
|
-
#
|
391
|
-
# RAISES
|
392
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
393
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
394
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
395
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
396
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
397
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
398
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
399
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
400
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
401
|
-
#
|
402
|
-
parameters = nil
|
403
|
-
puts obj.listorgs(parameters)
|
404
|
-
|
405
|
-
# SYNOPSIS
|
406
|
-
# listusers(parameters)
|
407
|
-
#
|
408
|
-
# ARGS
|
409
|
-
# parameters Listusers - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listusers
|
410
|
-
#
|
411
|
-
# RETURNS
|
412
|
-
# parameters ListusersResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}listusersResponse
|
413
|
-
#
|
414
|
-
# RAISES
|
415
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
416
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
417
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
418
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
419
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
420
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
421
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
422
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
423
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
424
|
-
#
|
425
|
-
parameters = nil
|
426
|
-
puts obj.listusers(parameters)
|
427
|
-
|
428
|
-
# SYNOPSIS
|
429
|
-
# modifydomain(parameters)
|
430
|
-
#
|
431
|
-
# ARGS
|
432
|
-
# parameters Modifydomain - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifydomain
|
433
|
-
#
|
434
|
-
# RETURNS
|
435
|
-
# parameters ModifydomainResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifydomainResponse
|
436
|
-
#
|
437
|
-
# RAISES
|
438
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
439
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
440
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
441
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
442
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
443
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
444
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
445
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
446
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
447
|
-
#
|
448
|
-
parameters = nil
|
449
|
-
puts obj.modifydomain(parameters)
|
450
|
-
|
451
|
-
# SYNOPSIS
|
452
|
-
# modifyorg(parameters)
|
453
|
-
#
|
454
|
-
# ARGS
|
455
|
-
# parameters Modifyorg - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifyorg
|
456
|
-
#
|
457
|
-
# RETURNS
|
458
|
-
# parameters ModifyorgResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifyorgResponse
|
459
|
-
#
|
460
|
-
# RAISES
|
461
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
462
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
463
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
464
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
465
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
466
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
467
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
468
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
469
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
470
|
-
#
|
471
|
-
parameters = nil
|
472
|
-
puts obj.modifyorg(parameters)
|
473
|
-
|
474
|
-
# SYNOPSIS
|
475
|
-
# modifyuser(parameters)
|
476
|
-
#
|
477
|
-
# ARGS
|
478
|
-
# parameters Modifyuser - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifyuser
|
479
|
-
#
|
480
|
-
# RETURNS
|
481
|
-
# parameters ModifyuserResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}modifyuserResponse
|
482
|
-
#
|
483
|
-
# RAISES
|
484
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
485
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
486
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
487
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
488
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
489
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
490
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
491
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
492
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
493
|
-
#
|
494
|
-
parameters = nil
|
495
|
-
puts obj.modifyuser(parameters)
|
496
|
-
|
497
|
-
# SYNOPSIS
|
498
|
-
# suspenduser(parameters)
|
499
|
-
#
|
500
|
-
# ARGS
|
501
|
-
# parameters Suspenduser - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}suspenduser
|
502
|
-
#
|
503
|
-
# RETURNS
|
504
|
-
# parameters SuspenduserResponse - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}suspenduserResponse
|
505
|
-
#
|
506
|
-
# RAISES
|
507
|
-
# fault AdminBlockException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AdminBlockException
|
508
|
-
# fault AuthenticationException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}AuthenticationException
|
509
|
-
# fault BatchException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}BatchException
|
510
|
-
# fault InternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InternalException
|
511
|
-
# fault InvalidValueException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}InvalidValueException
|
512
|
-
# fault MalformedKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MalformedKeyException
|
513
|
-
# fault MissingElementException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}MissingElementException
|
514
|
-
# fault NoSuchKeyException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}NoSuchKeyException
|
515
|
-
# fault UnknownInternalException - {http://postini.com/PSTN/SOAPAPI/v2/automatedbatch}UnknownInternalException
|
516
|
-
#
|
517
|
-
parameters = nil
|
518
|
-
puts obj.suspenduser(parameters)
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
end
|
@@ -1,121 +0,0 @@
|
|
1
|
-
require 'xsd/qname'
|
2
|
-
|
3
|
-
module Postini; module API; module EndpointResolver #:nodoc: all
|
4
|
-
|
5
|
-
|
6
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}AdminBlockException
|
7
|
-
# message - SOAP::SOAPString
|
8
|
-
class AdminBlockException < ::StandardError
|
9
|
-
attr_accessor :message
|
10
|
-
|
11
|
-
def initialize(message = nil)
|
12
|
-
@message = message
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}GetServiceEndpoint
|
17
|
-
# apiKey - SOAP::SOAPString
|
18
|
-
# email - SOAP::SOAPString
|
19
|
-
# service - Postini::API::EndpointResolver::Service
|
20
|
-
class GetServiceEndpoint
|
21
|
-
attr_accessor :apiKey
|
22
|
-
attr_accessor :email
|
23
|
-
attr_accessor :service
|
24
|
-
|
25
|
-
def initialize(apiKey = nil, email = nil, service = nil)
|
26
|
-
@apiKey = apiKey
|
27
|
-
@email = email
|
28
|
-
@service = service
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}GetServiceEndpointResponse
|
33
|
-
# endpointURI - SOAP::SOAPString
|
34
|
-
class GetServiceEndpointResponse
|
35
|
-
attr_accessor :endpointURI
|
36
|
-
|
37
|
-
def initialize(endpointURI = nil)
|
38
|
-
@endpointURI = endpointURI
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}InternalException
|
43
|
-
# message - SOAP::SOAPString
|
44
|
-
class InternalException < ::StandardError
|
45
|
-
attr_accessor :message
|
46
|
-
|
47
|
-
def initialize(message = nil)
|
48
|
-
@message = message
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}InvalidValueException
|
53
|
-
# message - SOAP::SOAPString
|
54
|
-
class InvalidValueException < ::StandardError
|
55
|
-
attr_accessor :message
|
56
|
-
|
57
|
-
def initialize(message = nil)
|
58
|
-
@message = message
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}MalformedKeyException
|
63
|
-
# message - SOAP::SOAPString
|
64
|
-
class MalformedKeyException < ::StandardError
|
65
|
-
attr_accessor :message
|
66
|
-
|
67
|
-
def initialize(message = nil)
|
68
|
-
@message = message
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}MissingElementException
|
73
|
-
# message - SOAP::SOAPString
|
74
|
-
class MissingElementException < ::StandardError
|
75
|
-
attr_accessor :message
|
76
|
-
|
77
|
-
def initialize(message = nil)
|
78
|
-
@message = message
|
79
|
-
end
|
80
|
-
end
|
81
|
-
|
82
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}NoSuchKeyException
|
83
|
-
# message - SOAP::SOAPString
|
84
|
-
class NoSuchKeyException < ::StandardError
|
85
|
-
attr_accessor :message
|
86
|
-
|
87
|
-
def initialize(message = nil)
|
88
|
-
@message = message
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
92
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}UnknownEmailException
|
93
|
-
# message - SOAP::SOAPString
|
94
|
-
class UnknownEmailException < ::StandardError
|
95
|
-
attr_accessor :message
|
96
|
-
|
97
|
-
def initialize(message = nil)
|
98
|
-
@message = message
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}UnknownInternalException
|
103
|
-
# message - SOAP::SOAPString
|
104
|
-
class UnknownInternalException < ::StandardError
|
105
|
-
attr_accessor :message
|
106
|
-
|
107
|
-
def initialize(message = nil)
|
108
|
-
@message = message
|
109
|
-
end
|
110
|
-
end
|
111
|
-
|
112
|
-
# {http://postini.com/PSTN/SOAPAPI/v2/endpointresolver}service
|
113
|
-
class Service < ::String
|
114
|
-
V1 = Service.new("v1")
|
115
|
-
V2AutomatedBatch = Service.new("v2AutomatedBatch")
|
116
|
-
V2PersonalArchive = Service.new("v2PersonalArchive")
|
117
|
-
V2UserSync = Service.new("v2UserSync")
|
118
|
-
end
|
119
|
-
|
120
|
-
|
121
|
-
end; end; end
|