Total Complexity | 229 |
Total Lines | 2415 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like Dedicated often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Dedicated, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
12 | class Dedicated extends SoapClientBase |
||
13 | { |
||
14 | /** |
||
15 | * Method to call the operation originally named dedicatedReverseDel |
||
16 | * @uses SoapClientBase::getSoapClient() |
||
17 | * @uses SoapClientBase::setResult() |
||
18 | * @uses SoapClientBase::getResult() |
||
19 | * @uses SoapClientBase::saveLastError() |
||
20 | * @param \Ovh\StructType\DedicatedReverseDel $parameters |
||
21 | * @return \Ovh\StructType\DedicatedReverseDelResponse|bool |
||
22 | */ |
||
23 | public function dedicatedReverseDel(\Ovh\StructType\DedicatedReverseDel $parameters) |
||
24 | { |
||
25 | try { |
||
26 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedReverseDel', array( |
||
27 | $parameters, |
||
28 | ), array(), array(), $this->outputHeaders)); |
||
29 | return $this->getResult(); |
||
30 | } catch (\SoapFault $soapFault) { |
||
31 | $this->saveLastError(__METHOD__, $soapFault); |
||
32 | return false; |
||
33 | } |
||
34 | } |
||
35 | /** |
||
36 | * Method to call the operation originally named dedicatedDelServiceMonitoringAlert |
||
37 | * @uses SoapClientBase::getSoapClient() |
||
38 | * @uses SoapClientBase::setResult() |
||
39 | * @uses SoapClientBase::getResult() |
||
40 | * @uses SoapClientBase::saveLastError() |
||
41 | * @param \Ovh\StructType\DedicatedDelServiceMonitoringAlert $parameters |
||
42 | * @return \Ovh\StructType\DedicatedDelServiceMonitoringAlertResponse|bool |
||
43 | */ |
||
44 | public function dedicatedDelServiceMonitoringAlert(\Ovh\StructType\DedicatedDelServiceMonitoringAlert $parameters) |
||
45 | { |
||
46 | try { |
||
47 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedDelServiceMonitoringAlert', array( |
||
48 | $parameters, |
||
49 | ), array(), array(), $this->outputHeaders)); |
||
50 | return $this->getResult(); |
||
51 | } catch (\SoapFault $soapFault) { |
||
52 | $this->saveLastError(__METHOD__, $soapFault); |
||
53 | return false; |
||
54 | } |
||
55 | } |
||
56 | /** |
||
57 | * Method to call the operation originally named |
||
58 | * dedicatedAddServiceMonitoringAlertSMS |
||
59 | * @uses SoapClientBase::getSoapClient() |
||
60 | * @uses SoapClientBase::setResult() |
||
61 | * @uses SoapClientBase::getResult() |
||
62 | * @uses SoapClientBase::saveLastError() |
||
63 | * @param \Ovh\StructType\DedicatedAddServiceMonitoringAlertSMS $parameters |
||
64 | * @return \Ovh\StructType\DedicatedAddServiceMonitoringAlertSMSResponse|bool |
||
65 | */ |
||
66 | public function dedicatedAddServiceMonitoringAlertSMS(\Ovh\StructType\DedicatedAddServiceMonitoringAlertSMS $parameters) |
||
67 | { |
||
68 | try { |
||
69 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedAddServiceMonitoringAlertSMS', array( |
||
70 | $parameters, |
||
71 | ), array(), array(), $this->outputHeaders)); |
||
72 | return $this->getResult(); |
||
73 | } catch (\SoapFault $soapFault) { |
||
74 | $this->saveLastError(__METHOD__, $soapFault); |
||
75 | return false; |
||
76 | } |
||
77 | } |
||
78 | /** |
||
79 | * Method to call the operation originally named dedicatedIpLoadBalancingList |
||
80 | * @uses SoapClientBase::getSoapClient() |
||
81 | * @uses SoapClientBase::setResult() |
||
82 | * @uses SoapClientBase::getResult() |
||
83 | * @uses SoapClientBase::saveLastError() |
||
84 | * @param \Ovh\StructType\DedicatedIpLoadBalancingList $parameters |
||
85 | * @return \Ovh\StructType\DedicatedIpLoadBalancingListResponse|bool |
||
86 | */ |
||
87 | public function dedicatedIpLoadBalancingList(\Ovh\StructType\DedicatedIpLoadBalancingList $parameters) |
||
88 | { |
||
89 | try { |
||
90 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIpLoadBalancingList', array( |
||
91 | $parameters, |
||
92 | ), array(), array(), $this->outputHeaders)); |
||
93 | return $this->getResult(); |
||
94 | } catch (\SoapFault $soapFault) { |
||
95 | $this->saveLastError(__METHOD__, $soapFault); |
||
96 | return false; |
||
97 | } |
||
98 | } |
||
99 | /** |
||
100 | * Method to call the operation originally named |
||
101 | * dedicatedBackupReinstallConfiguration |
||
102 | * @uses SoapClientBase::getSoapClient() |
||
103 | * @uses SoapClientBase::setResult() |
||
104 | * @uses SoapClientBase::getResult() |
||
105 | * @uses SoapClientBase::saveLastError() |
||
106 | * @param \Ovh\StructType\DedicatedBackupReinstallConfiguration $parameters |
||
107 | * @return \Ovh\StructType\DedicatedBackupReinstallConfigurationResponse|bool |
||
108 | */ |
||
109 | public function dedicatedBackupReinstallConfiguration(\Ovh\StructType\DedicatedBackupReinstallConfiguration $parameters) |
||
110 | { |
||
111 | try { |
||
112 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupReinstallConfiguration', array( |
||
113 | $parameters, |
||
114 | ), array(), array(), $this->outputHeaders)); |
||
115 | return $this->getResult(); |
||
116 | } catch (\SoapFault $soapFault) { |
||
117 | $this->saveLastError(__METHOD__, $soapFault); |
||
118 | return false; |
||
119 | } |
||
120 | } |
||
121 | /** |
||
122 | * Method to call the operation originally named dedicatedBackupGetHisto |
||
123 | * @uses SoapClientBase::getSoapClient() |
||
124 | * @uses SoapClientBase::setResult() |
||
125 | * @uses SoapClientBase::getResult() |
||
126 | * @uses SoapClientBase::saveLastError() |
||
127 | * @param \Ovh\StructType\DedicatedBackupGetHisto $parameters |
||
128 | * @return \Ovh\StructType\DedicatedBackupGetHistoResponse|bool |
||
129 | */ |
||
130 | public function dedicatedBackupGetHisto(\Ovh\StructType\DedicatedBackupGetHisto $parameters) |
||
131 | { |
||
132 | try { |
||
133 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupGetHisto', array( |
||
134 | $parameters, |
||
135 | ), array(), array(), $this->outputHeaders)); |
||
136 | return $this->getResult(); |
||
137 | } catch (\SoapFault $soapFault) { |
||
138 | $this->saveLastError(__METHOD__, $soapFault); |
||
139 | return false; |
||
140 | } |
||
141 | } |
||
142 | /** |
||
143 | * Method to call the operation originally named dedicatedBackupUpdate |
||
144 | * @uses SoapClientBase::getSoapClient() |
||
145 | * @uses SoapClientBase::setResult() |
||
146 | * @uses SoapClientBase::getResult() |
||
147 | * @uses SoapClientBase::saveLastError() |
||
148 | * @param \Ovh\StructType\DedicatedBackupUpdate $parameters |
||
149 | * @return \Ovh\StructType\DedicatedBackupUpdateResponse|bool |
||
150 | */ |
||
151 | public function dedicatedBackupUpdate(\Ovh\StructType\DedicatedBackupUpdate $parameters) |
||
152 | { |
||
153 | try { |
||
154 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupUpdate', array( |
||
155 | $parameters, |
||
156 | ), array(), array(), $this->outputHeaders)); |
||
157 | return $this->getResult(); |
||
158 | } catch (\SoapFault $soapFault) { |
||
159 | $this->saveLastError(__METHOD__, $soapFault); |
||
160 | return false; |
||
161 | } |
||
162 | } |
||
163 | /** |
||
164 | * Method to call the operation originally named dedicatedNetbootGetRescueEmail |
||
165 | * @uses SoapClientBase::getSoapClient() |
||
166 | * @uses SoapClientBase::setResult() |
||
167 | * @uses SoapClientBase::getResult() |
||
168 | * @uses SoapClientBase::saveLastError() |
||
169 | * @param \Ovh\StructType\DedicatedNetbootGetRescueEmail $parameters |
||
170 | * @return \Ovh\StructType\DedicatedNetbootGetRescueEmailResponse|bool |
||
171 | */ |
||
172 | public function dedicatedNetbootGetRescueEmail(\Ovh\StructType\DedicatedNetbootGetRescueEmail $parameters) |
||
173 | { |
||
174 | try { |
||
175 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedNetbootGetRescueEmail', array( |
||
176 | $parameters, |
||
177 | ), array(), array(), $this->outputHeaders)); |
||
178 | return $this->getResult(); |
||
179 | } catch (\SoapFault $soapFault) { |
||
180 | $this->saveLastError(__METHOD__, $soapFault); |
||
181 | return false; |
||
182 | } |
||
183 | } |
||
184 | /** |
||
185 | * Method to call the operation originally named dedicatedRtmListBackdoor |
||
186 | * @uses SoapClientBase::getSoapClient() |
||
187 | * @uses SoapClientBase::setResult() |
||
188 | * @uses SoapClientBase::getResult() |
||
189 | * @uses SoapClientBase::saveLastError() |
||
190 | * @param \Ovh\StructType\DedicatedRtmListBackdoor $parameters |
||
191 | * @return \Ovh\StructType\DedicatedRtmListBackdoorResponse|bool |
||
192 | */ |
||
193 | public function dedicatedRtmListBackdoor(\Ovh\StructType\DedicatedRtmListBackdoor $parameters) |
||
194 | { |
||
195 | try { |
||
196 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRtmListBackdoor', array( |
||
197 | $parameters, |
||
198 | ), array(), array(), $this->outputHeaders)); |
||
199 | return $this->getResult(); |
||
200 | } catch (\SoapFault $soapFault) { |
||
201 | $this->saveLastError(__METHOD__, $soapFault); |
||
202 | return false; |
||
203 | } |
||
204 | } |
||
205 | /** |
||
206 | * Method to call the operation originally named |
||
207 | * dedicatedMonitoringNotificationCreate |
||
208 | * @uses SoapClientBase::getSoapClient() |
||
209 | * @uses SoapClientBase::setResult() |
||
210 | * @uses SoapClientBase::getResult() |
||
211 | * @uses SoapClientBase::saveLastError() |
||
212 | * @param \Ovh\StructType\DedicatedMonitoringNotificationCreate $parameters |
||
213 | * @return \Ovh\StructType\DedicatedMonitoringNotificationCreateResponse|bool |
||
214 | */ |
||
215 | public function dedicatedMonitoringNotificationCreate(\Ovh\StructType\DedicatedMonitoringNotificationCreate $parameters) |
||
216 | { |
||
217 | try { |
||
218 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringNotificationCreate', array( |
||
219 | $parameters, |
||
220 | ), array(), array(), $this->outputHeaders)); |
||
221 | return $this->getResult(); |
||
222 | } catch (\SoapFault $soapFault) { |
||
223 | $this->saveLastError(__METHOD__, $soapFault); |
||
224 | return false; |
||
225 | } |
||
226 | } |
||
227 | /** |
||
228 | * Method to call the operation originally named dedicatedBackupList |
||
229 | * @uses SoapClientBase::getSoapClient() |
||
230 | * @uses SoapClientBase::setResult() |
||
231 | * @uses SoapClientBase::getResult() |
||
232 | * @uses SoapClientBase::saveLastError() |
||
233 | * @param \Ovh\StructType\DedicatedBackupList $parameters |
||
234 | * @return \Ovh\StructType\DedicatedBackupListResponse|bool |
||
235 | */ |
||
236 | public function dedicatedBackupList(\Ovh\StructType\DedicatedBackupList $parameters) |
||
237 | { |
||
238 | try { |
||
239 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupList', array( |
||
240 | $parameters, |
||
241 | ), array(), array(), $this->outputHeaders)); |
||
242 | return $this->getResult(); |
||
243 | } catch (\SoapFault $soapFault) { |
||
244 | $this->saveLastError(__METHOD__, $soapFault); |
||
245 | return false; |
||
246 | } |
||
247 | } |
||
248 | /** |
||
249 | * Method to call the operation originally named dedicatedNetbootGetAll |
||
250 | * @uses SoapClientBase::getSoapClient() |
||
251 | * @uses SoapClientBase::setResult() |
||
252 | * @uses SoapClientBase::getResult() |
||
253 | * @uses SoapClientBase::saveLastError() |
||
254 | * @param \Ovh\StructType\DedicatedNetbootGetAll $parameters |
||
255 | * @return \Ovh\StructType\DedicatedNetbootGetAllResponse|bool |
||
256 | */ |
||
257 | public function dedicatedNetbootGetAll(\Ovh\StructType\DedicatedNetbootGetAll $parameters) |
||
258 | { |
||
259 | try { |
||
260 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedNetbootGetAll', array( |
||
261 | $parameters, |
||
262 | ), array(), array(), $this->outputHeaders)); |
||
263 | return $this->getResult(); |
||
264 | } catch (\SoapFault $soapFault) { |
||
265 | $this->saveLastError(__METHOD__, $soapFault); |
||
266 | return false; |
||
267 | } |
||
268 | } |
||
269 | /** |
||
270 | * Method to call the operation originally named |
||
271 | * dedicatedVirtualMacIpAvailableGetList |
||
272 | * @uses SoapClientBase::getSoapClient() |
||
273 | * @uses SoapClientBase::setResult() |
||
274 | * @uses SoapClientBase::getResult() |
||
275 | * @uses SoapClientBase::saveLastError() |
||
276 | * @param \Ovh\StructType\DedicatedVirtualMacIpAvailableGetList $parameters |
||
277 | * @return \Ovh\StructType\DedicatedVirtualMacIpAvailableGetListResponse|bool |
||
278 | */ |
||
279 | public function dedicatedVirtualMacIpAvailableGetList(\Ovh\StructType\DedicatedVirtualMacIpAvailableGetList $parameters) |
||
280 | { |
||
281 | try { |
||
282 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedVirtualMacIpAvailableGetList', array( |
||
283 | $parameters, |
||
284 | ), array(), array(), $this->outputHeaders)); |
||
285 | return $this->getResult(); |
||
286 | } catch (\SoapFault $soapFault) { |
||
287 | $this->saveLastError(__METHOD__, $soapFault); |
||
288 | return false; |
||
289 | } |
||
290 | } |
||
291 | /** |
||
292 | * Method to call the operation originally named dedicatedMonitoringSMSCreate |
||
293 | * @uses SoapClientBase::getSoapClient() |
||
294 | * @uses SoapClientBase::setResult() |
||
295 | * @uses SoapClientBase::getResult() |
||
296 | * @uses SoapClientBase::saveLastError() |
||
297 | * @param \Ovh\StructType\DedicatedMonitoringSMSCreate $parameters |
||
298 | * @return \Ovh\StructType\DedicatedMonitoringSMSCreateResponse|bool |
||
299 | */ |
||
300 | public function dedicatedMonitoringSMSCreate(\Ovh\StructType\DedicatedMonitoringSMSCreate $parameters) |
||
310 | } |
||
311 | } |
||
312 | /** |
||
313 | * Method to call the operation originally named dedicatedRipeQuery |
||
314 | * @uses SoapClientBase::getSoapClient() |
||
315 | * @uses SoapClientBase::setResult() |
||
316 | * @uses SoapClientBase::getResult() |
||
317 | * @uses SoapClientBase::saveLastError() |
||
318 | * @param \Ovh\StructType\DedicatedRipeQuery $parameters |
||
319 | * @return \Ovh\StructType\DedicatedRipeQueryResponse|bool |
||
320 | */ |
||
321 | public function dedicatedRipeQuery(\Ovh\StructType\DedicatedRipeQuery $parameters) |
||
322 | { |
||
323 | try { |
||
324 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRipeQuery', array( |
||
325 | $parameters, |
||
326 | ), array(), array(), $this->outputHeaders)); |
||
327 | return $this->getResult(); |
||
328 | } catch (\SoapFault $soapFault) { |
||
329 | $this->saveLastError(__METHOD__, $soapFault); |
||
330 | return false; |
||
331 | } |
||
332 | } |
||
333 | /** |
||
334 | * Method to call the operation originally named dedicatedBackupFtpPassword |
||
335 | * @uses SoapClientBase::getSoapClient() |
||
336 | * @uses SoapClientBase::setResult() |
||
337 | * @uses SoapClientBase::getResult() |
||
338 | * @uses SoapClientBase::saveLastError() |
||
339 | * @param \Ovh\StructType\DedicatedBackupFtpPassword $parameters |
||
340 | * @return \Ovh\StructType\DedicatedBackupFtpPasswordResponse|bool |
||
341 | */ |
||
342 | public function dedicatedBackupFtpPassword(\Ovh\StructType\DedicatedBackupFtpPassword $parameters) |
||
343 | { |
||
344 | try { |
||
345 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupFtpPassword', array( |
||
346 | $parameters, |
||
347 | ), array(), array(), $this->outputHeaders)); |
||
348 | return $this->getResult(); |
||
349 | } catch (\SoapFault $soapFault) { |
||
350 | $this->saveLastError(__METHOD__, $soapFault); |
||
351 | return false; |
||
352 | } |
||
353 | } |
||
354 | /** |
||
355 | * Method to call the operation originally named dedicatedRtmBackdoorUpdateAlert |
||
356 | * @uses SoapClientBase::getSoapClient() |
||
357 | * @uses SoapClientBase::setResult() |
||
358 | * @uses SoapClientBase::getResult() |
||
359 | * @uses SoapClientBase::saveLastError() |
||
360 | * @param \Ovh\StructType\DedicatedRtmBackdoorUpdateAlert $parameters |
||
361 | * @return \Ovh\StructType\DedicatedRtmBackdoorUpdateAlertResponse|bool |
||
362 | */ |
||
363 | public function dedicatedRtmBackdoorUpdateAlert(\Ovh\StructType\DedicatedRtmBackdoorUpdateAlert $parameters) |
||
364 | { |
||
365 | try { |
||
366 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRtmBackdoorUpdateAlert', array( |
||
367 | $parameters, |
||
368 | ), array(), array(), $this->outputHeaders)); |
||
369 | return $this->getResult(); |
||
370 | } catch (\SoapFault $soapFault) { |
||
371 | $this->saveLastError(__METHOD__, $soapFault); |
||
372 | return false; |
||
373 | } |
||
374 | } |
||
375 | /** |
||
376 | * Method to call the operation originally named dedicatedSecondaryDNSAdd |
||
377 | * @uses SoapClientBase::getSoapClient() |
||
378 | * @uses SoapClientBase::setResult() |
||
379 | * @uses SoapClientBase::getResult() |
||
380 | * @uses SoapClientBase::saveLastError() |
||
381 | * @param \Ovh\StructType\DedicatedSecondaryDNSAdd $parameters |
||
382 | * @return \Ovh\StructType\DedicatedSecondaryDNSAddResponse|bool |
||
383 | */ |
||
384 | public function dedicatedSecondaryDNSAdd(\Ovh\StructType\DedicatedSecondaryDNSAdd $parameters) |
||
385 | { |
||
386 | try { |
||
387 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedSecondaryDNSAdd', array( |
||
388 | $parameters, |
||
389 | ), array(), array(), $this->outputHeaders)); |
||
390 | return $this->getResult(); |
||
391 | } catch (\SoapFault $soapFault) { |
||
392 | $this->saveLastError(__METHOD__, $soapFault); |
||
393 | return false; |
||
394 | } |
||
395 | } |
||
396 | /** |
||
397 | * Method to call the operation originally named dedicatedRtmGetStatus |
||
398 | * @uses SoapClientBase::getSoapClient() |
||
399 | * @uses SoapClientBase::setResult() |
||
400 | * @uses SoapClientBase::getResult() |
||
401 | * @uses SoapClientBase::saveLastError() |
||
402 | * @param \Ovh\StructType\DedicatedRtmGetStatus $parameters |
||
403 | * @return \Ovh\StructType\DedicatedRtmGetStatusResponse|bool |
||
404 | */ |
||
405 | public function dedicatedRtmGetStatus(\Ovh\StructType\DedicatedRtmGetStatus $parameters) |
||
406 | { |
||
407 | try { |
||
408 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRtmGetStatus', array( |
||
409 | $parameters, |
||
410 | ), array(), array(), $this->outputHeaders)); |
||
411 | return $this->getResult(); |
||
412 | } catch (\SoapFault $soapFault) { |
||
413 | $this->saveLastError(__METHOD__, $soapFault); |
||
414 | return false; |
||
415 | } |
||
416 | } |
||
417 | /** |
||
418 | * Method to call the operation originally named dedicatedNetbootGetAvailable |
||
419 | * @uses SoapClientBase::getSoapClient() |
||
420 | * @uses SoapClientBase::setResult() |
||
421 | * @uses SoapClientBase::getResult() |
||
422 | * @uses SoapClientBase::saveLastError() |
||
423 | * @param \Ovh\StructType\DedicatedNetbootGetAvailable $parameters |
||
424 | * @return \Ovh\StructType\DedicatedNetbootGetAvailableResponse|bool |
||
425 | */ |
||
426 | public function dedicatedNetbootGetAvailable(\Ovh\StructType\DedicatedNetbootGetAvailable $parameters) |
||
427 | { |
||
428 | try { |
||
429 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedNetbootGetAvailable', array( |
||
430 | $parameters, |
||
431 | ), array(), array(), $this->outputHeaders)); |
||
432 | return $this->getResult(); |
||
433 | } catch (\SoapFault $soapFault) { |
||
434 | $this->saveLastError(__METHOD__, $soapFault); |
||
435 | return false; |
||
436 | } |
||
437 | } |
||
438 | /** |
||
439 | * Method to call the operation originally named dedicatedMailinglistGetAllowed |
||
440 | * @uses SoapClientBase::getSoapClient() |
||
441 | * @uses SoapClientBase::setResult() |
||
442 | * @uses SoapClientBase::getResult() |
||
443 | * @uses SoapClientBase::saveLastError() |
||
444 | * @param \Ovh\StructType\DedicatedMailinglistGetAllowed $parameters |
||
445 | * @return \Ovh\StructType\DedicatedMailinglistGetAllowedResponse|bool |
||
446 | */ |
||
447 | public function dedicatedMailinglistGetAllowed(\Ovh\StructType\DedicatedMailinglistGetAllowed $parameters) |
||
448 | { |
||
449 | try { |
||
450 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMailinglistGetAllowed', array( |
||
451 | $parameters, |
||
452 | ), array(), array(), $this->outputHeaders)); |
||
453 | return $this->getResult(); |
||
454 | } catch (\SoapFault $soapFault) { |
||
455 | $this->saveLastError(__METHOD__, $soapFault); |
||
456 | return false; |
||
457 | } |
||
458 | } |
||
459 | /** |
||
460 | * Method to call the operation originally named dedicatedBackupInfo |
||
461 | * @uses SoapClientBase::getSoapClient() |
||
462 | * @uses SoapClientBase::setResult() |
||
463 | * @uses SoapClientBase::getResult() |
||
464 | * @uses SoapClientBase::saveLastError() |
||
465 | * @param \Ovh\StructType\DedicatedBackupInfo $parameters |
||
466 | * @return \Ovh\StructType\DedicatedBackupInfoResponse|bool |
||
467 | */ |
||
468 | public function dedicatedBackupInfo(\Ovh\StructType\DedicatedBackupInfo $parameters) |
||
469 | { |
||
470 | try { |
||
471 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupInfo', array( |
||
472 | $parameters, |
||
473 | ), array(), array(), $this->outputHeaders)); |
||
474 | return $this->getResult(); |
||
475 | } catch (\SoapFault $soapFault) { |
||
476 | $this->saveLastError(__METHOD__, $soapFault); |
||
477 | return false; |
||
478 | } |
||
479 | } |
||
480 | /** |
||
481 | * Method to call the operation originally named dedicatedFailoverRipeAdd |
||
482 | * @uses SoapClientBase::getSoapClient() |
||
483 | * @uses SoapClientBase::setResult() |
||
484 | * @uses SoapClientBase::getResult() |
||
485 | * @uses SoapClientBase::saveLastError() |
||
486 | * @param \Ovh\StructType\DedicatedFailoverRipeAdd $parameters |
||
487 | * @return \Ovh\StructType\DedicatedFailoverRipeAddResponse|bool |
||
488 | */ |
||
489 | public function dedicatedFailoverRipeAdd(\Ovh\StructType\DedicatedFailoverRipeAdd $parameters) |
||
490 | { |
||
491 | try { |
||
492 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFailoverRipeAdd', array( |
||
493 | $parameters, |
||
494 | ), array(), array(), $this->outputHeaders)); |
||
495 | return $this->getResult(); |
||
496 | } catch (\SoapFault $soapFault) { |
||
497 | $this->saveLastError(__METHOD__, $soapFault); |
||
498 | return false; |
||
499 | } |
||
500 | } |
||
501 | /** |
||
502 | * Method to call the operation originally named dedicatedFilterIrcClientRuleAdd |
||
503 | * @uses SoapClientBase::getSoapClient() |
||
504 | * @uses SoapClientBase::setResult() |
||
505 | * @uses SoapClientBase::getResult() |
||
506 | * @uses SoapClientBase::saveLastError() |
||
507 | * @param \Ovh\StructType\DedicatedFilterIrcClientRuleAdd $parameters |
||
508 | * @return \Ovh\StructType\DedicatedFilterIrcClientRuleAddResponse|bool |
||
509 | */ |
||
510 | public function dedicatedFilterIrcClientRuleAdd(\Ovh\StructType\DedicatedFilterIrcClientRuleAdd $parameters) |
||
511 | { |
||
512 | try { |
||
513 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFilterIrcClientRuleAdd', array( |
||
514 | $parameters, |
||
515 | ), array(), array(), $this->outputHeaders)); |
||
516 | return $this->getResult(); |
||
517 | } catch (\SoapFault $soapFault) { |
||
518 | $this->saveLastError(__METHOD__, $soapFault); |
||
519 | return false; |
||
520 | } |
||
521 | } |
||
522 | /** |
||
523 | * Method to call the operation originally named dedicatedInstallationTemplateList |
||
524 | * @uses SoapClientBase::getSoapClient() |
||
525 | * @uses SoapClientBase::setResult() |
||
526 | * @uses SoapClientBase::getResult() |
||
527 | * @uses SoapClientBase::saveLastError() |
||
528 | * @param \Ovh\StructType\DedicatedInstallationTemplateList $parameters |
||
529 | * @return \Ovh\StructType\DedicatedInstallationTemplateListResponse|bool |
||
530 | */ |
||
531 | public function dedicatedInstallationTemplateList(\Ovh\StructType\DedicatedInstallationTemplateList $parameters) |
||
541 | } |
||
542 | } |
||
543 | /** |
||
544 | * Method to call the operation originally named dedicatedBackupGetCalendar |
||
545 | * @uses SoapClientBase::getSoapClient() |
||
546 | * @uses SoapClientBase::setResult() |
||
547 | * @uses SoapClientBase::getResult() |
||
548 | * @uses SoapClientBase::saveLastError() |
||
549 | * @param \Ovh\StructType\DedicatedBackupGetCalendar $parameters |
||
550 | * @return \Ovh\StructType\DedicatedBackupGetCalendarResponse|bool |
||
551 | */ |
||
552 | public function dedicatedBackupGetCalendar(\Ovh\StructType\DedicatedBackupGetCalendar $parameters) |
||
553 | { |
||
554 | try { |
||
555 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupGetCalendar', array( |
||
556 | $parameters, |
||
557 | ), array(), array(), $this->outputHeaders)); |
||
558 | return $this->getResult(); |
||
559 | } catch (\SoapFault $soapFault) { |
||
560 | $this->saveLastError(__METHOD__, $soapFault); |
||
561 | return false; |
||
562 | } |
||
563 | } |
||
564 | /** |
||
565 | * Method to call the operation originally named dedicatedIpLoadBalancingServerDel |
||
566 | * @uses SoapClientBase::getSoapClient() |
||
567 | * @uses SoapClientBase::setResult() |
||
568 | * @uses SoapClientBase::getResult() |
||
569 | * @uses SoapClientBase::saveLastError() |
||
570 | * @param \Ovh\StructType\DedicatedIpLoadBalancingServerDel $parameters |
||
571 | * @return \Ovh\StructType\DedicatedIpLoadBalancingServerDelResponse|bool |
||
572 | */ |
||
573 | public function dedicatedIpLoadBalancingServerDel(\Ovh\StructType\DedicatedIpLoadBalancingServerDel $parameters) |
||
574 | { |
||
575 | try { |
||
576 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIpLoadBalancingServerDel', array( |
||
577 | $parameters, |
||
578 | ), array(), array(), $this->outputHeaders)); |
||
579 | return $this->getResult(); |
||
580 | } catch (\SoapFault $soapFault) { |
||
581 | $this->saveLastError(__METHOD__, $soapFault); |
||
582 | return false; |
||
583 | } |
||
584 | } |
||
585 | /** |
||
586 | * Method to call the operation originally named dedicatedEditServiceMonitoringItem |
||
587 | * @uses SoapClientBase::getSoapClient() |
||
588 | * @uses SoapClientBase::setResult() |
||
589 | * @uses SoapClientBase::getResult() |
||
590 | * @uses SoapClientBase::saveLastError() |
||
591 | * @param \Ovh\StructType\DedicatedEditServiceMonitoringItem $parameters |
||
592 | * @return \Ovh\StructType\DedicatedEditServiceMonitoringItemResponse|bool |
||
593 | */ |
||
594 | public function dedicatedEditServiceMonitoringItem(\Ovh\StructType\DedicatedEditServiceMonitoringItem $parameters) |
||
595 | { |
||
596 | try { |
||
597 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedEditServiceMonitoringItem', array( |
||
598 | $parameters, |
||
599 | ), array(), array(), $this->outputHeaders)); |
||
600 | return $this->getResult(); |
||
601 | } catch (\SoapFault $soapFault) { |
||
602 | $this->saveLastError(__METHOD__, $soapFault); |
||
603 | return false; |
||
604 | } |
||
605 | } |
||
606 | /** |
||
607 | * Method to call the operation originally named dedicatedIPForUDPServerList |
||
608 | * @uses SoapClientBase::getSoapClient() |
||
609 | * @uses SoapClientBase::setResult() |
||
610 | * @uses SoapClientBase::getResult() |
||
611 | * @uses SoapClientBase::saveLastError() |
||
612 | * @param \Ovh\StructType\DedicatedIPForUDPServerList $parameters |
||
613 | * @return \Ovh\StructType\DedicatedIPForUDPServerListResponse|bool |
||
614 | */ |
||
615 | public function dedicatedIPForUDPServerList(\Ovh\StructType\DedicatedIPForUDPServerList $parameters) |
||
616 | { |
||
617 | try { |
||
618 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIPForUDPServerList', array( |
||
619 | $parameters, |
||
620 | ), array(), array(), $this->outputHeaders)); |
||
621 | return $this->getResult(); |
||
622 | } catch (\SoapFault $soapFault) { |
||
623 | $this->saveLastError(__METHOD__, $soapFault); |
||
624 | return false; |
||
625 | } |
||
626 | } |
||
627 | /** |
||
628 | * Method to call the operation originally named dedicatedBackupSet |
||
629 | * @uses SoapClientBase::getSoapClient() |
||
630 | * @uses SoapClientBase::setResult() |
||
631 | * @uses SoapClientBase::getResult() |
||
632 | * @uses SoapClientBase::saveLastError() |
||
633 | * @param \Ovh\StructType\DedicatedBackupSet $parameters |
||
634 | * @return \Ovh\StructType\DedicatedBackupSetResponse|bool |
||
635 | */ |
||
636 | public function dedicatedBackupSet(\Ovh\StructType\DedicatedBackupSet $parameters) |
||
637 | { |
||
638 | try { |
||
639 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupSet', array( |
||
640 | $parameters, |
||
641 | ), array(), array(), $this->outputHeaders)); |
||
642 | return $this->getResult(); |
||
643 | } catch (\SoapFault $soapFault) { |
||
644 | $this->saveLastError(__METHOD__, $soapFault); |
||
645 | return false; |
||
646 | } |
||
647 | } |
||
648 | /** |
||
649 | * Method to call the operation originally named dedicatedVirtualMacIpDelete |
||
650 | * @uses SoapClientBase::getSoapClient() |
||
651 | * @uses SoapClientBase::setResult() |
||
652 | * @uses SoapClientBase::getResult() |
||
653 | * @uses SoapClientBase::saveLastError() |
||
654 | * @param \Ovh\StructType\DedicatedVirtualMacIpDelete $parameters |
||
655 | * @return \Ovh\StructType\DedicatedVirtualMacIpDeleteResponse|bool |
||
656 | */ |
||
657 | public function dedicatedVirtualMacIpDelete(\Ovh\StructType\DedicatedVirtualMacIpDelete $parameters) |
||
658 | { |
||
659 | try { |
||
660 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedVirtualMacIpDelete', array( |
||
661 | $parameters, |
||
662 | ), array(), array(), $this->outputHeaders)); |
||
663 | return $this->getResult(); |
||
664 | } catch (\SoapFault $soapFault) { |
||
665 | $this->saveLastError(__METHOD__, $soapFault); |
||
666 | return false; |
||
667 | } |
||
668 | } |
||
669 | /** |
||
670 | * Method to call the operation originally named dedicatedFailoverRipeSplit |
||
671 | * @uses SoapClientBase::getSoapClient() |
||
672 | * @uses SoapClientBase::setResult() |
||
673 | * @uses SoapClientBase::getResult() |
||
674 | * @uses SoapClientBase::saveLastError() |
||
675 | * @param \Ovh\StructType\DedicatedFailoverRipeSplit $parameters |
||
676 | * @return \Ovh\StructType\DedicatedFailoverRipeSplitResponse|bool |
||
677 | */ |
||
678 | public function dedicatedFailoverRipeSplit(\Ovh\StructType\DedicatedFailoverRipeSplit $parameters) |
||
679 | { |
||
680 | try { |
||
681 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFailoverRipeSplit', array( |
||
682 | $parameters, |
||
683 | ), array(), array(), $this->outputHeaders)); |
||
684 | return $this->getResult(); |
||
685 | } catch (\SoapFault $soapFault) { |
||
686 | $this->saveLastError(__METHOD__, $soapFault); |
||
687 | return false; |
||
688 | } |
||
689 | } |
||
690 | /** |
||
691 | * Method to call the operation originally named dedicatedReverseInfo |
||
692 | * @uses SoapClientBase::getSoapClient() |
||
693 | * @uses SoapClientBase::setResult() |
||
694 | * @uses SoapClientBase::getResult() |
||
695 | * @uses SoapClientBase::saveLastError() |
||
696 | * @param \Ovh\StructType\DedicatedReverseInfo $parameters |
||
697 | * @return \Ovh\StructType\DedicatedReverseInfoResponse|bool |
||
698 | */ |
||
699 | public function dedicatedReverseInfo(\Ovh\StructType\DedicatedReverseInfo $parameters) |
||
700 | { |
||
701 | try { |
||
702 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedReverseInfo', array( |
||
703 | $parameters, |
||
704 | ), array(), array(), $this->outputHeaders)); |
||
705 | return $this->getResult(); |
||
706 | } catch (\SoapFault $soapFault) { |
||
707 | $this->saveLastError(__METHOD__, $soapFault); |
||
708 | return false; |
||
709 | } |
||
710 | } |
||
711 | /** |
||
712 | * Method to call the operation originally named dedicatedCapabilitiesGetAll |
||
713 | * @uses SoapClientBase::getSoapClient() |
||
714 | * @uses SoapClientBase::setResult() |
||
715 | * @uses SoapClientBase::getResult() |
||
716 | * @uses SoapClientBase::saveLastError() |
||
717 | * @param \Ovh\StructType\DedicatedCapabilitiesGetAll $parameters |
||
718 | * @return \Ovh\StructType\DedicatedCapabilitiesGetAllResponse|bool |
||
719 | */ |
||
720 | public function dedicatedCapabilitiesGetAll(\Ovh\StructType\DedicatedCapabilitiesGetAll $parameters) |
||
721 | { |
||
722 | try { |
||
723 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedCapabilitiesGetAll', array( |
||
724 | $parameters, |
||
725 | ), array(), array(), $this->outputHeaders)); |
||
726 | return $this->getResult(); |
||
727 | } catch (\SoapFault $soapFault) { |
||
728 | $this->saveLastError(__METHOD__, $soapFault); |
||
729 | return false; |
||
730 | } |
||
731 | } |
||
732 | /** |
||
733 | * Method to call the operation originally named dedicatedBackupIncludeAdd |
||
734 | * @uses SoapClientBase::getSoapClient() |
||
735 | * @uses SoapClientBase::setResult() |
||
736 | * @uses SoapClientBase::getResult() |
||
737 | * @uses SoapClientBase::saveLastError() |
||
738 | * @param \Ovh\StructType\DedicatedBackupIncludeAdd $parameters |
||
739 | * @return \Ovh\StructType\DedicatedBackupIncludeAddResponse|bool |
||
740 | */ |
||
741 | public function dedicatedBackupIncludeAdd(\Ovh\StructType\DedicatedBackupIncludeAdd $parameters) |
||
742 | { |
||
743 | try { |
||
744 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupIncludeAdd', array( |
||
745 | $parameters, |
||
746 | ), array(), array(), $this->outputHeaders)); |
||
747 | return $this->getResult(); |
||
748 | } catch (\SoapFault $soapFault) { |
||
749 | $this->saveLastError(__METHOD__, $soapFault); |
||
750 | return false; |
||
751 | } |
||
752 | } |
||
753 | /** |
||
754 | * Method to call the operation originally named dedicatedFailoverRipeList |
||
755 | * @uses SoapClientBase::getSoapClient() |
||
756 | * @uses SoapClientBase::setResult() |
||
757 | * @uses SoapClientBase::getResult() |
||
758 | * @uses SoapClientBase::saveLastError() |
||
759 | * @param \Ovh\StructType\DedicatedFailoverRipeList $parameters |
||
760 | * @return \Ovh\StructType\DedicatedFailoverRipeListResponse|bool |
||
761 | */ |
||
762 | public function dedicatedFailoverRipeList(\Ovh\StructType\DedicatedFailoverRipeList $parameters) |
||
763 | { |
||
764 | try { |
||
765 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFailoverRipeList', array( |
||
766 | $parameters, |
||
767 | ), array(), array(), $this->outputHeaders)); |
||
768 | return $this->getResult(); |
||
769 | } catch (\SoapFault $soapFault) { |
||
770 | $this->saveLastError(__METHOD__, $soapFault); |
||
771 | return false; |
||
772 | } |
||
773 | } |
||
774 | /** |
||
775 | * Method to call the operation originally named dedicatedMonitoringServiceAdd |
||
776 | * @uses SoapClientBase::getSoapClient() |
||
777 | * @uses SoapClientBase::setResult() |
||
778 | * @uses SoapClientBase::getResult() |
||
779 | * @uses SoapClientBase::saveLastError() |
||
780 | * @param \Ovh\StructType\DedicatedMonitoringServiceAdd $parameters |
||
781 | * @return \Ovh\StructType\DedicatedMonitoringServiceAddResponse|bool |
||
782 | */ |
||
783 | public function dedicatedMonitoringServiceAdd(\Ovh\StructType\DedicatedMonitoringServiceAdd $parameters) |
||
784 | { |
||
785 | try { |
||
786 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringServiceAdd', array( |
||
787 | $parameters, |
||
788 | ), array(), array(), $this->outputHeaders)); |
||
789 | return $this->getResult(); |
||
790 | } catch (\SoapFault $soapFault) { |
||
791 | $this->saveLastError(__METHOD__, $soapFault); |
||
792 | return false; |
||
793 | } |
||
794 | } |
||
795 | /** |
||
796 | * Method to call the operation originally named dedicatedHardRebootDo |
||
797 | * @uses SoapClientBase::getSoapClient() |
||
798 | * @uses SoapClientBase::setResult() |
||
799 | * @uses SoapClientBase::getResult() |
||
800 | * @uses SoapClientBase::saveLastError() |
||
801 | * @param \Ovh\StructType\DedicatedHardRebootDo $parameters |
||
802 | * @return \Ovh\StructType\DedicatedHardRebootDoResponse|bool |
||
803 | */ |
||
804 | public function dedicatedHardRebootDo(\Ovh\StructType\DedicatedHardRebootDo $parameters) |
||
805 | { |
||
806 | try { |
||
807 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedHardRebootDo', array( |
||
808 | $parameters, |
||
809 | ), array(), array(), $this->outputHeaders)); |
||
810 | return $this->getResult(); |
||
811 | } catch (\SoapFault $soapFault) { |
||
812 | $this->saveLastError(__METHOD__, $soapFault); |
||
813 | return false; |
||
814 | } |
||
815 | } |
||
816 | /** |
||
817 | * Method to call the operation originally named dedicatedReverseList |
||
818 | * @uses SoapClientBase::getSoapClient() |
||
819 | * @uses SoapClientBase::setResult() |
||
820 | * @uses SoapClientBase::getResult() |
||
821 | * @uses SoapClientBase::saveLastError() |
||
822 | * @param \Ovh\StructType\DedicatedReverseList $parameters |
||
823 | * @return \Ovh\StructType\DedicatedReverseListResponse|bool |
||
824 | */ |
||
825 | public function dedicatedReverseList(\Ovh\StructType\DedicatedReverseList $parameters) |
||
826 | { |
||
827 | try { |
||
828 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedReverseList', array( |
||
829 | $parameters, |
||
830 | ), array(), array(), $this->outputHeaders)); |
||
831 | return $this->getResult(); |
||
832 | } catch (\SoapFault $soapFault) { |
||
833 | $this->saveLastError(__METHOD__, $soapFault); |
||
834 | return false; |
||
835 | } |
||
836 | } |
||
837 | /** |
||
838 | * Method to call the operation originally named dedicatedBackupFtpAdd |
||
839 | * @uses SoapClientBase::getSoapClient() |
||
840 | * @uses SoapClientBase::setResult() |
||
841 | * @uses SoapClientBase::getResult() |
||
842 | * @uses SoapClientBase::saveLastError() |
||
843 | * @param \Ovh\StructType\DedicatedBackupFtpAdd $parameters |
||
844 | * @return \Ovh\StructType\DedicatedBackupFtpAddResponse|bool |
||
845 | */ |
||
846 | public function dedicatedBackupFtpAdd(\Ovh\StructType\DedicatedBackupFtpAdd $parameters) |
||
847 | { |
||
848 | try { |
||
849 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupFtpAdd', array( |
||
850 | $parameters, |
||
851 | ), array(), array(), $this->outputHeaders)); |
||
852 | return $this->getResult(); |
||
853 | } catch (\SoapFault $soapFault) { |
||
854 | $this->saveLastError(__METHOD__, $soapFault); |
||
855 | return false; |
||
856 | } |
||
857 | } |
||
858 | /** |
||
859 | * Method to call the operation originally named dedicatedVirtualMacIpUsedGetList |
||
860 | * @uses SoapClientBase::getSoapClient() |
||
861 | * @uses SoapClientBase::setResult() |
||
862 | * @uses SoapClientBase::getResult() |
||
863 | * @uses SoapClientBase::saveLastError() |
||
864 | * @param \Ovh\StructType\DedicatedVirtualMacIpUsedGetList $parameters |
||
865 | * @return \Ovh\StructType\DedicatedVirtualMacIpUsedGetListResponse|bool |
||
866 | */ |
||
867 | public function dedicatedVirtualMacIpUsedGetList(\Ovh\StructType\DedicatedVirtualMacIpUsedGetList $parameters) |
||
868 | { |
||
869 | try { |
||
870 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedVirtualMacIpUsedGetList', array( |
||
871 | $parameters, |
||
872 | ), array(), array(), $this->outputHeaders)); |
||
873 | return $this->getResult(); |
||
874 | } catch (\SoapFault $soapFault) { |
||
875 | $this->saveLastError(__METHOD__, $soapFault); |
||
876 | return false; |
||
877 | } |
||
878 | } |
||
879 | /** |
||
880 | * Method to call the operation originally named dedicatedNetbootInfo |
||
881 | * @uses SoapClientBase::getSoapClient() |
||
882 | * @uses SoapClientBase::setResult() |
||
883 | * @uses SoapClientBase::getResult() |
||
884 | * @uses SoapClientBase::saveLastError() |
||
885 | * @param \Ovh\StructType\DedicatedNetbootInfo $parameters |
||
886 | * @return \Ovh\StructType\DedicatedNetbootInfoResponse|bool |
||
887 | */ |
||
888 | public function dedicatedNetbootInfo(\Ovh\StructType\DedicatedNetbootInfo $parameters) |
||
889 | { |
||
890 | try { |
||
891 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedNetbootInfo', array( |
||
892 | $parameters, |
||
893 | ), array(), array(), $this->outputHeaders)); |
||
894 | return $this->getResult(); |
||
895 | } catch (\SoapFault $soapFault) { |
||
896 | $this->saveLastError(__METHOD__, $soapFault); |
||
897 | return false; |
||
898 | } |
||
899 | } |
||
900 | /** |
||
901 | * Method to call the operation originally named dedicatedIpLoadBalancingAdd |
||
902 | * @uses SoapClientBase::getSoapClient() |
||
903 | * @uses SoapClientBase::setResult() |
||
904 | * @uses SoapClientBase::getResult() |
||
905 | * @uses SoapClientBase::saveLastError() |
||
906 | * @param \Ovh\StructType\DedicatedIpLoadBalancingAdd $parameters |
||
907 | * @return \Ovh\StructType\DedicatedIpLoadBalancingAddResponse|bool |
||
908 | */ |
||
909 | public function dedicatedIpLoadBalancingAdd(\Ovh\StructType\DedicatedIpLoadBalancingAdd $parameters) |
||
910 | { |
||
911 | try { |
||
912 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIpLoadBalancingAdd', array( |
||
913 | $parameters, |
||
914 | ), array(), array(), $this->outputHeaders)); |
||
915 | return $this->getResult(); |
||
916 | } catch (\SoapFault $soapFault) { |
||
917 | $this->saveLastError(__METHOD__, $soapFault); |
||
918 | return false; |
||
919 | } |
||
920 | } |
||
921 | /** |
||
922 | * Method to call the operation originally named |
||
923 | * dedicatedAvailableNotificationNicsGet |
||
924 | * @uses SoapClientBase::getSoapClient() |
||
925 | * @uses SoapClientBase::setResult() |
||
926 | * @uses SoapClientBase::getResult() |
||
927 | * @uses SoapClientBase::saveLastError() |
||
928 | * @param \Ovh\StructType\DedicatedAvailableNotificationNicsGet $parameters |
||
929 | * @return \Ovh\StructType\DedicatedAvailableNotificationNicsGetResponse|bool |
||
930 | */ |
||
931 | public function dedicatedAvailableNotificationNicsGet(\Ovh\StructType\DedicatedAvailableNotificationNicsGet $parameters) |
||
932 | { |
||
933 | try { |
||
934 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedAvailableNotificationNicsGet', array( |
||
935 | $parameters, |
||
936 | ), array(), array(), $this->outputHeaders)); |
||
937 | return $this->getResult(); |
||
938 | } catch (\SoapFault $soapFault) { |
||
939 | $this->saveLastError(__METHOD__, $soapFault); |
||
940 | return false; |
||
941 | } |
||
942 | } |
||
943 | /** |
||
944 | * Method to call the operation originally named dedicatedMonitoringServiceDel |
||
945 | * @uses SoapClientBase::getSoapClient() |
||
946 | * @uses SoapClientBase::setResult() |
||
947 | * @uses SoapClientBase::getResult() |
||
948 | * @uses SoapClientBase::saveLastError() |
||
949 | * @param \Ovh\StructType\DedicatedMonitoringServiceDel $parameters |
||
950 | * @return \Ovh\StructType\DedicatedMonitoringServiceDelResponse|bool |
||
951 | */ |
||
952 | public function dedicatedMonitoringServiceDel(\Ovh\StructType\DedicatedMonitoringServiceDel $parameters) |
||
953 | { |
||
954 | try { |
||
955 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringServiceDel', array( |
||
956 | $parameters, |
||
957 | ), array(), array(), $this->outputHeaders)); |
||
958 | return $this->getResult(); |
||
959 | } catch (\SoapFault $soapFault) { |
||
960 | $this->saveLastError(__METHOD__, $soapFault); |
||
961 | return false; |
||
962 | } |
||
963 | } |
||
964 | /** |
||
965 | * Method to call the operation originally named |
||
966 | * dedicatedIpLoadBalancingServerStateModify |
||
967 | * @uses SoapClientBase::getSoapClient() |
||
968 | * @uses SoapClientBase::setResult() |
||
969 | * @uses SoapClientBase::getResult() |
||
970 | * @uses SoapClientBase::saveLastError() |
||
971 | * @param \Ovh\StructType\DedicatedIpLoadBalancingServerStateModify $parameters |
||
972 | * @return \Ovh\StructType\DedicatedIpLoadBalancingServerStateModifyResponse|bool |
||
973 | */ |
||
974 | public function dedicatedIpLoadBalancingServerStateModify(\Ovh\StructType\DedicatedIpLoadBalancingServerStateModify $parameters) |
||
975 | { |
||
976 | try { |
||
977 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIpLoadBalancingServerStateModify', array( |
||
978 | $parameters, |
||
979 | ), array(), array(), $this->outputHeaders)); |
||
980 | return $this->getResult(); |
||
981 | } catch (\SoapFault $soapFault) { |
||
982 | $this->saveLastError(__METHOD__, $soapFault); |
||
983 | return false; |
||
984 | } |
||
985 | } |
||
986 | /** |
||
987 | * Method to call the operation originally named dedicatedReverseModify |
||
988 | * @uses SoapClientBase::getSoapClient() |
||
989 | * @uses SoapClientBase::setResult() |
||
990 | * @uses SoapClientBase::getResult() |
||
991 | * @uses SoapClientBase::saveLastError() |
||
992 | * @param \Ovh\StructType\DedicatedReverseModify $parameters |
||
993 | * @return \Ovh\StructType\DedicatedReverseModifyResponse|bool |
||
994 | */ |
||
995 | public function dedicatedReverseModify(\Ovh\StructType\DedicatedReverseModify $parameters) |
||
996 | { |
||
997 | try { |
||
998 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedReverseModify', array( |
||
999 | $parameters, |
||
1000 | ), array(), array(), $this->outputHeaders)); |
||
1001 | return $this->getResult(); |
||
1002 | } catch (\SoapFault $soapFault) { |
||
1003 | $this->saveLastError(__METHOD__, $soapFault); |
||
1004 | return false; |
||
1005 | } |
||
1006 | } |
||
1007 | /** |
||
1008 | * Method to call the operation originally named dedicatedFailoverList |
||
1009 | * @uses SoapClientBase::getSoapClient() |
||
1010 | * @uses SoapClientBase::setResult() |
||
1011 | * @uses SoapClientBase::getResult() |
||
1012 | * @uses SoapClientBase::saveLastError() |
||
1013 | * @param \Ovh\StructType\DedicatedFailoverList $parameters |
||
1014 | * @return \Ovh\StructType\DedicatedFailoverListResponse|bool |
||
1015 | */ |
||
1016 | public function dedicatedFailoverList(\Ovh\StructType\DedicatedFailoverList $parameters) |
||
1017 | { |
||
1018 | try { |
||
1019 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFailoverList', array( |
||
1020 | $parameters, |
||
1021 | ), array(), array(), $this->outputHeaders)); |
||
1022 | return $this->getResult(); |
||
1023 | } catch (\SoapFault $soapFault) { |
||
1024 | $this->saveLastError(__METHOD__, $soapFault); |
||
1025 | return false; |
||
1026 | } |
||
1027 | } |
||
1028 | /** |
||
1029 | * Method to call the operation originally named dedicatedSecondaryDNSInfo |
||
1030 | * @uses SoapClientBase::getSoapClient() |
||
1031 | * @uses SoapClientBase::setResult() |
||
1032 | * @uses SoapClientBase::getResult() |
||
1033 | * @uses SoapClientBase::saveLastError() |
||
1034 | * @param \Ovh\StructType\DedicatedSecondaryDNSInfo $parameters |
||
1035 | * @return \Ovh\StructType\DedicatedSecondaryDNSInfoResponse|bool |
||
1036 | */ |
||
1037 | public function dedicatedSecondaryDNSInfo(\Ovh\StructType\DedicatedSecondaryDNSInfo $parameters) |
||
1038 | { |
||
1039 | try { |
||
1040 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedSecondaryDNSInfo', array( |
||
1041 | $parameters, |
||
1042 | ), array(), array(), $this->outputHeaders)); |
||
1043 | return $this->getResult(); |
||
1044 | } catch (\SoapFault $soapFault) { |
||
1045 | $this->saveLastError(__METHOD__, $soapFault); |
||
1046 | return false; |
||
1047 | } |
||
1048 | } |
||
1049 | /** |
||
1050 | * Method to call the operation originally named dedicatedRipeUpdateInetnum |
||
1051 | * @uses SoapClientBase::getSoapClient() |
||
1052 | * @uses SoapClientBase::setResult() |
||
1053 | * @uses SoapClientBase::getResult() |
||
1054 | * @uses SoapClientBase::saveLastError() |
||
1055 | * @param \Ovh\StructType\DedicatedRipeUpdateInetnum $parameters |
||
1056 | * @return \Ovh\StructType\DedicatedRipeUpdateInetnumResponse|bool |
||
1057 | */ |
||
1058 | public function dedicatedRipeUpdateInetnum(\Ovh\StructType\DedicatedRipeUpdateInetnum $parameters) |
||
1059 | { |
||
1060 | try { |
||
1061 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRipeUpdateInetnum', array( |
||
1062 | $parameters, |
||
1063 | ), array(), array(), $this->outputHeaders)); |
||
1064 | return $this->getResult(); |
||
1065 | } catch (\SoapFault $soapFault) { |
||
1066 | $this->saveLastError(__METHOD__, $soapFault); |
||
1067 | return false; |
||
1068 | } |
||
1069 | } |
||
1070 | /** |
||
1071 | * Method to call the operation originally named |
||
1072 | * dedicatedGetAvailableNetworkFromCountry |
||
1073 | * @uses SoapClientBase::getSoapClient() |
||
1074 | * @uses SoapClientBase::setResult() |
||
1075 | * @uses SoapClientBase::getResult() |
||
1076 | * @uses SoapClientBase::saveLastError() |
||
1077 | * @param \Ovh\StructType\DedicatedGetAvailableNetworkFromCountry $parameters |
||
1078 | * @return \Ovh\StructType\DedicatedGetAvailableNetworkFromCountryResponse|bool |
||
1079 | */ |
||
1080 | public function dedicatedGetAvailableNetworkFromCountry(\Ovh\StructType\DedicatedGetAvailableNetworkFromCountry $parameters) |
||
1081 | { |
||
1082 | try { |
||
1083 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedGetAvailableNetworkFromCountry', array( |
||
1084 | $parameters, |
||
1085 | ), array(), array(), $this->outputHeaders)); |
||
1086 | return $this->getResult(); |
||
1087 | } catch (\SoapFault $soapFault) { |
||
1088 | $this->saveLastError(__METHOD__, $soapFault); |
||
1089 | return false; |
||
1090 | } |
||
1091 | } |
||
1092 | /** |
||
1093 | * Method to call the operation originally named dedicatedFailoverAdd |
||
1094 | * @uses SoapClientBase::getSoapClient() |
||
1095 | * @uses SoapClientBase::setResult() |
||
1096 | * @uses SoapClientBase::getResult() |
||
1097 | * @uses SoapClientBase::saveLastError() |
||
1098 | * @param \Ovh\StructType\DedicatedFailoverAdd $parameters |
||
1099 | * @return \Ovh\StructType\DedicatedFailoverAddResponse|bool |
||
1100 | */ |
||
1101 | public function dedicatedFailoverAdd(\Ovh\StructType\DedicatedFailoverAdd $parameters) |
||
1102 | { |
||
1103 | try { |
||
1104 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFailoverAdd', array( |
||
1105 | $parameters, |
||
1106 | ), array(), array(), $this->outputHeaders)); |
||
1107 | return $this->getResult(); |
||
1108 | } catch (\SoapFault $soapFault) { |
||
1109 | $this->saveLastError(__METHOD__, $soapFault); |
||
1110 | return false; |
||
1111 | } |
||
1112 | } |
||
1113 | /** |
||
1114 | * Method to call the operation originally named dedicatedFilterIrcServerRuleList |
||
1115 | * @uses SoapClientBase::getSoapClient() |
||
1116 | * @uses SoapClientBase::setResult() |
||
1117 | * @uses SoapClientBase::getResult() |
||
1118 | * @uses SoapClientBase::saveLastError() |
||
1119 | * @param \Ovh\StructType\DedicatedFilterIrcServerRuleList $parameters |
||
1120 | * @return \Ovh\StructType\DedicatedFilterIrcServerRuleListResponse|bool |
||
1121 | */ |
||
1122 | public function dedicatedFilterIrcServerRuleList(\Ovh\StructType\DedicatedFilterIrcServerRuleList $parameters) |
||
1123 | { |
||
1124 | try { |
||
1125 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFilterIrcServerRuleList', array( |
||
1126 | $parameters, |
||
1127 | ), array(), array(), $this->outputHeaders)); |
||
1128 | return $this->getResult(); |
||
1129 | } catch (\SoapFault $soapFault) { |
||
1130 | $this->saveLastError(__METHOD__, $soapFault); |
||
1131 | return false; |
||
1132 | } |
||
1133 | } |
||
1134 | /** |
||
1135 | * Method to call the operation originally named dedicatedRipeCreateOrganisation |
||
1136 | * @uses SoapClientBase::getSoapClient() |
||
1137 | * @uses SoapClientBase::setResult() |
||
1138 | * @uses SoapClientBase::getResult() |
||
1139 | * @uses SoapClientBase::saveLastError() |
||
1140 | * @param \Ovh\StructType\DedicatedRipeCreateOrganisation $parameters |
||
1141 | * @return \Ovh\StructType\DedicatedRipeCreateOrganisationResponse|bool |
||
1142 | */ |
||
1143 | public function dedicatedRipeCreateOrganisation(\Ovh\StructType\DedicatedRipeCreateOrganisation $parameters) |
||
1144 | { |
||
1145 | try { |
||
1146 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRipeCreateOrganisation', array( |
||
1147 | $parameters, |
||
1148 | ), array(), array(), $this->outputHeaders)); |
||
1149 | return $this->getResult(); |
||
1150 | } catch (\SoapFault $soapFault) { |
||
1151 | $this->saveLastError(__METHOD__, $soapFault); |
||
1152 | return false; |
||
1153 | } |
||
1154 | } |
||
1155 | /** |
||
1156 | * Method to call the operation originally named dedicatedBackupExcludeAdd |
||
1157 | * @uses SoapClientBase::getSoapClient() |
||
1158 | * @uses SoapClientBase::setResult() |
||
1159 | * @uses SoapClientBase::getResult() |
||
1160 | * @uses SoapClientBase::saveLastError() |
||
1161 | * @param \Ovh\StructType\DedicatedBackupExcludeAdd $parameters |
||
1162 | * @return \Ovh\StructType\DedicatedBackupExcludeAddResponse|bool |
||
1163 | */ |
||
1164 | public function dedicatedBackupExcludeAdd(\Ovh\StructType\DedicatedBackupExcludeAdd $parameters) |
||
1165 | { |
||
1166 | try { |
||
1167 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupExcludeAdd', array( |
||
1168 | $parameters, |
||
1169 | ), array(), array(), $this->outputHeaders)); |
||
1170 | return $this->getResult(); |
||
1171 | } catch (\SoapFault $soapFault) { |
||
1172 | $this->saveLastError(__METHOD__, $soapFault); |
||
1173 | return false; |
||
1174 | } |
||
1175 | } |
||
1176 | /** |
||
1177 | * Method to call the operation originally named dedicatedFilterIrcServerRuleDel |
||
1178 | * @uses SoapClientBase::getSoapClient() |
||
1179 | * @uses SoapClientBase::setResult() |
||
1180 | * @uses SoapClientBase::getResult() |
||
1181 | * @uses SoapClientBase::saveLastError() |
||
1182 | * @param \Ovh\StructType\DedicatedFilterIrcServerRuleDel $parameters |
||
1183 | * @return \Ovh\StructType\DedicatedFilterIrcServerRuleDelResponse|bool |
||
1184 | */ |
||
1185 | public function dedicatedFilterIrcServerRuleDel(\Ovh\StructType\DedicatedFilterIrcServerRuleDel $parameters) |
||
1186 | { |
||
1187 | try { |
||
1188 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFilterIrcServerRuleDel', array( |
||
1189 | $parameters, |
||
1190 | ), array(), array(), $this->outputHeaders)); |
||
1191 | return $this->getResult(); |
||
1192 | } catch (\SoapFault $soapFault) { |
||
1193 | $this->saveLastError(__METHOD__, $soapFault); |
||
1194 | return false; |
||
1195 | } |
||
1196 | } |
||
1197 | /** |
||
1198 | * Method to call the operation originally named dedicatedFailoverRipeModify |
||
1199 | * @uses SoapClientBase::getSoapClient() |
||
1200 | * @uses SoapClientBase::setResult() |
||
1201 | * @uses SoapClientBase::getResult() |
||
1202 | * @uses SoapClientBase::saveLastError() |
||
1203 | * @param \Ovh\StructType\DedicatedFailoverRipeModify $parameters |
||
1204 | * @return \Ovh\StructType\DedicatedFailoverRipeModifyResponse|bool |
||
1205 | */ |
||
1206 | public function dedicatedFailoverRipeModify(\Ovh\StructType\DedicatedFailoverRipeModify $parameters) |
||
1216 | } |
||
1217 | } |
||
1218 | /** |
||
1219 | * Method to call the operation originally named dedicatedMonitoringList |
||
1220 | * @uses SoapClientBase::getSoapClient() |
||
1221 | * @uses SoapClientBase::setResult() |
||
1222 | * @uses SoapClientBase::getResult() |
||
1223 | * @uses SoapClientBase::saveLastError() |
||
1224 | * @param \Ovh\StructType\DedicatedMonitoringList $parameters |
||
1225 | * @return \Ovh\StructType\DedicatedMonitoringListResponse|bool |
||
1226 | */ |
||
1227 | public function dedicatedMonitoringList(\Ovh\StructType\DedicatedMonitoringList $parameters) |
||
1228 | { |
||
1229 | try { |
||
1230 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringList', array( |
||
1231 | $parameters, |
||
1232 | ), array(), array(), $this->outputHeaders)); |
||
1233 | return $this->getResult(); |
||
1234 | } catch (\SoapFault $soapFault) { |
||
1235 | $this->saveLastError(__METHOD__, $soapFault); |
||
1236 | return false; |
||
1237 | } |
||
1238 | } |
||
1239 | /** |
||
1240 | * Method to call the operation originally named dedicatedBackupExcludeDel |
||
1241 | * @uses SoapClientBase::getSoapClient() |
||
1242 | * @uses SoapClientBase::setResult() |
||
1243 | * @uses SoapClientBase::getResult() |
||
1244 | * @uses SoapClientBase::saveLastError() |
||
1245 | * @param \Ovh\StructType\DedicatedBackupExcludeDel $parameters |
||
1246 | * @return \Ovh\StructType\DedicatedBackupExcludeDelResponse|bool |
||
1247 | */ |
||
1248 | public function dedicatedBackupExcludeDel(\Ovh\StructType\DedicatedBackupExcludeDel $parameters) |
||
1249 | { |
||
1250 | try { |
||
1251 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupExcludeDel', array( |
||
1252 | $parameters, |
||
1253 | ), array(), array(), $this->outputHeaders)); |
||
1254 | return $this->getResult(); |
||
1255 | } catch (\SoapFault $soapFault) { |
||
1256 | $this->saveLastError(__METHOD__, $soapFault); |
||
1257 | return false; |
||
1258 | } |
||
1259 | } |
||
1260 | /** |
||
1261 | * Method to call the operation originally named dedicatedHardRebootStatus |
||
1262 | * @uses SoapClientBase::getSoapClient() |
||
1263 | * @uses SoapClientBase::setResult() |
||
1264 | * @uses SoapClientBase::getResult() |
||
1265 | * @uses SoapClientBase::saveLastError() |
||
1266 | * @param \Ovh\StructType\DedicatedHardRebootStatus $parameters |
||
1267 | * @return \Ovh\StructType\DedicatedHardRebootStatusResponse|bool |
||
1268 | */ |
||
1269 | public function dedicatedHardRebootStatus(\Ovh\StructType\DedicatedHardRebootStatus $parameters) |
||
1270 | { |
||
1271 | try { |
||
1272 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedHardRebootStatus', array( |
||
1273 | $parameters, |
||
1274 | ), array(), array(), $this->outputHeaders)); |
||
1275 | return $this->getResult(); |
||
1276 | } catch (\SoapFault $soapFault) { |
||
1277 | $this->saveLastError(__METHOD__, $soapFault); |
||
1278 | return false; |
||
1279 | } |
||
1280 | } |
||
1281 | /** |
||
1282 | * Method to call the operation originally named dedicatedGetServiceMonitoringItem |
||
1283 | * @uses SoapClientBase::getSoapClient() |
||
1284 | * @uses SoapClientBase::setResult() |
||
1285 | * @uses SoapClientBase::getResult() |
||
1286 | * @uses SoapClientBase::saveLastError() |
||
1287 | * @param \Ovh\StructType\DedicatedGetServiceMonitoringItem $parameters |
||
1288 | * @return \Ovh\StructType\DedicatedGetServiceMonitoringItemResponse|bool |
||
1289 | */ |
||
1290 | public function dedicatedGetServiceMonitoringItem(\Ovh\StructType\DedicatedGetServiceMonitoringItem $parameters) |
||
1291 | { |
||
1292 | try { |
||
1293 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedGetServiceMonitoringItem', array( |
||
1294 | $parameters, |
||
1295 | ), array(), array(), $this->outputHeaders)); |
||
1296 | return $this->getResult(); |
||
1297 | } catch (\SoapFault $soapFault) { |
||
1298 | $this->saveLastError(__METHOD__, $soapFault); |
||
1299 | return false; |
||
1300 | } |
||
1301 | } |
||
1302 | /** |
||
1303 | * Method to call the operation originally named dedicatedReverseAdd |
||
1304 | * @uses SoapClientBase::getSoapClient() |
||
1305 | * @uses SoapClientBase::setResult() |
||
1306 | * @uses SoapClientBase::getResult() |
||
1307 | * @uses SoapClientBase::saveLastError() |
||
1308 | * @param \Ovh\StructType\DedicatedReverseAdd $parameters |
||
1309 | * @return \Ovh\StructType\DedicatedReverseAddResponse|bool |
||
1310 | */ |
||
1311 | public function dedicatedReverseAdd(\Ovh\StructType\DedicatedReverseAdd $parameters) |
||
1312 | { |
||
1313 | try { |
||
1314 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedReverseAdd', array( |
||
1315 | $parameters, |
||
1316 | ), array(), array(), $this->outputHeaders)); |
||
1317 | return $this->getResult(); |
||
1318 | } catch (\SoapFault $soapFault) { |
||
1319 | $this->saveLastError(__METHOD__, $soapFault); |
||
1320 | return false; |
||
1321 | } |
||
1322 | } |
||
1323 | /** |
||
1324 | * Method to call the operation originally named dedicatedBackupGetFreePlanning |
||
1325 | * @uses SoapClientBase::getSoapClient() |
||
1326 | * @uses SoapClientBase::setResult() |
||
1327 | * @uses SoapClientBase::getResult() |
||
1328 | * @uses SoapClientBase::saveLastError() |
||
1329 | * @param \Ovh\StructType\DedicatedBackupGetFreePlanning $parameters |
||
1330 | * @return \Ovh\StructType\DedicatedBackupGetFreePlanningResponse|bool |
||
1331 | */ |
||
1332 | public function dedicatedBackupGetFreePlanning(\Ovh\StructType\DedicatedBackupGetFreePlanning $parameters) |
||
1333 | { |
||
1334 | try { |
||
1335 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupGetFreePlanning', array( |
||
1336 | $parameters, |
||
1337 | ), array(), array(), $this->outputHeaders)); |
||
1338 | return $this->getResult(); |
||
1339 | } catch (\SoapFault $soapFault) { |
||
1340 | $this->saveLastError(__METHOD__, $soapFault); |
||
1341 | return false; |
||
1342 | } |
||
1343 | } |
||
1344 | /** |
||
1345 | * Method to call the operation originally named |
||
1346 | * dedicatedInstallAllowedDistributionGet |
||
1347 | * @uses SoapClientBase::getSoapClient() |
||
1348 | * @uses SoapClientBase::setResult() |
||
1349 | * @uses SoapClientBase::getResult() |
||
1350 | * @uses SoapClientBase::saveLastError() |
||
1351 | * @param \Ovh\StructType\DedicatedInstallAllowedDistributionGet $parameters |
||
1352 | * @return \Ovh\StructType\DedicatedInstallAllowedDistributionGetResponse|bool |
||
1353 | */ |
||
1354 | public function dedicatedInstallAllowedDistributionGet(\Ovh\StructType\DedicatedInstallAllowedDistributionGet $parameters) |
||
1355 | { |
||
1356 | try { |
||
1357 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedInstallAllowedDistributionGet', array( |
||
1358 | $parameters, |
||
1359 | ), array(), array(), $this->outputHeaders)); |
||
1360 | return $this->getResult(); |
||
1361 | } catch (\SoapFault $soapFault) { |
||
1362 | $this->saveLastError(__METHOD__, $soapFault); |
||
1363 | return false; |
||
1364 | } |
||
1365 | } |
||
1366 | /** |
||
1367 | * Method to call the operation originally named dedicatedCapabilitiesGet |
||
1368 | * @uses SoapClientBase::getSoapClient() |
||
1369 | * @uses SoapClientBase::setResult() |
||
1370 | * @uses SoapClientBase::getResult() |
||
1371 | * @uses SoapClientBase::saveLastError() |
||
1372 | * @param \Ovh\StructType\DedicatedCapabilitiesGet $parameters |
||
1373 | * @return \Ovh\StructType\DedicatedCapabilitiesGetResponse|bool |
||
1374 | */ |
||
1375 | public function dedicatedCapabilitiesGet(\Ovh\StructType\DedicatedCapabilitiesGet $parameters) |
||
1376 | { |
||
1377 | try { |
||
1378 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedCapabilitiesGet', array( |
||
1379 | $parameters, |
||
1380 | ), array(), array(), $this->outputHeaders)); |
||
1381 | return $this->getResult(); |
||
1382 | } catch (\SoapFault $soapFault) { |
||
1383 | $this->saveLastError(__METHOD__, $soapFault); |
||
1384 | return false; |
||
1385 | } |
||
1386 | } |
||
1387 | /** |
||
1388 | * Method to call the operation originally named dedicatedMonitoringSMSDel |
||
1389 | * @uses SoapClientBase::getSoapClient() |
||
1390 | * @uses SoapClientBase::setResult() |
||
1391 | * @uses SoapClientBase::getResult() |
||
1392 | * @uses SoapClientBase::saveLastError() |
||
1393 | * @param \Ovh\StructType\DedicatedMonitoringSMSDel $parameters |
||
1394 | * @return \Ovh\StructType\DedicatedMonitoringSMSDelResponse|bool |
||
1395 | */ |
||
1396 | public function dedicatedMonitoringSMSDel(\Ovh\StructType\DedicatedMonitoringSMSDel $parameters) |
||
1397 | { |
||
1398 | try { |
||
1399 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringSMSDel', array( |
||
1400 | $parameters, |
||
1401 | ), array(), array(), $this->outputHeaders)); |
||
1402 | return $this->getResult(); |
||
1403 | } catch (\SoapFault $soapFault) { |
||
1404 | $this->saveLastError(__METHOD__, $soapFault); |
||
1405 | return false; |
||
1406 | } |
||
1407 | } |
||
1408 | /** |
||
1409 | * Method to call the operation originally named dedicatedMonitoringAdd |
||
1410 | * @uses SoapClientBase::getSoapClient() |
||
1411 | * @uses SoapClientBase::setResult() |
||
1412 | * @uses SoapClientBase::getResult() |
||
1413 | * @uses SoapClientBase::saveLastError() |
||
1414 | * @param \Ovh\StructType\DedicatedMonitoringAdd $parameters |
||
1415 | * @return \Ovh\StructType\DedicatedMonitoringAddResponse|bool |
||
1416 | */ |
||
1417 | public function dedicatedMonitoringAdd(\Ovh\StructType\DedicatedMonitoringAdd $parameters) |
||
1418 | { |
||
1419 | try { |
||
1420 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringAdd', array( |
||
1421 | $parameters, |
||
1422 | ), array(), array(), $this->outputHeaders)); |
||
1423 | return $this->getResult(); |
||
1424 | } catch (\SoapFault $soapFault) { |
||
1425 | $this->saveLastError(__METHOD__, $soapFault); |
||
1426 | return false; |
||
1427 | } |
||
1428 | } |
||
1429 | /** |
||
1430 | * Method to call the operation originally named dedicatedOperationList |
||
1431 | * @uses SoapClientBase::getSoapClient() |
||
1432 | * @uses SoapClientBase::setResult() |
||
1433 | * @uses SoapClientBase::getResult() |
||
1434 | * @uses SoapClientBase::saveLastError() |
||
1435 | * @param \Ovh\StructType\DedicatedOperationList $parameters |
||
1436 | * @return \Ovh\StructType\DedicatedOperationListResponse|bool |
||
1437 | */ |
||
1438 | public function dedicatedOperationList(\Ovh\StructType\DedicatedOperationList $parameters) |
||
1439 | { |
||
1440 | try { |
||
1441 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedOperationList', array( |
||
1442 | $parameters, |
||
1443 | ), array(), array(), $this->outputHeaders)); |
||
1444 | return $this->getResult(); |
||
1445 | } catch (\SoapFault $soapFault) { |
||
1446 | $this->saveLastError(__METHOD__, $soapFault); |
||
1447 | return false; |
||
1448 | } |
||
1449 | } |
||
1450 | /** |
||
1451 | * Method to call the operation originally named dedicatedBackupIncludeDel |
||
1452 | * @uses SoapClientBase::getSoapClient() |
||
1453 | * @uses SoapClientBase::setResult() |
||
1454 | * @uses SoapClientBase::getResult() |
||
1455 | * @uses SoapClientBase::saveLastError() |
||
1456 | * @param \Ovh\StructType\DedicatedBackupIncludeDel $parameters |
||
1457 | * @return \Ovh\StructType\DedicatedBackupIncludeDelResponse|bool |
||
1458 | */ |
||
1459 | public function dedicatedBackupIncludeDel(\Ovh\StructType\DedicatedBackupIncludeDel $parameters) |
||
1460 | { |
||
1461 | try { |
||
1462 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupIncludeDel', array( |
||
1463 | $parameters, |
||
1464 | ), array(), array(), $this->outputHeaders)); |
||
1465 | return $this->getResult(); |
||
1466 | } catch (\SoapFault $soapFault) { |
||
1467 | $this->saveLastError(__METHOD__, $soapFault); |
||
1468 | return false; |
||
1469 | } |
||
1470 | } |
||
1471 | /** |
||
1472 | * Method to call the operation originally named dedicatedBandwidthSwitching |
||
1473 | * @uses SoapClientBase::getSoapClient() |
||
1474 | * @uses SoapClientBase::setResult() |
||
1475 | * @uses SoapClientBase::getResult() |
||
1476 | * @uses SoapClientBase::saveLastError() |
||
1477 | * @param \Ovh\StructType\DedicatedBandwidthSwitching $parameters |
||
1478 | * @return \Ovh\StructType\DedicatedBandwidthSwitchingResponse|bool |
||
1479 | */ |
||
1480 | public function dedicatedBandwidthSwitching(\Ovh\StructType\DedicatedBandwidthSwitching $parameters) |
||
1481 | { |
||
1482 | try { |
||
1483 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBandwidthSwitching', array( |
||
1484 | $parameters, |
||
1485 | ), array(), array(), $this->outputHeaders)); |
||
1486 | return $this->getResult(); |
||
1487 | } catch (\SoapFault $soapFault) { |
||
1488 | $this->saveLastError(__METHOD__, $soapFault); |
||
1489 | return false; |
||
1490 | } |
||
1491 | } |
||
1492 | /** |
||
1493 | * Method to call the operation originally named dedicatedIpLoadBalancingDel |
||
1494 | * @uses SoapClientBase::getSoapClient() |
||
1495 | * @uses SoapClientBase::setResult() |
||
1496 | * @uses SoapClientBase::getResult() |
||
1497 | * @uses SoapClientBase::saveLastError() |
||
1498 | * @param \Ovh\StructType\DedicatedIpLoadBalancingDel $parameters |
||
1499 | * @return \Ovh\StructType\DedicatedIpLoadBalancingDelResponse|bool |
||
1500 | */ |
||
1501 | public function dedicatedIpLoadBalancingDel(\Ovh\StructType\DedicatedIpLoadBalancingDel $parameters) |
||
1511 | } |
||
1512 | } |
||
1513 | /** |
||
1514 | * Method to call the operation originally named dedicatedInstallationTemplateUse |
||
1515 | * @uses SoapClientBase::getSoapClient() |
||
1516 | * @uses SoapClientBase::setResult() |
||
1517 | * @uses SoapClientBase::getResult() |
||
1518 | * @uses SoapClientBase::saveLastError() |
||
1519 | * @param \Ovh\StructType\DedicatedInstallationTemplateUse $parameters |
||
1520 | * @return \Ovh\StructType\DedicatedInstallationTemplateUseResponse|bool |
||
1521 | */ |
||
1522 | public function dedicatedInstallationTemplateUse(\Ovh\StructType\DedicatedInstallationTemplateUse $parameters) |
||
1523 | { |
||
1524 | try { |
||
1525 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedInstallationTemplateUse', array( |
||
1526 | $parameters, |
||
1527 | ), array(), array(), $this->outputHeaders)); |
||
1528 | return $this->getResult(); |
||
1529 | } catch (\SoapFault $soapFault) { |
||
1530 | $this->saveLastError(__METHOD__, $soapFault); |
||
1531 | return false; |
||
1532 | } |
||
1533 | } |
||
1534 | /** |
||
1535 | * Method to call the operation originally named dedicatedIpLoadBalancingServerAdd |
||
1536 | * @uses SoapClientBase::getSoapClient() |
||
1537 | * @uses SoapClientBase::setResult() |
||
1538 | * @uses SoapClientBase::getResult() |
||
1539 | * @uses SoapClientBase::saveLastError() |
||
1540 | * @param \Ovh\StructType\DedicatedIpLoadBalancingServerAdd $parameters |
||
1541 | * @return \Ovh\StructType\DedicatedIpLoadBalancingServerAddResponse|bool |
||
1542 | */ |
||
1543 | public function dedicatedIpLoadBalancingServerAdd(\Ovh\StructType\DedicatedIpLoadBalancingServerAdd $parameters) |
||
1544 | { |
||
1545 | try { |
||
1546 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIpLoadBalancingServerAdd', array( |
||
1547 | $parameters, |
||
1548 | ), array(), array(), $this->outputHeaders)); |
||
1549 | return $this->getResult(); |
||
1550 | } catch (\SoapFault $soapFault) { |
||
1551 | $this->saveLastError(__METHOD__, $soapFault); |
||
1552 | return false; |
||
1553 | } |
||
1554 | } |
||
1555 | /** |
||
1556 | * Method to call the operation originally named dedicatedRipeUpdateOrganisation |
||
1557 | * @uses SoapClientBase::getSoapClient() |
||
1558 | * @uses SoapClientBase::setResult() |
||
1559 | * @uses SoapClientBase::getResult() |
||
1560 | * @uses SoapClientBase::saveLastError() |
||
1561 | * @param \Ovh\StructType\DedicatedRipeUpdateOrganisation $parameters |
||
1562 | * @return \Ovh\StructType\DedicatedRipeUpdateOrganisationResponse|bool |
||
1563 | */ |
||
1564 | public function dedicatedRipeUpdateOrganisation(\Ovh\StructType\DedicatedRipeUpdateOrganisation $parameters) |
||
1565 | { |
||
1566 | try { |
||
1567 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRipeUpdateOrganisation', array( |
||
1568 | $parameters, |
||
1569 | ), array(), array(), $this->outputHeaders)); |
||
1570 | return $this->getResult(); |
||
1571 | } catch (\SoapFault $soapFault) { |
||
1572 | $this->saveLastError(__METHOD__, $soapFault); |
||
1573 | return false; |
||
1574 | } |
||
1575 | } |
||
1576 | /** |
||
1577 | * Method to call the operation originally named dedicatedNetbootModifyById |
||
1578 | * @uses SoapClientBase::getSoapClient() |
||
1579 | * @uses SoapClientBase::setResult() |
||
1580 | * @uses SoapClientBase::getResult() |
||
1581 | * @uses SoapClientBase::saveLastError() |
||
1582 | * @param \Ovh\StructType\DedicatedNetbootModifyById $parameters |
||
1583 | * @return \Ovh\StructType\DedicatedNetbootModifyByIdResponse|bool |
||
1584 | */ |
||
1585 | public function dedicatedNetbootModifyById(\Ovh\StructType\DedicatedNetbootModifyById $parameters) |
||
1586 | { |
||
1587 | try { |
||
1588 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedNetbootModifyById', array( |
||
1589 | $parameters, |
||
1590 | ), array(), array(), $this->outputHeaders)); |
||
1591 | return $this->getResult(); |
||
1592 | } catch (\SoapFault $soapFault) { |
||
1593 | $this->saveLastError(__METHOD__, $soapFault); |
||
1594 | return false; |
||
1595 | } |
||
1596 | } |
||
1597 | /** |
||
1598 | * Method to call the operation originally named dedicatedBackupGetDate |
||
1599 | * @uses SoapClientBase::getSoapClient() |
||
1600 | * @uses SoapClientBase::setResult() |
||
1601 | * @uses SoapClientBase::getResult() |
||
1602 | * @uses SoapClientBase::saveLastError() |
||
1603 | * @param \Ovh\StructType\DedicatedBackupGetDate $parameters |
||
1604 | * @return \Ovh\StructType\DedicatedBackupGetDateResponse|bool |
||
1605 | */ |
||
1606 | public function dedicatedBackupGetDate(\Ovh\StructType\DedicatedBackupGetDate $parameters) |
||
1607 | { |
||
1608 | try { |
||
1609 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupGetDate', array( |
||
1610 | $parameters, |
||
1611 | ), array(), array(), $this->outputHeaders)); |
||
1612 | return $this->getResult(); |
||
1613 | } catch (\SoapFault $soapFault) { |
||
1614 | $this->saveLastError(__METHOD__, $soapFault); |
||
1615 | return false; |
||
1616 | } |
||
1617 | } |
||
1618 | /** |
||
1619 | * Method to call the operation originally named dedicatedSecondaryDNSDel |
||
1620 | * @uses SoapClientBase::getSoapClient() |
||
1621 | * @uses SoapClientBase::setResult() |
||
1622 | * @uses SoapClientBase::getResult() |
||
1623 | * @uses SoapClientBase::saveLastError() |
||
1624 | * @param \Ovh\StructType\DedicatedSecondaryDNSDel $parameters |
||
1625 | * @return \Ovh\StructType\DedicatedSecondaryDNSDelResponse|bool |
||
1626 | */ |
||
1627 | public function dedicatedSecondaryDNSDel(\Ovh\StructType\DedicatedSecondaryDNSDel $parameters) |
||
1628 | { |
||
1629 | try { |
||
1630 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedSecondaryDNSDel', array( |
||
1631 | $parameters, |
||
1632 | ), array(), array(), $this->outputHeaders)); |
||
1633 | return $this->getResult(); |
||
1634 | } catch (\SoapFault $soapFault) { |
||
1635 | $this->saveLastError(__METHOD__, $soapFault); |
||
1636 | return false; |
||
1637 | } |
||
1638 | } |
||
1639 | /** |
||
1640 | * Method to call the operation originally named dedicatedSecondaryDNSGetAll |
||
1641 | * @uses SoapClientBase::getSoapClient() |
||
1642 | * @uses SoapClientBase::setResult() |
||
1643 | * @uses SoapClientBase::getResult() |
||
1644 | * @uses SoapClientBase::saveLastError() |
||
1645 | * @param \Ovh\StructType\DedicatedSecondaryDNSGetAll $parameters |
||
1646 | * @return \Ovh\StructType\DedicatedSecondaryDNSGetAllResponse|bool |
||
1647 | */ |
||
1648 | public function dedicatedSecondaryDNSGetAll(\Ovh\StructType\DedicatedSecondaryDNSGetAll $parameters) |
||
1649 | { |
||
1650 | try { |
||
1651 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedSecondaryDNSGetAll', array( |
||
1652 | $parameters, |
||
1653 | ), array(), array(), $this->outputHeaders)); |
||
1654 | return $this->getResult(); |
||
1655 | } catch (\SoapFault $soapFault) { |
||
1656 | $this->saveLastError(__METHOD__, $soapFault); |
||
1657 | return false; |
||
1658 | } |
||
1659 | } |
||
1660 | /** |
||
1661 | * Method to call the operation originally named dedicatedMonitoringNotificationDel |
||
1662 | * @uses SoapClientBase::getSoapClient() |
||
1663 | * @uses SoapClientBase::setResult() |
||
1664 | * @uses SoapClientBase::getResult() |
||
1665 | * @uses SoapClientBase::saveLastError() |
||
1666 | * @param \Ovh\StructType\DedicatedMonitoringNotificationDel $parameters |
||
1667 | * @return \Ovh\StructType\DedicatedMonitoringNotificationDelResponse|bool |
||
1668 | */ |
||
1669 | public function dedicatedMonitoringNotificationDel(\Ovh\StructType\DedicatedMonitoringNotificationDel $parameters) |
||
1670 | { |
||
1671 | try { |
||
1672 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringNotificationDel', array( |
||
1673 | $parameters, |
||
1674 | ), array(), array(), $this->outputHeaders)); |
||
1675 | return $this->getResult(); |
||
1676 | } catch (\SoapFault $soapFault) { |
||
1677 | $this->saveLastError(__METHOD__, $soapFault); |
||
1678 | return false; |
||
1679 | } |
||
1680 | } |
||
1681 | /** |
||
1682 | * Method to call the operation originally named dedicatedBandwidthManagementGet |
||
1683 | * @uses SoapClientBase::getSoapClient() |
||
1684 | * @uses SoapClientBase::setResult() |
||
1685 | * @uses SoapClientBase::getResult() |
||
1686 | * @uses SoapClientBase::saveLastError() |
||
1687 | * @param \Ovh\StructType\DedicatedBandwidthManagementGet $parameters |
||
1688 | * @return \Ovh\StructType\DedicatedBandwidthManagementGetResponse|bool |
||
1689 | */ |
||
1690 | public function dedicatedBandwidthManagementGet(\Ovh\StructType\DedicatedBandwidthManagementGet $parameters) |
||
1691 | { |
||
1692 | try { |
||
1693 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBandwidthManagementGet', array( |
||
1694 | $parameters, |
||
1695 | ), array(), array(), $this->outputHeaders)); |
||
1696 | return $this->getResult(); |
||
1697 | } catch (\SoapFault $soapFault) { |
||
1698 | $this->saveLastError(__METHOD__, $soapFault); |
||
1699 | return false; |
||
1700 | } |
||
1701 | } |
||
1702 | /** |
||
1703 | * Method to call the operation originally named dedicatedMonitoringStatusUpdate |
||
1704 | * @uses SoapClientBase::getSoapClient() |
||
1705 | * @uses SoapClientBase::setResult() |
||
1706 | * @uses SoapClientBase::getResult() |
||
1707 | * @uses SoapClientBase::saveLastError() |
||
1708 | * @param \Ovh\StructType\DedicatedMonitoringStatusUpdate $parameters |
||
1709 | * @return \Ovh\StructType\DedicatedMonitoringStatusUpdateResponse|bool |
||
1710 | */ |
||
1711 | public function dedicatedMonitoringStatusUpdate(\Ovh\StructType\DedicatedMonitoringStatusUpdate $parameters) |
||
1712 | { |
||
1713 | try { |
||
1714 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringStatusUpdate', array( |
||
1715 | $parameters, |
||
1716 | ), array(), array(), $this->outputHeaders)); |
||
1717 | return $this->getResult(); |
||
1718 | } catch (\SoapFault $soapFault) { |
||
1719 | $this->saveLastError(__METHOD__, $soapFault); |
||
1720 | return false; |
||
1721 | } |
||
1722 | } |
||
1723 | /** |
||
1724 | * Method to call the operation originally named dedicatedIPForUDPMoveGetStatus |
||
1725 | * @uses SoapClientBase::getSoapClient() |
||
1726 | * @uses SoapClientBase::setResult() |
||
1727 | * @uses SoapClientBase::getResult() |
||
1728 | * @uses SoapClientBase::saveLastError() |
||
1729 | * @param \Ovh\StructType\DedicatedIPForUDPMoveGetStatus $parameters |
||
1730 | * @return \Ovh\StructType\DedicatedIPForUDPMoveGetStatusResponse|bool |
||
1731 | */ |
||
1732 | public function dedicatedIPForUDPMoveGetStatus(\Ovh\StructType\DedicatedIPForUDPMoveGetStatus $parameters) |
||
1733 | { |
||
1734 | try { |
||
1735 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIPForUDPMoveGetStatus', array( |
||
1736 | $parameters, |
||
1737 | ), array(), array(), $this->outputHeaders)); |
||
1738 | return $this->getResult(); |
||
1739 | } catch (\SoapFault $soapFault) { |
||
1740 | $this->saveLastError(__METHOD__, $soapFault); |
||
1741 | return false; |
||
1742 | } |
||
1743 | } |
||
1744 | /** |
||
1745 | * Method to call the operation originally named dedicatedRipeDeleteOrganisation |
||
1746 | * @uses SoapClientBase::getSoapClient() |
||
1747 | * @uses SoapClientBase::setResult() |
||
1748 | * @uses SoapClientBase::getResult() |
||
1749 | * @uses SoapClientBase::saveLastError() |
||
1750 | * @param \Ovh\StructType\DedicatedRipeDeleteOrganisation $parameters |
||
1751 | * @return \Ovh\StructType\DedicatedRipeDeleteOrganisationResponse|bool |
||
1752 | */ |
||
1753 | public function dedicatedRipeDeleteOrganisation(\Ovh\StructType\DedicatedRipeDeleteOrganisation $parameters) |
||
1754 | { |
||
1755 | try { |
||
1756 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRipeDeleteOrganisation', array( |
||
1757 | $parameters, |
||
1758 | ), array(), array(), $this->outputHeaders)); |
||
1759 | return $this->getResult(); |
||
1760 | } catch (\SoapFault $soapFault) { |
||
1761 | $this->saveLastError(__METHOD__, $soapFault); |
||
1762 | return false; |
||
1763 | } |
||
1764 | } |
||
1765 | /** |
||
1766 | * Method to call the operation originally named dedicatedFailoverRipeGetIp |
||
1767 | * @uses SoapClientBase::getSoapClient() |
||
1768 | * @uses SoapClientBase::setResult() |
||
1769 | * @uses SoapClientBase::getResult() |
||
1770 | * @uses SoapClientBase::saveLastError() |
||
1771 | * @param \Ovh\StructType\DedicatedFailoverRipeGetIp $parameters |
||
1772 | * @return \Ovh\StructType\DedicatedFailoverRipeGetIpResponse|bool |
||
1773 | */ |
||
1774 | public function dedicatedFailoverRipeGetIp(\Ovh\StructType\DedicatedFailoverRipeGetIp $parameters) |
||
1784 | } |
||
1785 | } |
||
1786 | /** |
||
1787 | * Method to call the operation originally named dedicatedInstallBasic |
||
1788 | * @uses SoapClientBase::getSoapClient() |
||
1789 | * @uses SoapClientBase::setResult() |
||
1790 | * @uses SoapClientBase::getResult() |
||
1791 | * @uses SoapClientBase::saveLastError() |
||
1792 | * @param \Ovh\StructType\DedicatedInstallBasic $parameters |
||
1793 | * @return \Ovh\StructType\DedicatedInstallBasicResponse|bool |
||
1794 | */ |
||
1795 | public function dedicatedInstallBasic(\Ovh\StructType\DedicatedInstallBasic $parameters) |
||
1796 | { |
||
1797 | try { |
||
1798 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedInstallBasic', array( |
||
1799 | $parameters, |
||
1800 | ), array(), array(), $this->outputHeaders)); |
||
1801 | return $this->getResult(); |
||
1802 | } catch (\SoapFault $soapFault) { |
||
1803 | $this->saveLastError(__METHOD__, $soapFault); |
||
1804 | return false; |
||
1805 | } |
||
1806 | } |
||
1807 | /** |
||
1808 | * Method to call the operation originally named dedicatedInstallReset |
||
1809 | * @uses SoapClientBase::getSoapClient() |
||
1810 | * @uses SoapClientBase::setResult() |
||
1811 | * @uses SoapClientBase::getResult() |
||
1812 | * @uses SoapClientBase::saveLastError() |
||
1813 | * @param \Ovh\StructType\DedicatedInstallReset $parameters |
||
1814 | * @return \Ovh\StructType\DedicatedInstallResetResponse|bool |
||
1815 | */ |
||
1816 | public function dedicatedInstallReset(\Ovh\StructType\DedicatedInstallReset $parameters) |
||
1817 | { |
||
1818 | try { |
||
1819 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedInstallReset', array( |
||
1820 | $parameters, |
||
1821 | ), array(), array(), $this->outputHeaders)); |
||
1822 | return $this->getResult(); |
||
1823 | } catch (\SoapFault $soapFault) { |
||
1824 | $this->saveLastError(__METHOD__, $soapFault); |
||
1825 | return false; |
||
1826 | } |
||
1827 | } |
||
1828 | /** |
||
1829 | * Method to call the operation originally named |
||
1830 | * dedicatedMonitoringServiceAddNotification |
||
1831 | * @uses SoapClientBase::getSoapClient() |
||
1832 | * @uses SoapClientBase::setResult() |
||
1833 | * @uses SoapClientBase::getResult() |
||
1834 | * @uses SoapClientBase::saveLastError() |
||
1835 | * @param \Ovh\StructType\DedicatedMonitoringServiceAddNotification $parameters |
||
1836 | * @return \Ovh\StructType\DedicatedMonitoringServiceAddNotificationResponse|bool |
||
1837 | */ |
||
1838 | public function dedicatedMonitoringServiceAddNotification(\Ovh\StructType\DedicatedMonitoringServiceAddNotification $parameters) |
||
1839 | { |
||
1840 | try { |
||
1841 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringServiceAddNotification', array( |
||
1842 | $parameters, |
||
1843 | ), array(), array(), $this->outputHeaders)); |
||
1844 | return $this->getResult(); |
||
1845 | } catch (\SoapFault $soapFault) { |
||
1846 | $this->saveLastError(__METHOD__, $soapFault); |
||
1847 | return false; |
||
1848 | } |
||
1849 | } |
||
1850 | /** |
||
1851 | * Method to call the operation originally named dedicatedFilterIrcClientRuleDel |
||
1852 | * @uses SoapClientBase::getSoapClient() |
||
1853 | * @uses SoapClientBase::setResult() |
||
1854 | * @uses SoapClientBase::getResult() |
||
1855 | * @uses SoapClientBase::saveLastError() |
||
1856 | * @param \Ovh\StructType\DedicatedFilterIrcClientRuleDel $parameters |
||
1857 | * @return \Ovh\StructType\DedicatedFilterIrcClientRuleDelResponse|bool |
||
1858 | */ |
||
1859 | public function dedicatedFilterIrcClientRuleDel(\Ovh\StructType\DedicatedFilterIrcClientRuleDel $parameters) |
||
1860 | { |
||
1861 | try { |
||
1862 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFilterIrcClientRuleDel', array( |
||
1863 | $parameters, |
||
1864 | ), array(), array(), $this->outputHeaders)); |
||
1865 | return $this->getResult(); |
||
1866 | } catch (\SoapFault $soapFault) { |
||
1867 | $this->saveLastError(__METHOD__, $soapFault); |
||
1868 | return false; |
||
1869 | } |
||
1870 | } |
||
1871 | /** |
||
1872 | * Method to call the operation originally named dedicatedMrtgInfo |
||
1873 | * @uses SoapClientBase::getSoapClient() |
||
1874 | * @uses SoapClientBase::setResult() |
||
1875 | * @uses SoapClientBase::getResult() |
||
1876 | * @uses SoapClientBase::saveLastError() |
||
1877 | * @param \Ovh\StructType\DedicatedMrtgInfo $parameters |
||
1878 | * @return \Ovh\StructType\DedicatedMrtgInfoResponse|bool |
||
1879 | */ |
||
1880 | public function dedicatedMrtgInfo(\Ovh\StructType\DedicatedMrtgInfo $parameters) |
||
1881 | { |
||
1882 | try { |
||
1883 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMrtgInfo', array( |
||
1884 | $parameters, |
||
1885 | ), array(), array(), $this->outputHeaders)); |
||
1886 | return $this->getResult(); |
||
1887 | } catch (\SoapFault $soapFault) { |
||
1888 | $this->saveLastError(__METHOD__, $soapFault); |
||
1889 | return false; |
||
1890 | } |
||
1891 | } |
||
1892 | /** |
||
1893 | * Method to call the operation originally named dedicatedBackupReinstallData |
||
1894 | * @uses SoapClientBase::getSoapClient() |
||
1895 | * @uses SoapClientBase::setResult() |
||
1896 | * @uses SoapClientBase::getResult() |
||
1897 | * @uses SoapClientBase::saveLastError() |
||
1898 | * @param \Ovh\StructType\DedicatedBackupReinstallData $parameters |
||
1899 | * @return \Ovh\StructType\DedicatedBackupReinstallDataResponse|bool |
||
1900 | */ |
||
1901 | public function dedicatedBackupReinstallData(\Ovh\StructType\DedicatedBackupReinstallData $parameters) |
||
1902 | { |
||
1903 | try { |
||
1904 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupReinstallData', array( |
||
1905 | $parameters, |
||
1906 | ), array(), array(), $this->outputHeaders)); |
||
1907 | return $this->getResult(); |
||
1908 | } catch (\SoapFault $soapFault) { |
||
1909 | $this->saveLastError(__METHOD__, $soapFault); |
||
1910 | return false; |
||
1911 | } |
||
1912 | } |
||
1913 | /** |
||
1914 | * Method to call the operation originally named dedicatedBackupFtpInfo |
||
1915 | * @uses SoapClientBase::getSoapClient() |
||
1916 | * @uses SoapClientBase::setResult() |
||
1917 | * @uses SoapClientBase::getResult() |
||
1918 | * @uses SoapClientBase::saveLastError() |
||
1919 | * @param \Ovh\StructType\DedicatedBackupFtpInfo $parameters |
||
1920 | * @return \Ovh\StructType\DedicatedBackupFtpInfoResponse|bool |
||
1921 | */ |
||
1922 | public function dedicatedBackupFtpInfo(\Ovh\StructType\DedicatedBackupFtpInfo $parameters) |
||
1923 | { |
||
1924 | try { |
||
1925 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupFtpInfo', array( |
||
1926 | $parameters, |
||
1927 | ), array(), array(), $this->outputHeaders)); |
||
1928 | return $this->getResult(); |
||
1929 | } catch (\SoapFault $soapFault) { |
||
1930 | $this->saveLastError(__METHOD__, $soapFault); |
||
1931 | return false; |
||
1932 | } |
||
1933 | } |
||
1934 | /** |
||
1935 | * Method to call the operation originally named dedicatedMonitoringModify |
||
1936 | * @uses SoapClientBase::getSoapClient() |
||
1937 | * @uses SoapClientBase::setResult() |
||
1938 | * @uses SoapClientBase::getResult() |
||
1939 | * @uses SoapClientBase::saveLastError() |
||
1940 | * @param \Ovh\StructType\DedicatedMonitoringModify $parameters |
||
1941 | * @return \Ovh\StructType\DedicatedMonitoringModifyResponse|bool |
||
1942 | */ |
||
1943 | public function dedicatedMonitoringModify(\Ovh\StructType\DedicatedMonitoringModify $parameters) |
||
1944 | { |
||
1945 | try { |
||
1946 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringModify', array( |
||
1947 | $parameters, |
||
1948 | ), array(), array(), $this->outputHeaders)); |
||
1949 | return $this->getResult(); |
||
1950 | } catch (\SoapFault $soapFault) { |
||
1951 | $this->saveLastError(__METHOD__, $soapFault); |
||
1952 | return false; |
||
1953 | } |
||
1954 | } |
||
1955 | /** |
||
1956 | * Method to call the operation originally named |
||
1957 | * dedicatedGetRandomAvailableIpFromCountry |
||
1958 | * @uses SoapClientBase::getSoapClient() |
||
1959 | * @uses SoapClientBase::setResult() |
||
1960 | * @uses SoapClientBase::getResult() |
||
1961 | * @uses SoapClientBase::saveLastError() |
||
1962 | * @param \Ovh\StructType\DedicatedGetRandomAvailableIpFromCountry $parameters |
||
1963 | * @return \Ovh\StructType\DedicatedGetRandomAvailableIpFromCountryResponse|bool |
||
1964 | */ |
||
1965 | public function dedicatedGetRandomAvailableIpFromCountry(\Ovh\StructType\DedicatedGetRandomAvailableIpFromCountry $parameters) |
||
1966 | { |
||
1967 | try { |
||
1968 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedGetRandomAvailableIpFromCountry', array( |
||
1969 | $parameters, |
||
1970 | ), array(), array(), $this->outputHeaders)); |
||
1971 | return $this->getResult(); |
||
1972 | } catch (\SoapFault $soapFault) { |
||
1973 | $this->saveLastError(__METHOD__, $soapFault); |
||
1974 | return false; |
||
1975 | } |
||
1976 | } |
||
1977 | /** |
||
1978 | * Method to call the operation originally named dedicatedInstallBasicProgress |
||
1979 | * @uses SoapClientBase::getSoapClient() |
||
1980 | * @uses SoapClientBase::setResult() |
||
1981 | * @uses SoapClientBase::getResult() |
||
1982 | * @uses SoapClientBase::saveLastError() |
||
1983 | * @param \Ovh\StructType\DedicatedInstallBasicProgress $parameters |
||
1984 | * @return \Ovh\StructType\DedicatedInstallBasicProgressResponse|bool |
||
1985 | */ |
||
1986 | public function dedicatedInstallBasicProgress(\Ovh\StructType\DedicatedInstallBasicProgress $parameters) |
||
1987 | { |
||
1988 | try { |
||
1989 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedInstallBasicProgress', array( |
||
1990 | $parameters, |
||
1991 | ), array(), array(), $this->outputHeaders)); |
||
1992 | return $this->getResult(); |
||
1993 | } catch (\SoapFault $soapFault) { |
||
1994 | $this->saveLastError(__METHOD__, $soapFault); |
||
1995 | return false; |
||
1996 | } |
||
1997 | } |
||
1998 | /** |
||
1999 | * Method to call the operation originally named |
||
2000 | * dedicatedAddServiceMonitoringAlertEmail |
||
2001 | * @uses SoapClientBase::getSoapClient() |
||
2002 | * @uses SoapClientBase::setResult() |
||
2003 | * @uses SoapClientBase::getResult() |
||
2004 | * @uses SoapClientBase::saveLastError() |
||
2005 | * @param \Ovh\StructType\DedicatedAddServiceMonitoringAlertEmail $parameters |
||
2006 | * @return \Ovh\StructType\DedicatedAddServiceMonitoringAlertEmailResponse|bool |
||
2007 | */ |
||
2008 | public function dedicatedAddServiceMonitoringAlertEmail(\Ovh\StructType\DedicatedAddServiceMonitoringAlertEmail $parameters) |
||
2009 | { |
||
2010 | try { |
||
2011 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedAddServiceMonitoringAlertEmail', array( |
||
2012 | $parameters, |
||
2013 | ), array(), array(), $this->outputHeaders)); |
||
2014 | return $this->getResult(); |
||
2015 | } catch (\SoapFault $soapFault) { |
||
2016 | $this->saveLastError(__METHOD__, $soapFault); |
||
2017 | return false; |
||
2018 | } |
||
2019 | } |
||
2020 | /** |
||
2021 | * Method to call the operation originally named dedicatedFailoverUpdate |
||
2022 | * @uses SoapClientBase::getSoapClient() |
||
2023 | * @uses SoapClientBase::setResult() |
||
2024 | * @uses SoapClientBase::getResult() |
||
2025 | * @uses SoapClientBase::saveLastError() |
||
2026 | * @param \Ovh\StructType\DedicatedFailoverUpdate $parameters |
||
2027 | * @return \Ovh\StructType\DedicatedFailoverUpdateResponse|bool |
||
2028 | */ |
||
2029 | public function dedicatedFailoverUpdate(\Ovh\StructType\DedicatedFailoverUpdate $parameters) |
||
2030 | { |
||
2031 | try { |
||
2032 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFailoverUpdate', array( |
||
2033 | $parameters, |
||
2034 | ), array(), array(), $this->outputHeaders)); |
||
2035 | return $this->getResult(); |
||
2036 | } catch (\SoapFault $soapFault) { |
||
2037 | $this->saveLastError(__METHOD__, $soapFault); |
||
2038 | return false; |
||
2039 | } |
||
2040 | } |
||
2041 | /** |
||
2042 | * Method to call the operation originally named dedicatedFilterIrcServerRuleAdd |
||
2043 | * @uses SoapClientBase::getSoapClient() |
||
2044 | * @uses SoapClientBase::setResult() |
||
2045 | * @uses SoapClientBase::getResult() |
||
2046 | * @uses SoapClientBase::saveLastError() |
||
2047 | * @param \Ovh\StructType\DedicatedFilterIrcServerRuleAdd $parameters |
||
2048 | * @return \Ovh\StructType\DedicatedFilterIrcServerRuleAddResponse|bool |
||
2049 | */ |
||
2050 | public function dedicatedFilterIrcServerRuleAdd(\Ovh\StructType\DedicatedFilterIrcServerRuleAdd $parameters) |
||
2051 | { |
||
2052 | try { |
||
2053 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFilterIrcServerRuleAdd', array( |
||
2054 | $parameters, |
||
2055 | ), array(), array(), $this->outputHeaders)); |
||
2056 | return $this->getResult(); |
||
2057 | } catch (\SoapFault $soapFault) { |
||
2058 | $this->saveLastError(__METHOD__, $soapFault); |
||
2059 | return false; |
||
2060 | } |
||
2061 | } |
||
2062 | /** |
||
2063 | * Method to call the operation originally named dedicatedVirtualMacIpAdd |
||
2064 | * @uses SoapClientBase::getSoapClient() |
||
2065 | * @uses SoapClientBase::setResult() |
||
2066 | * @uses SoapClientBase::getResult() |
||
2067 | * @uses SoapClientBase::saveLastError() |
||
2068 | * @param \Ovh\StructType\DedicatedVirtualMacIpAdd $parameters |
||
2069 | * @return \Ovh\StructType\DedicatedVirtualMacIpAddResponse|bool |
||
2070 | */ |
||
2071 | public function dedicatedVirtualMacIpAdd(\Ovh\StructType\DedicatedVirtualMacIpAdd $parameters) |
||
2072 | { |
||
2073 | try { |
||
2074 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedVirtualMacIpAdd', array( |
||
2075 | $parameters, |
||
2076 | ), array(), array(), $this->outputHeaders)); |
||
2077 | return $this->getResult(); |
||
2078 | } catch (\SoapFault $soapFault) { |
||
2079 | $this->saveLastError(__METHOD__, $soapFault); |
||
2080 | return false; |
||
2081 | } |
||
2082 | } |
||
2083 | /** |
||
2084 | * Method to call the operation originally named dedicatedRipeGetRipeIds |
||
2085 | * @uses SoapClientBase::getSoapClient() |
||
2086 | * @uses SoapClientBase::setResult() |
||
2087 | * @uses SoapClientBase::getResult() |
||
2088 | * @uses SoapClientBase::saveLastError() |
||
2089 | * @param \Ovh\StructType\DedicatedRipeGetRipeIds $parameters |
||
2090 | * @return \Ovh\StructType\DedicatedRipeGetRipeIdsResponse|bool |
||
2091 | */ |
||
2092 | public function dedicatedRipeGetRipeIds(\Ovh\StructType\DedicatedRipeGetRipeIds $parameters) |
||
2093 | { |
||
2094 | try { |
||
2095 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedRipeGetRipeIds', array( |
||
2096 | $parameters, |
||
2097 | ), array(), array(), $this->outputHeaders)); |
||
2098 | return $this->getResult(); |
||
2099 | } catch (\SoapFault $soapFault) { |
||
2100 | $this->saveLastError(__METHOD__, $soapFault); |
||
2101 | return false; |
||
2102 | } |
||
2103 | } |
||
2104 | /** |
||
2105 | * Method to call the operation originally named dedicatedInfo |
||
2106 | * @uses SoapClientBase::getSoapClient() |
||
2107 | * @uses SoapClientBase::setResult() |
||
2108 | * @uses SoapClientBase::getResult() |
||
2109 | * @uses SoapClientBase::saveLastError() |
||
2110 | * @param \Ovh\StructType\DedicatedInfo $parameters |
||
2111 | * @return \Ovh\StructType\DedicatedInfoResponse|bool |
||
2112 | */ |
||
2113 | public function dedicatedInfo(\Ovh\StructType\DedicatedInfo $parameters) |
||
2114 | { |
||
2115 | try { |
||
2116 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedInfo', array( |
||
2117 | $parameters, |
||
2118 | ), array(), array(), $this->outputHeaders)); |
||
2119 | return $this->getResult(); |
||
2120 | } catch (\SoapFault $soapFault) { |
||
2121 | $this->saveLastError(__METHOD__, $soapFault); |
||
2122 | return false; |
||
2123 | } |
||
2124 | } |
||
2125 | /** |
||
2126 | * Method to call the operation originally named dedicatedBackupUpdateDate |
||
2127 | * @uses SoapClientBase::getSoapClient() |
||
2128 | * @uses SoapClientBase::setResult() |
||
2129 | * @uses SoapClientBase::getResult() |
||
2130 | * @uses SoapClientBase::saveLastError() |
||
2131 | * @param \Ovh\StructType\DedicatedBackupUpdateDate $parameters |
||
2132 | * @return \Ovh\StructType\DedicatedBackupUpdateDateResponse|bool |
||
2133 | */ |
||
2134 | public function dedicatedBackupUpdateDate(\Ovh\StructType\DedicatedBackupUpdateDate $parameters) |
||
2135 | { |
||
2136 | try { |
||
2137 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedBackupUpdateDate', array( |
||
2138 | $parameters, |
||
2139 | ), array(), array(), $this->outputHeaders)); |
||
2140 | return $this->getResult(); |
||
2141 | } catch (\SoapFault $soapFault) { |
||
2142 | $this->saveLastError(__METHOD__, $soapFault); |
||
2143 | return false; |
||
2144 | } |
||
2145 | } |
||
2146 | /** |
||
2147 | * Method to call the operation originally named dedicatedMonitoringStatusGet |
||
2148 | * @uses SoapClientBase::getSoapClient() |
||
2149 | * @uses SoapClientBase::setResult() |
||
2150 | * @uses SoapClientBase::getResult() |
||
2151 | * @uses SoapClientBase::saveLastError() |
||
2152 | * @param \Ovh\StructType\DedicatedMonitoringStatusGet $parameters |
||
2153 | * @return \Ovh\StructType\DedicatedMonitoringStatusGetResponse|bool |
||
2154 | */ |
||
2155 | public function dedicatedMonitoringStatusGet(\Ovh\StructType\DedicatedMonitoringStatusGet $parameters) |
||
2156 | { |
||
2157 | try { |
||
2158 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringStatusGet', array( |
||
2159 | $parameters, |
||
2160 | ), array(), array(), $this->outputHeaders)); |
||
2161 | return $this->getResult(); |
||
2162 | } catch (\SoapFault $soapFault) { |
||
2163 | $this->saveLastError(__METHOD__, $soapFault); |
||
2164 | return false; |
||
2165 | } |
||
2166 | } |
||
2167 | /** |
||
2168 | * Method to call the operation originally named dedicatedNetbootModify |
||
2169 | * @uses SoapClientBase::getSoapClient() |
||
2170 | * @uses SoapClientBase::setResult() |
||
2171 | * @uses SoapClientBase::getResult() |
||
2172 | * @uses SoapClientBase::saveLastError() |
||
2173 | * @param \Ovh\StructType\DedicatedNetbootModify $parameters |
||
2174 | * @return \Ovh\StructType\DedicatedNetbootModifyResponse|bool |
||
2175 | */ |
||
2176 | public function dedicatedNetbootModify(\Ovh\StructType\DedicatedNetbootModify $parameters) |
||
2177 | { |
||
2178 | try { |
||
2179 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedNetbootModify', array( |
||
2180 | $parameters, |
||
2181 | ), array(), array(), $this->outputHeaders)); |
||
2182 | return $this->getResult(); |
||
2183 | } catch (\SoapFault $soapFault) { |
||
2184 | $this->saveLastError(__METHOD__, $soapFault); |
||
2185 | return false; |
||
2186 | } |
||
2187 | } |
||
2188 | /** |
||
2189 | * Method to call the operation originally named dedicatedFilterIrcClientRuleList |
||
2190 | * @uses SoapClientBase::getSoapClient() |
||
2191 | * @uses SoapClientBase::setResult() |
||
2192 | * @uses SoapClientBase::getResult() |
||
2193 | * @uses SoapClientBase::saveLastError() |
||
2194 | * @param \Ovh\StructType\DedicatedFilterIrcClientRuleList $parameters |
||
2195 | * @return \Ovh\StructType\DedicatedFilterIrcClientRuleListResponse|bool |
||
2196 | */ |
||
2197 | public function dedicatedFilterIrcClientRuleList(\Ovh\StructType\DedicatedFilterIrcClientRuleList $parameters) |
||
2198 | { |
||
2199 | try { |
||
2200 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedFilterIrcClientRuleList', array( |
||
2201 | $parameters, |
||
2202 | ), array(), array(), $this->outputHeaders)); |
||
2203 | return $this->getResult(); |
||
2204 | } catch (\SoapFault $soapFault) { |
||
2205 | $this->saveLastError(__METHOD__, $soapFault); |
||
2206 | return false; |
||
2207 | } |
||
2208 | } |
||
2209 | /** |
||
2210 | * Method to call the operation originally named dedicatedIPForUDPMove |
||
2211 | * @uses SoapClientBase::getSoapClient() |
||
2212 | * @uses SoapClientBase::setResult() |
||
2213 | * @uses SoapClientBase::getResult() |
||
2214 | * @uses SoapClientBase::saveLastError() |
||
2215 | * @param \Ovh\StructType\DedicatedIPForUDPMove $parameters |
||
2216 | * @return \Ovh\StructType\DedicatedIPForUDPMoveResponse|bool |
||
2217 | */ |
||
2218 | public function dedicatedIPForUDPMove(\Ovh\StructType\DedicatedIPForUDPMove $parameters) |
||
2219 | { |
||
2220 | try { |
||
2221 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIPForUDPMove', array( |
||
2222 | $parameters, |
||
2223 | ), array(), array(), $this->outputHeaders)); |
||
2224 | return $this->getResult(); |
||
2225 | } catch (\SoapFault $soapFault) { |
||
2226 | $this->saveLastError(__METHOD__, $soapFault); |
||
2227 | return false; |
||
2228 | } |
||
2229 | } |
||
2230 | /** |
||
2231 | * Method to call the operation originally named dedicatedMonitoringSMSModify |
||
2232 | * @uses SoapClientBase::getSoapClient() |
||
2233 | * @uses SoapClientBase::setResult() |
||
2234 | * @uses SoapClientBase::getResult() |
||
2235 | * @uses SoapClientBase::saveLastError() |
||
2236 | * @param \Ovh\StructType\DedicatedMonitoringSMSModify $parameters |
||
2237 | * @return \Ovh\StructType\DedicatedMonitoringSMSModifyResponse|bool |
||
2238 | */ |
||
2239 | public function dedicatedMonitoringSMSModify(\Ovh\StructType\DedicatedMonitoringSMSModify $parameters) |
||
2249 | } |
||
2250 | } |
||
2251 | /** |
||
2252 | * Method to call the operation originally named dedicatedMonitoringDel |
||
2253 | * @uses SoapClientBase::getSoapClient() |
||
2254 | * @uses SoapClientBase::setResult() |
||
2255 | * @uses SoapClientBase::getResult() |
||
2256 | * @uses SoapClientBase::saveLastError() |
||
2257 | * @param \Ovh\StructType\DedicatedMonitoringDel $parameters |
||
2258 | * @return \Ovh\StructType\DedicatedMonitoringDelResponse|bool |
||
2259 | */ |
||
2260 | public function dedicatedMonitoringDel(\Ovh\StructType\DedicatedMonitoringDel $parameters) |
||
2261 | { |
||
2262 | try { |
||
2263 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringDel', array( |
||
2264 | $parameters, |
||
2265 | ), array(), array(), $this->outputHeaders)); |
||
2266 | return $this->getResult(); |
||
2267 | } catch (\SoapFault $soapFault) { |
||
2268 | $this->saveLastError(__METHOD__, $soapFault); |
||
2269 | return false; |
||
2270 | } |
||
2271 | } |
||
2272 | /** |
||
2273 | * Method to call the operation originally named dedicatedMonitoringServiceAddSMS |
||
2274 | * @uses SoapClientBase::getSoapClient() |
||
2275 | * @uses SoapClientBase::setResult() |
||
2276 | * @uses SoapClientBase::getResult() |
||
2277 | * @uses SoapClientBase::saveLastError() |
||
2278 | * @param \Ovh\StructType\DedicatedMonitoringServiceAddSMS $parameters |
||
2279 | * @return \Ovh\StructType\DedicatedMonitoringServiceAddSMSResponse|bool |
||
2280 | */ |
||
2281 | public function dedicatedMonitoringServiceAddSMS(\Ovh\StructType\DedicatedMonitoringServiceAddSMS $parameters) |
||
2282 | { |
||
2283 | try { |
||
2284 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMonitoringServiceAddSMS', array( |
||
2285 | $parameters, |
||
2286 | ), array(), array(), $this->outputHeaders)); |
||
2287 | return $this->getResult(); |
||
2288 | } catch (\SoapFault $soapFault) { |
||
2289 | $this->saveLastError(__METHOD__, $soapFault); |
||
2290 | return false; |
||
2291 | } |
||
2292 | } |
||
2293 | /** |
||
2294 | * Method to call the operation originally named dedicatedList |
||
2295 | * @uses SoapClientBase::getSoapClient() |
||
2296 | * @uses SoapClientBase::setResult() |
||
2297 | * @uses SoapClientBase::getResult() |
||
2298 | * @uses SoapClientBase::saveLastError() |
||
2299 | * @param \Ovh\StructType\DedicatedList $parameters |
||
2300 | * @return \Ovh\StructType\DedicatedListResponse|bool |
||
2301 | */ |
||
2302 | public function dedicatedList(\Ovh\StructType\DedicatedList $parameters) |
||
2312 | } |
||
2313 | } |
||
2314 | /** |
||
2315 | * Method to call the operation originally named dedicatedIPForUDPGet |
||
2316 | * @uses SoapClientBase::getSoapClient() |
||
2317 | * @uses SoapClientBase::setResult() |
||
2318 | * @uses SoapClientBase::getResult() |
||
2319 | * @uses SoapClientBase::saveLastError() |
||
2320 | * @param \Ovh\StructType\DedicatedIPForUDPGet $parameters |
||
2321 | * @return \Ovh\StructType\DedicatedIPForUDPGetResponse|bool |
||
2322 | */ |
||
2323 | public function dedicatedIPForUDPGet(\Ovh\StructType\DedicatedIPForUDPGet $parameters) |
||
2324 | { |
||
2325 | try { |
||
2326 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIPForUDPGet', array( |
||
2327 | $parameters, |
||
2328 | ), array(), array(), $this->outputHeaders)); |
||
2329 | return $this->getResult(); |
||
2330 | } catch (\SoapFault $soapFault) { |
||
2331 | $this->saveLastError(__METHOD__, $soapFault); |
||
2332 | return false; |
||
2333 | } |
||
2334 | } |
||
2335 | /** |
||
2336 | * Method to call the operation originally named dedicatedGetAvailableIpFromNetwork |
||
2337 | * @uses SoapClientBase::getSoapClient() |
||
2338 | * @uses SoapClientBase::setResult() |
||
2339 | * @uses SoapClientBase::getResult() |
||
2340 | * @uses SoapClientBase::saveLastError() |
||
2341 | * @param \Ovh\StructType\DedicatedGetAvailableIpFromNetwork $parameters |
||
2342 | * @return \Ovh\StructType\DedicatedGetAvailableIpFromNetworkResponse|bool |
||
2343 | */ |
||
2344 | public function dedicatedGetAvailableIpFromNetwork(\Ovh\StructType\DedicatedGetAvailableIpFromNetwork $parameters) |
||
2345 | { |
||
2346 | try { |
||
2347 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedGetAvailableIpFromNetwork', array( |
||
2348 | $parameters, |
||
2349 | ), array(), array(), $this->outputHeaders)); |
||
2350 | return $this->getResult(); |
||
2351 | } catch (\SoapFault $soapFault) { |
||
2352 | $this->saveLastError(__METHOD__, $soapFault); |
||
2353 | return false; |
||
2354 | } |
||
2355 | } |
||
2356 | /** |
||
2357 | * Method to call the operation originally named dedicatedMailinglistSubscribe |
||
2358 | * @uses SoapClientBase::getSoapClient() |
||
2359 | * @uses SoapClientBase::setResult() |
||
2360 | * @uses SoapClientBase::getResult() |
||
2361 | * @uses SoapClientBase::saveLastError() |
||
2362 | * @param \Ovh\StructType\DedicatedMailinglistSubscribe $parameters |
||
2363 | * @return \Ovh\StructType\DedicatedMailinglistSubscribeResponse|bool |
||
2364 | */ |
||
2365 | public function dedicatedMailinglistSubscribe(\Ovh\StructType\DedicatedMailinglistSubscribe $parameters) |
||
2366 | { |
||
2367 | try { |
||
2368 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedMailinglistSubscribe', array( |
||
2369 | $parameters, |
||
2370 | ), array(), array(), $this->outputHeaders)); |
||
2371 | return $this->getResult(); |
||
2372 | } catch (\SoapFault $soapFault) { |
||
2373 | $this->saveLastError(__METHOD__, $soapFault); |
||
2374 | return false; |
||
2375 | } |
||
2376 | } |
||
2377 | /** |
||
2378 | * Method to call the operation originally named dedicatedIpLoadBalancingNameModify |
||
2379 | * @uses SoapClientBase::getSoapClient() |
||
2380 | * @uses SoapClientBase::setResult() |
||
2381 | * @uses SoapClientBase::getResult() |
||
2382 | * @uses SoapClientBase::saveLastError() |
||
2383 | * @param \Ovh\StructType\DedicatedIpLoadBalancingNameModify $parameters |
||
2384 | * @return \Ovh\StructType\DedicatedIpLoadBalancingNameModifyResponse|bool |
||
2385 | */ |
||
2386 | public function dedicatedIpLoadBalancingNameModify(\Ovh\StructType\DedicatedIpLoadBalancingNameModify $parameters) |
||
2387 | { |
||
2388 | try { |
||
2389 | $this->setResult($this->getSoapClient()->__soapCall('dedicatedIpLoadBalancingNameModify', array( |
||
2390 | $parameters, |
||
2391 | ), array(), array(), $this->outputHeaders)); |
||
2392 | return $this->getResult(); |
||
2393 | } catch (\SoapFault $soapFault) { |
||
2394 | $this->saveLastError(__METHOD__, $soapFault); |
||
2395 | return false; |
||
2396 | } |
||
2397 | } |
||
2398 | /** |
||
2399 | * Method to call the operation originally named dedicatedMonitoringServiceList |
||
2400 | * @uses SoapClientBase::getSoapClient() |
||
2401 | * @uses SoapClientBase::setResult() |
||
2402 | * @uses SoapClientBase::getResult() |
||
2403 | * @uses SoapClientBase::saveLastError() |
||
2404 | * @param \Ovh\StructType\DedicatedMonitoringServiceList $parameters |
||
2405 | * @return \Ovh\StructType\DedicatedMonitoringServiceListResponse|bool |
||
2406 | */ |
||
2407 | public function dedicatedMonitoringServiceList(\Ovh\StructType\DedicatedMonitoringServiceList $parameters) |
||
2417 | } |
||
2418 | } |
||
2419 | /** |
||
2420 | * Returns the result |
||
2421 | * @see SoapClientBase::getResult() |
||
2422 | * @return \Ovh\StructType\DedicatedAddServiceMonitoringAlertEmailResponse|\Ovh\StructType\DedicatedAddServiceMonitoringAlertSMSResponse|\Ovh\StructType\DedicatedAvailableNotificationNicsGetResponse|\Ovh\StructType\DedicatedBackupExcludeAddResponse|\Ovh\StructType\DedicatedBackupExcludeDelResponse|\Ovh\StructType\DedicatedBackupFtpAddResponse|\Ovh\StructType\DedicatedBackupFtpInfoResponse|\Ovh\StructType\DedicatedBackupFtpPasswordResponse|\Ovh\StructType\DedicatedBackupGetCalendarResponse|\Ovh\StructType\DedicatedBackupGetDateResponse|\Ovh\StructType\DedicatedBackupGetFreePlanningResponse|\Ovh\StructType\DedicatedBackupGetHistoResponse|\Ovh\StructType\DedicatedBackupIncludeAddResponse|\Ovh\StructType\DedicatedBackupIncludeDelResponse|\Ovh\StructType\DedicatedBackupInfoResponse|\Ovh\StructType\DedicatedBackupListResponse|\Ovh\StructType\DedicatedBackupReinstallConfigurationResponse|\Ovh\StructType\DedicatedBackupReinstallDataResponse|\Ovh\StructType\DedicatedBackupSetResponse|\Ovh\StructType\DedicatedBackupUpdateDateResponse|\Ovh\StructType\DedicatedBackupUpdateResponse|\Ovh\StructType\DedicatedBandwidthManagementGetResponse|\Ovh\StructType\DedicatedBandwidthSwitchingResponse|\Ovh\StructType\DedicatedCapabilitiesGetAllResponse|\Ovh\StructType\DedicatedCapabilitiesGetResponse|\Ovh\StructType\DedicatedDelServiceMonitoringAlertResponse|\Ovh\StructType\DedicatedEditServiceMonitoringItemResponse|\Ovh\StructType\DedicatedFailoverAddResponse|\Ovh\StructType\DedicatedFailoverListResponse|\Ovh\StructType\DedicatedFailoverRipeAddResponse|\Ovh\StructType\DedicatedFailoverRipeGetIpResponse|\Ovh\StructType\DedicatedFailoverRipeListResponse|\Ovh\StructType\DedicatedFailoverRipeModifyResponse|\Ovh\StructType\DedicatedFailoverRipeSplitResponse|\Ovh\StructType\DedicatedFailoverUpdateResponse|\Ovh\StructType\DedicatedFilterIrcClientRuleAddResponse|\Ovh\StructType\DedicatedFilterIrcClientRuleDelResponse|\Ovh\StructType\DedicatedFilterIrcClientRuleListResponse|\Ovh\StructType\DedicatedFilterIrcServerRuleAddResponse|\Ovh\StructType\DedicatedFilterIrcServerRuleDelResponse|\Ovh\StructType\DedicatedFilterIrcServerRuleListResponse|\Ovh\StructType\DedicatedGetAvailableIpFromNetworkResponse|\Ovh\StructType\DedicatedGetAvailableNetworkFromCountryResponse|\Ovh\StructType\DedicatedGetRandomAvailableIpFromCountryResponse|\Ovh\StructType\DedicatedGetServiceMonitoringItemResponse|\Ovh\StructType\DedicatedHardRebootDoResponse|\Ovh\StructType\DedicatedHardRebootStatusResponse|\Ovh\StructType\DedicatedInfoResponse|\Ovh\StructType\DedicatedInstallAllowedDistributionGetResponse|\Ovh\StructType\DedicatedInstallationTemplateListResponse|\Ovh\StructType\DedicatedInstallationTemplateUseResponse|\Ovh\StructType\DedicatedInstallBasicProgressResponse|\Ovh\StructType\DedicatedInstallBasicResponse|\Ovh\StructType\DedicatedInstallResetResponse|\Ovh\StructType\DedicatedIPForUDPGetResponse|\Ovh\StructType\DedicatedIPForUDPMoveGetStatusResponse|\Ovh\StructType\DedicatedIPForUDPMoveResponse|\Ovh\StructType\DedicatedIPForUDPServerListResponse|\Ovh\StructType\DedicatedIpLoadBalancingAddResponse|\Ovh\StructType\DedicatedIpLoadBalancingDelResponse|\Ovh\StructType\DedicatedIpLoadBalancingListResponse|\Ovh\StructType\DedicatedIpLoadBalancingNameModifyResponse|\Ovh\StructType\DedicatedIpLoadBalancingServerAddResponse|\Ovh\StructType\DedicatedIpLoadBalancingServerDelResponse|\Ovh\StructType\DedicatedIpLoadBalancingServerStateModifyResponse|\Ovh\StructType\DedicatedListResponse|\Ovh\StructType\DedicatedMailinglistGetAllowedResponse|\Ovh\StructType\DedicatedMailinglistSubscribeResponse|\Ovh\StructType\DedicatedMonitoringAddResponse|\Ovh\StructType\DedicatedMonitoringDelResponse|\Ovh\StructType\DedicatedMonitoringListResponse|\Ovh\StructType\DedicatedMonitoringModifyResponse|\Ovh\StructType\DedicatedMonitoringNotificationCreateResponse|\Ovh\StructType\DedicatedMonitoringNotificationDelResponse|\Ovh\StructType\DedicatedMonitoringServiceAddNotificationResponse|\Ovh\StructType\DedicatedMonitoringServiceAddResponse|\Ovh\StructType\DedicatedMonitoringServiceAddSMSResponse|\Ovh\StructType\DedicatedMonitoringServiceDelResponse|\Ovh\StructType\DedicatedMonitoringServiceListResponse|\Ovh\StructType\DedicatedMonitoringSMSCreateResponse|\Ovh\StructType\DedicatedMonitoringSMSDelResponse|\Ovh\StructType\DedicatedMonitoringSMSModifyResponse|\Ovh\StructType\DedicatedMonitoringStatusGetResponse|\Ovh\StructType\DedicatedMonitoringStatusUpdateResponse|\Ovh\StructType\DedicatedMrtgInfoResponse|\Ovh\StructType\DedicatedNetbootGetAllResponse|\Ovh\StructType\DedicatedNetbootGetAvailableResponse|\Ovh\StructType\DedicatedNetbootGetRescueEmailResponse|\Ovh\StructType\DedicatedNetbootInfoResponse|\Ovh\StructType\DedicatedNetbootModifyByIdResponse|\Ovh\StructType\DedicatedNetbootModifyResponse|\Ovh\StructType\DedicatedOperationListResponse|\Ovh\StructType\DedicatedReverseAddResponse|\Ovh\StructType\DedicatedReverseDelResponse|\Ovh\StructType\DedicatedReverseInfoResponse|\Ovh\StructType\DedicatedReverseListResponse|\Ovh\StructType\DedicatedReverseModifyResponse|\Ovh\StructType\DedicatedRipeCreateOrganisationResponse|\Ovh\StructType\DedicatedRipeDeleteOrganisationResponse|\Ovh\StructType\DedicatedRipeGetRipeIdsResponse|\Ovh\StructType\DedicatedRipeQueryResponse|\Ovh\StructType\DedicatedRipeUpdateInetnumResponse|\Ovh\StructType\DedicatedRipeUpdateOrganisationResponse|\Ovh\StructType\DedicatedRtmBackdoorUpdateAlertResponse|\Ovh\StructType\DedicatedRtmGetStatusResponse|\Ovh\StructType\DedicatedRtmListBackdoorResponse|\Ovh\StructType\DedicatedSecondaryDNSAddResponse|\Ovh\StructType\DedicatedSecondaryDNSDelResponse|\Ovh\StructType\DedicatedSecondaryDNSGetAllResponse|\Ovh\StructType\DedicatedSecondaryDNSInfoResponse|\Ovh\StructType\DedicatedVirtualMacIpAddResponse|\Ovh\StructType\DedicatedVirtualMacIpAvailableGetListResponse|\Ovh\StructType\DedicatedVirtualMacIpDeleteResponse|\Ovh\StructType\DedicatedVirtualMacIpUsedGetListResponse |
||
2423 | */ |
||
2424 | public function getResult() |
||
2427 | } |
||
2428 | } |
||
2429 |