piglop-ovh-rb 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -12
- data/VERSION +1 -1
- data/bin/failover_check +1 -1
- data/lib/ovhrb/manager/manager.rb +895 -895
- data/piglop-ovh-rb.gemspec +1 -1
- metadata +3 -3
data/Rakefile
CHANGED
@@ -52,7 +52,7 @@ Rake::RDocTask.new do |rdoc|
|
|
52
52
|
end
|
53
53
|
|
54
54
|
namespace :wsdl do
|
55
|
-
task :update => [:dump
|
55
|
+
task :update => [:dump]
|
56
56
|
|
57
57
|
output = "lib/ovhrb/manager"
|
58
58
|
|
@@ -65,15 +65,4 @@ namespace :wsdl do
|
|
65
65
|
system program, "--wsdl", "https://www.ovh.com/soapi/soapi-re-1.9.wsdl", "--type", "client", "--force"
|
66
66
|
end
|
67
67
|
end
|
68
|
-
|
69
|
-
task :camelize do
|
70
|
-
require 'lib/ovhrb/core_additions'
|
71
|
-
manager = File.join(output, 'manager.rb')
|
72
|
-
content = File.read(manager)
|
73
|
-
content.gsub!(/attr_accessor :(\w+)/) { x = $1.underscore; "attr_accessor :#{x}" }
|
74
|
-
content.gsub!(/(\w+) = nil/) { x = $1.underscore; "#{x} = nil" }
|
75
|
-
content.gsub!(/@(\w+) = (\w+)/) { x = $1.underscore; "@#{x} = #{x}" }
|
76
|
-
File.open(manager, 'w') { |f| f.write content }
|
77
|
-
raise "Invalid syntax" unless system('ruby', '-c', manager)
|
78
|
-
end
|
79
68
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/bin/failover_check
CHANGED
@@ -18,7 +18,7 @@ OvhRb::Config.new(config_file) do |config|
|
|
18
18
|
failovers = config.dedicated_failover_list(server)
|
19
19
|
failovers.each do |server_failover|
|
20
20
|
if server_failover.ip == failover
|
21
|
-
actual_route = server_failover.
|
21
|
+
actual_route = server_failover.routedTo
|
22
22
|
if actual_route != expected_route
|
23
23
|
config.dedicated_failover_update server, failover, expected_route
|
24
24
|
end
|
@@ -37,14 +37,14 @@ class SupportThreadMessageDetailStruct
|
|
37
37
|
attr_accessor :date
|
38
38
|
attr_accessor :unread
|
39
39
|
attr_accessor :type
|
40
|
-
attr_accessor :
|
40
|
+
attr_accessor :reportReason
|
41
41
|
|
42
|
-
def initialize(id = nil, date = nil, unread = nil, type = nil,
|
42
|
+
def initialize(id = nil, date = nil, unread = nil, type = nil, reportReason = nil)
|
43
43
|
@id = id
|
44
44
|
@date = date
|
45
45
|
@unread = unread
|
46
46
|
@type = type
|
47
|
-
@
|
47
|
+
@reportReason = reportReason
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
@@ -58,15 +58,15 @@ class SupportThreadTreeReturn
|
|
58
58
|
attr_accessor :subject
|
59
59
|
attr_accessor :domain
|
60
60
|
attr_accessor :closed
|
61
|
-
attr_accessor :
|
61
|
+
attr_accessor :reportReason
|
62
62
|
attr_accessor :messages
|
63
63
|
|
64
|
-
def initialize(id = nil, subject = nil, domain = nil, closed = nil,
|
64
|
+
def initialize(id = nil, subject = nil, domain = nil, closed = nil, reportReason = nil, messages = nil)
|
65
65
|
@id = id
|
66
66
|
@subject = subject
|
67
67
|
@domain = domain
|
68
68
|
@closed = closed
|
69
|
-
@
|
69
|
+
@reportReason = reportReason
|
70
70
|
@messages = messages
|
71
71
|
end
|
72
72
|
end
|
@@ -79,22 +79,22 @@ class SupportMessageDetailReturn
|
|
79
79
|
|
80
80
|
attr_accessor :id
|
81
81
|
attr_accessor :thread
|
82
|
-
attr_accessor :
|
83
|
-
attr_accessor :
|
84
|
-
attr_accessor :
|
82
|
+
attr_accessor :unreadThread
|
83
|
+
attr_accessor :fromEmail
|
84
|
+
attr_accessor :dateSent
|
85
85
|
attr_accessor :subject
|
86
86
|
attr_accessor :body
|
87
|
-
attr_accessor :
|
87
|
+
attr_accessor :reportReason
|
88
88
|
|
89
|
-
def initialize(id = nil, thread = nil,
|
89
|
+
def initialize(id = nil, thread = nil, unreadThread = nil, fromEmail = nil, dateSent = nil, subject = nil, body = nil, reportReason = nil)
|
90
90
|
@id = id
|
91
91
|
@thread = thread
|
92
|
-
@
|
93
|
-
@
|
94
|
-
@
|
92
|
+
@unreadThread = unreadThread
|
93
|
+
@fromEmail = fromEmail
|
94
|
+
@dateSent = dateSent
|
95
95
|
@subject = subject
|
96
96
|
@body = body
|
97
|
-
@
|
97
|
+
@reportReason = reportReason
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
@@ -132,14 +132,14 @@ class SupportSendMessageReturn
|
|
132
132
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
133
133
|
@@schema_element = [["threadId", ["SOAP::SOAPInt", XSD::QName.new(nil, "threadId")]], ["messageId", ["SOAP::SOAPInt", XSD::QName.new(nil, "messageId")]], ["dateTime", ["SOAP::SOAPString", XSD::QName.new(nil, "dateTime")]]]
|
134
134
|
|
135
|
-
attr_accessor :
|
136
|
-
attr_accessor :
|
137
|
-
attr_accessor :
|
135
|
+
attr_accessor :threadId
|
136
|
+
attr_accessor :messageId
|
137
|
+
attr_accessor :dateTime
|
138
138
|
|
139
|
-
def initialize(
|
140
|
-
@
|
141
|
-
@
|
142
|
-
@
|
139
|
+
def initialize(threadId = nil, messageId = nil, dateTime = nil)
|
140
|
+
@threadId = threadId
|
141
|
+
@messageId = messageId
|
142
|
+
@dateTime = dateTime
|
143
143
|
end
|
144
144
|
end
|
145
145
|
|
@@ -179,22 +179,22 @@ class TelephonyBillingAccountStruct
|
|
179
179
|
|
180
180
|
attr_accessor :description
|
181
181
|
attr_accessor :mobile
|
182
|
-
attr_accessor :
|
183
|
-
attr_accessor :
|
182
|
+
attr_accessor :mobileDestination
|
183
|
+
attr_accessor :expirationDate
|
184
184
|
attr_accessor :version
|
185
185
|
attr_accessor :trusted
|
186
|
-
attr_accessor :
|
187
|
-
attr_accessor :
|
186
|
+
attr_accessor :pendingAction
|
187
|
+
attr_accessor :descriptionUser
|
188
188
|
|
189
|
-
def initialize(description = nil, mobile = nil,
|
189
|
+
def initialize(description = nil, mobile = nil, mobileDestination = nil, expirationDate = nil, version = nil, trusted = nil, pendingAction = nil, descriptionUser = nil)
|
190
190
|
@description = description
|
191
191
|
@mobile = mobile
|
192
|
-
@
|
193
|
-
@
|
192
|
+
@mobileDestination = mobileDestination
|
193
|
+
@expirationDate = expirationDate
|
194
194
|
@version = version
|
195
195
|
@trusted = trusted
|
196
|
-
@
|
197
|
-
@
|
196
|
+
@pendingAction = pendingAction
|
197
|
+
@descriptionUser = descriptionUser
|
198
198
|
end
|
199
199
|
end
|
200
200
|
|
@@ -204,12 +204,12 @@ class TelephonyPendingActionStruct
|
|
204
204
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
205
205
|
@@schema_element = [["dateTodo", ["SOAP::SOAPString", XSD::QName.new(nil, "dateTodo")]], ["offer", ["SOAP::SOAPString", XSD::QName.new(nil, "offer")]], ["action", ["SOAP::SOAPString", XSD::QName.new(nil, "action")]]]
|
206
206
|
|
207
|
-
attr_accessor :
|
207
|
+
attr_accessor :dateTodo
|
208
208
|
attr_accessor :offer
|
209
209
|
attr_accessor :action
|
210
210
|
|
211
|
-
def initialize(
|
212
|
-
@
|
211
|
+
def initialize(dateTodo = nil, offer = nil, action = nil)
|
212
|
+
@dateTodo = dateTodo
|
213
213
|
@offer = offer
|
214
214
|
@action = action
|
215
215
|
end
|
@@ -224,14 +224,14 @@ class TelephonyBillingAccountInfoChildrenStruct
|
|
224
224
|
attr_accessor :number
|
225
225
|
attr_accessor :offer
|
226
226
|
attr_accessor :type
|
227
|
-
attr_accessor :
|
227
|
+
attr_accessor :expirationDate
|
228
228
|
attr_accessor :description
|
229
229
|
|
230
|
-
def initialize(number = nil, offer = nil, type = nil,
|
230
|
+
def initialize(number = nil, offer = nil, type = nil, expirationDate = nil, description = nil)
|
231
231
|
@number = number
|
232
232
|
@offer = offer
|
233
233
|
@type = type
|
234
|
-
@
|
234
|
+
@expirationDate = expirationDate
|
235
235
|
@description = description
|
236
236
|
end
|
237
237
|
end
|
@@ -243,16 +243,16 @@ class TelephonyBillingAccountInfoReturn
|
|
243
243
|
@@schema_element = [["offer", ["SOAP::SOAPString", XSD::QName.new(nil, "offer")]], ["consumtionTime", ["SOAP::SOAPString", XSD::QName.new(nil, "consumtionTime")]], ["outPlan", ["SOAP::SOAPString", XSD::QName.new(nil, "outPlan")]], ["facturationDate", ["SOAP::SOAPString", XSD::QName.new(nil, "facturationDate")]], ["children", ["MyArrayOfTelephonyBillingAccountInfoChildrenStructType", XSD::QName.new(nil, "children")]]]
|
244
244
|
|
245
245
|
attr_accessor :offer
|
246
|
-
attr_accessor :
|
247
|
-
attr_accessor :
|
248
|
-
attr_accessor :
|
246
|
+
attr_accessor :consumtionTime
|
247
|
+
attr_accessor :outPlan
|
248
|
+
attr_accessor :facturationDate
|
249
249
|
attr_accessor :children
|
250
250
|
|
251
|
-
def initialize(offer = nil,
|
251
|
+
def initialize(offer = nil, consumtionTime = nil, outPlan = nil, facturationDate = nil, children = nil)
|
252
252
|
@offer = offer
|
253
|
-
@
|
254
|
-
@
|
255
|
-
@
|
253
|
+
@consumtionTime = consumtionTime
|
254
|
+
@outPlan = outPlan
|
255
|
+
@facturationDate = facturationDate
|
256
256
|
@children = children
|
257
257
|
end
|
258
258
|
end
|
@@ -263,12 +263,12 @@ class TelephonyLineAliasPoolStruct
|
|
263
263
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
264
264
|
@@schema_element = [["poolNumber", ["SOAP::SOAPInt", XSD::QName.new(nil, "poolNumber")]], ["service", ["SOAP::SOAPString", XSD::QName.new(nil, "service")]], ["display", ["SOAP::SOAPString", XSD::QName.new(nil, "display")]]]
|
265
265
|
|
266
|
-
attr_accessor :
|
266
|
+
attr_accessor :poolNumber
|
267
267
|
attr_accessor :service
|
268
268
|
attr_accessor :display
|
269
269
|
|
270
|
-
def initialize(
|
271
|
-
@
|
270
|
+
def initialize(poolNumber = nil, service = nil, display = nil)
|
271
|
+
@poolNumber = poolNumber
|
272
272
|
@service = service
|
273
273
|
@display = display
|
274
274
|
end
|
@@ -281,29 +281,29 @@ class TelephonyLineStruct
|
|
281
281
|
@@schema_element = [["number", ["SOAP::SOAPString", XSD::QName.new(nil, "number")]], ["billingAccount", ["SOAP::SOAPString", XSD::QName.new(nil, "billingAccount")]], ["offer", ["SOAP::SOAPString", XSD::QName.new(nil, "offer")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]], ["service", ["SOAP::SOAPString", XSD::QName.new(nil, "service")]], ["expirationDate", ["SOAP::SOAPString", XSD::QName.new(nil, "expirationDate")]], ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]], ["betaGamaOffer", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "betaGamaOffer")]], ["setOn", ["SOAP::SOAPString", XSD::QName.new(nil, "setOn")]], ["aliasPool", ["TelephonyLineAliasPoolStruct", XSD::QName.new(nil, "aliasPool")]], ["pendingAction", ["TelephonyPendingActionStruct", XSD::QName.new(nil, "pendingAction")]]]
|
282
282
|
|
283
283
|
attr_accessor :number
|
284
|
-
attr_accessor :
|
284
|
+
attr_accessor :billingAccount
|
285
285
|
attr_accessor :offer
|
286
286
|
attr_accessor :type
|
287
287
|
attr_accessor :service
|
288
|
-
attr_accessor :
|
288
|
+
attr_accessor :expirationDate
|
289
289
|
attr_accessor :description
|
290
|
-
attr_accessor :
|
291
|
-
attr_accessor :
|
292
|
-
attr_accessor :
|
293
|
-
attr_accessor :
|
290
|
+
attr_accessor :betaGamaOffer
|
291
|
+
attr_accessor :setOn
|
292
|
+
attr_accessor :aliasPool
|
293
|
+
attr_accessor :pendingAction
|
294
294
|
|
295
|
-
def initialize(number = nil,
|
295
|
+
def initialize(number = nil, billingAccount = nil, offer = nil, type = nil, service = nil, expirationDate = nil, description = nil, betaGamaOffer = nil, setOn = nil, aliasPool = nil, pendingAction = nil)
|
296
296
|
@number = number
|
297
|
-
@
|
297
|
+
@billingAccount = billingAccount
|
298
298
|
@offer = offer
|
299
299
|
@type = type
|
300
300
|
@service = service
|
301
|
-
@
|
301
|
+
@expirationDate = expirationDate
|
302
302
|
@description = description
|
303
|
-
@
|
304
|
-
@
|
305
|
-
@
|
306
|
-
@
|
303
|
+
@betaGamaOffer = betaGamaOffer
|
304
|
+
@setOn = setOn
|
305
|
+
@aliasPool = aliasPool
|
306
|
+
@pendingAction = pendingAction
|
307
307
|
end
|
308
308
|
end
|
309
309
|
|
@@ -320,7 +320,7 @@ class TelephonyLineListReturn
|
|
320
320
|
end
|
321
321
|
|
322
322
|
def alias=(value)
|
323
|
-
@v_alias =
|
323
|
+
@v_alias = value
|
324
324
|
end
|
325
325
|
|
326
326
|
def initialize(link = nil, v_alias = nil)
|
@@ -335,42 +335,42 @@ class TelephonyLineOptionsListReturn
|
|
335
335
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
336
336
|
@@schema_element = [["identificationRestriction", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "identificationRestriction")]], ["anonymousCallRejection", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "anonymousCallRejection")]], ["doNotDisturb", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "doNotDisturb")]], ["absentSuscriber", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "absentSuscriber")]], ["lockOutCall", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "lockOutCall")]], ["lockOutCallPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "lockOutCallPassword")]], ["forwardUnconditional", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forwardUnconditional")]], ["forwardUnconditionalNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardUnconditionalNumber")]], ["forwardNoReply", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forwardNoReply")]], ["forwardNoReplyDelay", ["SOAP::SOAPInt", XSD::QName.new(nil, "forwardNoReplyDelay")]], ["forwardNoReplyNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardNoReplyNumber")]], ["forwardBusy", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forwardBusy")]], ["forwardBusyNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardBusyNumber")]], ["forwardBackup", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forwardBackup")]], ["forwardBackupNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardBackupNumber")]], ["callWaiting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "callWaiting")]], ["displayCallNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "displayCallNumber")]]]
|
337
337
|
|
338
|
-
attr_accessor :
|
339
|
-
attr_accessor :
|
340
|
-
attr_accessor :
|
341
|
-
attr_accessor :
|
342
|
-
attr_accessor :
|
343
|
-
attr_accessor :
|
344
|
-
attr_accessor :
|
345
|
-
attr_accessor :
|
346
|
-
attr_accessor :
|
347
|
-
attr_accessor :
|
348
|
-
attr_accessor :
|
349
|
-
attr_accessor :
|
350
|
-
attr_accessor :
|
351
|
-
attr_accessor :
|
352
|
-
attr_accessor :
|
353
|
-
attr_accessor :
|
354
|
-
attr_accessor :
|
355
|
-
|
356
|
-
def initialize(
|
357
|
-
@
|
358
|
-
@
|
359
|
-
@
|
360
|
-
@
|
361
|
-
@
|
362
|
-
@
|
363
|
-
@
|
364
|
-
@
|
365
|
-
@
|
366
|
-
@
|
367
|
-
@
|
368
|
-
@
|
369
|
-
@
|
370
|
-
@
|
371
|
-
@
|
372
|
-
@
|
373
|
-
@
|
338
|
+
attr_accessor :identificationRestriction
|
339
|
+
attr_accessor :anonymousCallRejection
|
340
|
+
attr_accessor :doNotDisturb
|
341
|
+
attr_accessor :absentSuscriber
|
342
|
+
attr_accessor :lockOutCall
|
343
|
+
attr_accessor :lockOutCallPassword
|
344
|
+
attr_accessor :forwardUnconditional
|
345
|
+
attr_accessor :forwardUnconditionalNumber
|
346
|
+
attr_accessor :forwardNoReply
|
347
|
+
attr_accessor :forwardNoReplyDelay
|
348
|
+
attr_accessor :forwardNoReplyNumber
|
349
|
+
attr_accessor :forwardBusy
|
350
|
+
attr_accessor :forwardBusyNumber
|
351
|
+
attr_accessor :forwardBackup
|
352
|
+
attr_accessor :forwardBackupNumber
|
353
|
+
attr_accessor :callWaiting
|
354
|
+
attr_accessor :displayCallNumber
|
355
|
+
|
356
|
+
def initialize(identificationRestriction = nil, anonymousCallRejection = nil, doNotDisturb = nil, absentSuscriber = nil, lockOutCall = nil, lockOutCallPassword = nil, forwardUnconditional = nil, forwardUnconditionalNumber = nil, forwardNoReply = nil, forwardNoReplyDelay = nil, forwardNoReplyNumber = nil, forwardBusy = nil, forwardBusyNumber = nil, forwardBackup = nil, forwardBackupNumber = nil, callWaiting = nil, displayCallNumber = nil)
|
357
|
+
@identificationRestriction = identificationRestriction
|
358
|
+
@anonymousCallRejection = anonymousCallRejection
|
359
|
+
@doNotDisturb = doNotDisturb
|
360
|
+
@absentSuscriber = absentSuscriber
|
361
|
+
@lockOutCall = lockOutCall
|
362
|
+
@lockOutCallPassword = lockOutCallPassword
|
363
|
+
@forwardUnconditional = forwardUnconditional
|
364
|
+
@forwardUnconditionalNumber = forwardUnconditionalNumber
|
365
|
+
@forwardNoReply = forwardNoReply
|
366
|
+
@forwardNoReplyDelay = forwardNoReplyDelay
|
367
|
+
@forwardNoReplyNumber = forwardNoReplyNumber
|
368
|
+
@forwardBusy = forwardBusy
|
369
|
+
@forwardBusyNumber = forwardBusyNumber
|
370
|
+
@forwardBackup = forwardBackup
|
371
|
+
@forwardBackupNumber = forwardBackupNumber
|
372
|
+
@callWaiting = callWaiting
|
373
|
+
@displayCallNumber = displayCallNumber
|
374
374
|
end
|
375
375
|
end
|
376
376
|
|
@@ -413,21 +413,21 @@ class TelephonyOfferInfoReturn
|
|
413
413
|
attr_accessor :number
|
414
414
|
attr_accessor :description
|
415
415
|
attr_accessor :offer
|
416
|
-
attr_accessor :
|
417
|
-
attr_accessor :
|
418
|
-
attr_accessor :
|
416
|
+
attr_accessor :countryCode
|
417
|
+
attr_accessor :nextBillingDate
|
418
|
+
attr_accessor :simultaneousLines
|
419
419
|
attr_accessor :hardware
|
420
|
-
attr_accessor :
|
420
|
+
attr_accessor :sipAccount
|
421
421
|
|
422
|
-
def initialize(number = nil, description = nil, offer = nil,
|
422
|
+
def initialize(number = nil, description = nil, offer = nil, countryCode = nil, nextBillingDate = nil, simultaneousLines = nil, hardware = nil, sipAccount = nil)
|
423
423
|
@number = number
|
424
424
|
@description = description
|
425
425
|
@offer = offer
|
426
|
-
@
|
427
|
-
@
|
428
|
-
@
|
426
|
+
@countryCode = countryCode
|
427
|
+
@nextBillingDate = nextBillingDate
|
428
|
+
@simultaneousLines = simultaneousLines
|
429
429
|
@hardware = hardware
|
430
|
-
@
|
430
|
+
@sipAccount = sipAccount
|
431
431
|
end
|
432
432
|
end
|
433
433
|
|
@@ -440,17 +440,17 @@ class TelephonyOfferInfoSipAccountStruct
|
|
440
440
|
attr_accessor :username
|
441
441
|
attr_accessor :extension
|
442
442
|
attr_accessor :domain
|
443
|
-
attr_accessor :
|
444
|
-
attr_accessor :
|
445
|
-
attr_accessor :
|
443
|
+
attr_accessor :lastLogin
|
444
|
+
attr_accessor :localAdress
|
445
|
+
attr_accessor :publicAdress
|
446
446
|
|
447
|
-
def initialize(username = nil, extension = nil, domain = nil,
|
447
|
+
def initialize(username = nil, extension = nil, domain = nil, lastLogin = nil, localAdress = nil, publicAdress = nil)
|
448
448
|
@username = username
|
449
449
|
@extension = extension
|
450
450
|
@domain = domain
|
451
|
-
@
|
452
|
-
@
|
453
|
-
@
|
451
|
+
@lastLogin = lastLogin
|
452
|
+
@localAdress = localAdress
|
453
|
+
@publicAdress = publicAdress
|
454
454
|
end
|
455
455
|
end
|
456
456
|
|
@@ -468,9 +468,9 @@ class TelephonyOfferInfoHardwareStruct
|
|
468
468
|
attr_accessor :engage
|
469
469
|
attr_accessor :status
|
470
470
|
attr_accessor :port
|
471
|
-
attr_accessor :
|
471
|
+
attr_accessor :outOfService
|
472
472
|
|
473
|
-
def initialize(brand = nil, model = nil, protocol = nil, mac = nil, ip = nil, engage = nil, status = nil, port = nil,
|
473
|
+
def initialize(brand = nil, model = nil, protocol = nil, mac = nil, ip = nil, engage = nil, status = nil, port = nil, outOfService = nil)
|
474
474
|
@brand = brand
|
475
475
|
@model = model
|
476
476
|
@protocol = protocol
|
@@ -479,7 +479,7 @@ class TelephonyOfferInfoHardwareStruct
|
|
479
479
|
@engage = engage
|
480
480
|
@status = status
|
481
481
|
@port = port
|
482
|
-
@
|
482
|
+
@outOfService = outOfService
|
483
483
|
end
|
484
484
|
end
|
485
485
|
|
@@ -493,22 +493,22 @@ class TelephonyCallStruct
|
|
493
493
|
attr_accessor :date
|
494
494
|
attr_accessor :duration
|
495
495
|
attr_accessor :destination
|
496
|
-
attr_accessor :
|
496
|
+
attr_accessor :priceWithoutVAT
|
497
497
|
attr_accessor :nature
|
498
|
-
attr_accessor :
|
498
|
+
attr_accessor :overLimit
|
499
499
|
attr_accessor :type
|
500
|
-
attr_accessor :
|
500
|
+
attr_accessor :callingNumber
|
501
501
|
|
502
|
-
def initialize(number = nil, date = nil, duration = nil, destination = nil,
|
502
|
+
def initialize(number = nil, date = nil, duration = nil, destination = nil, priceWithoutVAT = nil, nature = nil, overLimit = nil, type = nil, callingNumber = nil)
|
503
503
|
@number = number
|
504
504
|
@date = date
|
505
505
|
@duration = duration
|
506
506
|
@destination = destination
|
507
|
-
@
|
507
|
+
@priceWithoutVAT = priceWithoutVAT
|
508
508
|
@nature = nature
|
509
|
-
@
|
509
|
+
@overLimit = overLimit
|
510
510
|
@type = type
|
511
|
-
@
|
511
|
+
@callingNumber = callingNumber
|
512
512
|
end
|
513
513
|
end
|
514
514
|
|
@@ -520,12 +520,12 @@ class TelephonyCallsSummaryDetailsStruct
|
|
520
520
|
|
521
521
|
attr_accessor :count
|
522
522
|
attr_accessor :duration
|
523
|
-
attr_accessor :
|
523
|
+
attr_accessor :priceWithoutVAT
|
524
524
|
|
525
|
-
def initialize(count = nil, duration = nil,
|
525
|
+
def initialize(count = nil, duration = nil, priceWithoutVAT = nil)
|
526
526
|
@count = count
|
527
527
|
@duration = duration
|
528
|
-
@
|
528
|
+
@priceWithoutVAT = priceWithoutVAT
|
529
529
|
end
|
530
530
|
end
|
531
531
|
|
@@ -537,12 +537,12 @@ class TelephonyFaxSummaryDetailsStruct
|
|
537
537
|
|
538
538
|
attr_accessor :count
|
539
539
|
attr_accessor :pages
|
540
|
-
attr_accessor :
|
540
|
+
attr_accessor :priceWithoutVAT
|
541
541
|
|
542
|
-
def initialize(count = nil, pages = nil,
|
542
|
+
def initialize(count = nil, pages = nil, priceWithoutVAT = nil)
|
543
543
|
@count = count
|
544
544
|
@pages = pages
|
545
|
-
@
|
545
|
+
@priceWithoutVAT = priceWithoutVAT
|
546
546
|
end
|
547
547
|
end
|
548
548
|
|
@@ -552,12 +552,12 @@ class TelephonyCallsSummaryStruct
|
|
552
552
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
553
553
|
@@schema_element = [["pricePlan", ["TelephonyCallsSummaryDetailsStruct", XSD::QName.new(nil, "pricePlan")]], ["outPlan", ["TelephonyCallsSummaryDetailsStruct", XSD::QName.new(nil, "outPlan")]]]
|
554
554
|
|
555
|
-
attr_accessor :
|
556
|
-
attr_accessor :
|
555
|
+
attr_accessor :pricePlan
|
556
|
+
attr_accessor :outPlan
|
557
557
|
|
558
|
-
def initialize(
|
559
|
-
@
|
560
|
-
@
|
558
|
+
def initialize(pricePlan = nil, outPlan = nil)
|
559
|
+
@pricePlan = pricePlan
|
560
|
+
@outPlan = outPlan
|
561
561
|
end
|
562
562
|
end
|
563
563
|
|
@@ -583,15 +583,15 @@ class TelephonyBillingAccountSummaryLineStruct
|
|
583
583
|
@@schema_element = [["line", ["SOAP::SOAPString", XSD::QName.new(nil, "line")]], ["phoneNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "phoneNumber")]], ["fixe", ["TelephonyCallsSummaryStruct", XSD::QName.new(nil, "fixe")]], ["special", ["TelephonyCallsSummaryStruct", XSD::QName.new(nil, "special")]], ["mobile", ["TelephonyCallsSummaryStruct", XSD::QName.new(nil, "mobile")]], ["fax", ["TelephonyFaxSummaryStruct", XSD::QName.new(nil, "fax")]]]
|
584
584
|
|
585
585
|
attr_accessor :line
|
586
|
-
attr_accessor :
|
586
|
+
attr_accessor :phoneNumber
|
587
587
|
attr_accessor :fixe
|
588
588
|
attr_accessor :special
|
589
589
|
attr_accessor :mobile
|
590
590
|
attr_accessor :fax
|
591
591
|
|
592
|
-
def initialize(line = nil,
|
592
|
+
def initialize(line = nil, phoneNumber = nil, fixe = nil, special = nil, mobile = nil, fax = nil)
|
593
593
|
@line = line
|
594
|
-
@
|
594
|
+
@phoneNumber = phoneNumber
|
595
595
|
@fixe = fixe
|
596
596
|
@special = special
|
597
597
|
@mobile = mobile
|
@@ -606,12 +606,12 @@ class TelephonyBillingAccountSummaryBillingAccountStruct
|
|
606
606
|
@@schema_element = [["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["betaGammaOffer", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "betaGammaOffer")]], ["mobile", ["TelephonyCallsSummaryStruct", XSD::QName.new(nil, "mobile")]]]
|
607
607
|
|
608
608
|
attr_accessor :name
|
609
|
-
attr_accessor :
|
609
|
+
attr_accessor :betaGammaOffer
|
610
610
|
attr_accessor :mobile
|
611
611
|
|
612
|
-
def initialize(name = nil,
|
612
|
+
def initialize(name = nil, betaGammaOffer = nil, mobile = nil)
|
613
613
|
@name = name
|
614
|
-
@
|
614
|
+
@betaGammaOffer = betaGammaOffer
|
615
615
|
@mobile = mobile
|
616
616
|
end
|
617
617
|
end
|
@@ -622,11 +622,11 @@ class TelephonyBillingAccountSummaryReturn
|
|
622
622
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
623
623
|
@@schema_element = [["billingAccount", ["TelephonyBillingAccountSummaryBillingAccountStruct", XSD::QName.new(nil, "billingAccount")]], ["lines", ["MyArrayOfTelephonyBillingAccountSummaryLineStructType", XSD::QName.new(nil, "lines")]]]
|
624
624
|
|
625
|
-
attr_accessor :
|
625
|
+
attr_accessor :billingAccount
|
626
626
|
attr_accessor :lines
|
627
627
|
|
628
|
-
def initialize(
|
629
|
-
@
|
628
|
+
def initialize(billingAccount = nil, lines = nil)
|
629
|
+
@billingAccount = billingAccount
|
630
630
|
@lines = lines
|
631
631
|
end
|
632
632
|
end
|
@@ -637,13 +637,13 @@ class TelephonyCallListReturn
|
|
637
637
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
638
638
|
@@schema_element = [["fromDate", ["SOAP::SOAPString", XSD::QName.new(nil, "fromDate")]], ["toDate", ["SOAP::SOAPString", XSD::QName.new(nil, "toDate")]], ["list", ["MyArrayOfTelephonyCallStructType", XSD::QName.new(nil, "list")]]]
|
639
639
|
|
640
|
-
attr_accessor :
|
641
|
-
attr_accessor :
|
640
|
+
attr_accessor :fromDate
|
641
|
+
attr_accessor :toDate
|
642
642
|
attr_accessor :list
|
643
643
|
|
644
|
-
def initialize(
|
645
|
-
@
|
646
|
-
@
|
644
|
+
def initialize(fromDate = nil, toDate = nil, list = nil)
|
645
|
+
@fromDate = fromDate
|
646
|
+
@toDate = toDate
|
647
647
|
@list = list
|
648
648
|
end
|
649
649
|
end
|
@@ -656,16 +656,16 @@ class TelephonyBillStruct
|
|
656
656
|
|
657
657
|
attr_accessor :date
|
658
658
|
attr_accessor :price
|
659
|
-
attr_accessor :
|
660
|
-
attr_accessor :
|
661
|
-
attr_accessor :
|
659
|
+
attr_accessor :orderId
|
660
|
+
attr_accessor :orderPaid
|
661
|
+
attr_accessor :orderUrl
|
662
662
|
|
663
|
-
def initialize(date = nil, price = nil,
|
663
|
+
def initialize(date = nil, price = nil, orderId = nil, orderPaid = nil, orderUrl = nil)
|
664
664
|
@date = date
|
665
665
|
@price = price
|
666
|
-
@
|
667
|
-
@
|
668
|
-
@
|
666
|
+
@orderId = orderId
|
667
|
+
@orderPaid = orderPaid
|
668
|
+
@orderUrl = orderUrl
|
669
669
|
end
|
670
670
|
end
|
671
671
|
|
@@ -675,13 +675,13 @@ class TelephonyBillDetailsReturn
|
|
675
675
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
676
676
|
@@schema_element = [["fromDate", ["SOAP::SOAPString", XSD::QName.new(nil, "fromDate")]], ["toDate", ["SOAP::SOAPString", XSD::QName.new(nil, "toDate")]], ["list", ["MyArrayOfTelephonyCallStructType", XSD::QName.new(nil, "list")]]]
|
677
677
|
|
678
|
-
attr_accessor :
|
679
|
-
attr_accessor :
|
678
|
+
attr_accessor :fromDate
|
679
|
+
attr_accessor :toDate
|
680
680
|
attr_accessor :list
|
681
681
|
|
682
|
-
def initialize(
|
683
|
-
@
|
684
|
-
@
|
682
|
+
def initialize(fromDate = nil, toDate = nil, list = nil)
|
683
|
+
@fromDate = fromDate
|
684
|
+
@toDate = toDate
|
685
685
|
@list = list
|
686
686
|
end
|
687
687
|
end
|
@@ -693,39 +693,39 @@ class TelephonyVoicemailOptionsListReturn
|
|
693
693
|
@@schema_element = [["redirection1", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection1")]], ["redirection1Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection1Email")]], ["redirection2", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection2")]], ["redirection2Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection2Email")]], ["redirection3", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection3")]], ["redirection3Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection3Email")]], ["redirection4", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection4")]], ["redirection4Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection4Email")]], ["redirection5", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection5")]], ["redirection5Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection5Email")]], ["annouceMessage", ["SOAP::SOAPString", XSD::QName.new(nil, "annouceMessage")]], ["keepMessage", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "keepMessage")]], ["audioformat", ["SOAP::SOAPString", XSD::QName.new(nil, "audioformat")]], ["fromEmail", ["SOAP::SOAPString", XSD::QName.new(nil, "fromEmail")]], ["fromName", ["SOAP::SOAPString", XSD::QName.new(nil, "fromName")]], ["forcePassword", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "forcePassword")]]]
|
694
694
|
|
695
695
|
attr_accessor :redirection1
|
696
|
-
attr_accessor :
|
696
|
+
attr_accessor :redirection1Email
|
697
697
|
attr_accessor :redirection2
|
698
|
-
attr_accessor :
|
698
|
+
attr_accessor :redirection2Email
|
699
699
|
attr_accessor :redirection3
|
700
|
-
attr_accessor :
|
700
|
+
attr_accessor :redirection3Email
|
701
701
|
attr_accessor :redirection4
|
702
|
-
attr_accessor :
|
702
|
+
attr_accessor :redirection4Email
|
703
703
|
attr_accessor :redirection5
|
704
|
-
attr_accessor :
|
705
|
-
attr_accessor :
|
706
|
-
attr_accessor :
|
704
|
+
attr_accessor :redirection5Email
|
705
|
+
attr_accessor :annouceMessage
|
706
|
+
attr_accessor :keepMessage
|
707
707
|
attr_accessor :audioformat
|
708
|
-
attr_accessor :
|
709
|
-
attr_accessor :
|
710
|
-
attr_accessor :
|
708
|
+
attr_accessor :fromEmail
|
709
|
+
attr_accessor :fromName
|
710
|
+
attr_accessor :forcePassword
|
711
711
|
|
712
|
-
def initialize(redirection1 = nil,
|
712
|
+
def initialize(redirection1 = nil, redirection1Email = nil, redirection2 = nil, redirection2Email = nil, redirection3 = nil, redirection3Email = nil, redirection4 = nil, redirection4Email = nil, redirection5 = nil, redirection5Email = nil, annouceMessage = nil, keepMessage = nil, audioformat = nil, fromEmail = nil, fromName = nil, forcePassword = nil)
|
713
713
|
@redirection1 = redirection1
|
714
|
-
@
|
714
|
+
@redirection1Email = redirection1Email
|
715
715
|
@redirection2 = redirection2
|
716
|
-
@
|
716
|
+
@redirection2Email = redirection2Email
|
717
717
|
@redirection3 = redirection3
|
718
|
-
@
|
718
|
+
@redirection3Email = redirection3Email
|
719
719
|
@redirection4 = redirection4
|
720
|
-
@
|
720
|
+
@redirection4Email = redirection4Email
|
721
721
|
@redirection5 = redirection5
|
722
|
-
@
|
723
|
-
@
|
724
|
-
@
|
722
|
+
@redirection5Email = redirection5Email
|
723
|
+
@annouceMessage = annouceMessage
|
724
|
+
@keepMessage = keepMessage
|
725
725
|
@audioformat = audioformat
|
726
|
-
@
|
727
|
-
@
|
728
|
-
@
|
726
|
+
@fromEmail = fromEmail
|
727
|
+
@fromName = fromName
|
728
|
+
@forcePassword = forcePassword
|
729
729
|
end
|
730
730
|
end
|
731
731
|
|
@@ -789,20 +789,20 @@ class TelephonyPhonebookContactStruct
|
|
789
789
|
attr_accessor :id
|
790
790
|
attr_accessor :name
|
791
791
|
attr_accessor :surname
|
792
|
-
attr_accessor :
|
793
|
-
attr_accessor :
|
794
|
-
attr_accessor :
|
795
|
-
attr_accessor :
|
792
|
+
attr_accessor :workPhone
|
793
|
+
attr_accessor :workMobile
|
794
|
+
attr_accessor :homePhone
|
795
|
+
attr_accessor :homeMobile
|
796
796
|
attr_accessor :group
|
797
797
|
|
798
|
-
def initialize(id = nil, name = nil, surname = nil,
|
798
|
+
def initialize(id = nil, name = nil, surname = nil, workPhone = nil, workMobile = nil, homePhone = nil, homeMobile = nil, group = nil)
|
799
799
|
@id = id
|
800
800
|
@name = name
|
801
801
|
@surname = surname
|
802
|
-
@
|
803
|
-
@
|
804
|
-
@
|
805
|
-
@
|
802
|
+
@workPhone = workPhone
|
803
|
+
@workMobile = workMobile
|
804
|
+
@homePhone = homePhone
|
805
|
+
@homeMobile = homeMobile
|
806
806
|
@group = group
|
807
807
|
end
|
808
808
|
end
|
@@ -832,30 +832,30 @@ class TelephonySecurityDepositCreditReturn
|
|
832
832
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
833
833
|
@@schema_element = [["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["orderPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "orderPassword")]], ["orderUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "orderUrl")]], ["totalPrice", ["SOAP::SOAPFloat", XSD::QName.new(nil, "totalPrice")]], ["vat", ["SOAP::SOAPFloat", XSD::QName.new(nil, "vat")]], ["totalPriceWithVat", ["SOAP::SOAPFloat", XSD::QName.new(nil, "totalPriceWithVat")]], ["ribBankCode", ["SOAP::SOAPString", XSD::QName.new(nil, "ribBankCode")]], ["ribAgencyCode", ["SOAP::SOAPString", XSD::QName.new(nil, "ribAgencyCode")]], ["ribAccountNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "ribAccountNumber")]], ["ribKey", ["SOAP::SOAPString", XSD::QName.new(nil, "ribKey")]], ["iban", ["SOAP::SOAPString", XSD::QName.new(nil, "iban")]], ["bic", ["SOAP::SOAPString", XSD::QName.new(nil, "bic")]]]
|
834
834
|
|
835
|
-
attr_accessor :
|
836
|
-
attr_accessor :
|
837
|
-
attr_accessor :
|
838
|
-
attr_accessor :
|
835
|
+
attr_accessor :orderId
|
836
|
+
attr_accessor :orderPassword
|
837
|
+
attr_accessor :orderUrl
|
838
|
+
attr_accessor :totalPrice
|
839
839
|
attr_accessor :vat
|
840
|
-
attr_accessor :
|
841
|
-
attr_accessor :
|
842
|
-
attr_accessor :
|
843
|
-
attr_accessor :
|
844
|
-
attr_accessor :
|
840
|
+
attr_accessor :totalPriceWithVat
|
841
|
+
attr_accessor :ribBankCode
|
842
|
+
attr_accessor :ribAgencyCode
|
843
|
+
attr_accessor :ribAccountNumber
|
844
|
+
attr_accessor :ribKey
|
845
845
|
attr_accessor :iban
|
846
846
|
attr_accessor :bic
|
847
847
|
|
848
|
-
def initialize(
|
849
|
-
@
|
850
|
-
@
|
851
|
-
@
|
852
|
-
@
|
848
|
+
def initialize(orderId = nil, orderPassword = nil, orderUrl = nil, totalPrice = nil, vat = nil, totalPriceWithVat = nil, ribBankCode = nil, ribAgencyCode = nil, ribAccountNumber = nil, ribKey = nil, iban = nil, bic = nil)
|
849
|
+
@orderId = orderId
|
850
|
+
@orderPassword = orderPassword
|
851
|
+
@orderUrl = orderUrl
|
852
|
+
@totalPrice = totalPrice
|
853
853
|
@vat = vat
|
854
|
-
@
|
855
|
-
@
|
856
|
-
@
|
857
|
-
@
|
858
|
-
@
|
854
|
+
@totalPriceWithVat = totalPriceWithVat
|
855
|
+
@ribBankCode = ribBankCode
|
856
|
+
@ribAgencyCode = ribAgencyCode
|
857
|
+
@ribAccountNumber = ribAccountNumber
|
858
|
+
@ribKey = ribKey
|
859
859
|
@iban = iban
|
860
860
|
@bic = bic
|
861
861
|
end
|
@@ -868,41 +868,41 @@ class TelephonyConferenceStruct
|
|
868
868
|
@@schema_element = [["room", ["SOAP::SOAPString", XSD::QName.new(nil, "room")]], ["countryCode", ["SOAP::SOAPString", XSD::QName.new(nil, "countryCode")]], ["callNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "callNumber")]], ["language", ["SOAP::SOAPString", XSD::QName.new(nil, "language")]], ["customAnnounce", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "customAnnounce")]], ["recordAnnounce", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "recordAnnounce")]], ["mailReport", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "mailReport")]], ["customMailReportAddress", ["SOAP::SOAPString", XSD::QName.new(nil, "customMailReportAddress")]], ["askName", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "askName")]], ["tellMemberCount", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "tellMemberCount")]], ["moderatorCountryCode", ["SOAP::SOAPString", XSD::QName.new(nil, "moderatorCountryCode")]], ["moderatorCallNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "moderatorCallNumber")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["dtmfmenu", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "dtmfmenu")]], ["announce_rcv", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "announce_rcv")]], ["announce_snd", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "announce_snd")]], ["recordConf", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "recordConf")]]]
|
869
869
|
|
870
870
|
attr_accessor :room
|
871
|
-
attr_accessor :
|
872
|
-
attr_accessor :
|
871
|
+
attr_accessor :countryCode
|
872
|
+
attr_accessor :callNumber
|
873
873
|
attr_accessor :language
|
874
|
-
attr_accessor :
|
875
|
-
attr_accessor :
|
876
|
-
attr_accessor :
|
877
|
-
attr_accessor :
|
878
|
-
attr_accessor :
|
879
|
-
attr_accessor :
|
880
|
-
attr_accessor :
|
881
|
-
attr_accessor :
|
874
|
+
attr_accessor :customAnnounce
|
875
|
+
attr_accessor :recordAnnounce
|
876
|
+
attr_accessor :mailReport
|
877
|
+
attr_accessor :customMailReportAddress
|
878
|
+
attr_accessor :askName
|
879
|
+
attr_accessor :tellMemberCount
|
880
|
+
attr_accessor :moderatorCountryCode
|
881
|
+
attr_accessor :moderatorCallNumber
|
882
882
|
attr_accessor :status
|
883
883
|
attr_accessor :dtmfmenu
|
884
884
|
attr_accessor :announce_rcv
|
885
885
|
attr_accessor :announce_snd
|
886
|
-
attr_accessor :
|
886
|
+
attr_accessor :recordConf
|
887
887
|
|
888
|
-
def initialize(room = nil,
|
888
|
+
def initialize(room = nil, countryCode = nil, callNumber = nil, language = nil, customAnnounce = nil, recordAnnounce = nil, mailReport = nil, customMailReportAddress = nil, askName = nil, tellMemberCount = nil, moderatorCountryCode = nil, moderatorCallNumber = nil, status = nil, dtmfmenu = nil, announce_rcv = nil, announce_snd = nil, recordConf = nil)
|
889
889
|
@room = room
|
890
|
-
@
|
891
|
-
@
|
890
|
+
@countryCode = countryCode
|
891
|
+
@callNumber = callNumber
|
892
892
|
@language = language
|
893
|
-
@
|
894
|
-
@
|
895
|
-
@
|
896
|
-
@
|
897
|
-
@
|
898
|
-
@
|
899
|
-
@
|
900
|
-
@
|
893
|
+
@customAnnounce = customAnnounce
|
894
|
+
@recordAnnounce = recordAnnounce
|
895
|
+
@mailReport = mailReport
|
896
|
+
@customMailReportAddress = customMailReportAddress
|
897
|
+
@askName = askName
|
898
|
+
@tellMemberCount = tellMemberCount
|
899
|
+
@moderatorCountryCode = moderatorCountryCode
|
900
|
+
@moderatorCallNumber = moderatorCallNumber
|
901
901
|
@status = status
|
902
902
|
@dtmfmenu = dtmfmenu
|
903
903
|
@announce_rcv = announce_rcv
|
904
904
|
@announce_snd = announce_snd
|
905
|
-
@
|
905
|
+
@recordConf = recordConf
|
906
906
|
end
|
907
907
|
end
|
908
908
|
|
@@ -953,19 +953,19 @@ class TelephonySmsHistoryStruct
|
|
953
953
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
954
954
|
@@schema_element = [["smsId", ["SOAP::SOAPInt", XSD::QName.new(nil, "smsId")]], ["numberFrom", ["SOAP::SOAPString", XSD::QName.new(nil, "numberFrom")]], ["numberTo", ["SOAP::SOAPString", XSD::QName.new(nil, "numberTo")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]], ["message", ["SOAP::SOAPString", XSD::QName.new(nil, "message")]], ["text", ["SOAP::SOAPString", XSD::QName.new(nil, "text")]], ["user", ["SOAP::SOAPString", XSD::QName.new(nil, "user")]]]
|
955
955
|
|
956
|
-
attr_accessor :
|
957
|
-
attr_accessor :
|
958
|
-
attr_accessor :
|
956
|
+
attr_accessor :smsId
|
957
|
+
attr_accessor :numberFrom
|
958
|
+
attr_accessor :numberTo
|
959
959
|
attr_accessor :status
|
960
960
|
attr_accessor :date
|
961
961
|
attr_accessor :message
|
962
962
|
attr_accessor :text
|
963
963
|
attr_accessor :user
|
964
964
|
|
965
|
-
def initialize(
|
966
|
-
@
|
967
|
-
@
|
968
|
-
@
|
965
|
+
def initialize(smsId = nil, numberFrom = nil, numberTo = nil, status = nil, date = nil, message = nil, text = nil, user = nil)
|
966
|
+
@smsId = smsId
|
967
|
+
@numberFrom = numberFrom
|
968
|
+
@numberTo = numberTo
|
969
969
|
@status = status
|
970
970
|
@date = date
|
971
971
|
@message = message
|
@@ -997,14 +997,14 @@ class TelephonyAbbreviatedNumberStruct
|
|
997
997
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
998
998
|
@@schema_element = [["abbreviatedNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "abbreviatedNumber")]], ["relatedNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "relatedNumber")]], ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["surname", ["SOAP::SOAPString", XSD::QName.new(nil, "surname")]]]
|
999
999
|
|
1000
|
-
attr_accessor :
|
1001
|
-
attr_accessor :
|
1000
|
+
attr_accessor :abbreviatedNumber
|
1001
|
+
attr_accessor :relatedNumber
|
1002
1002
|
attr_accessor :name
|
1003
1003
|
attr_accessor :surname
|
1004
1004
|
|
1005
|
-
def initialize(
|
1006
|
-
@
|
1007
|
-
@
|
1005
|
+
def initialize(abbreviatedNumber = nil, relatedNumber = nil, name = nil, surname = nil)
|
1006
|
+
@abbreviatedNumber = abbreviatedNumber
|
1007
|
+
@relatedNumber = relatedNumber
|
1008
1008
|
@name = name
|
1009
1009
|
@surname = surname
|
1010
1010
|
end
|
@@ -1016,12 +1016,12 @@ class TelephonyDirectoryPJHeadingStruct
|
|
1016
1016
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1017
1017
|
@@schema_element = [["codePJ", ["SOAP::SOAPString", XSD::QName.new(nil, "codePJ")]], ["labelPJ", ["SOAP::SOAPString", XSD::QName.new(nil, "labelPJ")]]]
|
1018
1018
|
|
1019
|
-
attr_accessor :
|
1020
|
-
attr_accessor :
|
1019
|
+
attr_accessor :codePJ
|
1020
|
+
attr_accessor :labelPJ
|
1021
1021
|
|
1022
|
-
def initialize(
|
1023
|
-
@
|
1024
|
-
@
|
1022
|
+
def initialize(codePJ = nil, labelPJ = nil)
|
1023
|
+
@codePJ = codePJ
|
1024
|
+
@labelPJ = labelPJ
|
1025
1025
|
end
|
1026
1026
|
end
|
1027
1027
|
|
@@ -1033,48 +1033,48 @@ class TelephonyDirectoryInfoReturn
|
|
1033
1033
|
|
1034
1034
|
attr_accessor :number
|
1035
1035
|
attr_accessor :name
|
1036
|
-
attr_accessor :
|
1036
|
+
attr_accessor :firstName
|
1037
1037
|
attr_accessor :address
|
1038
|
-
attr_accessor :
|
1039
|
-
attr_accessor :
|
1040
|
-
attr_accessor :
|
1038
|
+
attr_accessor :wayNumber
|
1039
|
+
attr_accessor :wayType
|
1040
|
+
attr_accessor :wayName
|
1041
1041
|
attr_accessor :building
|
1042
1042
|
attr_accessor :floor
|
1043
|
-
attr_accessor :
|
1043
|
+
attr_accessor :stairCase
|
1044
1044
|
attr_accessor :door
|
1045
1045
|
attr_accessor :block
|
1046
1046
|
attr_accessor :lodge
|
1047
|
-
attr_accessor :
|
1048
|
-
attr_accessor :
|
1047
|
+
attr_accessor :placeName
|
1048
|
+
attr_accessor :urbanDistrict
|
1049
1049
|
attr_accessor :district
|
1050
|
-
attr_accessor :
|
1051
|
-
attr_accessor :
|
1050
|
+
attr_accessor :extraAddress
|
1051
|
+
attr_accessor :postBox
|
1052
1052
|
attr_accessor :cedex
|
1053
|
-
attr_accessor :
|
1053
|
+
attr_accessor :postCode
|
1054
1054
|
attr_accessor :city
|
1055
1055
|
attr_accessor :country
|
1056
1056
|
attr_accessor :email
|
1057
|
-
attr_accessor :
|
1057
|
+
attr_accessor :legalForm
|
1058
1058
|
attr_accessor :occupation
|
1059
|
-
attr_accessor :
|
1060
|
-
attr_accessor :
|
1061
|
-
attr_accessor :
|
1059
|
+
attr_accessor :socialNomination
|
1060
|
+
attr_accessor :socialNominationExtra
|
1061
|
+
attr_accessor :lineDescription
|
1062
1062
|
attr_accessor :siret
|
1063
1063
|
attr_accessor :ape
|
1064
|
-
attr_accessor :
|
1065
|
-
attr_accessor :
|
1066
|
-
attr_accessor :
|
1067
|
-
attr_accessor :
|
1068
|
-
attr_accessor :
|
1069
|
-
attr_accessor :
|
1070
|
-
attr_accessor :
|
1064
|
+
attr_accessor :displayFirstName
|
1065
|
+
attr_accessor :displayOnlyCity
|
1066
|
+
attr_accessor :displayUniversalDirectory
|
1067
|
+
attr_accessor :displayMarketingDirectory
|
1068
|
+
attr_accessor :displaySearchReverse
|
1069
|
+
attr_accessor :receivePJDirectory
|
1070
|
+
attr_accessor :inseeCode
|
1071
1071
|
|
1072
1072
|
def PJSocialNomination
|
1073
1073
|
@pJSocialNomination
|
1074
1074
|
end
|
1075
1075
|
|
1076
1076
|
def PJSocialNomination=(value)
|
1077
|
-
@
|
1077
|
+
@pJSocialNomination = value
|
1078
1078
|
end
|
1079
1079
|
|
1080
1080
|
def PJHeading
|
@@ -1082,49 +1082,49 @@ class TelephonyDirectoryInfoReturn
|
|
1082
1082
|
end
|
1083
1083
|
|
1084
1084
|
def PJHeading=(value)
|
1085
|
-
@
|
1085
|
+
@pJHeading = value
|
1086
1086
|
end
|
1087
1087
|
|
1088
|
-
def initialize(number = nil, name = nil,
|
1088
|
+
def initialize(number = nil, name = nil, firstName = nil, address = nil, wayNumber = nil, wayType = nil, wayName = nil, building = nil, floor = nil, stairCase = nil, door = nil, block = nil, lodge = nil, placeName = nil, urbanDistrict = nil, district = nil, extraAddress = nil, postBox = nil, cedex = nil, postCode = nil, city = nil, country = nil, email = nil, legalForm = nil, occupation = nil, socialNomination = nil, pJSocialNomination = nil, socialNominationExtra = nil, lineDescription = nil, siret = nil, ape = nil, displayFirstName = nil, displayOnlyCity = nil, displayUniversalDirectory = nil, displayMarketingDirectory = nil, displaySearchReverse = nil, receivePJDirectory = nil, inseeCode = nil, pJHeading = nil)
|
1089
1089
|
@number = number
|
1090
1090
|
@name = name
|
1091
|
-
@
|
1091
|
+
@firstName = firstName
|
1092
1092
|
@address = address
|
1093
|
-
@
|
1094
|
-
@
|
1095
|
-
@
|
1093
|
+
@wayNumber = wayNumber
|
1094
|
+
@wayType = wayType
|
1095
|
+
@wayName = wayName
|
1096
1096
|
@building = building
|
1097
1097
|
@floor = floor
|
1098
|
-
@
|
1098
|
+
@stairCase = stairCase
|
1099
1099
|
@door = door
|
1100
1100
|
@block = block
|
1101
1101
|
@lodge = lodge
|
1102
|
-
@
|
1103
|
-
@
|
1102
|
+
@placeName = placeName
|
1103
|
+
@urbanDistrict = urbanDistrict
|
1104
1104
|
@district = district
|
1105
|
-
@
|
1106
|
-
@
|
1105
|
+
@extraAddress = extraAddress
|
1106
|
+
@postBox = postBox
|
1107
1107
|
@cedex = cedex
|
1108
|
-
@
|
1108
|
+
@postCode = postCode
|
1109
1109
|
@city = city
|
1110
1110
|
@country = country
|
1111
1111
|
@email = email
|
1112
|
-
@
|
1112
|
+
@legalForm = legalForm
|
1113
1113
|
@occupation = occupation
|
1114
|
-
@
|
1115
|
-
@
|
1116
|
-
@
|
1117
|
-
@
|
1114
|
+
@socialNomination = socialNomination
|
1115
|
+
@pJSocialNomination = pJSocialNomination
|
1116
|
+
@socialNominationExtra = socialNominationExtra
|
1117
|
+
@lineDescription = lineDescription
|
1118
1118
|
@siret = siret
|
1119
1119
|
@ape = ape
|
1120
|
-
@
|
1121
|
-
@
|
1122
|
-
@
|
1123
|
-
@
|
1124
|
-
@
|
1125
|
-
@
|
1126
|
-
@
|
1127
|
-
@
|
1120
|
+
@displayFirstName = displayFirstName
|
1121
|
+
@displayOnlyCity = displayOnlyCity
|
1122
|
+
@displayUniversalDirectory = displayUniversalDirectory
|
1123
|
+
@displayMarketingDirectory = displayMarketingDirectory
|
1124
|
+
@displaySearchReverse = displaySearchReverse
|
1125
|
+
@receivePJDirectory = receivePJDirectory
|
1126
|
+
@inseeCode = inseeCode
|
1127
|
+
@pJHeading = pJHeading
|
1128
1128
|
end
|
1129
1129
|
end
|
1130
1130
|
|
@@ -1134,14 +1134,14 @@ class TelephonyFunctionKeyStruct
|
|
1134
1134
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1135
1135
|
@@schema_element = [["keyNum", ["SOAP::SOAPInt", XSD::QName.new(nil, "keyNum")]], ["function", ["SOAP::SOAPString", XSD::QName.new(nil, "function")]], ["relatedNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "relatedNumber")]]]
|
1136
1136
|
|
1137
|
-
attr_accessor :
|
1137
|
+
attr_accessor :keyNum
|
1138
1138
|
attr_accessor :function
|
1139
|
-
attr_accessor :
|
1139
|
+
attr_accessor :relatedNumber
|
1140
1140
|
|
1141
|
-
def initialize(
|
1142
|
-
@
|
1141
|
+
def initialize(keyNum = nil, function = nil, relatedNumber = nil)
|
1142
|
+
@keyNum = keyNum
|
1143
1143
|
@function = function
|
1144
|
-
@
|
1144
|
+
@relatedNumber = relatedNumber
|
1145
1145
|
end
|
1146
1146
|
end
|
1147
1147
|
|
@@ -1151,36 +1151,36 @@ class TelephonyFaxOptionsListReturn
|
|
1151
1151
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1152
1152
|
@@schema_element = [["callNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "callNumber")]], ["countryCode", ["SOAP::SOAPString", XSD::QName.new(nil, "countryCode")]], ["fromName", ["SOAP::SOAPString", XSD::QName.new(nil, "fromName")]], ["fromEmail", ["SOAP::SOAPString", XSD::QName.new(nil, "fromEmail")]], ["faxQuality", ["SOAP::SOAPString", XSD::QName.new(nil, "faxQuality")]], ["faxTagLine", ["SOAP::SOAPString", XSD::QName.new(nil, "faxTagLine")]], ["faxMaxCall", ["SOAP::SOAPInt", XSD::QName.new(nil, "faxMaxCall")]], ["receivId", ["SOAP::SOAPString", XSD::QName.new(nil, "receivId")]], ["senderId", ["SOAP::SOAPString", XSD::QName.new(nil, "senderId")]], ["redirection1Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection1Email")]], ["redirection2Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection2Email")]], ["redirection3Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection3Email")]], ["redirection4Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection4Email")]], ["redirection5Email", ["SOAP::SOAPString", XSD::QName.new(nil, "redirection5Email")]]]
|
1153
1153
|
|
1154
|
-
attr_accessor :
|
1155
|
-
attr_accessor :
|
1156
|
-
attr_accessor :
|
1157
|
-
attr_accessor :
|
1158
|
-
attr_accessor :
|
1159
|
-
attr_accessor :
|
1160
|
-
attr_accessor :
|
1161
|
-
attr_accessor :
|
1162
|
-
attr_accessor :
|
1163
|
-
attr_accessor :
|
1164
|
-
attr_accessor :
|
1165
|
-
attr_accessor :
|
1166
|
-
attr_accessor :
|
1167
|
-
attr_accessor :
|
1168
|
-
|
1169
|
-
def initialize(
|
1170
|
-
@
|
1171
|
-
@
|
1172
|
-
@
|
1173
|
-
@
|
1174
|
-
@
|
1175
|
-
@
|
1176
|
-
@
|
1177
|
-
@
|
1178
|
-
@
|
1179
|
-
@
|
1180
|
-
@
|
1181
|
-
@
|
1182
|
-
@
|
1183
|
-
@
|
1154
|
+
attr_accessor :callNumber
|
1155
|
+
attr_accessor :countryCode
|
1156
|
+
attr_accessor :fromName
|
1157
|
+
attr_accessor :fromEmail
|
1158
|
+
attr_accessor :faxQuality
|
1159
|
+
attr_accessor :faxTagLine
|
1160
|
+
attr_accessor :faxMaxCall
|
1161
|
+
attr_accessor :receivId
|
1162
|
+
attr_accessor :senderId
|
1163
|
+
attr_accessor :redirection1Email
|
1164
|
+
attr_accessor :redirection2Email
|
1165
|
+
attr_accessor :redirection3Email
|
1166
|
+
attr_accessor :redirection4Email
|
1167
|
+
attr_accessor :redirection5Email
|
1168
|
+
|
1169
|
+
def initialize(callNumber = nil, countryCode = nil, fromName = nil, fromEmail = nil, faxQuality = nil, faxTagLine = nil, faxMaxCall = nil, receivId = nil, senderId = nil, redirection1Email = nil, redirection2Email = nil, redirection3Email = nil, redirection4Email = nil, redirection5Email = nil)
|
1170
|
+
@callNumber = callNumber
|
1171
|
+
@countryCode = countryCode
|
1172
|
+
@fromName = fromName
|
1173
|
+
@fromEmail = fromEmail
|
1174
|
+
@faxQuality = faxQuality
|
1175
|
+
@faxTagLine = faxTagLine
|
1176
|
+
@faxMaxCall = faxMaxCall
|
1177
|
+
@receivId = receivId
|
1178
|
+
@senderId = senderId
|
1179
|
+
@redirection1Email = redirection1Email
|
1180
|
+
@redirection2Email = redirection2Email
|
1181
|
+
@redirection3Email = redirection3Email
|
1182
|
+
@redirection4Email = redirection4Email
|
1183
|
+
@redirection5Email = redirection5Email
|
1184
1184
|
end
|
1185
1185
|
end
|
1186
1186
|
|
@@ -1191,25 +1191,25 @@ class TelephonyFaxHistoryStruct
|
|
1191
1191
|
@@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["relatedNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "relatedNumber")]], ["jobid", ["SOAP::SOAPInt", XSD::QName.new(nil, "jobid")]], ["jobtag", ["SOAP::SOAPString", XSD::QName.new(nil, "jobtag")]], ["sender", ["SOAP::SOAPString", XSD::QName.new(nil, "sender")]], ["pages", ["SOAP::SOAPInt", XSD::QName.new(nil, "pages")]], ["quality", ["SOAP::SOAPString", XSD::QName.new(nil, "quality")]], ["callTime", ["SOAP::SOAPString", XSD::QName.new(nil, "callTime")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]], ["state", ["SOAP::SOAPString", XSD::QName.new(nil, "state")]]]
|
1192
1192
|
|
1193
1193
|
attr_accessor :id
|
1194
|
-
attr_accessor :
|
1194
|
+
attr_accessor :relatedNumber
|
1195
1195
|
attr_accessor :jobid
|
1196
1196
|
attr_accessor :jobtag
|
1197
1197
|
attr_accessor :sender
|
1198
1198
|
attr_accessor :pages
|
1199
1199
|
attr_accessor :quality
|
1200
|
-
attr_accessor :
|
1200
|
+
attr_accessor :callTime
|
1201
1201
|
attr_accessor :date
|
1202
1202
|
attr_accessor :state
|
1203
1203
|
|
1204
|
-
def initialize(id = nil,
|
1204
|
+
def initialize(id = nil, relatedNumber = nil, jobid = nil, jobtag = nil, sender = nil, pages = nil, quality = nil, callTime = nil, date = nil, state = nil)
|
1205
1205
|
@id = id
|
1206
|
-
@
|
1206
|
+
@relatedNumber = relatedNumber
|
1207
1207
|
@jobid = jobid
|
1208
1208
|
@jobtag = jobtag
|
1209
1209
|
@sender = sender
|
1210
1210
|
@pages = pages
|
1211
1211
|
@quality = quality
|
1212
|
-
@
|
1212
|
+
@callTime = callTime
|
1213
1213
|
@date = date
|
1214
1214
|
@state = state
|
1215
1215
|
end
|
@@ -1224,27 +1224,27 @@ class TelephonyPortabilityStruct
|
|
1224
1224
|
attr_accessor :id
|
1225
1225
|
attr_accessor :number
|
1226
1226
|
attr_accessor :name
|
1227
|
-
attr_accessor :
|
1228
|
-
attr_accessor :
|
1227
|
+
attr_accessor :planDate
|
1228
|
+
attr_accessor :billingAccount
|
1229
1229
|
attr_accessor :type
|
1230
1230
|
attr_accessor :operator
|
1231
1231
|
attr_accessor :status
|
1232
1232
|
attr_accessor :reason
|
1233
|
-
attr_accessor :
|
1234
|
-
attr_accessor :
|
1233
|
+
attr_accessor :askingCustomer
|
1234
|
+
attr_accessor :extraNumbers
|
1235
1235
|
|
1236
|
-
def initialize(id = nil, number = nil, name = nil,
|
1236
|
+
def initialize(id = nil, number = nil, name = nil, planDate = nil, billingAccount = nil, type = nil, operator = nil, status = nil, reason = nil, askingCustomer = nil, extraNumbers = nil)
|
1237
1237
|
@id = id
|
1238
1238
|
@number = number
|
1239
1239
|
@name = name
|
1240
|
-
@
|
1241
|
-
@
|
1240
|
+
@planDate = planDate
|
1241
|
+
@billingAccount = billingAccount
|
1242
1242
|
@type = type
|
1243
1243
|
@operator = operator
|
1244
1244
|
@status = status
|
1245
1245
|
@reason = reason
|
1246
|
-
@
|
1247
|
-
@
|
1246
|
+
@askingCustomer = askingCustomer
|
1247
|
+
@extraNumbers = extraNumbers
|
1248
1248
|
end
|
1249
1249
|
end
|
1250
1250
|
|
@@ -1254,16 +1254,16 @@ class TelephonyNumberOrderReturn
|
|
1254
1254
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1255
1255
|
@@schema_element = [["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["orderPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "orderPassword")]], ["orderUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "orderUrl")]], ["totalPrice", ["SOAP::SOAPFloat", XSD::QName.new(nil, "totalPrice")]]]
|
1256
1256
|
|
1257
|
-
attr_accessor :
|
1258
|
-
attr_accessor :
|
1259
|
-
attr_accessor :
|
1260
|
-
attr_accessor :
|
1257
|
+
attr_accessor :orderId
|
1258
|
+
attr_accessor :orderPassword
|
1259
|
+
attr_accessor :orderUrl
|
1260
|
+
attr_accessor :totalPrice
|
1261
1261
|
|
1262
|
-
def initialize(
|
1263
|
-
@
|
1264
|
-
@
|
1265
|
-
@
|
1266
|
-
@
|
1262
|
+
def initialize(orderId = nil, orderPassword = nil, orderUrl = nil, totalPrice = nil)
|
1263
|
+
@orderId = orderId
|
1264
|
+
@orderPassword = orderPassword
|
1265
|
+
@orderUrl = orderUrl
|
1266
|
+
@totalPrice = totalPrice
|
1267
1267
|
end
|
1268
1268
|
end
|
1269
1269
|
|
@@ -1289,11 +1289,11 @@ class TelephonyNumberCityForZoneStruct
|
|
1289
1289
|
@@schema_element = [["city", ["SOAP::SOAPString", XSD::QName.new(nil, "city")]], ["postalCode", ["SOAP::SOAPString", XSD::QName.new(nil, "postalCode")]]]
|
1290
1290
|
|
1291
1291
|
attr_accessor :city
|
1292
|
-
attr_accessor :
|
1292
|
+
attr_accessor :postalCode
|
1293
1293
|
|
1294
|
-
def initialize(city = nil,
|
1294
|
+
def initialize(city = nil, postalCode = nil)
|
1295
1295
|
@city = city
|
1296
|
-
@
|
1296
|
+
@postalCode = postalCode
|
1297
1297
|
end
|
1298
1298
|
end
|
1299
1299
|
|
@@ -1303,16 +1303,16 @@ class TelephonyTonesOptionsListReturn
|
|
1303
1303
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1304
1304
|
@@schema_element = [["toneRingback", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "toneRingback")]], ["toneOnHold", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "toneOnHold")]], ["toneOnClosure", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "toneOnClosure")]], ["toneOnCallWaiting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "toneOnCallWaiting")]]]
|
1305
1305
|
|
1306
|
-
attr_accessor :
|
1307
|
-
attr_accessor :
|
1308
|
-
attr_accessor :
|
1309
|
-
attr_accessor :
|
1306
|
+
attr_accessor :toneRingback
|
1307
|
+
attr_accessor :toneOnHold
|
1308
|
+
attr_accessor :toneOnClosure
|
1309
|
+
attr_accessor :toneOnCallWaiting
|
1310
1310
|
|
1311
|
-
def initialize(
|
1312
|
-
@
|
1313
|
-
@
|
1314
|
-
@
|
1315
|
-
@
|
1311
|
+
def initialize(toneRingback = nil, toneOnHold = nil, toneOnClosure = nil, toneOnCallWaiting = nil)
|
1312
|
+
@toneRingback = toneRingback
|
1313
|
+
@toneOnHold = toneOnHold
|
1314
|
+
@toneOnClosure = toneOnClosure
|
1315
|
+
@toneOnCallWaiting = toneOnCallWaiting
|
1316
1316
|
end
|
1317
1317
|
end
|
1318
1318
|
|
@@ -1342,12 +1342,12 @@ class TelephonyDdiInfoReturn
|
|
1342
1342
|
@@schema_element = [["number", ["SOAP::SOAPString", XSD::QName.new(nil, "number")]], ["noReplyTimer", ["SOAP::SOAPInt", XSD::QName.new(nil, "noReplyTimer")]], ["logged", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "logged")]]]
|
1343
1343
|
|
1344
1344
|
attr_accessor :number
|
1345
|
-
attr_accessor :
|
1345
|
+
attr_accessor :noReplyTimer
|
1346
1346
|
attr_accessor :logged
|
1347
1347
|
|
1348
|
-
def initialize(number = nil,
|
1348
|
+
def initialize(number = nil, noReplyTimer = nil, logged = nil)
|
1349
1349
|
@number = number
|
1350
|
-
@
|
1350
|
+
@noReplyTimer = noReplyTimer
|
1351
1351
|
@logged = logged
|
1352
1352
|
end
|
1353
1353
|
end
|
@@ -1361,27 +1361,27 @@ class TelephonyHuntingInfoReturn
|
|
1361
1361
|
attr_accessor :members
|
1362
1362
|
attr_accessor :strategy
|
1363
1363
|
attr_accessor :pattern
|
1364
|
-
attr_accessor :
|
1365
|
-
attr_accessor :
|
1366
|
-
attr_accessor :
|
1367
|
-
attr_accessor :
|
1368
|
-
attr_accessor :
|
1369
|
-
attr_accessor :
|
1370
|
-
attr_accessor :
|
1371
|
-
attr_accessor :
|
1372
|
-
|
1373
|
-
def initialize(members = nil, strategy = nil, pattern = nil,
|
1364
|
+
attr_accessor :onHoldTimer
|
1365
|
+
attr_accessor :queueSize
|
1366
|
+
attr_accessor :numberOfCalls
|
1367
|
+
attr_accessor :noReplyTimer
|
1368
|
+
attr_accessor :mainVoicemail
|
1369
|
+
attr_accessor :toneOnHold
|
1370
|
+
attr_accessor :toneRingback
|
1371
|
+
attr_accessor :toneOnClosure
|
1372
|
+
|
1373
|
+
def initialize(members = nil, strategy = nil, pattern = nil, onHoldTimer = nil, queueSize = nil, numberOfCalls = nil, noReplyTimer = nil, mainVoicemail = nil, toneOnHold = nil, toneRingback = nil, toneOnClosure = nil)
|
1374
1374
|
@members = members
|
1375
1375
|
@strategy = strategy
|
1376
1376
|
@pattern = pattern
|
1377
|
-
@
|
1378
|
-
@
|
1379
|
-
@
|
1380
|
-
@
|
1381
|
-
@
|
1382
|
-
@
|
1383
|
-
@
|
1384
|
-
@
|
1377
|
+
@onHoldTimer = onHoldTimer
|
1378
|
+
@queueSize = queueSize
|
1379
|
+
@numberOfCalls = numberOfCalls
|
1380
|
+
@noReplyTimer = noReplyTimer
|
1381
|
+
@mainVoicemail = mainVoicemail
|
1382
|
+
@toneOnHold = toneOnHold
|
1383
|
+
@toneRingback = toneRingback
|
1384
|
+
@toneOnClosure = toneOnClosure
|
1385
1385
|
end
|
1386
1386
|
end
|
1387
1387
|
|
@@ -1394,13 +1394,13 @@ class TelephonyHuntingInfoMemberStruct
|
|
1394
1394
|
attr_accessor :number
|
1395
1395
|
attr_accessor :status
|
1396
1396
|
attr_accessor :logged
|
1397
|
-
attr_accessor :
|
1397
|
+
attr_accessor :noReplyTimer
|
1398
1398
|
|
1399
|
-
def initialize(number = nil, status = nil, logged = nil,
|
1399
|
+
def initialize(number = nil, status = nil, logged = nil, noReplyTimer = nil)
|
1400
1400
|
@number = number
|
1401
1401
|
@status = status
|
1402
1402
|
@logged = logged
|
1403
|
-
@
|
1403
|
+
@noReplyTimer = noReplyTimer
|
1404
1404
|
end
|
1405
1405
|
end
|
1406
1406
|
|
@@ -1411,11 +1411,11 @@ class TelephonyScreenStruct
|
|
1411
1411
|
@@schema_element = [["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["numberScreen", ["SOAP::SOAPString", XSD::QName.new(nil, "numberScreen")]]]
|
1412
1412
|
|
1413
1413
|
attr_accessor :status
|
1414
|
-
attr_accessor :
|
1414
|
+
attr_accessor :numberScreen
|
1415
1415
|
|
1416
|
-
def initialize(status = nil,
|
1416
|
+
def initialize(status = nil, numberScreen = nil)
|
1417
1417
|
@status = status
|
1418
|
-
@
|
1418
|
+
@numberScreen = numberScreen
|
1419
1419
|
end
|
1420
1420
|
end
|
1421
1421
|
|
@@ -1425,14 +1425,14 @@ class TelephonyScreenBlackWhiteChoiceReturn
|
|
1425
1425
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1426
1426
|
@@schema_element = [["incomingScreenlist", ["SOAP::SOAPString", XSD::QName.new(nil, "incomingScreenlist")]], ["outgoingScreenlist", ["SOAP::SOAPString", XSD::QName.new(nil, "outgoingScreenlist")]], ["outgoingCodeUnlock", ["SOAP::SOAPString", XSD::QName.new(nil, "outgoingCodeUnlock")]]]
|
1427
1427
|
|
1428
|
-
attr_accessor :
|
1429
|
-
attr_accessor :
|
1430
|
-
attr_accessor :
|
1428
|
+
attr_accessor :incomingScreenlist
|
1429
|
+
attr_accessor :outgoingScreenlist
|
1430
|
+
attr_accessor :outgoingCodeUnlock
|
1431
1431
|
|
1432
|
-
def initialize(
|
1433
|
-
@
|
1434
|
-
@
|
1435
|
-
@
|
1432
|
+
def initialize(incomingScreenlist = nil, outgoingScreenlist = nil, outgoingCodeUnlock = nil)
|
1433
|
+
@incomingScreenlist = incomingScreenlist
|
1434
|
+
@outgoingScreenlist = outgoingScreenlist
|
1435
|
+
@outgoingCodeUnlock = outgoingCodeUnlock
|
1436
1436
|
end
|
1437
1437
|
end
|
1438
1438
|
|
@@ -1443,15 +1443,15 @@ class TelephonyHuntingGenericScreenStruct
|
|
1443
1443
|
@@schema_element = [["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["timeEnd", ["SOAP::SOAPString", XSD::QName.new(nil, "timeEnd")]], ["timeStart", ["SOAP::SOAPString", XSD::QName.new(nil, "timeStart")]], ["dayType", ["SOAP::SOAPString", XSD::QName.new(nil, "dayType")]]]
|
1444
1444
|
|
1445
1445
|
attr_accessor :status
|
1446
|
-
attr_accessor :
|
1447
|
-
attr_accessor :
|
1448
|
-
attr_accessor :
|
1446
|
+
attr_accessor :timeEnd
|
1447
|
+
attr_accessor :timeStart
|
1448
|
+
attr_accessor :dayType
|
1449
1449
|
|
1450
|
-
def initialize(status = nil,
|
1450
|
+
def initialize(status = nil, timeEnd = nil, timeStart = nil, dayType = nil)
|
1451
1451
|
@status = status
|
1452
|
-
@
|
1453
|
-
@
|
1454
|
-
@
|
1452
|
+
@timeEnd = timeEnd
|
1453
|
+
@timeStart = timeStart
|
1454
|
+
@dayType = dayType
|
1455
1455
|
end
|
1456
1456
|
end
|
1457
1457
|
|
@@ -1461,12 +1461,12 @@ class TelephonyHuntingGenericScreenOptionsReturn
|
|
1461
1461
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1462
1462
|
@@schema_element = [["forwardUnconditionalNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "forwardUnconditionalNumber")]], ["mainVoicemail", ["SOAP::SOAPString", XSD::QName.new(nil, "mainVoicemail")]]]
|
1463
1463
|
|
1464
|
-
attr_accessor :
|
1465
|
-
attr_accessor :
|
1464
|
+
attr_accessor :forwardUnconditionalNumber
|
1465
|
+
attr_accessor :mainVoicemail
|
1466
1466
|
|
1467
|
-
def initialize(
|
1468
|
-
@
|
1469
|
-
@
|
1467
|
+
def initialize(forwardUnconditionalNumber = nil, mainVoicemail = nil)
|
1468
|
+
@forwardUnconditionalNumber = forwardUnconditionalNumber
|
1469
|
+
@mainVoicemail = mainVoicemail
|
1470
1470
|
end
|
1471
1471
|
end
|
1472
1472
|
|
@@ -1479,16 +1479,16 @@ class TelephonyPlugAndPhoneInfoReturn
|
|
1479
1479
|
attr_accessor :brand
|
1480
1480
|
attr_accessor :protocol
|
1481
1481
|
attr_accessor :mac
|
1482
|
-
attr_accessor :
|
1483
|
-
attr_accessor :
|
1482
|
+
attr_accessor :gfKeyCount
|
1483
|
+
attr_accessor :pbLevel
|
1484
1484
|
attr_accessor :skin
|
1485
1485
|
|
1486
|
-
def initialize(brand = nil, protocol = nil, mac = nil,
|
1486
|
+
def initialize(brand = nil, protocol = nil, mac = nil, gfKeyCount = nil, pbLevel = nil, skin = nil)
|
1487
1487
|
@brand = brand
|
1488
1488
|
@protocol = protocol
|
1489
1489
|
@mac = mac
|
1490
|
-
@
|
1491
|
-
@
|
1490
|
+
@gfKeyCount = gfKeyCount
|
1491
|
+
@pbLevel = pbLevel
|
1492
1492
|
@skin = skin
|
1493
1493
|
end
|
1494
1494
|
end
|
@@ -1699,7 +1699,7 @@ class NicInfoReturn
|
|
1699
1699
|
attr_accessor :name
|
1700
1700
|
attr_accessor :firstname
|
1701
1701
|
attr_accessor :email
|
1702
|
-
attr_accessor :
|
1702
|
+
attr_accessor :spareEmail
|
1703
1703
|
attr_accessor :phone
|
1704
1704
|
attr_accessor :fax
|
1705
1705
|
attr_accessor :address
|
@@ -1710,18 +1710,18 @@ class NicInfoReturn
|
|
1710
1710
|
attr_accessor :language
|
1711
1711
|
attr_accessor :legalform
|
1712
1712
|
attr_accessor :organisation
|
1713
|
-
attr_accessor :
|
1714
|
-
attr_accessor :
|
1713
|
+
attr_accessor :legalName
|
1714
|
+
attr_accessor :legalNumber
|
1715
1715
|
attr_accessor :vat
|
1716
|
-
attr_accessor :
|
1717
|
-
attr_accessor :
|
1716
|
+
attr_accessor :isOwner
|
1717
|
+
attr_accessor :billingCountry
|
1718
1718
|
|
1719
|
-
def initialize(nic = nil, name = nil, firstname = nil, email = nil,
|
1719
|
+
def initialize(nic = nil, name = nil, firstname = nil, email = nil, spareEmail = nil, phone = nil, fax = nil, address = nil, city = nil, area = nil, zip = nil, country = nil, language = nil, legalform = nil, organisation = nil, legalName = nil, legalNumber = nil, vat = nil, isOwner = nil, billingCountry = nil)
|
1720
1720
|
@nic = nic
|
1721
1721
|
@name = name
|
1722
1722
|
@firstname = firstname
|
1723
1723
|
@email = email
|
1724
|
-
@
|
1724
|
+
@spareEmail = spareEmail
|
1725
1725
|
@phone = phone
|
1726
1726
|
@fax = fax
|
1727
1727
|
@address = address
|
@@ -1732,11 +1732,11 @@ class NicInfoReturn
|
|
1732
1732
|
@language = language
|
1733
1733
|
@legalform = legalform
|
1734
1734
|
@organisation = organisation
|
1735
|
-
@
|
1736
|
-
@
|
1735
|
+
@legalName = legalName
|
1736
|
+
@legalNumber = legalNumber
|
1737
1737
|
@vat = vat
|
1738
|
-
@
|
1739
|
-
@
|
1738
|
+
@isOwner = isOwner
|
1739
|
+
@billingCountry = billingCountry
|
1740
1740
|
end
|
1741
1741
|
end
|
1742
1742
|
|
@@ -1786,19 +1786,19 @@ class RpsGetIOStatsDetailStruct
|
|
1786
1786
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1787
1787
|
@@schema_element = [["serviceTime", ["RpsGetIOStatsDetailRawStruct", XSD::QName.new(nil, "serviceTime")]], ["ioRequests", ["RpsGetIOStatsDetailIoRequestsStruct", XSD::QName.new(nil, "IoRequests")]]]
|
1788
1788
|
|
1789
|
-
attr_accessor :
|
1789
|
+
attr_accessor :serviceTime
|
1790
1790
|
|
1791
1791
|
def IoRequests
|
1792
1792
|
@ioRequests
|
1793
1793
|
end
|
1794
1794
|
|
1795
1795
|
def IoRequests=(value)
|
1796
|
-
@
|
1796
|
+
@ioRequests = value
|
1797
1797
|
end
|
1798
1798
|
|
1799
|
-
def initialize(
|
1800
|
-
@
|
1801
|
-
@
|
1799
|
+
def initialize(serviceTime = nil, ioRequests = nil)
|
1800
|
+
@serviceTime = serviceTime
|
1801
|
+
@ioRequests = ioRequests
|
1802
1802
|
end
|
1803
1803
|
end
|
1804
1804
|
|
@@ -1837,25 +1837,25 @@ class RpsMigrationStatusReturn
|
|
1837
1837
|
@@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["progressStatus", ["SOAP::SOAPInt", XSD::QName.new(nil, "progressStatus")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["logicalRpsName", ["SOAP::SOAPString", XSD::QName.new(nil, "logicalRpsName")]], ["physicalRpsTo", ["SOAP::SOAPString", XSD::QName.new(nil, "physicalRpsTo")]], ["todoDate", ["SOAP::SOAPString", XSD::QName.new(nil, "todoDate")]], ["doingDate", ["SOAP::SOAPString", XSD::QName.new(nil, "doingDate")]], ["doneDate", ["SOAP::SOAPString", XSD::QName.new(nil, "doneDate")]], ["errorMessage", ["SOAP::SOAPString", XSD::QName.new(nil, "errorMessage")]]]
|
1838
1838
|
|
1839
1839
|
attr_accessor :id
|
1840
|
-
attr_accessor :
|
1840
|
+
attr_accessor :progressStatus
|
1841
1841
|
attr_accessor :status
|
1842
|
-
attr_accessor :
|
1843
|
-
attr_accessor :
|
1844
|
-
attr_accessor :
|
1845
|
-
attr_accessor :
|
1846
|
-
attr_accessor :
|
1847
|
-
attr_accessor :
|
1848
|
-
|
1849
|
-
def initialize(id = nil,
|
1842
|
+
attr_accessor :logicalRpsName
|
1843
|
+
attr_accessor :physicalRpsTo
|
1844
|
+
attr_accessor :todoDate
|
1845
|
+
attr_accessor :doingDate
|
1846
|
+
attr_accessor :doneDate
|
1847
|
+
attr_accessor :errorMessage
|
1848
|
+
|
1849
|
+
def initialize(id = nil, progressStatus = nil, status = nil, logicalRpsName = nil, physicalRpsTo = nil, todoDate = nil, doingDate = nil, doneDate = nil, errorMessage = nil)
|
1850
1850
|
@id = id
|
1851
|
-
@
|
1851
|
+
@progressStatus = progressStatus
|
1852
1852
|
@status = status
|
1853
|
-
@
|
1854
|
-
@
|
1855
|
-
@
|
1856
|
-
@
|
1857
|
-
@
|
1858
|
-
@
|
1853
|
+
@logicalRpsName = logicalRpsName
|
1854
|
+
@physicalRpsTo = physicalRpsTo
|
1855
|
+
@todoDate = todoDate
|
1856
|
+
@doingDate = doingDate
|
1857
|
+
@doneDate = doneDate
|
1858
|
+
@errorMessage = errorMessage
|
1859
1859
|
end
|
1860
1860
|
end
|
1861
1861
|
|
@@ -1903,18 +1903,18 @@ class OrderStruct
|
|
1903
1903
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1904
1904
|
@@schema_element = [["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["orderPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "orderPassword")]], ["orderUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "orderUrl")]], ["isPaid", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "isPaid")]], ["paymentStatus", ["SOAP::SOAPString", XSD::QName.new(nil, "paymentStatus")]]]
|
1905
1905
|
|
1906
|
-
attr_accessor :
|
1907
|
-
attr_accessor :
|
1908
|
-
attr_accessor :
|
1909
|
-
attr_accessor :
|
1910
|
-
attr_accessor :
|
1906
|
+
attr_accessor :orderId
|
1907
|
+
attr_accessor :orderPassword
|
1908
|
+
attr_accessor :orderUrl
|
1909
|
+
attr_accessor :isPaid
|
1910
|
+
attr_accessor :paymentStatus
|
1911
1911
|
|
1912
|
-
def initialize(
|
1913
|
-
@
|
1914
|
-
@
|
1915
|
-
@
|
1916
|
-
@
|
1917
|
-
@
|
1912
|
+
def initialize(orderId = nil, orderPassword = nil, orderUrl = nil, isPaid = nil, paymentStatus = nil)
|
1913
|
+
@orderId = orderId
|
1914
|
+
@orderPassword = orderPassword
|
1915
|
+
@orderUrl = orderUrl
|
1916
|
+
@isPaid = isPaid
|
1917
|
+
@paymentStatus = paymentStatus
|
1918
1918
|
end
|
1919
1919
|
end
|
1920
1920
|
|
@@ -1931,11 +1931,11 @@ class DedicatedNetworkInterfaceStruct
|
|
1931
1931
|
attr_accessor :switch
|
1932
1932
|
attr_accessor :icmp_drop
|
1933
1933
|
attr_accessor :failover
|
1934
|
-
attr_accessor :
|
1934
|
+
attr_accessor :routedTo
|
1935
1935
|
attr_accessor :ssl
|
1936
1936
|
attr_accessor :country
|
1937
1937
|
|
1938
|
-
def initialize(reverse = nil, ip = nil, ipv6 = nil, mac = nil, switch = nil, icmp_drop = nil, failover = nil,
|
1938
|
+
def initialize(reverse = nil, ip = nil, ipv6 = nil, mac = nil, switch = nil, icmp_drop = nil, failover = nil, routedTo = nil, ssl = nil, country = nil)
|
1939
1939
|
@reverse = reverse
|
1940
1940
|
@ip = ip
|
1941
1941
|
@ipv6 = ipv6
|
@@ -1943,7 +1943,7 @@ class DedicatedNetworkInterfaceStruct
|
|
1943
1943
|
@switch = switch
|
1944
1944
|
@icmp_drop = icmp_drop
|
1945
1945
|
@failover = failover
|
1946
|
-
@
|
1946
|
+
@routedTo = routedTo
|
1947
1947
|
@ssl = ssl
|
1948
1948
|
@country = country
|
1949
1949
|
end
|
@@ -1962,7 +1962,7 @@ class DedicatedNetworkTrafficDetailsStruct
|
|
1962
1962
|
end
|
1963
1963
|
|
1964
1964
|
def in=(value)
|
1965
|
-
@v_in =
|
1965
|
+
@v_in = value
|
1966
1966
|
end
|
1967
1967
|
|
1968
1968
|
def initialize(v_in = nil, out = nil)
|
@@ -1977,20 +1977,20 @@ class DedicatedNetworkTrafficStruct
|
|
1977
1977
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
1978
1978
|
@@schema_element = [["lastUpdate", ["SOAP::SOAPString", XSD::QName.new(nil, "lastUpdate")]], ["currentQuota", ["DedicatedNetworkTrafficDetailsStruct", XSD::QName.new(nil, "currentQuota")]], ["monthlyTraffic", ["DedicatedNetworkTrafficDetailsStruct", XSD::QName.new(nil, "monthlyTraffic")]], ["nextTrafficReset", ["SOAP::SOAPString", XSD::QName.new(nil, "nextTrafficReset")]], ["monthlyQuota", ["SOAP::SOAPString", XSD::QName.new(nil, "monthlyQuota")]], ["nextQuotaReset", ["SOAP::SOAPString", XSD::QName.new(nil, "nextQuotaReset")]]]
|
1979
1979
|
|
1980
|
-
attr_accessor :
|
1981
|
-
attr_accessor :
|
1982
|
-
attr_accessor :
|
1983
|
-
attr_accessor :
|
1984
|
-
attr_accessor :
|
1985
|
-
attr_accessor :
|
1980
|
+
attr_accessor :lastUpdate
|
1981
|
+
attr_accessor :currentQuota
|
1982
|
+
attr_accessor :monthlyTraffic
|
1983
|
+
attr_accessor :nextTrafficReset
|
1984
|
+
attr_accessor :monthlyQuota
|
1985
|
+
attr_accessor :nextQuotaReset
|
1986
1986
|
|
1987
|
-
def initialize(
|
1988
|
-
@
|
1989
|
-
@
|
1990
|
-
@
|
1991
|
-
@
|
1992
|
-
@
|
1993
|
-
@
|
1987
|
+
def initialize(lastUpdate = nil, currentQuota = nil, monthlyTraffic = nil, nextTrafficReset = nil, monthlyQuota = nil, nextQuotaReset = nil)
|
1988
|
+
@lastUpdate = lastUpdate
|
1989
|
+
@currentQuota = currentQuota
|
1990
|
+
@monthlyTraffic = monthlyTraffic
|
1991
|
+
@nextTrafficReset = nextTrafficReset
|
1992
|
+
@monthlyQuota = monthlyQuota
|
1993
|
+
@nextQuotaReset = nextQuotaReset
|
1994
1994
|
end
|
1995
1995
|
end
|
1996
1996
|
|
@@ -2004,21 +2004,21 @@ class DedicatedNetworkStruct
|
|
2004
2004
|
attr_accessor :priority
|
2005
2005
|
attr_accessor :connexion
|
2006
2006
|
attr_accessor :bandwidth
|
2007
|
-
attr_accessor :
|
2008
|
-
attr_accessor :
|
2009
|
-
attr_accessor :
|
2007
|
+
attr_accessor :bandwidthOvhToOvh
|
2008
|
+
attr_accessor :bandwidthOvhToInternet
|
2009
|
+
attr_accessor :bandwidthInternetToOvh
|
2010
2010
|
attr_accessor :over
|
2011
2011
|
attr_accessor :interfaces
|
2012
2012
|
attr_accessor :traffic
|
2013
2013
|
|
2014
|
-
def initialize(type = nil, priority = nil, connexion = nil, bandwidth = nil,
|
2014
|
+
def initialize(type = nil, priority = nil, connexion = nil, bandwidth = nil, bandwidthOvhToOvh = nil, bandwidthOvhToInternet = nil, bandwidthInternetToOvh = nil, over = nil, interfaces = nil, traffic = nil)
|
2015
2015
|
@type = type
|
2016
2016
|
@priority = priority
|
2017
2017
|
@connexion = connexion
|
2018
2018
|
@bandwidth = bandwidth
|
2019
|
-
@
|
2020
|
-
@
|
2021
|
-
@
|
2019
|
+
@bandwidthOvhToOvh = bandwidthOvhToOvh
|
2020
|
+
@bandwidthOvhToInternet = bandwidthOvhToInternet
|
2021
|
+
@bandwidthInternetToOvh = bandwidthInternetToOvh
|
2022
2022
|
@over = over
|
2023
2023
|
@interfaces = interfaces
|
2024
2024
|
@traffic = traffic
|
@@ -2031,21 +2031,21 @@ class DedicatedCapabilityStruct
|
|
2031
2031
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
2032
2032
|
@@schema_element = [["backupFtp", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupFtp")]], ["backupFtpServer", ["SOAP::SOAPString", XSD::QName.new(nil, "backupFtpServer")]], ["allocationBlockIp", ["SOAP::SOAPInt", XSD::QName.new(nil, "allocationBlockIp")]], ["additionalIp", ["SOAP::SOAPInt", XSD::QName.new(nil, "additionalIp")]], ["rootDevice", ["SOAP::SOAPString", XSD::QName.new(nil, "rootDevice")]], ["diskSize", ["SOAP::SOAPInt", XSD::QName.new(nil, "diskSize")]], ["tuning", ["SOAP::SOAPInt", XSD::QName.new(nil, "tuning")]]]
|
2033
2033
|
|
2034
|
-
attr_accessor :
|
2035
|
-
attr_accessor :
|
2036
|
-
attr_accessor :
|
2037
|
-
attr_accessor :
|
2038
|
-
attr_accessor :
|
2039
|
-
attr_accessor :
|
2034
|
+
attr_accessor :backupFtp
|
2035
|
+
attr_accessor :backupFtpServer
|
2036
|
+
attr_accessor :allocationBlockIp
|
2037
|
+
attr_accessor :additionalIp
|
2038
|
+
attr_accessor :rootDevice
|
2039
|
+
attr_accessor :diskSize
|
2040
2040
|
attr_accessor :tuning
|
2041
2041
|
|
2042
|
-
def initialize(
|
2043
|
-
@
|
2044
|
-
@
|
2045
|
-
@
|
2046
|
-
@
|
2047
|
-
@
|
2048
|
-
@
|
2042
|
+
def initialize(backupFtp = nil, backupFtpServer = nil, allocationBlockIp = nil, additionalIp = nil, rootDevice = nil, diskSize = nil, tuning = nil)
|
2043
|
+
@backupFtp = backupFtp
|
2044
|
+
@backupFtpServer = backupFtpServer
|
2045
|
+
@allocationBlockIp = allocationBlockIp
|
2046
|
+
@additionalIp = additionalIp
|
2047
|
+
@rootDevice = rootDevice
|
2048
|
+
@diskSize = diskSize
|
2049
2049
|
@tuning = tuning
|
2050
2050
|
end
|
2051
2051
|
end
|
@@ -2078,29 +2078,29 @@ class DedicatedInfoReturn
|
|
2078
2078
|
attr_accessor :hostname
|
2079
2079
|
attr_accessor :datacenter
|
2080
2080
|
attr_accessor :os
|
2081
|
-
attr_accessor :
|
2082
|
-
attr_accessor :
|
2083
|
-
attr_accessor :
|
2081
|
+
attr_accessor :isKimSufi
|
2082
|
+
attr_accessor :isRPS
|
2083
|
+
attr_accessor :isHG
|
2084
2084
|
attr_accessor :num
|
2085
2085
|
attr_accessor :rack
|
2086
|
-
attr_accessor :
|
2086
|
+
attr_accessor :countryBilling
|
2087
2087
|
attr_accessor :network
|
2088
2088
|
attr_accessor :capability
|
2089
|
-
attr_accessor :
|
2089
|
+
attr_accessor :freeDom
|
2090
2090
|
|
2091
|
-
def initialize(hostname = nil, datacenter = nil, os = nil,
|
2091
|
+
def initialize(hostname = nil, datacenter = nil, os = nil, isKimSufi = nil, isRPS = nil, isHG = nil, num = nil, rack = nil, countryBilling = nil, network = nil, capability = nil, freeDom = nil)
|
2092
2092
|
@hostname = hostname
|
2093
2093
|
@datacenter = datacenter
|
2094
2094
|
@os = os
|
2095
|
-
@
|
2096
|
-
@
|
2097
|
-
@
|
2095
|
+
@isKimSufi = isKimSufi
|
2096
|
+
@isRPS = isRPS
|
2097
|
+
@isHG = isHG
|
2098
2098
|
@num = num
|
2099
2099
|
@rack = rack
|
2100
|
-
@
|
2100
|
+
@countryBilling = countryBilling
|
2101
2101
|
@network = network
|
2102
2102
|
@capability = capability
|
2103
|
-
@
|
2103
|
+
@freeDom = freeDom
|
2104
2104
|
end
|
2105
2105
|
end
|
2106
2106
|
|
@@ -2291,7 +2291,7 @@ class DedicatedMrtgInfoStruct
|
|
2291
2291
|
end
|
2292
2292
|
|
2293
2293
|
def in=(value)
|
2294
|
-
@v_in =
|
2294
|
+
@v_in = value
|
2295
2295
|
end
|
2296
2296
|
|
2297
2297
|
def initialize(v_in = nil, out = nil)
|
@@ -2332,7 +2332,7 @@ class DedicatedHardRebootStatusReturn
|
|
2332
2332
|
end
|
2333
2333
|
|
2334
2334
|
def end=(value)
|
2335
|
-
@v_end =
|
2335
|
+
@v_end = value
|
2336
2336
|
end
|
2337
2337
|
|
2338
2338
|
def initialize(start = nil, v_end = nil)
|
@@ -2367,13 +2367,13 @@ class DedicatedFailoverStruct
|
|
2367
2367
|
@@schema_element = [["ip", ["SOAP::SOAPString", XSD::QName.new(nil, "ip")]], ["routedTo", ["SOAP::SOAPString", XSD::QName.new(nil, "routedTo")]], ["comment", ["SOAP::SOAPString", XSD::QName.new(nil, "comment")]], ["ssl", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ssl")]]]
|
2368
2368
|
|
2369
2369
|
attr_accessor :ip
|
2370
|
-
attr_accessor :
|
2370
|
+
attr_accessor :routedTo
|
2371
2371
|
attr_accessor :comment
|
2372
2372
|
attr_accessor :ssl
|
2373
2373
|
|
2374
|
-
def initialize(ip = nil,
|
2374
|
+
def initialize(ip = nil, routedTo = nil, comment = nil, ssl = nil)
|
2375
2375
|
@ip = ip
|
2376
|
-
@
|
2376
|
+
@routedTo = routedTo
|
2377
2377
|
@comment = comment
|
2378
2378
|
@ssl = ssl
|
2379
2379
|
end
|
@@ -2387,22 +2387,22 @@ class DedicatedFailoverRipeStruct
|
|
2387
2387
|
|
2388
2388
|
attr_accessor :country
|
2389
2389
|
attr_accessor :netname
|
2390
|
-
attr_accessor :
|
2391
|
-
attr_accessor :
|
2390
|
+
attr_accessor :routedTo
|
2391
|
+
attr_accessor :routingStatus
|
2392
2392
|
attr_accessor :status
|
2393
|
-
attr_accessor :
|
2394
|
-
attr_accessor :
|
2395
|
-
attr_accessor :
|
2393
|
+
attr_accessor :addressesNumber
|
2394
|
+
attr_accessor :networkIp
|
2395
|
+
attr_accessor :isExclude
|
2396
2396
|
|
2397
|
-
def initialize(country = nil, netname = nil,
|
2397
|
+
def initialize(country = nil, netname = nil, routedTo = nil, routingStatus = nil, status = nil, addressesNumber = nil, networkIp = nil, isExclude = nil)
|
2398
2398
|
@country = country
|
2399
2399
|
@netname = netname
|
2400
|
-
@
|
2401
|
-
@
|
2400
|
+
@routedTo = routedTo
|
2401
|
+
@routingStatus = routingStatus
|
2402
2402
|
@status = status
|
2403
|
-
@
|
2404
|
-
@
|
2405
|
-
@
|
2403
|
+
@addressesNumber = addressesNumber
|
2404
|
+
@networkIp = networkIp
|
2405
|
+
@isExclude = isExclude
|
2406
2406
|
end
|
2407
2407
|
end
|
2408
2408
|
|
@@ -2412,16 +2412,16 @@ class DedicatedFilterIrcRuleStruct
|
|
2412
2412
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
2413
2413
|
@@schema_element = [["fromIp", ["SOAP::SOAPString", XSD::QName.new(nil, "fromIp")]], ["fromPort", ["SOAP::SOAPString", XSD::QName.new(nil, "fromPort")]], ["toIp", ["SOAP::SOAPString", XSD::QName.new(nil, "toIp")]], ["toPort", ["SOAP::SOAPString", XSD::QName.new(nil, "toPort")]]]
|
2414
2414
|
|
2415
|
-
attr_accessor :
|
2416
|
-
attr_accessor :
|
2417
|
-
attr_accessor :
|
2418
|
-
attr_accessor :
|
2415
|
+
attr_accessor :fromIp
|
2416
|
+
attr_accessor :fromPort
|
2417
|
+
attr_accessor :toIp
|
2418
|
+
attr_accessor :toPort
|
2419
2419
|
|
2420
|
-
def initialize(
|
2421
|
-
@
|
2422
|
-
@
|
2423
|
-
@
|
2424
|
-
@
|
2420
|
+
def initialize(fromIp = nil, fromPort = nil, toIp = nil, toPort = nil)
|
2421
|
+
@fromIp = fromIp
|
2422
|
+
@fromPort = fromPort
|
2423
|
+
@toIp = toIp
|
2424
|
+
@toPort = toPort
|
2425
2425
|
end
|
2426
2426
|
end
|
2427
2427
|
|
@@ -2431,14 +2431,14 @@ class DedicatedBackupFtpInfoReturn
|
|
2431
2431
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
2432
2432
|
@@schema_element = [["ftpBackupName", ["SOAP::SOAPString", XSD::QName.new(nil, "ftpBackupName")]], ["quotaUsed", ["SOAP::SOAPInt", XSD::QName.new(nil, "quotaUsed")]], ["quotaSize", ["SOAP::SOAPInt", XSD::QName.new(nil, "quotaSize")]]]
|
2433
2433
|
|
2434
|
-
attr_accessor :
|
2435
|
-
attr_accessor :
|
2436
|
-
attr_accessor :
|
2434
|
+
attr_accessor :ftpBackupName
|
2435
|
+
attr_accessor :quotaUsed
|
2436
|
+
attr_accessor :quotaSize
|
2437
2437
|
|
2438
|
-
def initialize(
|
2439
|
-
@
|
2440
|
-
@
|
2441
|
-
@
|
2438
|
+
def initialize(ftpBackupName = nil, quotaUsed = nil, quotaSize = nil)
|
2439
|
+
@ftpBackupName = ftpBackupName
|
2440
|
+
@quotaUsed = quotaUsed
|
2441
|
+
@quotaSize = quotaSize
|
2442
2442
|
end
|
2443
2443
|
end
|
2444
2444
|
|
@@ -2448,42 +2448,42 @@ class DedicatedBackupListStruct
|
|
2448
2448
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
2449
2449
|
@@schema_element = [["backupId", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupId")]], ["backupFeature", ["SOAP::SOAPString", XSD::QName.new(nil, "backupFeature")]], ["enable", ["SOAP::SOAPInt", XSD::QName.new(nil, "enable")]], ["language", ["SOAP::SOAPString", XSD::QName.new(nil, "language")]], ["backupSize", ["SOAP::SOAPString", XSD::QName.new(nil, "backupSize")]], ["sshPort", ["SOAP::SOAPInt", XSD::QName.new(nil, "sshPort")]], ["percentUsed", ["SOAP::SOAPString", XSD::QName.new(nil, "percentUsed")]], ["hostname", ["SOAP::SOAPString", XSD::QName.new(nil, "hostname")]], ["backupName", ["SOAP::SOAPString", XSD::QName.new(nil, "backupName")]], ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]], ["snapshotNumber", ["SOAP::SOAPInt", XSD::QName.new(nil, "snapshotNumber")]], ["superBackupName", ["SOAP::SOAPString", XSD::QName.new(nil, "superBackupName")]], ["backupType", ["SOAP::SOAPString", XSD::QName.new(nil, "backupType")]], ["src", ["MyArrayOfStringType", XSD::QName.new(nil, "src")]], ["include", ["MyArrayOfStringType", XSD::QName.new(nil, "include")]], ["exclude", ["MyArrayOfStringType", XSD::QName.new(nil, "exclude")]], ["excludeHard", ["MyArrayOfStringType", XSD::QName.new(nil, "excludeHard")]]]
|
2450
2450
|
|
2451
|
-
attr_accessor :
|
2452
|
-
attr_accessor :
|
2451
|
+
attr_accessor :backupId
|
2452
|
+
attr_accessor :backupFeature
|
2453
2453
|
attr_accessor :enable
|
2454
2454
|
attr_accessor :language
|
2455
|
-
attr_accessor :
|
2456
|
-
attr_accessor :
|
2457
|
-
attr_accessor :
|
2455
|
+
attr_accessor :backupSize
|
2456
|
+
attr_accessor :sshPort
|
2457
|
+
attr_accessor :percentUsed
|
2458
2458
|
attr_accessor :hostname
|
2459
|
-
attr_accessor :
|
2459
|
+
attr_accessor :backupName
|
2460
2460
|
attr_accessor :email
|
2461
|
-
attr_accessor :
|
2462
|
-
attr_accessor :
|
2463
|
-
attr_accessor :
|
2461
|
+
attr_accessor :snapshotNumber
|
2462
|
+
attr_accessor :superBackupName
|
2463
|
+
attr_accessor :backupType
|
2464
2464
|
attr_accessor :src
|
2465
2465
|
attr_accessor :include
|
2466
2466
|
attr_accessor :exclude
|
2467
|
-
attr_accessor :
|
2467
|
+
attr_accessor :excludeHard
|
2468
2468
|
|
2469
|
-
def initialize(
|
2470
|
-
@
|
2471
|
-
@
|
2469
|
+
def initialize(backupId = nil, backupFeature = nil, enable = nil, language = nil, backupSize = nil, sshPort = nil, percentUsed = nil, hostname = nil, backupName = nil, email = nil, snapshotNumber = nil, superBackupName = nil, backupType = nil, src = nil, include = nil, exclude = nil, excludeHard = nil)
|
2470
|
+
@backupId = backupId
|
2471
|
+
@backupFeature = backupFeature
|
2472
2472
|
@enable = enable
|
2473
2473
|
@language = language
|
2474
|
-
@
|
2475
|
-
@
|
2476
|
-
@
|
2474
|
+
@backupSize = backupSize
|
2475
|
+
@sshPort = sshPort
|
2476
|
+
@percentUsed = percentUsed
|
2477
2477
|
@hostname = hostname
|
2478
|
-
@
|
2478
|
+
@backupName = backupName
|
2479
2479
|
@email = email
|
2480
|
-
@
|
2481
|
-
@
|
2482
|
-
@
|
2480
|
+
@snapshotNumber = snapshotNumber
|
2481
|
+
@superBackupName = superBackupName
|
2482
|
+
@backupType = backupType
|
2483
2483
|
@src = src
|
2484
2484
|
@include = include
|
2485
2485
|
@exclude = exclude
|
2486
|
-
@
|
2486
|
+
@excludeHard = excludeHard
|
2487
2487
|
end
|
2488
2488
|
end
|
2489
2489
|
|
@@ -2493,42 +2493,42 @@ class DedicatedBackupListReturn
|
|
2493
2493
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
2494
2494
|
@@schema_element = [["backupId", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupId")]], ["backupFeature", ["SOAP::SOAPString", XSD::QName.new(nil, "backupFeature")]], ["enable", ["SOAP::SOAPInt", XSD::QName.new(nil, "enable")]], ["language", ["SOAP::SOAPString", XSD::QName.new(nil, "language")]], ["backupSize", ["SOAP::SOAPString", XSD::QName.new(nil, "backupSize")]], ["sshPort", ["SOAP::SOAPInt", XSD::QName.new(nil, "sshPort")]], ["percentUsed", ["SOAP::SOAPString", XSD::QName.new(nil, "percentUsed")]], ["hostname", ["SOAP::SOAPString", XSD::QName.new(nil, "hostname")]], ["backupName", ["SOAP::SOAPString", XSD::QName.new(nil, "backupName")]], ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]], ["snapshotNumber", ["SOAP::SOAPInt", XSD::QName.new(nil, "snapshotNumber")]], ["superBackupName", ["SOAP::SOAPString", XSD::QName.new(nil, "superBackupName")]], ["backupType", ["SOAP::SOAPString", XSD::QName.new(nil, "backupType")]], ["src", ["MyArrayOfStringType", XSD::QName.new(nil, "src")]], ["include", ["MyArrayOfStringType", XSD::QName.new(nil, "include")]], ["exclude", ["MyArrayOfStringType", XSD::QName.new(nil, "exclude")]], ["excludeHard", ["MyArrayOfStringType", XSD::QName.new(nil, "excludeHard")]]]
|
2495
2495
|
|
2496
|
-
attr_accessor :
|
2497
|
-
attr_accessor :
|
2496
|
+
attr_accessor :backupId
|
2497
|
+
attr_accessor :backupFeature
|
2498
2498
|
attr_accessor :enable
|
2499
2499
|
attr_accessor :language
|
2500
|
-
attr_accessor :
|
2501
|
-
attr_accessor :
|
2502
|
-
attr_accessor :
|
2500
|
+
attr_accessor :backupSize
|
2501
|
+
attr_accessor :sshPort
|
2502
|
+
attr_accessor :percentUsed
|
2503
2503
|
attr_accessor :hostname
|
2504
|
-
attr_accessor :
|
2504
|
+
attr_accessor :backupName
|
2505
2505
|
attr_accessor :email
|
2506
|
-
attr_accessor :
|
2507
|
-
attr_accessor :
|
2508
|
-
attr_accessor :
|
2506
|
+
attr_accessor :snapshotNumber
|
2507
|
+
attr_accessor :superBackupName
|
2508
|
+
attr_accessor :backupType
|
2509
2509
|
attr_accessor :src
|
2510
2510
|
attr_accessor :include
|
2511
2511
|
attr_accessor :exclude
|
2512
|
-
attr_accessor :
|
2512
|
+
attr_accessor :excludeHard
|
2513
2513
|
|
2514
|
-
def initialize(
|
2515
|
-
@
|
2516
|
-
@
|
2514
|
+
def initialize(backupId = nil, backupFeature = nil, enable = nil, language = nil, backupSize = nil, sshPort = nil, percentUsed = nil, hostname = nil, backupName = nil, email = nil, snapshotNumber = nil, superBackupName = nil, backupType = nil, src = nil, include = nil, exclude = nil, excludeHard = nil)
|
2515
|
+
@backupId = backupId
|
2516
|
+
@backupFeature = backupFeature
|
2517
2517
|
@enable = enable
|
2518
2518
|
@language = language
|
2519
|
-
@
|
2520
|
-
@
|
2521
|
-
@
|
2519
|
+
@backupSize = backupSize
|
2520
|
+
@sshPort = sshPort
|
2521
|
+
@percentUsed = percentUsed
|
2522
2522
|
@hostname = hostname
|
2523
|
-
@
|
2523
|
+
@backupName = backupName
|
2524
2524
|
@email = email
|
2525
|
-
@
|
2526
|
-
@
|
2527
|
-
@
|
2525
|
+
@snapshotNumber = snapshotNumber
|
2526
|
+
@superBackupName = superBackupName
|
2527
|
+
@backupType = backupType
|
2528
2528
|
@src = src
|
2529
2529
|
@include = include
|
2530
2530
|
@exclude = exclude
|
2531
|
-
@
|
2531
|
+
@excludeHard = excludeHard
|
2532
2532
|
end
|
2533
2533
|
end
|
2534
2534
|
|
@@ -2539,17 +2539,17 @@ class DedicatedBackupDateStruct
|
|
2539
2539
|
@@schema_element = [["hour", ["SOAP::SOAPString", XSD::QName.new(nil, "hour")]], ["superBackupName", ["SOAP::SOAPString", XSD::QName.new(nil, "superBackupName")]], ["day", ["SOAP::SOAPString", XSD::QName.new(nil, "day")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["backupCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupCount")]]]
|
2540
2540
|
|
2541
2541
|
attr_accessor :hour
|
2542
|
-
attr_accessor :
|
2542
|
+
attr_accessor :superBackupName
|
2543
2543
|
attr_accessor :day
|
2544
2544
|
attr_accessor :id
|
2545
|
-
attr_accessor :
|
2545
|
+
attr_accessor :backupCount
|
2546
2546
|
|
2547
|
-
def initialize(hour = nil,
|
2547
|
+
def initialize(hour = nil, superBackupName = nil, day = nil, id = nil, backupCount = nil)
|
2548
2548
|
@hour = hour
|
2549
|
-
@
|
2549
|
+
@superBackupName = superBackupName
|
2550
2550
|
@day = day
|
2551
2551
|
@id = id
|
2552
|
-
@
|
2552
|
+
@backupCount = backupCount
|
2553
2553
|
end
|
2554
2554
|
end
|
2555
2555
|
|
@@ -2560,15 +2560,15 @@ class DedicatedBackupHistoStruct
|
|
2560
2560
|
@@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["backupId", ["SOAP::SOAPInt", XSD::QName.new(nil, "backupId")]], ["dateTime", ["SOAP::SOAPString", XSD::QName.new(nil, "dateTime")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["error", ["SOAP::SOAPString", XSD::QName.new(nil, "error")]]]
|
2561
2561
|
|
2562
2562
|
attr_accessor :id
|
2563
|
-
attr_accessor :
|
2564
|
-
attr_accessor :
|
2563
|
+
attr_accessor :backupId
|
2564
|
+
attr_accessor :dateTime
|
2565
2565
|
attr_accessor :status
|
2566
2566
|
attr_accessor :error
|
2567
2567
|
|
2568
|
-
def initialize(id = nil,
|
2568
|
+
def initialize(id = nil, backupId = nil, dateTime = nil, status = nil, error = nil)
|
2569
2569
|
@id = id
|
2570
|
-
@
|
2571
|
-
@
|
2570
|
+
@backupId = backupId
|
2571
|
+
@dateTime = dateTime
|
2572
2572
|
@status = status
|
2573
2573
|
@error = error
|
2574
2574
|
end
|
@@ -2595,14 +2595,14 @@ class DedicatedOrderStruct
|
|
2595
2595
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
2596
2596
|
@@schema_element = [["orderPassword", ["SOAP::SOAPString", XSD::QName.new(nil, "orderPassword")]], ["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["orderUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "orderUrl")]]]
|
2597
2597
|
|
2598
|
-
attr_accessor :
|
2599
|
-
attr_accessor :
|
2600
|
-
attr_accessor :
|
2598
|
+
attr_accessor :orderPassword
|
2599
|
+
attr_accessor :orderId
|
2600
|
+
attr_accessor :orderUrl
|
2601
2601
|
|
2602
|
-
def initialize(
|
2603
|
-
@
|
2604
|
-
@
|
2605
|
-
@
|
2602
|
+
def initialize(orderPassword = nil, orderId = nil, orderUrl = nil)
|
2603
|
+
@orderPassword = orderPassword
|
2604
|
+
@orderId = orderId
|
2605
|
+
@orderUrl = orderUrl
|
2606
2606
|
end
|
2607
2607
|
end
|
2608
2608
|
|
@@ -2613,23 +2613,23 @@ class DedicatedCapabilitiesStruct
|
|
2613
2613
|
@@schema_element = [["hostname", ["SOAP::SOAPString", XSD::QName.new(nil, "hostname")]], ["originalClassicFailover", ["SOAP::SOAPInt", XSD::QName.new(nil, "originalClassicFailover")]], ["originalFailoverRipe", ["SOAP::SOAPInt", XSD::QName.new(nil, "originalFailoverRipe")]], ["originalLoadBalancingSlot", ["SOAP::SOAPInt", XSD::QName.new(nil, "originalLoadBalancingSlot")]], ["additionalClassicFailover", ["SOAP::SOAPInt", XSD::QName.new(nil, "additionalClassicFailover")]], ["additionalFailoverRipe", ["SOAP::SOAPInt", XSD::QName.new(nil, "additionalFailoverRipe")]], ["usedClassicFailover", ["SOAP::SOAPInt", XSD::QName.new(nil, "usedClassicFailover")]], ["usedFailoverRipe", ["SOAP::SOAPInt", XSD::QName.new(nil, "usedFailoverRipe")]]]
|
2614
2614
|
|
2615
2615
|
attr_accessor :hostname
|
2616
|
-
attr_accessor :
|
2617
|
-
attr_accessor :
|
2618
|
-
attr_accessor :
|
2619
|
-
attr_accessor :
|
2620
|
-
attr_accessor :
|
2621
|
-
attr_accessor :
|
2622
|
-
attr_accessor :
|
2623
|
-
|
2624
|
-
def initialize(hostname = nil,
|
2616
|
+
attr_accessor :originalClassicFailover
|
2617
|
+
attr_accessor :originalFailoverRipe
|
2618
|
+
attr_accessor :originalLoadBalancingSlot
|
2619
|
+
attr_accessor :additionalClassicFailover
|
2620
|
+
attr_accessor :additionalFailoverRipe
|
2621
|
+
attr_accessor :usedClassicFailover
|
2622
|
+
attr_accessor :usedFailoverRipe
|
2623
|
+
|
2624
|
+
def initialize(hostname = nil, originalClassicFailover = nil, originalFailoverRipe = nil, originalLoadBalancingSlot = nil, additionalClassicFailover = nil, additionalFailoverRipe = nil, usedClassicFailover = nil, usedFailoverRipe = nil)
|
2625
2625
|
@hostname = hostname
|
2626
|
-
@
|
2627
|
-
@
|
2628
|
-
@
|
2629
|
-
@
|
2630
|
-
@
|
2631
|
-
@
|
2632
|
-
@
|
2626
|
+
@originalClassicFailover = originalClassicFailover
|
2627
|
+
@originalFailoverRipe = originalFailoverRipe
|
2628
|
+
@originalLoadBalancingSlot = originalLoadBalancingSlot
|
2629
|
+
@additionalClassicFailover = additionalClassicFailover
|
2630
|
+
@additionalFailoverRipe = additionalFailoverRipe
|
2631
|
+
@usedClassicFailover = usedClassicFailover
|
2632
|
+
@usedFailoverRipe = usedFailoverRipe
|
2633
2633
|
end
|
2634
2634
|
end
|
2635
2635
|
|
@@ -2657,17 +2657,17 @@ class DedicatedIpLoadBalancingStruct
|
|
2657
2657
|
@@schema_element = [["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["ipLoadBalancing", ["SOAP::SOAPString", XSD::QName.new(nil, "ipLoadBalancing")]], ["active", ["SOAP::SOAPInt", XSD::QName.new(nil, "active")]], ["inactive", ["SOAP::SOAPInt", XSD::QName.new(nil, "inactive")]], ["serverList", ["MyArrayOfDedicatedIpLoadBalancingServerStructType", XSD::QName.new(nil, "serverList")]]]
|
2658
2658
|
|
2659
2659
|
attr_accessor :name
|
2660
|
-
attr_accessor :
|
2660
|
+
attr_accessor :ipLoadBalancing
|
2661
2661
|
attr_accessor :active
|
2662
2662
|
attr_accessor :inactive
|
2663
|
-
attr_accessor :
|
2663
|
+
attr_accessor :serverList
|
2664
2664
|
|
2665
|
-
def initialize(name = nil,
|
2665
|
+
def initialize(name = nil, ipLoadBalancing = nil, active = nil, inactive = nil, serverList = nil)
|
2666
2666
|
@name = name
|
2667
|
-
@
|
2667
|
+
@ipLoadBalancing = ipLoadBalancing
|
2668
2668
|
@active = active
|
2669
2669
|
@inactive = inactive
|
2670
|
-
@
|
2670
|
+
@serverList = serverList
|
2671
2671
|
end
|
2672
2672
|
end
|
2673
2673
|
|
@@ -2678,22 +2678,22 @@ class DedicatedRtmStatusReturn
|
|
2678
2678
|
@@schema_element = [["cpu", ["RtmCpuStruct", XSD::QName.new(nil, "cpu")]], ["hardDrives", ["MyArrayOfRtmHddStructType", XSD::QName.new(nil, "hardDrives")]], ["systemInfo", ["RtmSystemStruct", XSD::QName.new(nil, "systemInfo")]], ["memory", ["RtmMemoryStruct", XSD::QName.new(nil, "memory")]], ["motherboard", ["RtmMotherboardStruct", XSD::QName.new(nil, "motherboard")]], ["lspci", ["MyArrayOfRtmLspciStructType", XSD::QName.new(nil, "lspci")]], ["portsUsed", ["RtmPortsStruct", XSD::QName.new(nil, "portsUsed")]], ["raid", ["RtmRaidStruct", XSD::QName.new(nil, "raid")]]]
|
2679
2679
|
|
2680
2680
|
attr_accessor :cpu
|
2681
|
-
attr_accessor :
|
2682
|
-
attr_accessor :
|
2681
|
+
attr_accessor :hardDrives
|
2682
|
+
attr_accessor :systemInfo
|
2683
2683
|
attr_accessor :memory
|
2684
2684
|
attr_accessor :motherboard
|
2685
2685
|
attr_accessor :lspci
|
2686
|
-
attr_accessor :
|
2686
|
+
attr_accessor :portsUsed
|
2687
2687
|
attr_accessor :raid
|
2688
2688
|
|
2689
|
-
def initialize(cpu = nil,
|
2689
|
+
def initialize(cpu = nil, hardDrives = nil, systemInfo = nil, memory = nil, motherboard = nil, lspci = nil, portsUsed = nil, raid = nil)
|
2690
2690
|
@cpu = cpu
|
2691
|
-
@
|
2692
|
-
@
|
2691
|
+
@hardDrives = hardDrives
|
2692
|
+
@systemInfo = systemInfo
|
2693
2693
|
@memory = memory
|
2694
2694
|
@motherboard = motherboard
|
2695
2695
|
@lspci = lspci
|
2696
|
-
@
|
2696
|
+
@portsUsed = portsUsed
|
2697
2697
|
@raid = raid
|
2698
2698
|
end
|
2699
2699
|
end
|
@@ -2708,16 +2708,16 @@ class RtmCpuStruct
|
|
2708
2708
|
attr_accessor :core
|
2709
2709
|
attr_accessor :name
|
2710
2710
|
attr_accessor :cache
|
2711
|
-
attr_accessor :
|
2712
|
-
attr_accessor :
|
2711
|
+
attr_accessor :percentLoad
|
2712
|
+
attr_accessor :loadAvg
|
2713
2713
|
|
2714
|
-
def initialize(frequency = nil, core = nil, name = nil, cache = nil,
|
2714
|
+
def initialize(frequency = nil, core = nil, name = nil, cache = nil, percentLoad = nil, loadAvg = nil)
|
2715
2715
|
@frequency = frequency
|
2716
2716
|
@core = core
|
2717
2717
|
@name = name
|
2718
2718
|
@cache = cache
|
2719
|
-
@
|
2720
|
-
@
|
2719
|
+
@percentLoad = percentLoad
|
2720
|
+
@loadAvg = loadAvg
|
2721
2721
|
end
|
2722
2722
|
end
|
2723
2723
|
|
@@ -2768,17 +2768,17 @@ class RtmHddSmartStruct
|
|
2768
2768
|
@@schema_element = [["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["multizoneErrorRate", ["SOAP::SOAPInt", XSD::QName.new(nil, "multizoneErrorRate")]], ["currentPendingSector", ["SOAP::SOAPInt", XSD::QName.new(nil, "currentPendingSector")]], ["udmaCrcError", ["SOAP::SOAPInt", XSD::QName.new(nil, "udmaCrcError")]], ["offlineUncorrectable", ["SOAP::SOAPInt", XSD::QName.new(nil, "offlineUncorrectable")]]]
|
2769
2769
|
|
2770
2770
|
attr_accessor :status
|
2771
|
-
attr_accessor :
|
2772
|
-
attr_accessor :
|
2773
|
-
attr_accessor :
|
2774
|
-
attr_accessor :
|
2771
|
+
attr_accessor :multizoneErrorRate
|
2772
|
+
attr_accessor :currentPendingSector
|
2773
|
+
attr_accessor :udmaCrcError
|
2774
|
+
attr_accessor :offlineUncorrectable
|
2775
2775
|
|
2776
|
-
def initialize(status = nil,
|
2776
|
+
def initialize(status = nil, multizoneErrorRate = nil, currentPendingSector = nil, udmaCrcError = nil, offlineUncorrectable = nil)
|
2777
2777
|
@status = status
|
2778
|
-
@
|
2779
|
-
@
|
2780
|
-
@
|
2781
|
-
@
|
2778
|
+
@multizoneErrorRate = multizoneErrorRate
|
2779
|
+
@currentPendingSector = currentPendingSector
|
2780
|
+
@udmaCrcError = udmaCrcError
|
2781
|
+
@offlineUncorrectable = offlineUncorrectable
|
2782
2782
|
end
|
2783
2783
|
end
|
2784
2784
|
|
@@ -2789,15 +2789,15 @@ class RtmHddPartitionStruct
|
|
2789
2789
|
@@schema_element = [["device", ["SOAP::SOAPString", XSD::QName.new(nil, "device")]], ["percentUsed", ["SOAP::SOAPInt", XSD::QName.new(nil, "percentUsed")]], ["percentInodes", ["SOAP::SOAPInt", XSD::QName.new(nil, "percentInodes")]], ["mountPoint", ["SOAP::SOAPString", XSD::QName.new(nil, "mountPoint")]]]
|
2790
2790
|
|
2791
2791
|
attr_accessor :device
|
2792
|
-
attr_accessor :
|
2793
|
-
attr_accessor :
|
2794
|
-
attr_accessor :
|
2792
|
+
attr_accessor :percentUsed
|
2793
|
+
attr_accessor :percentInodes
|
2794
|
+
attr_accessor :mountPoint
|
2795
2795
|
|
2796
|
-
def initialize(device = nil,
|
2796
|
+
def initialize(device = nil, percentUsed = nil, percentInodes = nil, mountPoint = nil)
|
2797
2797
|
@device = device
|
2798
|
-
@
|
2799
|
-
@
|
2800
|
-
@
|
2798
|
+
@percentUsed = percentUsed
|
2799
|
+
@percentInodes = percentInodes
|
2800
|
+
@mountPoint = mountPoint
|
2801
2801
|
end
|
2802
2802
|
end
|
2803
2803
|
|
@@ -2904,11 +2904,11 @@ class RtmMemoryModuleStruct
|
|
2904
2904
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
2905
2905
|
@@schema_element = [["moduleName", ["SOAP::SOAPString", XSD::QName.new(nil, "moduleName")]], ["value", ["SOAP::SOAPString", XSD::QName.new(nil, "value")]]]
|
2906
2906
|
|
2907
|
-
attr_accessor :
|
2907
|
+
attr_accessor :moduleName
|
2908
2908
|
attr_accessor :value
|
2909
2909
|
|
2910
|
-
def initialize(
|
2911
|
-
@
|
2910
|
+
def initialize(moduleName = nil, value = nil)
|
2911
|
+
@moduleName = moduleName
|
2912
2912
|
@value = value
|
2913
2913
|
end
|
2914
2914
|
end
|
@@ -2920,11 +2920,11 @@ class RtmMotherboardStruct
|
|
2920
2920
|
@@schema_element = [["manufacture", ["SOAP::SOAPString", XSD::QName.new(nil, "manufacture")]], ["modelName", ["SOAP::SOAPString", XSD::QName.new(nil, "modelName")]]]
|
2921
2921
|
|
2922
2922
|
attr_accessor :manufacture
|
2923
|
-
attr_accessor :
|
2923
|
+
attr_accessor :modelName
|
2924
2924
|
|
2925
|
-
def initialize(manufacture = nil,
|
2925
|
+
def initialize(manufacture = nil, modelName = nil)
|
2926
2926
|
@manufacture = manufacture
|
2927
|
-
@
|
2927
|
+
@modelName = modelName
|
2928
2928
|
end
|
2929
2929
|
end
|
2930
2930
|
|
@@ -3030,7 +3030,7 @@ class RtmRaidPartitionVolumeStruct
|
|
3030
3030
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3031
3031
|
@@schema_element = [["volumeName", ["SOAP::SOAPString", XSD::QName.new(nil, "volumeName")]], ["flags", ["SOAP::SOAPString", XSD::QName.new(nil, "flags")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]], ["capacity", ["SOAP::SOAPString", XSD::QName.new(nil, "capacity")]], ["phys", ["SOAP::SOAPInt", XSD::QName.new(nil, "phys")]], ["members", ["MyArrayOfRtmRaidPartitionVolumeMemberStructType", XSD::QName.new(nil, "members")]]]
|
3032
3032
|
|
3033
|
-
attr_accessor :
|
3033
|
+
attr_accessor :volumeName
|
3034
3034
|
attr_accessor :flags
|
3035
3035
|
attr_accessor :status
|
3036
3036
|
attr_accessor :type
|
@@ -3038,8 +3038,8 @@ class RtmRaidPartitionVolumeStruct
|
|
3038
3038
|
attr_accessor :phys
|
3039
3039
|
attr_accessor :members
|
3040
3040
|
|
3041
|
-
def initialize(
|
3042
|
-
@
|
3041
|
+
def initialize(volumeName = nil, flags = nil, status = nil, type = nil, capacity = nil, phys = nil, members = nil)
|
3042
|
+
@volumeName = volumeName
|
3043
3043
|
@flags = flags
|
3044
3044
|
@status = status
|
3045
3045
|
@type = type
|
@@ -3055,15 +3055,15 @@ class RtmRaidPartitionVolumeMemberStruct
|
|
3055
3055
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3056
3056
|
@@schema_element = [["memberName", ["SOAP::SOAPString", XSD::QName.new(nil, "memberName")]], ["modelName", ["SOAP::SOAPString", XSD::QName.new(nil, "modelName")]], ["flags", ["SOAP::SOAPString", XSD::QName.new(nil, "flags")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["capacity", ["SOAP::SOAPString", XSD::QName.new(nil, "capacity")]]]
|
3057
3057
|
|
3058
|
-
attr_accessor :
|
3059
|
-
attr_accessor :
|
3058
|
+
attr_accessor :memberName
|
3059
|
+
attr_accessor :modelName
|
3060
3060
|
attr_accessor :flags
|
3061
3061
|
attr_accessor :status
|
3062
3062
|
attr_accessor :capacity
|
3063
3063
|
|
3064
|
-
def initialize(
|
3065
|
-
@
|
3066
|
-
@
|
3064
|
+
def initialize(memberName = nil, modelName = nil, flags = nil, status = nil, capacity = nil)
|
3065
|
+
@memberName = memberName
|
3066
|
+
@modelName = modelName
|
3067
3067
|
@flags = flags
|
3068
3068
|
@status = status
|
3069
3069
|
@capacity = capacity
|
@@ -3120,13 +3120,13 @@ class DedicatedRipeGetIpStruct
|
|
3120
3120
|
@@schema_element = [["exclusion", ["SOAP::SOAPString", XSD::QName.new(nil, "exclusion")]], ["routedTo", ["SOAP::SOAPString", XSD::QName.new(nil, "routedTo")]], ["ip", ["SOAP::SOAPString", XSD::QName.new(nil, "ip")]], ["netname", ["SOAP::SOAPString", XSD::QName.new(nil, "netname")]]]
|
3121
3121
|
|
3122
3122
|
attr_accessor :exclusion
|
3123
|
-
attr_accessor :
|
3123
|
+
attr_accessor :routedTo
|
3124
3124
|
attr_accessor :ip
|
3125
3125
|
attr_accessor :netname
|
3126
3126
|
|
3127
|
-
def initialize(exclusion = nil,
|
3127
|
+
def initialize(exclusion = nil, routedTo = nil, ip = nil, netname = nil)
|
3128
3128
|
@exclusion = exclusion
|
3129
|
-
@
|
3129
|
+
@routedTo = routedTo
|
3130
3130
|
@ip = ip
|
3131
3131
|
@netname = netname
|
3132
3132
|
end
|
@@ -3153,16 +3153,16 @@ class DedicatedIpVirtualMacUsedStruct
|
|
3153
3153
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3154
3154
|
@@schema_element = [["virtualMachineName", ["SOAP::SOAPString", XSD::QName.new(nil, "virtualMachineName")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["ipAddress", ["SOAP::SOAPString", XSD::QName.new(nil, "ipAddress")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]], ["mac", ["SOAP::SOAPString", XSD::QName.new(nil, "mac")]]]
|
3155
3155
|
|
3156
|
-
attr_accessor :
|
3156
|
+
attr_accessor :virtualMachineName
|
3157
3157
|
attr_accessor :status
|
3158
|
-
attr_accessor :
|
3158
|
+
attr_accessor :ipAddress
|
3159
3159
|
attr_accessor :type
|
3160
3160
|
attr_accessor :mac
|
3161
3161
|
|
3162
|
-
def initialize(
|
3163
|
-
@
|
3162
|
+
def initialize(virtualMachineName = nil, status = nil, ipAddress = nil, type = nil, mac = nil)
|
3163
|
+
@virtualMachineName = virtualMachineName
|
3164
3164
|
@status = status
|
3165
|
-
@
|
3165
|
+
@ipAddress = ipAddress
|
3166
3166
|
@type = type
|
3167
3167
|
@mac = mac
|
3168
3168
|
end
|
@@ -3174,13 +3174,13 @@ class DedicatedBandwidthManagementReturn
|
|
3174
3174
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3175
3175
|
@@schema_element = [["serverName", ["SOAP::SOAPString", XSD::QName.new(nil, "serverName")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]]]
|
3176
3176
|
|
3177
|
-
attr_accessor :
|
3177
|
+
attr_accessor :serverName
|
3178
3178
|
attr_accessor :id
|
3179
3179
|
attr_accessor :status
|
3180
3180
|
attr_accessor :date
|
3181
3181
|
|
3182
|
-
def initialize(
|
3183
|
-
@
|
3182
|
+
def initialize(serverName = nil, id = nil, status = nil, date = nil)
|
3183
|
+
@serverName = serverName
|
3184
3184
|
@id = id
|
3185
3185
|
@status = status
|
3186
3186
|
@date = date
|
@@ -3193,20 +3193,20 @@ class DedicatedServerPartioningDetailStruct
|
|
3193
3193
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3194
3194
|
@@schema_element = [["partSize", ["SOAP::SOAPString", XSD::QName.new(nil, "partSize")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["raidType", ["SOAP::SOAPInt", XSD::QName.new(nil, "raidType")]], ["mountPoint", ["SOAP::SOAPString", XSD::QName.new(nil, "mountPoint")]], ["partType", ["SOAP::SOAPString", XSD::QName.new(nil, "partType")]], ["fileSystem", ["SOAP::SOAPString", XSD::QName.new(nil, "fileSystem")]]]
|
3195
3195
|
|
3196
|
-
attr_accessor :
|
3196
|
+
attr_accessor :partSize
|
3197
3197
|
attr_accessor :id
|
3198
|
-
attr_accessor :
|
3199
|
-
attr_accessor :
|
3200
|
-
attr_accessor :
|
3201
|
-
attr_accessor :
|
3198
|
+
attr_accessor :raidType
|
3199
|
+
attr_accessor :mountPoint
|
3200
|
+
attr_accessor :partType
|
3201
|
+
attr_accessor :fileSystem
|
3202
3202
|
|
3203
|
-
def initialize(
|
3204
|
-
@
|
3203
|
+
def initialize(partSize = nil, id = nil, raidType = nil, mountPoint = nil, partType = nil, fileSystem = nil)
|
3204
|
+
@partSize = partSize
|
3205
3205
|
@id = id
|
3206
|
-
@
|
3207
|
-
@
|
3208
|
-
@
|
3209
|
-
@
|
3206
|
+
@raidType = raidType
|
3207
|
+
@mountPoint = mountPoint
|
3208
|
+
@partType = partType
|
3209
|
+
@fileSystem = fileSystem
|
3210
3210
|
end
|
3211
3211
|
end
|
3212
3212
|
|
@@ -3236,21 +3236,21 @@ class DedicatedInstallConfigurationParametersStruct
|
|
3236
3236
|
@@schema_element = [["language", ["SOAP::SOAPString", XSD::QName.new(nil, "language")]], ["bitFormat", ["SOAP::SOAPString", XSD::QName.new(nil, "bitFormat")]], ["softRaidDevices", ["SOAP::SOAPInt", XSD::QName.new(nil, "softRaidDevices")]], ["serverName", ["SOAP::SOAPString", XSD::QName.new(nil, "serverName")]], ["softRaid", ["SOAP::SOAPString", XSD::QName.new(nil, "softRaid")]], ["distribution", ["SOAP::SOAPString", XSD::QName.new(nil, "distribution")]], ["resinstallTodoId", ["SOAP::SOAPInt", XSD::QName.new(nil, "resinstallTodoId")]]]
|
3237
3237
|
|
3238
3238
|
attr_accessor :language
|
3239
|
-
attr_accessor :
|
3240
|
-
attr_accessor :
|
3241
|
-
attr_accessor :
|
3242
|
-
attr_accessor :
|
3239
|
+
attr_accessor :bitFormat
|
3240
|
+
attr_accessor :softRaidDevices
|
3241
|
+
attr_accessor :serverName
|
3242
|
+
attr_accessor :softRaid
|
3243
3243
|
attr_accessor :distribution
|
3244
|
-
attr_accessor :
|
3244
|
+
attr_accessor :resinstallTodoId
|
3245
3245
|
|
3246
|
-
def initialize(language = nil,
|
3246
|
+
def initialize(language = nil, bitFormat = nil, softRaidDevices = nil, serverName = nil, softRaid = nil, distribution = nil, resinstallTodoId = nil)
|
3247
3247
|
@language = language
|
3248
|
-
@
|
3249
|
-
@
|
3250
|
-
@
|
3251
|
-
@
|
3248
|
+
@bitFormat = bitFormat
|
3249
|
+
@softRaidDevices = softRaidDevices
|
3250
|
+
@serverName = serverName
|
3251
|
+
@softRaid = softRaid
|
3252
3252
|
@distribution = distribution
|
3253
|
-
@
|
3253
|
+
@resinstallTodoId = resinstallTodoId
|
3254
3254
|
end
|
3255
3255
|
end
|
3256
3256
|
|
@@ -3260,30 +3260,30 @@ class DedicatedInstallConfigurationStruct
|
|
3260
3260
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3261
3261
|
@@schema_element = [["pendingDate", ["SOAP::SOAPString", XSD::QName.new(nil, "pendingDate")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["stageId", ["SOAP::SOAPInt", XSD::QName.new(nil, "stageId")]], ["serverName", ["SOAP::SOAPString", XSD::QName.new(nil, "serverName")]], ["parameters", ["DedicatedInstallConfigurationParametersStruct", XSD::QName.new(nil, "parameters")]], ["todoDate", ["SOAP::SOAPString", XSD::QName.new(nil, "todoDate")]], ["doingDate", ["SOAP::SOAPString", XSD::QName.new(nil, "doingDate")]], ["error", ["SOAP::SOAPString", XSD::QName.new(nil, "error")]], ["action", ["SOAP::SOAPString", XSD::QName.new(nil, "action")]], ["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["doneDate", ["SOAP::SOAPString", XSD::QName.new(nil, "doneDate")]]]
|
3262
3262
|
|
3263
|
-
attr_accessor :
|
3263
|
+
attr_accessor :pendingDate
|
3264
3264
|
attr_accessor :status
|
3265
|
-
attr_accessor :
|
3266
|
-
attr_accessor :
|
3265
|
+
attr_accessor :stageId
|
3266
|
+
attr_accessor :serverName
|
3267
3267
|
attr_accessor :parameters
|
3268
|
-
attr_accessor :
|
3269
|
-
attr_accessor :
|
3268
|
+
attr_accessor :todoDate
|
3269
|
+
attr_accessor :doingDate
|
3270
3270
|
attr_accessor :error
|
3271
3271
|
attr_accessor :action
|
3272
3272
|
attr_accessor :id
|
3273
|
-
attr_accessor :
|
3273
|
+
attr_accessor :doneDate
|
3274
3274
|
|
3275
|
-
def initialize(
|
3276
|
-
@
|
3275
|
+
def initialize(pendingDate = nil, status = nil, stageId = nil, serverName = nil, parameters = nil, todoDate = nil, doingDate = nil, error = nil, action = nil, id = nil, doneDate = nil)
|
3276
|
+
@pendingDate = pendingDate
|
3277
3277
|
@status = status
|
3278
|
-
@
|
3279
|
-
@
|
3278
|
+
@stageId = stageId
|
3279
|
+
@serverName = serverName
|
3280
3280
|
@parameters = parameters
|
3281
|
-
@
|
3282
|
-
@
|
3281
|
+
@todoDate = todoDate
|
3282
|
+
@doingDate = doingDate
|
3283
3283
|
@error = error
|
3284
3284
|
@action = action
|
3285
3285
|
@id = id
|
3286
|
-
@
|
3286
|
+
@doneDate = doneDate
|
3287
3287
|
end
|
3288
3288
|
end
|
3289
3289
|
|
@@ -3324,14 +3324,14 @@ class DedicatedAllowedDistributionDetailsStruct
|
|
3324
3324
|
@@schema_element = [["language", ["MyArrayOfDedicatedAllowedDistributionLanguageStructType", XSD::QName.new(nil, "language")]], ["bitFormat", ["MyArrayOfDedicatedAllowedDistributionBitFormatStructType", XSD::QName.new(nil, "bitFormat")]], ["longName", ["SOAP::SOAPString", XSD::QName.new(nil, "longName")]], ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]]
|
3325
3325
|
|
3326
3326
|
attr_accessor :language
|
3327
|
-
attr_accessor :
|
3328
|
-
attr_accessor :
|
3327
|
+
attr_accessor :bitFormat
|
3328
|
+
attr_accessor :longName
|
3329
3329
|
attr_accessor :name
|
3330
3330
|
|
3331
|
-
def initialize(language = nil,
|
3331
|
+
def initialize(language = nil, bitFormat = nil, longName = nil, name = nil)
|
3332
3332
|
@language = language
|
3333
|
-
@
|
3334
|
-
@
|
3333
|
+
@bitFormat = bitFormat
|
3334
|
+
@longName = longName
|
3335
3335
|
@name = name
|
3336
3336
|
end
|
3337
3337
|
end
|
@@ -3342,13 +3342,13 @@ class DedicatedAllowedDistributionMoreStruct
|
|
3342
3342
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3343
3343
|
@@schema_element = [["basicDistributions", ["MyArrayOfDedicatedAllowedDistributionDetailsStructType", XSD::QName.new(nil, "basicDistributions")]], ["readyToUse", ["MyArrayOfDedicatedAllowedDistributionDetailsStructType", XSD::QName.new(nil, "readyToUse")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]]
|
3344
3344
|
|
3345
|
-
attr_accessor :
|
3346
|
-
attr_accessor :
|
3345
|
+
attr_accessor :basicDistributions
|
3346
|
+
attr_accessor :readyToUse
|
3347
3347
|
attr_accessor :type
|
3348
3348
|
|
3349
|
-
def initialize(
|
3350
|
-
@
|
3351
|
-
@
|
3349
|
+
def initialize(basicDistributions = nil, readyToUse = nil, type = nil)
|
3350
|
+
@basicDistributions = basicDistributions
|
3351
|
+
@readyToUse = readyToUse
|
3352
3352
|
@type = type
|
3353
3353
|
end
|
3354
3354
|
end
|
@@ -3659,25 +3659,25 @@ class TicketStruct
|
|
3659
3659
|
@@schema_element = [["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]], ["creationDate", ["SOAP::SOAPString", XSD::QName.new(nil, "creationDate")]], ["requestStatus", ["SOAP::SOAPString", XSD::QName.new(nil, "requestStatus")]], ["subject", ["SOAP::SOAPString", XSD::QName.new(nil, "subject")]], ["nic", ["SOAP::SOAPString", XSD::QName.new(nil, "nic")]], ["level", ["SOAP::SOAPString", XSD::QName.new(nil, "level")]], ["domain", ["SOAP::SOAPString", XSD::QName.new(nil, "domain")]], ["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["componentType", ["SOAP::SOAPString", XSD::QName.new(nil, "componentType")]]]
|
3660
3660
|
|
3661
3661
|
attr_accessor :id
|
3662
|
-
attr_accessor :
|
3663
|
-
attr_accessor :
|
3662
|
+
attr_accessor :creationDate
|
3663
|
+
attr_accessor :requestStatus
|
3664
3664
|
attr_accessor :subject
|
3665
3665
|
attr_accessor :nic
|
3666
3666
|
attr_accessor :level
|
3667
3667
|
attr_accessor :domain
|
3668
|
-
attr_accessor :
|
3669
|
-
attr_accessor :
|
3668
|
+
attr_accessor :orderId
|
3669
|
+
attr_accessor :componentType
|
3670
3670
|
|
3671
|
-
def initialize(id = nil,
|
3671
|
+
def initialize(id = nil, creationDate = nil, requestStatus = nil, subject = nil, nic = nil, level = nil, domain = nil, orderId = nil, componentType = nil)
|
3672
3672
|
@id = id
|
3673
|
-
@
|
3674
|
-
@
|
3673
|
+
@creationDate = creationDate
|
3674
|
+
@requestStatus = requestStatus
|
3675
3675
|
@subject = subject
|
3676
3676
|
@nic = nic
|
3677
3677
|
@level = level
|
3678
3678
|
@domain = domain
|
3679
|
-
@
|
3680
|
-
@
|
3679
|
+
@orderId = orderId
|
3680
|
+
@componentType = componentType
|
3681
3681
|
end
|
3682
3682
|
end
|
3683
3683
|
|
@@ -3687,8 +3687,8 @@ class FullTicketReturn
|
|
3687
3687
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3688
3688
|
@@schema_element = [["ticketId", ["SOAP::SOAPInt", XSD::QName.new(nil, "ticketId")]], ["requestStatus", ["SOAP::SOAPString", XSD::QName.new(nil, "requestStatus")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["subject", ["SOAP::SOAPString", XSD::QName.new(nil, "subject")]], ["nic", ["SOAP::SOAPString", XSD::QName.new(nil, "nic")]], ["phone", ["SOAP::SOAPString", XSD::QName.new(nil, "phone")]], ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]], ["level", ["SOAP::SOAPString", XSD::QName.new(nil, "level")]], ["domain", ["SOAP::SOAPString", XSD::QName.new(nil, "domain")]], ["orderId", ["SOAP::SOAPInt", XSD::QName.new(nil, "orderId")]], ["componentType", ["SOAP::SOAPString", XSD::QName.new(nil, "componentType")]], ["messages", ["MyArrayOfMessageDetailStructType", XSD::QName.new(nil, "messages")]]]
|
3689
3689
|
|
3690
|
-
attr_accessor :
|
3691
|
-
attr_accessor :
|
3690
|
+
attr_accessor :ticketId
|
3691
|
+
attr_accessor :requestStatus
|
3692
3692
|
attr_accessor :status
|
3693
3693
|
attr_accessor :subject
|
3694
3694
|
attr_accessor :nic
|
@@ -3696,13 +3696,13 @@ class FullTicketReturn
|
|
3696
3696
|
attr_accessor :email
|
3697
3697
|
attr_accessor :level
|
3698
3698
|
attr_accessor :domain
|
3699
|
-
attr_accessor :
|
3700
|
-
attr_accessor :
|
3699
|
+
attr_accessor :orderId
|
3700
|
+
attr_accessor :componentType
|
3701
3701
|
attr_accessor :messages
|
3702
3702
|
|
3703
|
-
def initialize(
|
3704
|
-
@
|
3705
|
-
@
|
3703
|
+
def initialize(ticketId = nil, requestStatus = nil, status = nil, subject = nil, nic = nil, phone = nil, email = nil, level = nil, domain = nil, orderId = nil, componentType = nil, messages = nil)
|
3704
|
+
@ticketId = ticketId
|
3705
|
+
@requestStatus = requestStatus
|
3706
3706
|
@status = status
|
3707
3707
|
@subject = subject
|
3708
3708
|
@nic = nic
|
@@ -3710,8 +3710,8 @@ class FullTicketReturn
|
|
3710
3710
|
@email = email
|
3711
3711
|
@level = level
|
3712
3712
|
@domain = domain
|
3713
|
-
@
|
3714
|
-
@
|
3713
|
+
@orderId = orderId
|
3714
|
+
@componentType = componentType
|
3715
3715
|
@messages = messages
|
3716
3716
|
end
|
3717
3717
|
end
|
@@ -3745,11 +3745,11 @@ class TicketContactStruct
|
|
3745
3745
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3746
3746
|
@@schema_element = [["componentType", ["SOAP::SOAPString", XSD::QName.new(nil, "componentType")]], ["domains", ["MyArrayOfTicketContactDomainStructType", XSD::QName.new(nil, "domains")]]]
|
3747
3747
|
|
3748
|
-
attr_accessor :
|
3748
|
+
attr_accessor :componentType
|
3749
3749
|
attr_accessor :domains
|
3750
3750
|
|
3751
|
-
def initialize(
|
3752
|
-
@
|
3751
|
+
def initialize(componentType = nil, domains = nil)
|
3752
|
+
@componentType = componentType
|
3753
3753
|
@domains = domains
|
3754
3754
|
end
|
3755
3755
|
end
|
@@ -3855,12 +3855,12 @@ class SqlpriveMysqlDatabasePrivilegeStruct
|
|
3855
3855
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3856
3856
|
@@schema_element = [["databaseName", ["SOAP::SOAPString", XSD::QName.new(nil, "databaseName")]], ["databaseUsers", ["MyArrayOfSqlpriveMysqlDatabaseUserPrivilegeStructType", XSD::QName.new(nil, "databaseUsers")]]]
|
3857
3857
|
|
3858
|
-
attr_accessor :
|
3859
|
-
attr_accessor :
|
3858
|
+
attr_accessor :databaseName
|
3859
|
+
attr_accessor :databaseUsers
|
3860
3860
|
|
3861
|
-
def initialize(
|
3862
|
-
@
|
3863
|
-
@
|
3861
|
+
def initialize(databaseName = nil, databaseUsers = nil)
|
3862
|
+
@databaseName = databaseName
|
3863
|
+
@databaseUsers = databaseUsers
|
3864
3864
|
end
|
3865
3865
|
end
|
3866
3866
|
|
@@ -3870,12 +3870,12 @@ class SqlpriveMysqlDatabaseUserPrivilegeStruct
|
|
3870
3870
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
3871
3871
|
@@schema_element = [["userName", ["SOAP::SOAPString", XSD::QName.new(nil, "userName")]], ["userPriv", ["SOAP::SOAPString", XSD::QName.new(nil, "userPriv")]]]
|
3872
3872
|
|
3873
|
-
attr_accessor :
|
3874
|
-
attr_accessor :
|
3873
|
+
attr_accessor :userName
|
3874
|
+
attr_accessor :userPriv
|
3875
3875
|
|
3876
|
-
def initialize(
|
3877
|
-
@
|
3878
|
-
@
|
3876
|
+
def initialize(userName = nil, userPriv = nil)
|
3877
|
+
@userName = userName
|
3878
|
+
@userPriv = userPriv
|
3879
3879
|
end
|
3880
3880
|
end
|
3881
3881
|
|
@@ -3904,14 +3904,14 @@ class SqlpriveAlertInfotReturn
|
|
3904
3904
|
|
3905
3905
|
attr_accessor :email
|
3906
3906
|
attr_accessor :alert
|
3907
|
-
attr_accessor :
|
3908
|
-
attr_accessor :
|
3907
|
+
attr_accessor :smsNumber
|
3908
|
+
attr_accessor :smsAccount
|
3909
3909
|
|
3910
|
-
def initialize(email = nil, alert = nil,
|
3910
|
+
def initialize(email = nil, alert = nil, smsNumber = nil, smsAccount = nil)
|
3911
3911
|
@email = email
|
3912
3912
|
@alert = alert
|
3913
|
-
@
|
3914
|
-
@
|
3913
|
+
@smsNumber = smsNumber
|
3914
|
+
@smsAccount = smsAccount
|
3915
3915
|
end
|
3916
3916
|
end
|
3917
3917
|
|
@@ -3926,16 +3926,16 @@ class SqlpriveCronStruct
|
|
3926
3926
|
attr_accessor :days
|
3927
3927
|
attr_accessor :hours
|
3928
3928
|
attr_accessor :operation
|
3929
|
-
attr_accessor :
|
3929
|
+
attr_accessor :endDate
|
3930
3930
|
attr_accessor :comment
|
3931
3931
|
|
3932
|
-
def initialize(id = nil, active = nil, days = nil, hours = nil, operation = nil,
|
3932
|
+
def initialize(id = nil, active = nil, days = nil, hours = nil, operation = nil, endDate = nil, comment = nil)
|
3933
3933
|
@id = id
|
3934
3934
|
@active = active
|
3935
3935
|
@days = days
|
3936
3936
|
@hours = hours
|
3937
3937
|
@operation = operation
|
3938
|
-
@
|
3938
|
+
@endDate = endDate
|
3939
3939
|
@comment = comment
|
3940
3940
|
end
|
3941
3941
|
end
|
@@ -3990,16 +3990,16 @@ class ResellerAccountMovementStruct
|
|
3990
3990
|
|
3991
3991
|
attr_accessor :amount
|
3992
3992
|
attr_accessor :balance
|
3993
|
-
attr_accessor :
|
3993
|
+
attr_accessor :previousBalance
|
3994
3994
|
attr_accessor :date
|
3995
3995
|
attr_accessor :description
|
3996
3996
|
attr_accessor :operation
|
3997
3997
|
attr_accessor :order
|
3998
3998
|
|
3999
|
-
def initialize(amount = nil, balance = nil,
|
3999
|
+
def initialize(amount = nil, balance = nil, previousBalance = nil, date = nil, description = nil, operation = nil, order = nil)
|
4000
4000
|
@amount = amount
|
4001
4001
|
@balance = balance
|
4002
|
-
@
|
4002
|
+
@previousBalance = previousBalance
|
4003
4003
|
@date = date
|
4004
4004
|
@description = description
|
4005
4005
|
@operation = operation
|
@@ -4035,23 +4035,23 @@ class ResellerAccountSummaryReturn
|
|
4035
4035
|
attr_accessor :country
|
4036
4036
|
attr_accessor :description
|
4037
4037
|
attr_accessor :balance
|
4038
|
-
attr_accessor :
|
4039
|
-
attr_accessor :
|
4040
|
-
attr_accessor :
|
4038
|
+
attr_accessor :alertThreshold
|
4039
|
+
attr_accessor :limitThreshold
|
4040
|
+
attr_accessor :openDate
|
4041
4041
|
attr_accessor :date
|
4042
|
-
attr_accessor :
|
4042
|
+
attr_accessor :closeDate
|
4043
4043
|
|
4044
|
-
def initialize(nic = nil, account = nil, country = nil, description = nil, balance = nil,
|
4044
|
+
def initialize(nic = nil, account = nil, country = nil, description = nil, balance = nil, alertThreshold = nil, limitThreshold = nil, openDate = nil, date = nil, closeDate = nil)
|
4045
4045
|
@nic = nic
|
4046
4046
|
@account = account
|
4047
4047
|
@country = country
|
4048
4048
|
@description = description
|
4049
4049
|
@balance = balance
|
4050
|
-
@
|
4051
|
-
@
|
4052
|
-
@
|
4050
|
+
@alertThreshold = alertThreshold
|
4051
|
+
@limitThreshold = limitThreshold
|
4052
|
+
@openDate = openDate
|
4053
4053
|
@date = date
|
4054
|
-
@
|
4054
|
+
@closeDate = closeDate
|
4055
4055
|
end
|
4056
4056
|
end
|
4057
4057
|
|
@@ -4070,20 +4070,20 @@ class InfrastructureIpStruct
|
|
4070
4070
|
|
4071
4071
|
attr_accessor :country
|
4072
4072
|
attr_accessor :netname
|
4073
|
-
attr_accessor :
|
4073
|
+
attr_accessor :routedTo
|
4074
4074
|
attr_accessor :status
|
4075
|
-
attr_accessor :
|
4076
|
-
attr_accessor :
|
4077
|
-
attr_accessor :
|
4075
|
+
attr_accessor :addressesNumber
|
4076
|
+
attr_accessor :networkIp
|
4077
|
+
attr_accessor :ipAddressFromBlock
|
4078
4078
|
|
4079
|
-
def initialize(country = nil, netname = nil,
|
4079
|
+
def initialize(country = nil, netname = nil, routedTo = nil, status = nil, addressesNumber = nil, networkIp = nil, ipAddressFromBlock = nil)
|
4080
4080
|
@country = country
|
4081
4081
|
@netname = netname
|
4082
|
-
@
|
4082
|
+
@routedTo = routedTo
|
4083
4083
|
@status = status
|
4084
|
-
@
|
4085
|
-
@
|
4086
|
-
@
|
4084
|
+
@addressesNumber = addressesNumber
|
4085
|
+
@networkIp = networkIp
|
4086
|
+
@ipAddressFromBlock = ipAddressFromBlock
|
4087
4087
|
end
|
4088
4088
|
end
|
4089
4089
|
|
@@ -4102,16 +4102,16 @@ class AccountMovementStruct
|
|
4102
4102
|
|
4103
4103
|
attr_accessor :amount
|
4104
4104
|
attr_accessor :balance
|
4105
|
-
attr_accessor :
|
4105
|
+
attr_accessor :previousBalance
|
4106
4106
|
attr_accessor :date
|
4107
4107
|
attr_accessor :description
|
4108
4108
|
attr_accessor :operation
|
4109
4109
|
attr_accessor :order
|
4110
4110
|
|
4111
|
-
def initialize(amount = nil, balance = nil,
|
4111
|
+
def initialize(amount = nil, balance = nil, previousBalance = nil, date = nil, description = nil, operation = nil, order = nil)
|
4112
4112
|
@amount = amount
|
4113
4113
|
@balance = balance
|
4114
|
-
@
|
4114
|
+
@previousBalance = previousBalance
|
4115
4115
|
@date = date
|
4116
4116
|
@description = description
|
4117
4117
|
@operation = operation
|
@@ -4147,23 +4147,23 @@ class AccountSummaryReturn
|
|
4147
4147
|
attr_accessor :country
|
4148
4148
|
attr_accessor :description
|
4149
4149
|
attr_accessor :balance
|
4150
|
-
attr_accessor :
|
4151
|
-
attr_accessor :
|
4152
|
-
attr_accessor :
|
4150
|
+
attr_accessor :alertThreshold
|
4151
|
+
attr_accessor :limitThreshold
|
4152
|
+
attr_accessor :openDate
|
4153
4153
|
attr_accessor :date
|
4154
|
-
attr_accessor :
|
4154
|
+
attr_accessor :closeDate
|
4155
4155
|
|
4156
|
-
def initialize(nic = nil, account = nil, country = nil, description = nil, balance = nil,
|
4156
|
+
def initialize(nic = nil, account = nil, country = nil, description = nil, balance = nil, alertThreshold = nil, limitThreshold = nil, openDate = nil, date = nil, closeDate = nil)
|
4157
4157
|
@nic = nic
|
4158
4158
|
@account = account
|
4159
4159
|
@country = country
|
4160
4160
|
@description = description
|
4161
4161
|
@balance = balance
|
4162
|
-
@
|
4163
|
-
@
|
4164
|
-
@
|
4162
|
+
@alertThreshold = alertThreshold
|
4163
|
+
@limitThreshold = limitThreshold
|
4164
|
+
@openDate = openDate
|
4165
4165
|
@date = date
|
4166
|
-
@
|
4166
|
+
@closeDate = closeDate
|
4167
4167
|
end
|
4168
4168
|
end
|
4169
4169
|
|
@@ -4183,19 +4183,19 @@ class HostingChangeMainDomainReturn
|
|
4183
4183
|
attr_accessor :id
|
4184
4184
|
attr_accessor :country
|
4185
4185
|
attr_accessor :password
|
4186
|
-
attr_accessor :
|
4187
|
-
attr_accessor :
|
4186
|
+
attr_accessor :totalPriceWithVat
|
4187
|
+
attr_accessor :totalPrice
|
4188
4188
|
attr_accessor :url
|
4189
|
-
attr_accessor :
|
4189
|
+
attr_accessor :vatRate
|
4190
4190
|
|
4191
|
-
def initialize(id = nil, country = nil, password = nil,
|
4191
|
+
def initialize(id = nil, country = nil, password = nil, totalPriceWithVat = nil, totalPrice = nil, url = nil, vatRate = nil)
|
4192
4192
|
@id = id
|
4193
4193
|
@country = country
|
4194
4194
|
@password = password
|
4195
|
-
@
|
4196
|
-
@
|
4195
|
+
@totalPriceWithVat = totalPriceWithVat
|
4196
|
+
@totalPrice = totalPrice
|
4197
4197
|
@url = url
|
4198
|
-
@
|
4198
|
+
@vatRate = vatRate
|
4199
4199
|
end
|
4200
4200
|
end
|
4201
4201
|
|
@@ -4209,15 +4209,15 @@ class HostingGetCapabilitiesReturn
|
|
4209
4209
|
attr_accessor :webspace
|
4210
4210
|
attr_accessor :traffic
|
4211
4211
|
attr_accessor :databases
|
4212
|
-
attr_accessor :
|
4212
|
+
attr_accessor :databaseSpace
|
4213
4213
|
attr_accessor :multidomains
|
4214
4214
|
attr_accessor :subdomains
|
4215
4215
|
attr_accessor :streaming
|
4216
4216
|
attr_accessor :multiftp
|
4217
4217
|
attr_accessor :anonymousftp
|
4218
|
-
attr_accessor :
|
4219
|
-
attr_accessor :
|
4220
|
-
attr_accessor :
|
4218
|
+
attr_accessor :freeDomPerYear
|
4219
|
+
attr_accessor :freeDomMax
|
4220
|
+
attr_accessor :sharedSSL
|
4221
4221
|
attr_accessor :ssh
|
4222
4222
|
attr_accessor :geoloc
|
4223
4223
|
attr_accessor :cgi
|
@@ -4226,20 +4226,20 @@ class HostingGetCapabilitiesReturn
|
|
4226
4226
|
attr_accessor :vpn
|
4227
4227
|
attr_accessor :jabber
|
4228
4228
|
|
4229
|
-
def initialize(name = nil, webspace = nil, traffic = nil, databases = nil,
|
4229
|
+
def initialize(name = nil, webspace = nil, traffic = nil, databases = nil, databaseSpace = nil, multidomains = nil, subdomains = nil, streaming = nil, multiftp = nil, anonymousftp = nil, freeDomPerYear = nil, freeDomMax = nil, sharedSSL = nil, ssh = nil, geoloc = nil, cgi = nil, crontab = nil, sip = nil, vpn = nil, jabber = nil)
|
4230
4230
|
@name = name
|
4231
4231
|
@webspace = webspace
|
4232
4232
|
@traffic = traffic
|
4233
4233
|
@databases = databases
|
4234
|
-
@
|
4234
|
+
@databaseSpace = databaseSpace
|
4235
4235
|
@multidomains = multidomains
|
4236
4236
|
@subdomains = subdomains
|
4237
4237
|
@streaming = streaming
|
4238
4238
|
@multiftp = multiftp
|
4239
4239
|
@anonymousftp = anonymousftp
|
4240
|
-
@
|
4241
|
-
@
|
4242
|
-
@
|
4240
|
+
@freeDomPerYear = freeDomPerYear
|
4241
|
+
@freeDomMax = freeDomMax
|
4242
|
+
@sharedSSL = sharedSSL
|
4243
4243
|
@ssh = ssh
|
4244
4244
|
@geoloc = geoloc
|
4245
4245
|
@cgi = cgi
|
@@ -4273,7 +4273,7 @@ class HostingSummaryReturn
|
|
4273
4273
|
|
4274
4274
|
attr_accessor :country
|
4275
4275
|
attr_accessor :webspace
|
4276
|
-
attr_accessor :
|
4276
|
+
attr_accessor :maxWebspace
|
4277
4277
|
attr_accessor :subdomains
|
4278
4278
|
attr_accessor :multidomains
|
4279
4279
|
attr_accessor :multiftps
|
@@ -4282,13 +4282,13 @@ class HostingSummaryReturn
|
|
4282
4282
|
attr_accessor :freedom_remaining
|
4283
4283
|
attr_accessor :freedom_assigned
|
4284
4284
|
attr_accessor :freedom_total
|
4285
|
-
attr_accessor :
|
4286
|
-
attr_accessor :
|
4285
|
+
attr_accessor :highCapacity
|
4286
|
+
attr_accessor :highSecurity
|
4287
4287
|
|
4288
|
-
def initialize(country = nil, webspace = nil,
|
4288
|
+
def initialize(country = nil, webspace = nil, maxWebspace = nil, subdomains = nil, multidomains = nil, multiftps = nil, anonymousftp = nil, databases = nil, freedom_remaining = nil, freedom_assigned = nil, freedom_total = nil, highCapacity = nil, highSecurity = nil)
|
4289
4289
|
@country = country
|
4290
4290
|
@webspace = webspace
|
4291
|
-
@
|
4291
|
+
@maxWebspace = maxWebspace
|
4292
4292
|
@subdomains = subdomains
|
4293
4293
|
@multidomains = multidomains
|
4294
4294
|
@multiftps = multiftps
|
@@ -4297,8 +4297,8 @@ class HostingSummaryReturn
|
|
4297
4297
|
@freedom_remaining = freedom_remaining
|
4298
4298
|
@freedom_assigned = freedom_assigned
|
4299
4299
|
@freedom_total = freedom_total
|
4300
|
-
@
|
4301
|
-
@
|
4300
|
+
@highCapacity = highCapacity
|
4301
|
+
@highSecurity = highSecurity
|
4302
4302
|
end
|
4303
4303
|
end
|
4304
4304
|
|
@@ -4310,20 +4310,20 @@ class FtpInfoReturn
|
|
4310
4310
|
|
4311
4311
|
attr_accessor :login
|
4312
4312
|
attr_accessor :quota
|
4313
|
-
attr_accessor :
|
4313
|
+
attr_accessor :maxQuota
|
4314
4314
|
attr_accessor :url
|
4315
|
-
attr_accessor :
|
4316
|
-
attr_accessor :
|
4317
|
-
attr_accessor :
|
4315
|
+
attr_accessor :isTodo
|
4316
|
+
attr_accessor :highCapacity
|
4317
|
+
attr_accessor :highSecurity
|
4318
4318
|
|
4319
|
-
def initialize(login = nil, quota = nil,
|
4319
|
+
def initialize(login = nil, quota = nil, maxQuota = nil, url = nil, isTodo = nil, highCapacity = nil, highSecurity = nil)
|
4320
4320
|
@login = login
|
4321
4321
|
@quota = quota
|
4322
|
-
@
|
4322
|
+
@maxQuota = maxQuota
|
4323
4323
|
@url = url
|
4324
|
-
@
|
4325
|
-
@
|
4326
|
-
@
|
4324
|
+
@isTodo = isTodo
|
4325
|
+
@highCapacity = highCapacity
|
4326
|
+
@highSecurity = highSecurity
|
4327
4327
|
end
|
4328
4328
|
end
|
4329
4329
|
|
@@ -4488,11 +4488,11 @@ class LogsAccessStruct
|
|
4488
4488
|
@@schema_element = [["user", ["SOAP::SOAPString", XSD::QName.new(nil, "user")]], ["lastUpdate", ["SOAP::SOAPString", XSD::QName.new(nil, "lastUpdate")]]]
|
4489
4489
|
|
4490
4490
|
attr_accessor :user
|
4491
|
-
attr_accessor :
|
4491
|
+
attr_accessor :lastUpdate
|
4492
4492
|
|
4493
|
-
def initialize(user = nil,
|
4493
|
+
def initialize(user = nil, lastUpdate = nil)
|
4494
4494
|
@user = user
|
4495
|
-
@
|
4495
|
+
@lastUpdate = lastUpdate
|
4496
4496
|
end
|
4497
4497
|
end
|
4498
4498
|
|
@@ -4511,7 +4511,7 @@ class AutomatedMailGetStateReturn
|
|
4511
4511
|
end
|
4512
4512
|
|
4513
4513
|
def return=(value)
|
4514
|
-
@v_return =
|
4514
|
+
@v_return = value
|
4515
4515
|
end
|
4516
4516
|
|
4517
4517
|
def initialize(bounce = nil, sent = nil, v_return = nil, state = nil)
|
@@ -4566,15 +4566,15 @@ class CmsAvailableStruct
|
|
4566
4566
|
attr_accessor :version
|
4567
4567
|
attr_accessor :language
|
4568
4568
|
attr_accessor :category
|
4569
|
-
attr_accessor :
|
4569
|
+
attr_accessor :dbPrefix
|
4570
4570
|
attr_accessor :enable
|
4571
4571
|
|
4572
|
-
def initialize(name = nil, version = nil, language = nil, category = nil,
|
4572
|
+
def initialize(name = nil, version = nil, language = nil, category = nil, dbPrefix = nil, enable = nil)
|
4573
4573
|
@name = name
|
4574
4574
|
@version = version
|
4575
4575
|
@language = language
|
4576
4576
|
@category = category
|
4577
|
-
@
|
4577
|
+
@dbPrefix = dbPrefix
|
4578
4578
|
@enable = enable
|
4579
4579
|
end
|
4580
4580
|
end
|
@@ -4591,16 +4591,16 @@ class CmsStruct
|
|
4591
4591
|
attr_accessor :language
|
4592
4592
|
attr_accessor :url
|
4593
4593
|
attr_accessor :path
|
4594
|
-
attr_accessor :
|
4594
|
+
attr_accessor :adminLogin
|
4595
4595
|
|
4596
|
-
def initialize(id = nil, name = nil, version = nil, language = nil, url = nil, path = nil,
|
4596
|
+
def initialize(id = nil, name = nil, version = nil, language = nil, url = nil, path = nil, adminLogin = nil)
|
4597
4597
|
@id = id
|
4598
4598
|
@name = name
|
4599
4599
|
@version = version
|
4600
4600
|
@language = language
|
4601
4601
|
@url = url
|
4602
4602
|
@path = path
|
4603
|
-
@
|
4603
|
+
@adminLogin = adminLogin
|
4604
4604
|
end
|
4605
4605
|
end
|
4606
4606
|
|
@@ -4636,19 +4636,19 @@ class CrontabInfoReturn
|
|
4636
4636
|
attr_accessor :desc
|
4637
4637
|
attr_accessor :email
|
4638
4638
|
attr_accessor :enabled
|
4639
|
-
attr_accessor :
|
4640
|
-
attr_accessor :
|
4639
|
+
attr_accessor :programLanguage
|
4640
|
+
attr_accessor :weekDay
|
4641
4641
|
attr_accessor :days
|
4642
4642
|
attr_accessor :hours
|
4643
4643
|
|
4644
|
-
def initialize(id = nil, path = nil, desc = nil, email = nil, enabled = nil,
|
4644
|
+
def initialize(id = nil, path = nil, desc = nil, email = nil, enabled = nil, programLanguage = nil, weekDay = nil, days = nil, hours = nil)
|
4645
4645
|
@id = id
|
4646
4646
|
@path = path
|
4647
4647
|
@desc = desc
|
4648
4648
|
@email = email
|
4649
4649
|
@enabled = enabled
|
4650
|
-
@
|
4651
|
-
@
|
4650
|
+
@programLanguage = programLanguage
|
4651
|
+
@weekDay = weekDay
|
4652
4652
|
@days = days
|
4653
4653
|
@hours = hours
|
4654
4654
|
end
|
@@ -4773,20 +4773,20 @@ class FreedomStruct
|
|
4773
4773
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
4774
4774
|
@@schema_element = [["referenceReferer", ["SOAP::SOAPString", XSD::QName.new(nil, "referenceReferer")]], ["creationDate", ["SOAP::SOAPString", XSD::QName.new(nil, "creationDate")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["freeDom", ["SOAP::SOAPString", XSD::QName.new(nil, "freeDom")]], ["useDate", ["SOAP::SOAPString", XSD::QName.new(nil, "useDate")]], ["domainReferer", ["SOAP::SOAPString", XSD::QName.new(nil, "domainReferer")]]]
|
4775
4775
|
|
4776
|
-
attr_accessor :
|
4777
|
-
attr_accessor :
|
4776
|
+
attr_accessor :referenceReferer
|
4777
|
+
attr_accessor :creationDate
|
4778
4778
|
attr_accessor :status
|
4779
|
-
attr_accessor :
|
4780
|
-
attr_accessor :
|
4781
|
-
attr_accessor :
|
4779
|
+
attr_accessor :freeDom
|
4780
|
+
attr_accessor :useDate
|
4781
|
+
attr_accessor :domainReferer
|
4782
4782
|
|
4783
|
-
def initialize(
|
4784
|
-
@
|
4785
|
-
@
|
4783
|
+
def initialize(referenceReferer = nil, creationDate = nil, status = nil, freeDom = nil, useDate = nil, domainReferer = nil)
|
4784
|
+
@referenceReferer = referenceReferer
|
4785
|
+
@creationDate = creationDate
|
4786
4786
|
@status = status
|
4787
|
-
@
|
4788
|
-
@
|
4789
|
-
@
|
4787
|
+
@freeDom = freeDom
|
4788
|
+
@useDate = useDate
|
4789
|
+
@domainReferer = domainReferer
|
4790
4790
|
end
|
4791
4791
|
end
|
4792
4792
|
|
@@ -4928,33 +4928,33 @@ class OperationStruct
|
|
4928
4928
|
attr_accessor :domain
|
4929
4929
|
attr_accessor :function
|
4930
4930
|
attr_accessor :status
|
4931
|
-
attr_accessor :
|
4931
|
+
attr_accessor :internalStatus
|
4932
4932
|
attr_accessor :comment
|
4933
4933
|
attr_accessor :users
|
4934
|
-
attr_accessor :
|
4935
|
-
attr_accessor :
|
4936
|
-
attr_accessor :
|
4934
|
+
attr_accessor :todoDate
|
4935
|
+
attr_accessor :lastUpdate
|
4936
|
+
attr_accessor :doneDate
|
4937
4937
|
|
4938
4938
|
def retry
|
4939
4939
|
@v_retry
|
4940
4940
|
end
|
4941
4941
|
|
4942
4942
|
def retry=(value)
|
4943
|
-
@v_retry =
|
4943
|
+
@v_retry = value
|
4944
4944
|
end
|
4945
4945
|
|
4946
|
-
def initialize(id = nil, domain = nil, function = nil, status = nil,
|
4946
|
+
def initialize(id = nil, domain = nil, function = nil, status = nil, internalStatus = nil, comment = nil, users = nil, v_retry = nil, todoDate = nil, lastUpdate = nil, doneDate = nil)
|
4947
4947
|
@id = id
|
4948
4948
|
@domain = domain
|
4949
4949
|
@function = function
|
4950
4950
|
@status = status
|
4951
|
-
@
|
4951
|
+
@internalStatus = internalStatus
|
4952
4952
|
@comment = comment
|
4953
4953
|
@users = users
|
4954
4954
|
@v_retry = v_retry
|
4955
|
-
@
|
4956
|
-
@
|
4957
|
-
@
|
4955
|
+
@todoDate = todoDate
|
4956
|
+
@lastUpdate = lastUpdate
|
4957
|
+
@doneDate = doneDate
|
4958
4958
|
end
|
4959
4959
|
end
|
4960
4960
|
|
@@ -5035,13 +5035,13 @@ class GlobalAccessStruct
|
|
5035
5035
|
attr_accessor :alldom
|
5036
5036
|
attr_accessor :ssl
|
5037
5037
|
attr_accessor :rps
|
5038
|
-
attr_accessor :
|
5038
|
+
attr_accessor :rpsOrphan
|
5039
5039
|
attr_accessor :vs
|
5040
5040
|
attr_accessor :voip
|
5041
5041
|
attr_accessor :housing
|
5042
5042
|
attr_accessor :sqlpriv
|
5043
5043
|
|
5044
|
-
def initialize(name = nil, domain = nil, hosting = nil, email = nil, pop = nil, dedicated = nil, reverse = nil, alldom = nil, ssl = nil, rps = nil,
|
5044
|
+
def initialize(name = nil, domain = nil, hosting = nil, email = nil, pop = nil, dedicated = nil, reverse = nil, alldom = nil, ssl = nil, rps = nil, rpsOrphan = nil, vs = nil, voip = nil, housing = nil, sqlpriv = nil)
|
5045
5045
|
@name = name
|
5046
5046
|
@domain = domain
|
5047
5047
|
@hosting = hosting
|
@@ -5052,7 +5052,7 @@ class GlobalAccessStruct
|
|
5052
5052
|
@alldom = alldom
|
5053
5053
|
@ssl = ssl
|
5054
5054
|
@rps = rps
|
5055
|
-
@
|
5055
|
+
@rpsOrphan = rpsOrphan
|
5056
5056
|
@vs = vs
|
5057
5057
|
@voip = voip
|
5058
5058
|
@housing = housing
|
@@ -5091,13 +5091,13 @@ class EmailRedirectionStruct
|
|
5091
5091
|
attr_accessor :target
|
5092
5092
|
attr_accessor :local
|
5093
5093
|
attr_accessor :subdomain
|
5094
|
-
attr_accessor :
|
5094
|
+
attr_accessor :dnsRedirection
|
5095
5095
|
|
5096
|
-
def initialize(target = nil, local = nil, subdomain = nil,
|
5096
|
+
def initialize(target = nil, local = nil, subdomain = nil, dnsRedirection = nil)
|
5097
5097
|
@target = target
|
5098
5098
|
@local = local
|
5099
5099
|
@subdomain = subdomain
|
5100
|
-
@
|
5100
|
+
@dnsRedirection = dnsRedirection
|
5101
5101
|
end
|
5102
5102
|
end
|
5103
5103
|
|
@@ -5128,14 +5128,14 @@ class PopGetQuotaReturn
|
|
5128
5128
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
5129
5129
|
@@schema_element = [["emailCount", ["SOAP::SOAPInt", XSD::QName.new(nil, "emailCount")]], ["quota", ["SOAP::SOAPInt", XSD::QName.new(nil, "quota")]], ["maxQuota", ["SOAP::SOAPInt", XSD::QName.new(nil, "maxQuota")]]]
|
5130
5130
|
|
5131
|
-
attr_accessor :
|
5131
|
+
attr_accessor :emailCount
|
5132
5132
|
attr_accessor :quota
|
5133
|
-
attr_accessor :
|
5133
|
+
attr_accessor :maxQuota
|
5134
5134
|
|
5135
|
-
def initialize(
|
5136
|
-
@
|
5135
|
+
def initialize(emailCount = nil, quota = nil, maxQuota = nil)
|
5136
|
+
@emailCount = emailCount
|
5137
5137
|
@quota = quota
|
5138
|
-
@
|
5138
|
+
@maxQuota = maxQuota
|
5139
5139
|
end
|
5140
5140
|
end
|
5141
5141
|
|
@@ -5148,18 +5148,18 @@ class MailingListStruct
|
|
5148
5148
|
attr_accessor :domain
|
5149
5149
|
attr_accessor :ml
|
5150
5150
|
attr_accessor :owner
|
5151
|
-
attr_accessor :
|
5151
|
+
attr_accessor :nbSubscribers
|
5152
5152
|
attr_accessor :message_moderation
|
5153
5153
|
attr_accessor :users_post_only
|
5154
5154
|
attr_accessor :subscription_moderation
|
5155
5155
|
attr_accessor :replyto
|
5156
5156
|
attr_accessor :lang
|
5157
5157
|
|
5158
|
-
def initialize(domain = nil, ml = nil, owner = nil,
|
5158
|
+
def initialize(domain = nil, ml = nil, owner = nil, nbSubscribers = nil, message_moderation = nil, users_post_only = nil, subscription_moderation = nil, replyto = nil, lang = nil)
|
5159
5159
|
@domain = domain
|
5160
5160
|
@ml = ml
|
5161
5161
|
@owner = owner
|
5162
|
-
@
|
5162
|
+
@nbSubscribers = nbSubscribers
|
5163
5163
|
@message_moderation = message_moderation
|
5164
5164
|
@users_post_only = users_post_only
|
5165
5165
|
@subscription_moderation = subscription_moderation
|
@@ -5177,7 +5177,7 @@ class MailingListFullInfoReturn
|
|
5177
5177
|
attr_accessor :domain
|
5178
5178
|
attr_accessor :ml
|
5179
5179
|
attr_accessor :owner
|
5180
|
-
attr_accessor :
|
5180
|
+
attr_accessor :nbSubscribers
|
5181
5181
|
attr_accessor :message_moderation
|
5182
5182
|
attr_accessor :users_post_only
|
5183
5183
|
attr_accessor :subscription_moderation
|
@@ -5186,11 +5186,11 @@ class MailingListFullInfoReturn
|
|
5186
5186
|
attr_accessor :moderators
|
5187
5187
|
attr_accessor :subscribers
|
5188
5188
|
|
5189
|
-
def initialize(domain = nil, ml = nil, owner = nil,
|
5189
|
+
def initialize(domain = nil, ml = nil, owner = nil, nbSubscribers = nil, message_moderation = nil, users_post_only = nil, subscription_moderation = nil, replyto = nil, lang = nil, moderators = nil, subscribers = nil)
|
5190
5190
|
@domain = domain
|
5191
5191
|
@ml = ml
|
5192
5192
|
@owner = owner
|
5193
|
-
@
|
5193
|
+
@nbSubscribers = nbSubscribers
|
5194
5194
|
@message_moderation = message_moderation
|
5195
5195
|
@users_post_only = users_post_only
|
5196
5196
|
@subscription_moderation = subscription_moderation
|
@@ -5210,15 +5210,15 @@ class ResponderEmailStruct
|
|
5210
5210
|
attr_accessor :domain
|
5211
5211
|
attr_accessor :responder
|
5212
5212
|
attr_accessor :content
|
5213
|
-
attr_accessor :
|
5214
|
-
attr_accessor :
|
5213
|
+
attr_accessor :hasPop
|
5214
|
+
attr_accessor :hasAlias
|
5215
5215
|
|
5216
|
-
def initialize(domain = nil, responder = nil, content = nil,
|
5216
|
+
def initialize(domain = nil, responder = nil, content = nil, hasPop = nil, hasAlias = nil)
|
5217
5217
|
@domain = domain
|
5218
5218
|
@responder = responder
|
5219
5219
|
@content = content
|
5220
|
-
@
|
5221
|
-
@
|
5220
|
+
@hasPop = hasPop
|
5221
|
+
@hasAlias = hasAlias
|
5222
5222
|
end
|
5223
5223
|
end
|
5224
5224
|
|
@@ -5245,15 +5245,15 @@ class EmailDomainSummaryReturn
|
|
5245
5245
|
@@schema_ns = "http://soapi.ovh.com/manager"
|
5246
5246
|
@@schema_element = [["masterNic", ["SOAP::SOAPString", XSD::QName.new(nil, "masterNic")]], ["nbpops", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbpops")]], ["nbforwards", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbforwards")]], ["nbaliases", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbaliases")]], ["nbresponders", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbresponders")]], ["nbmls", ["SOAP::SOAPInt", XSD::QName.new(nil, "nbmls")]]]
|
5247
5247
|
|
5248
|
-
attr_accessor :
|
5248
|
+
attr_accessor :masterNic
|
5249
5249
|
attr_accessor :nbpops
|
5250
5250
|
attr_accessor :nbforwards
|
5251
5251
|
attr_accessor :nbaliases
|
5252
5252
|
attr_accessor :nbresponders
|
5253
5253
|
attr_accessor :nbmls
|
5254
5254
|
|
5255
|
-
def initialize(
|
5256
|
-
@
|
5255
|
+
def initialize(masterNic = nil, nbpops = nil, nbforwards = nil, nbaliases = nil, nbresponders = nil, nbmls = nil)
|
5256
|
+
@masterNic = masterNic
|
5257
5257
|
@nbpops = nbpops
|
5258
5258
|
@nbforwards = nbforwards
|
5259
5259
|
@nbaliases = nbaliases
|
@@ -5296,16 +5296,16 @@ class EmailFilterStruct
|
|
5296
5296
|
attr_accessor :action_param
|
5297
5297
|
attr_accessor :active
|
5298
5298
|
attr_accessor :priority
|
5299
|
-
attr_accessor :
|
5299
|
+
attr_accessor :nbRules
|
5300
5300
|
attr_accessor :rules
|
5301
5301
|
|
5302
|
-
def initialize(filter = nil, action = nil, action_param = nil, active = nil, priority = nil,
|
5302
|
+
def initialize(filter = nil, action = nil, action_param = nil, active = nil, priority = nil, nbRules = nil, rules = nil)
|
5303
5303
|
@filter = filter
|
5304
5304
|
@action = action
|
5305
5305
|
@action_param = action_param
|
5306
5306
|
@active = active
|
5307
5307
|
@priority = priority
|
5308
|
-
@
|
5308
|
+
@nbRules = nbRules
|
5309
5309
|
@rules = rules
|
5310
5310
|
end
|
5311
5311
|
end
|
@@ -5418,7 +5418,7 @@ class PrepaidGetHistoryReturn
|
|
5418
5418
|
end
|
5419
5419
|
|
5420
5420
|
def end=(value)
|
5421
|
-
@v_end =
|
5421
|
+
@v_end = value
|
5422
5422
|
end
|
5423
5423
|
|
5424
5424
|
def initialize(page = nil, total = nil, start = nil, v_end = nil, operations = nil)
|
@@ -5480,26 +5480,26 @@ class BillingInvoiceStruct
|
|
5480
5480
|
@@schema_element = [["vat", ["SOAP::SOAPString", XSD::QName.new(nil, "vat")]], ["totalPrice", ["SOAP::SOAPString", XSD::QName.new(nil, "totalPrice")]], ["totalPriceWithVat", ["SOAP::SOAPString", XSD::QName.new(nil, "totalPriceWithVat")]], ["date", ["SOAP::SOAPString", XSD::QName.new(nil, "date")]], ["nic", ["SOAP::SOAPString", XSD::QName.new(nil, "nic")]], ["billnum", ["SOAP::SOAPString", XSD::QName.new(nil, "billnum")]], ["details", ["MyArrayOfBillingInvoiceDetailStructType", XSD::QName.new(nil, "details")]], ["domains", ["MyArrayOfStringType", XSD::QName.new(nil, "domains")]], ["billingCountry", ["SOAP::SOAPString", XSD::QName.new(nil, "billingCountry")]], ["ordernum", ["SOAP::SOAPString", XSD::QName.new(nil, "ordernum")]]]
|
5481
5481
|
|
5482
5482
|
attr_accessor :vat
|
5483
|
-
attr_accessor :
|
5484
|
-
attr_accessor :
|
5483
|
+
attr_accessor :totalPrice
|
5484
|
+
attr_accessor :totalPriceWithVat
|
5485
5485
|
attr_accessor :date
|
5486
5486
|
attr_accessor :nic
|
5487
5487
|
attr_accessor :billnum
|
5488
5488
|
attr_accessor :details
|
5489
5489
|
attr_accessor :domains
|
5490
|
-
attr_accessor :
|
5490
|
+
attr_accessor :billingCountry
|
5491
5491
|
attr_accessor :ordernum
|
5492
5492
|
|
5493
|
-
def initialize(vat = nil,
|
5493
|
+
def initialize(vat = nil, totalPrice = nil, totalPriceWithVat = nil, date = nil, nic = nil, billnum = nil, details = nil, domains = nil, billingCountry = nil, ordernum = nil)
|
5494
5494
|
@vat = vat
|
5495
|
-
@
|
5496
|
-
@
|
5495
|
+
@totalPrice = totalPrice
|
5496
|
+
@totalPriceWithVat = totalPriceWithVat
|
5497
5497
|
@date = date
|
5498
5498
|
@nic = nic
|
5499
5499
|
@billnum = billnum
|
5500
5500
|
@details = details
|
5501
5501
|
@domains = domains
|
5502
|
-
@
|
5502
|
+
@billingCountry = billingCountry
|
5503
5503
|
@ordernum = ordernum
|
5504
5504
|
end
|
5505
5505
|
end
|
@@ -5523,7 +5523,7 @@ class BillingInvoiceInfoDetailStruct
|
|
5523
5523
|
end
|
5524
5524
|
|
5525
5525
|
def end=(value)
|
5526
|
-
@v_end =
|
5526
|
+
@v_end = value
|
5527
5527
|
end
|
5528
5528
|
|
5529
5529
|
def initialize(quantity = nil, service = nil, description = nil, v_end = nil, domain = nil, baseprice = nil, totalprice = nil, start = nil)
|