ovh_savoni 1.54.0 → 1.59.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,16 +1,11 @@
1
1
  class OvhSavoni::ResponseBuilder
2
-
2
+
3
3
  # Build a Response class
4
4
  def self.build(r,action)
5
5
  if r.is_a?(Hash) # Build the class from the hash
6
- const = "OvhSavoniResponse_#{action}"
7
- klass=nil
8
- if Struct.const_defined?(const)
9
- klass=Struct.const_get(const)
10
- else # Create a new struct if not exist already
11
- klass=Struct.new(const,*r.keys)
12
- build_class(klass,action)
13
- end
6
+ klass=Struct.new(*r.keys)
7
+ build_class(klass,action)
8
+
14
9
  ret = klass.new(*r.values) # Instanciate the class
15
10
  if ret.members.include?(:item) && [:item].is_a?(Array)
16
11
  ret.item
@@ -21,10 +16,10 @@ class OvhSavoni::ResponseBuilder
21
16
  r
22
17
  end
23
18
  end
24
-
19
+
25
20
  # Add recursive construction behavior to the class initializer
26
21
  def self.build_class(klass,action)
27
- klass.class_eval do
22
+ klass.class_eval do
28
23
  define_method(:initialize) do |*args|
29
24
  super(*args)
30
25
  each do |inst|
@@ -5,7 +5,7 @@ class OvhSavoni::SoAPI
5
5
  end
6
6
  # Initialize soap connection
7
7
  @soap = Savon::Client.new do
8
- wsdl.document =File.expand_path("../../soapi-dlw-1.54.wsdl" , __FILE__)
8
+ wsdl.document =File.expand_path("../../soapi-dlw-1.59.wsdl" , __FILE__)
9
9
  end
10
10
  # Initialize the class structure on the basis of the WSDL file
11
11
  # Meta definition of one method for each action
@@ -1,3 +1,3 @@
1
1
  module OvhSavoni
2
- VERSION = "1.54.0"
2
+ VERSION = "1.59.0"
3
3
  end
@@ -2,11 +2,11 @@
2
2
 
3
3
  <!--
4
4
 
5
- SOAPI WSDL, Document/Literal wrapped style, version 1.54
5
+ SOAPI WSDL, Document/Literal wrapped style, version 1.59
6
6
 
7
7
  The SOAPI technical specifications are available at this url : http://www.ovh.com/soapi .
8
8
 
9
- copyright 1999-2011 OVH
9
+ copyright 1999-2013 OVH
10
10
 
11
11
  -->
12
12
 
@@ -24,23 +24,6 @@
24
24
  <wsdl:types>
25
25
  <xsd:schema elementFormDefault='qualified' xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapi.ovh.com/manager">
26
26
 
27
- <xsd:element name="telephonyConferenceDel">
28
- <xsd:complexType>
29
- <xsd:sequence>
30
- <xsd:element name="session" type="xsd:string" nillable="true" />
31
- <xsd:element name="number" type="xsd:string" nillable="true" />
32
- <xsd:element name="country" type="xsd:string" nillable="true" />
33
- <xsd:element name="room" type="xsd:string" nillable="true" />
34
- </xsd:sequence>
35
- </xsd:complexType>
36
- </xsd:element>
37
-
38
- <xsd:element name="telephonyConferenceDelResponse">
39
- <xsd:complexType>
40
- <xsd:sequence />
41
- </xsd:complexType>
42
- </xsd:element>
43
-
44
27
  <xsd:element name="mailingListModeratorDel">
45
28
  <xsd:complexType>
46
29
  <xsd:sequence>
@@ -1125,6 +1108,25 @@
1125
1108
  </xsd:complexType>
1126
1109
  </xsd:element>
1127
1110
 
1111
+ <xsd:element name="telephonyConferenceSetAnnounceFile">
1112
+ <xsd:complexType>
1113
+ <xsd:sequence>
1114
+ <xsd:element name="session" type="xsd:string" nillable="true" />
1115
+ <xsd:element name="number" type="xsd:string" nillable="true" />
1116
+ <xsd:element name="country" type="xsd:string" nillable="true" />
1117
+ <xsd:element name="filename" type="xsd:string" nillable="true" />
1118
+ <xsd:element name="filedata" type="xsd:string" nillable="true" />
1119
+ <xsd:element name="md5sum" type="xsd:string" nillable="true" />
1120
+ </xsd:sequence>
1121
+ </xsd:complexType>
1122
+ </xsd:element>
1123
+
1124
+ <xsd:element name="telephonyConferenceSetAnnounceFileResponse">
1125
+ <xsd:complexType>
1126
+ <xsd:sequence />
1127
+ </xsd:complexType>
1128
+ </xsd:element>
1129
+
1128
1130
  <xsd:element name="automatedMailGetErrors">
1129
1131
  <xsd:complexType>
1130
1132
  <xsd:sequence>
@@ -1544,25 +1546,6 @@
1544
1546
  </xsd:complexType>
1545
1547
  </xsd:element>
1546
1548
 
1547
- <xsd:element name="telephonyConferenceMailReportModify">
1548
- <xsd:complexType>
1549
- <xsd:sequence>
1550
- <xsd:element name="session" type="xsd:string" nillable="true" />
1551
- <xsd:element name="number" type="xsd:string" nillable="true" />
1552
- <xsd:element name="country" type="xsd:string" nillable="true" />
1553
- <xsd:element name="room" type="xsd:string" nillable="true" />
1554
- <xsd:element name="enable" type="xsd:boolean" nillable="true" />
1555
- <xsd:element name="email" type="xsd:string" nillable="true" />
1556
- </xsd:sequence>
1557
- </xsd:complexType>
1558
- </xsd:element>
1559
-
1560
- <xsd:element name="telephonyConferenceMailReportModifyResponse">
1561
- <xsd:complexType>
1562
- <xsd:sequence />
1563
- </xsd:complexType>
1564
- </xsd:element>
1565
-
1566
1549
  <xsd:element name="telephonyAbbreviatedNumberDel">
1567
1550
  <xsd:complexType>
1568
1551
  <xsd:sequence>
@@ -1859,6 +1842,20 @@
1859
1842
  <xsd:element name="prefix" type="xsd:string" nillable="true" />
1860
1843
  <xsd:element name="category" type="xsd:string" nillable="true" />
1861
1844
  <xsd:element name="numberToReserve" type="xsd:string" nillable="true" />
1845
+ <xsd:element name="name" type="xsd:string" nillable="true" />
1846
+ <xsd:element name="firstname" type="xsd:string" nillable="true" />
1847
+ <xsd:element name="streetName" type="xsd:string" nillable="true" />
1848
+ <xsd:element name="streetNumber" type="xsd:string" nillable="true" />
1849
+ <xsd:element name="zip" type="xsd:string" nillable="true" />
1850
+ <xsd:element name="city" type="xsd:string" nillable="true" />
1851
+ <xsd:element name="email" type="xsd:string" nillable="true" />
1852
+ <xsd:element name="procedureId" type="xsd:int" nillable="true" />
1853
+ <xsd:element name="legalForm" type="xsd:string" nillable="true" />
1854
+ <xsd:element name="siret" type="xsd:string" nillable="true" />
1855
+ <xsd:element name="ape" type="xsd:string" nillable="true" />
1856
+ <xsd:element name="socialNomination" type="xsd:string" nillable="true" />
1857
+ <xsd:element name="displayUniversalDirectory" type="xsd:string" nillable="true" />
1858
+ <xsd:element name="retractation" type="xsd:string" nillable="true" />
1862
1859
  </xsd:sequence>
1863
1860
  </xsd:complexType>
1864
1861
  </xsd:element>
@@ -2045,25 +2042,6 @@
2045
2042
  </xsd:complexType>
2046
2043
  </xsd:element>
2047
2044
 
2048
- <xsd:element name="telephonyConferenceModeratorCallNumberModify">
2049
- <xsd:complexType>
2050
- <xsd:sequence>
2051
- <xsd:element name="session" type="xsd:string" nillable="true" />
2052
- <xsd:element name="number" type="xsd:string" nillable="true" />
2053
- <xsd:element name="country" type="xsd:string" nillable="true" />
2054
- <xsd:element name="room" type="xsd:string" nillable="true" />
2055
- <xsd:element name="moderatorCallNumber" type="xsd:string" nillable="true" />
2056
- <xsd:element name="moderatorCountryCode" type="xsd:string" nillable="true" />
2057
- </xsd:sequence>
2058
- </xsd:complexType>
2059
- </xsd:element>
2060
-
2061
- <xsd:element name="telephonyConferenceModeratorCallNumberModifyResponse">
2062
- <xsd:complexType>
2063
- <xsd:sequence />
2064
- </xsd:complexType>
2065
- </xsd:element>
2066
-
2067
2045
  <xsd:element name="sqlpriveAlertInfo">
2068
2046
  <xsd:complexType>
2069
2047
  <xsd:sequence>
@@ -2081,25 +2059,6 @@
2081
2059
  </xsd:complexType>
2082
2060
  </xsd:element>
2083
2061
 
2084
- <xsd:element name="telephonyOfferSimultaneousLinesAdd">
2085
- <xsd:complexType>
2086
- <xsd:sequence>
2087
- <xsd:element name="session" type="xsd:string" nillable="true" />
2088
- <xsd:element name="number" type="xsd:string" nillable="true" />
2089
- <xsd:element name="country" type="xsd:string" nillable="true" />
2090
- <xsd:element name="simultaneousLines" type="xsd:int" nillable="true" />
2091
- </xsd:sequence>
2092
- </xsd:complexType>
2093
- </xsd:element>
2094
-
2095
- <xsd:element name="telephonyOfferSimultaneousLinesAddResponse">
2096
- <xsd:complexType>
2097
- <xsd:sequence>
2098
- <xsd:element name="return" type="typens:orderStruct" />
2099
- </xsd:sequence>
2100
- </xsd:complexType>
2101
- </xsd:element>
2102
-
2103
2062
  <xsd:element name="mailingListFullInfo">
2104
2063
  <xsd:complexType>
2105
2064
  <xsd:sequence>
@@ -2347,24 +2306,6 @@
2347
2306
  </xsd:complexType>
2348
2307
  </xsd:element>
2349
2308
 
2350
- <xsd:element name="telephonyConferenceList">
2351
- <xsd:complexType>
2352
- <xsd:sequence>
2353
- <xsd:element name="session" type="xsd:string" nillable="true" />
2354
- <xsd:element name="number" type="xsd:string" nillable="true" />
2355
- <xsd:element name="country" type="xsd:string" nillable="true" />
2356
- </xsd:sequence>
2357
- </xsd:complexType>
2358
- </xsd:element>
2359
-
2360
- <xsd:element name="telephonyConferenceListResponse">
2361
- <xsd:complexType>
2362
- <xsd:sequence>
2363
- <xsd:element name="return" type="typens:MyArrayOfTelephonyConferenceStructType" />
2364
- </xsd:sequence>
2365
- </xsd:complexType>
2366
- </xsd:element>
2367
-
2368
2309
  <xsd:element name="managedServicesPartitionQuotaUsed">
2369
2310
  <xsd:complexType>
2370
2311
  <xsd:sequence>
@@ -3183,24 +3124,6 @@
3183
3124
  </xsd:complexType>
3184
3125
  </xsd:element>
3185
3126
 
3186
- <xsd:element name="password">
3187
- <xsd:complexType>
3188
- <xsd:sequence>
3189
- <xsd:element name="session" type="xsd:string" nillable="true" />
3190
- <xsd:element name="nic" type="xsd:string" nillable="true" />
3191
- <xsd:element name="password" type="xsd:string" nillable="true" />
3192
- </xsd:sequence>
3193
- </xsd:complexType>
3194
- </xsd:element>
3195
-
3196
- <xsd:element name="passwordResponse">
3197
- <xsd:complexType>
3198
- <xsd:sequence>
3199
- <xsd:element name="return" type="xsd:string" />
3200
- </xsd:sequence>
3201
- </xsd:complexType>
3202
- </xsd:element>
3203
-
3204
3127
  <xsd:element name="telephonySmsplusIsFreeKeyword">
3205
3128
  <xsd:complexType>
3206
3129
  <xsd:sequence>
@@ -3453,6 +3376,28 @@
3453
3376
  </xsd:complexType>
3454
3377
  </xsd:element>
3455
3378
 
3379
+ <xsd:element name="telephonySparePurchase">
3380
+ <xsd:complexType>
3381
+ <xsd:sequence>
3382
+ <xsd:element name="session" type="xsd:string" nillable="true" />
3383
+ <xsd:element name="offers" type="typens:MyArrayOfStringType" nillable="true" />
3384
+ <xsd:element name="quantities" type="typens:MyArrayOfIntType" nillable="true" />
3385
+ <xsd:element name="address" type="xsd:string" nillable="true" />
3386
+ <xsd:element name="zip" type="xsd:string" nillable="true" />
3387
+ <xsd:element name="city" type="xsd:string" nillable="true" />
3388
+ <xsd:element name="name" type="xsd:string" nillable="true" />
3389
+ </xsd:sequence>
3390
+ </xsd:complexType>
3391
+ </xsd:element>
3392
+
3393
+ <xsd:element name="telephonySparePurchaseResponse">
3394
+ <xsd:complexType>
3395
+ <xsd:sequence>
3396
+ <xsd:element name="return" type="typens:orderStruct" />
3397
+ </xsd:sequence>
3398
+ </xsd:complexType>
3399
+ </xsd:element>
3400
+
3456
3401
  <xsd:element name="nic">
3457
3402
  <xsd:complexType>
3458
3403
  <xsd:sequence>
@@ -3613,6 +3558,23 @@
3613
3558
  </xsd:complexType>
3614
3559
  </xsd:element>
3615
3560
 
3561
+ <xsd:element name="telephonyDirectoryInfoGetSiret">
3562
+ <xsd:complexType>
3563
+ <xsd:sequence>
3564
+ <xsd:element name="session" type="xsd:string" nillable="true" />
3565
+ <xsd:element name="siret" type="xsd:int" nillable="true" />
3566
+ </xsd:sequence>
3567
+ </xsd:complexType>
3568
+ </xsd:element>
3569
+
3570
+ <xsd:element name="telephonyDirectoryInfoGetSiretResponse">
3571
+ <xsd:complexType>
3572
+ <xsd:sequence>
3573
+ <xsd:element name="return" type="typens:telephonyDirectoryInfoGetSiretReturn" />
3574
+ </xsd:sequence>
3575
+ </xsd:complexType>
3576
+ </xsd:element>
3577
+
3616
3578
  <xsd:element name="dedicatedMonitoringServiceAdd">
3617
3579
  <xsd:complexType>
3618
3580
  <xsd:sequence>
@@ -4226,24 +4188,6 @@
4226
4188
  </xsd:complexType>
4227
4189
  </xsd:element>
4228
4190
 
4229
- <xsd:element name="telephonyConferenceRoomModify">
4230
- <xsd:complexType>
4231
- <xsd:sequence>
4232
- <xsd:element name="session" type="xsd:string" nillable="true" />
4233
- <xsd:element name="number" type="xsd:string" nillable="true" />
4234
- <xsd:element name="country" type="xsd:string" nillable="true" />
4235
- <xsd:element name="currentRoom" type="xsd:string" nillable="true" />
4236
- <xsd:element name="newRoom" type="xsd:string" nillable="true" />
4237
- </xsd:sequence>
4238
- </xsd:complexType>
4239
- </xsd:element>
4240
-
4241
- <xsd:element name="telephonyConferenceRoomModifyResponse">
4242
- <xsd:complexType>
4243
- <xsd:sequence />
4244
- </xsd:complexType>
4245
- </xsd:element>
4246
-
4247
4191
  <xsd:element name="dnsSoaModify">
4248
4192
  <xsd:complexType>
4249
4193
  <xsd:sequence>
@@ -5706,6 +5650,22 @@
5706
5650
  </xsd:complexType>
5707
5651
  </xsd:element>
5708
5652
 
5653
+ <xsd:element name="telephonySpareList">
5654
+ <xsd:complexType>
5655
+ <xsd:sequence>
5656
+ <xsd:element name="session" type="xsd:string" nillable="true" />
5657
+ </xsd:sequence>
5658
+ </xsd:complexType>
5659
+ </xsd:element>
5660
+
5661
+ <xsd:element name="telephonySpareListResponse">
5662
+ <xsd:complexType>
5663
+ <xsd:sequence>
5664
+ <xsd:element name="return" type="typens:MyArrayOfTelephonySpareListStructType" />
5665
+ </xsd:sequence>
5666
+ </xsd:complexType>
5667
+ </xsd:element>
5668
+
5709
5669
  <xsd:element name="supportReportAnswerProblem">
5710
5670
  <xsd:complexType>
5711
5671
  <xsd:sequence>
@@ -6616,6 +6576,22 @@
6616
6576
  </xsd:complexType>
6617
6577
  </xsd:element>
6618
6578
 
6579
+ <xsd:element name="passwordSoapi">
6580
+ <xsd:complexType>
6581
+ <xsd:sequence>
6582
+ <xsd:element name="session" type="xsd:string" nillable="true" />
6583
+ <xsd:element name="currentPassword" type="xsd:string" nillable="true" />
6584
+ <xsd:element name="password" type="xsd:string" nillable="true" />
6585
+ </xsd:sequence>
6586
+ </xsd:complexType>
6587
+ </xsd:element>
6588
+
6589
+ <xsd:element name="passwordSoapiResponse">
6590
+ <xsd:complexType>
6591
+ <xsd:sequence />
6592
+ </xsd:complexType>
6593
+ </xsd:element>
6594
+
6619
6595
  <xsd:element name="nicCreate">
6620
6596
  <xsd:complexType>
6621
6597
  <xsd:sequence>
@@ -6855,6 +6831,23 @@
6855
6831
  </xsd:complexType>
6856
6832
  </xsd:element>
6857
6833
 
6834
+ <xsd:element name="telephonySpareReplaceOutOfOrderModem">
6835
+ <xsd:complexType>
6836
+ <xsd:sequence>
6837
+ <xsd:element name="session" type="xsd:string" nillable="true" />
6838
+ <xsd:element name="newMac" type="xsd:string" nillable="true" />
6839
+ <xsd:element name="oldMac" type="xsd:string" nillable="true" />
6840
+ <xsd:element name="createAnticipatedReplacement" type="xsd:boolean" nillable="true" />
6841
+ </xsd:sequence>
6842
+ </xsd:complexType>
6843
+ </xsd:element>
6844
+
6845
+ <xsd:element name="telephonySpareReplaceOutOfOrderModemResponse">
6846
+ <xsd:complexType>
6847
+ <xsd:sequence />
6848
+ </xsd:complexType>
6849
+ </xsd:element>
6850
+
6858
6851
  <xsd:element name="telephonyPlugAndPhoneOperation">
6859
6852
  <xsd:complexType>
6860
6853
  <xsd:sequence>
@@ -6906,6 +6899,23 @@
6906
6899
  </xsd:complexType>
6907
6900
  </xsd:element>
6908
6901
 
6902
+ <xsd:element name="dedicatedCapabilitiesGet">
6903
+ <xsd:complexType>
6904
+ <xsd:sequence>
6905
+ <xsd:element name="session" type="xsd:string" nillable="true" />
6906
+ <xsd:element name="hostname" type="xsd:string" nillable="true" />
6907
+ </xsd:sequence>
6908
+ </xsd:complexType>
6909
+ </xsd:element>
6910
+
6911
+ <xsd:element name="dedicatedCapabilitiesGetResponse">
6912
+ <xsd:complexType>
6913
+ <xsd:sequence>
6914
+ <xsd:element name="return" type="typens:dedicatedCapabilitiesStruct" />
6915
+ </xsd:sequence>
6916
+ </xsd:complexType>
6917
+ </xsd:element>
6918
+
6909
6919
  <xsd:element name="telephonyPhonebookOnSmsContactModify">
6910
6920
  <xsd:complexType>
6911
6921
  <xsd:sequence>
@@ -6929,23 +6939,6 @@
6929
6939
  </xsd:complexType>
6930
6940
  </xsd:element>
6931
6941
 
6932
- <xsd:element name="dedicatedCapabilitiesGet">
6933
- <xsd:complexType>
6934
- <xsd:sequence>
6935
- <xsd:element name="session" type="xsd:string" nillable="true" />
6936
- <xsd:element name="hostname" type="xsd:string" nillable="true" />
6937
- </xsd:sequence>
6938
- </xsd:complexType>
6939
- </xsd:element>
6940
-
6941
- <xsd:element name="dedicatedCapabilitiesGetResponse">
6942
- <xsd:complexType>
6943
- <xsd:sequence>
6944
- <xsd:element name="return" type="typens:dedicatedCapabilitiesStruct" />
6945
- </xsd:sequence>
6946
- </xsd:complexType>
6947
- </xsd:element>
6948
-
6949
6942
  <xsd:element name="telephonyPhonebookOnSmsModify">
6950
6943
  <xsd:complexType>
6951
6944
  <xsd:sequence>
@@ -7165,24 +7158,6 @@
7165
7158
  </xsd:complexType>
7166
7159
  </xsd:element>
7167
7160
 
7168
- <xsd:element name="telephonyConferenceLanguageModify">
7169
- <xsd:complexType>
7170
- <xsd:sequence>
7171
- <xsd:element name="session" type="xsd:string" nillable="true" />
7172
- <xsd:element name="number" type="xsd:string" nillable="true" />
7173
- <xsd:element name="country" type="xsd:string" nillable="true" />
7174
- <xsd:element name="room" type="xsd:string" nillable="true" />
7175
- <xsd:element name="newLanguage" type="xsd:string" nillable="true" />
7176
- </xsd:sequence>
7177
- </xsd:complexType>
7178
- </xsd:element>
7179
-
7180
- <xsd:element name="telephonyConferenceLanguageModifyResponse">
7181
- <xsd:complexType>
7182
- <xsd:sequence />
7183
- </xsd:complexType>
7184
- </xsd:element>
7185
-
7186
7161
  <xsd:element name="telephonySmsUserPassword">
7187
7162
  <xsd:complexType>
7188
7163
  <xsd:sequence>
@@ -7329,6 +7304,8 @@
7329
7304
  <xsd:complexType>
7330
7305
  <xsd:sequence>
7331
7306
  <xsd:element name="session" type="xsd:string" nillable="true" />
7307
+ <xsd:element name="country" type="xsd:string" nillable="true" />
7308
+ <xsd:element name="types" type="typens:MyArrayOfStringType" nillable="true" />
7332
7309
  </xsd:sequence>
7333
7310
  </xsd:complexType>
7334
7311
  </xsd:element>
@@ -7390,23 +7367,6 @@
7390
7367
  </xsd:complexType>
7391
7368
  </xsd:element>
7392
7369
 
7393
- <xsd:element name="telephonyConferenceAdd">
7394
- <xsd:complexType>
7395
- <xsd:sequence>
7396
- <xsd:element name="session" type="xsd:string" nillable="true" />
7397
- <xsd:element name="number" type="xsd:string" nillable="true" />
7398
- <xsd:element name="country" type="xsd:string" nillable="true" />
7399
- <xsd:element name="language" type="xsd:string" nillable="true" />
7400
- </xsd:sequence>
7401
- </xsd:complexType>
7402
- </xsd:element>
7403
-
7404
- <xsd:element name="telephonyConferenceAddResponse">
7405
- <xsd:complexType>
7406
- <xsd:sequence />
7407
- </xsd:complexType>
7408
- </xsd:element>
7409
-
7410
7370
  <xsd:element name="telephonyTrunkExternalDisplayedNumberDel">
7411
7371
  <xsd:complexType>
7412
7372
  <xsd:sequence>
@@ -7515,6 +7475,22 @@
7515
7475
  </xsd:complexType>
7516
7476
  </xsd:element>
7517
7477
 
7478
+ <xsd:element name="telephonySpareBrandPossibilities">
7479
+ <xsd:complexType>
7480
+ <xsd:sequence>
7481
+ <xsd:element name="session" type="xsd:string" nillable="true" />
7482
+ </xsd:sequence>
7483
+ </xsd:complexType>
7484
+ </xsd:element>
7485
+
7486
+ <xsd:element name="telephonySpareBrandPossibilitiesResponse">
7487
+ <xsd:complexType>
7488
+ <xsd:sequence>
7489
+ <xsd:element name="return" type="typens:MyArrayOfTelephonySpareBrandListStructType" />
7490
+ </xsd:sequence>
7491
+ </xsd:complexType>
7492
+ </xsd:element>
7493
+
7518
7494
  <xsd:element name="nicModifyInfosIT">
7519
7495
  <xsd:complexType>
7520
7496
  <xsd:sequence>
@@ -7728,6 +7704,7 @@
7728
7704
  <xsd:complexType>
7729
7705
  <xsd:sequence>
7730
7706
  <xsd:element name="session" type="xsd:string" nillable="true" />
7707
+ <xsd:element name="billingAccount" type="xsd:string" nillable="true" />
7731
7708
  </xsd:sequence>
7732
7709
  </xsd:complexType>
7733
7710
  </xsd:element>
@@ -8107,24 +8084,6 @@
8107
8084
  </xsd:complexType>
8108
8085
  </xsd:element>
8109
8086
 
8110
- <xsd:element name="telephonyConferenceAnnounceDelete">
8111
- <xsd:complexType>
8112
- <xsd:sequence>
8113
- <xsd:element name="session" type="xsd:string" nillable="true" />
8114
- <xsd:element name="number" type="xsd:string" nillable="true" />
8115
- <xsd:element name="country" type="xsd:string" nillable="true" />
8116
- <xsd:element name="room" type="xsd:string" nillable="true" />
8117
- <xsd:element name="announceType" type="xsd:string" nillable="true" />
8118
- </xsd:sequence>
8119
- </xsd:complexType>
8120
- </xsd:element>
8121
-
8122
- <xsd:element name="telephonyConferenceAnnounceDeleteResponse">
8123
- <xsd:complexType>
8124
- <xsd:sequence />
8125
- </xsd:complexType>
8126
- </xsd:element>
8127
-
8128
8087
  <xsd:element name="dedicatedNetbootModifyById">
8129
8088
  <xsd:complexType>
8130
8089
  <xsd:sequence>
@@ -8230,25 +8189,6 @@
8230
8189
  </xsd:complexType>
8231
8190
  </xsd:element>
8232
8191
 
8233
- <xsd:element name="telephonyConferenceAnnouncesStatus">
8234
- <xsd:complexType>
8235
- <xsd:sequence>
8236
- <xsd:element name="session" type="xsd:string" nillable="true" />
8237
- <xsd:element name="number" type="xsd:string" nillable="true" />
8238
- <xsd:element name="country" type="xsd:string" nillable="true" />
8239
- <xsd:element name="room" type="xsd:string" nillable="true" />
8240
- </xsd:sequence>
8241
- </xsd:complexType>
8242
- </xsd:element>
8243
-
8244
- <xsd:element name="telephonyConferenceAnnouncesStatusResponse">
8245
- <xsd:complexType>
8246
- <xsd:sequence>
8247
- <xsd:element name="return" type="typens:telephonyConferenceAnnouncesStatusReturn" />
8248
- </xsd:sequence>
8249
- </xsd:complexType>
8250
- </xsd:element>
8251
-
8252
8192
  <xsd:element name="resellerDomainCreateASIA">
8253
8193
  <xsd:complexType>
8254
8194
  <xsd:sequence>
@@ -8288,20 +8228,20 @@
8288
8228
  </xsd:complexType>
8289
8229
  </xsd:element>
8290
8230
 
8291
- <xsd:element name="nicChangePassword">
8231
+ <xsd:element name="telephonyLineDetails">
8292
8232
  <xsd:complexType>
8293
8233
  <xsd:sequence>
8294
8234
  <xsd:element name="session" type="xsd:string" nillable="true" />
8295
- <xsd:element name="nic" type="xsd:string" nillable="true" />
8296
- <xsd:element name="password" type="xsd:string" nillable="true" />
8235
+ <xsd:element name="number" type="xsd:string" nillable="true" />
8236
+ <xsd:element name="countryCode" type="xsd:string" nillable="true" />
8297
8237
  </xsd:sequence>
8298
8238
  </xsd:complexType>
8299
8239
  </xsd:element>
8300
8240
 
8301
- <xsd:element name="nicChangePasswordResponse">
8241
+ <xsd:element name="telephonyLineDetailsResponse">
8302
8242
  <xsd:complexType>
8303
8243
  <xsd:sequence>
8304
- <xsd:element name="return" type="xsd:string" />
8244
+ <xsd:element name="return" type="typens:telephonyLineStruct" />
8305
8245
  </xsd:sequence>
8306
8246
  </xsd:complexType>
8307
8247
  </xsd:element>
@@ -8558,25 +8498,6 @@
8558
8498
  </xsd:complexType>
8559
8499
  </xsd:element>
8560
8500
 
8561
- <xsd:element name="telephonyPhonebookOnSmsContactList">
8562
- <xsd:complexType>
8563
- <xsd:sequence>
8564
- <xsd:element name="session" type="xsd:string" nillable="true" />
8565
- <xsd:element name="smsAccount" type="xsd:string" nillable="true" />
8566
- <xsd:element name="id" type="xsd:int" nillable="true" />
8567
- <xsd:element name="groupName" type="xsd:string" nillable="true" />
8568
- </xsd:sequence>
8569
- </xsd:complexType>
8570
- </xsd:element>
8571
-
8572
- <xsd:element name="telephonyPhonebookOnSmsContactListResponse">
8573
- <xsd:complexType>
8574
- <xsd:sequence>
8575
- <xsd:element name="return" type="typens:MyArrayOfTelephonyPhonebookContactStructType" />
8576
- </xsd:sequence>
8577
- </xsd:complexType>
8578
- </xsd:element>
8579
-
8580
8501
  <xsd:element name="serviceList">
8581
8502
  <xsd:complexType>
8582
8503
  <xsd:sequence>
@@ -8613,6 +8534,25 @@
8613
8534
  </xsd:complexType>
8614
8535
  </xsd:element>
8615
8536
 
8537
+ <xsd:element name="telephonyPhonebookOnSmsContactList">
8538
+ <xsd:complexType>
8539
+ <xsd:sequence>
8540
+ <xsd:element name="session" type="xsd:string" nillable="true" />
8541
+ <xsd:element name="smsAccount" type="xsd:string" nillable="true" />
8542
+ <xsd:element name="id" type="xsd:int" nillable="true" />
8543
+ <xsd:element name="groupName" type="xsd:string" nillable="true" />
8544
+ </xsd:sequence>
8545
+ </xsd:complexType>
8546
+ </xsd:element>
8547
+
8548
+ <xsd:element name="telephonyPhonebookOnSmsContactListResponse">
8549
+ <xsd:complexType>
8550
+ <xsd:sequence>
8551
+ <xsd:element name="return" type="typens:MyArrayOfTelephonyPhonebookContactStructType" />
8552
+ </xsd:sequence>
8553
+ </xsd:complexType>
8554
+ </xsd:element>
8555
+
8616
8556
  <xsd:element name="nicCreateIT">
8617
8557
  <xsd:complexType>
8618
8558
  <xsd:sequence>
@@ -10429,7 +10369,6 @@
10429
10369
  <xsd:element name="firstname" type="xsd:string" nillable="true" />
10430
10370
  <xsd:element name="streetName" type="xsd:string" nillable="true" />
10431
10371
  <xsd:element name="streetNumber" type="xsd:string" nillable="true" />
10432
- <xsd:element name="address" type="xsd:string" nillable="true" />
10433
10372
  <xsd:element name="zip" type="xsd:string" nillable="true" />
10434
10373
  <xsd:element name="city" type="xsd:string" nillable="true" />
10435
10374
  <xsd:element name="email" type="xsd:string" nillable="true" />
@@ -11174,6 +11113,22 @@
11174
11113
  </xsd:complexType>
11175
11114
  </xsd:element>
11176
11115
 
11116
+ <xsd:element name="passwordManager">
11117
+ <xsd:complexType>
11118
+ <xsd:sequence>
11119
+ <xsd:element name="session" type="xsd:string" nillable="true" />
11120
+ <xsd:element name="currentPassword" type="xsd:string" nillable="true" />
11121
+ <xsd:element name="password" type="xsd:string" nillable="true" />
11122
+ </xsd:sequence>
11123
+ </xsd:complexType>
11124
+ </xsd:element>
11125
+
11126
+ <xsd:element name="passwordManagerResponse">
11127
+ <xsd:complexType>
11128
+ <xsd:sequence />
11129
+ </xsd:complexType>
11130
+ </xsd:element>
11131
+
11177
11132
  <xsd:element name="telephonyOfferModifyName">
11178
11133
  <xsd:complexType>
11179
11134
  <xsd:sequence>
@@ -11758,30 +11713,6 @@
11758
11713
  </xsd:complexType>
11759
11714
  </xsd:element>
11760
11715
 
11761
- <xsd:element name="telephonyConferenceOptionsModify">
11762
- <xsd:complexType>
11763
- <xsd:sequence>
11764
- <xsd:element name="session" type="xsd:string" nillable="true" />
11765
- <xsd:element name="number" type="xsd:string" nillable="true" />
11766
- <xsd:element name="country" type="xsd:string" nillable="true" />
11767
- <xsd:element name="room" type="xsd:string" nillable="true" />
11768
- <xsd:element name="askName" type="xsd:boolean" nillable="true" />
11769
- <xsd:element name="tellMemberCount" type="xsd:boolean" nillable="true" />
11770
- <xsd:element name="announce_rcv" type="xsd:boolean" nillable="true" />
11771
- <xsd:element name="announce_snd" type="xsd:boolean" nillable="true" />
11772
- <xsd:element name="dtmfmenu" type="xsd:boolean" nillable="true" />
11773
- <xsd:element name="recordConf" type="xsd:boolean" nillable="true" />
11774
- <xsd:element name="recordDir" type="xsd:string" nillable="true" />
11775
- </xsd:sequence>
11776
- </xsd:complexType>
11777
- </xsd:element>
11778
-
11779
- <xsd:element name="telephonyConferenceOptionsModifyResponse">
11780
- <xsd:complexType>
11781
- <xsd:sequence />
11782
- </xsd:complexType>
11783
- </xsd:element>
11784
-
11785
11716
  <xsd:element name="dedicatedGetAvailableIpFromNetwork">
11786
11717
  <xsd:complexType>
11787
11718
  <xsd:sequence>
@@ -12202,6 +12133,25 @@
12202
12133
  </xsd:complexType>
12203
12134
  </xsd:element>
12204
12135
 
12136
+ <xsd:element name="telephonyOfferSimultaneousLinesModify">
12137
+ <xsd:complexType>
12138
+ <xsd:sequence>
12139
+ <xsd:element name="session" type="xsd:string" nillable="true" />
12140
+ <xsd:element name="number" type="xsd:string" nillable="true" />
12141
+ <xsd:element name="country" type="xsd:string" nillable="true" />
12142
+ <xsd:element name="simultaneousLines" type="xsd:int" nillable="true" />
12143
+ </xsd:sequence>
12144
+ </xsd:complexType>
12145
+ </xsd:element>
12146
+
12147
+ <xsd:element name="telephonyOfferSimultaneousLinesModifyResponse">
12148
+ <xsd:complexType>
12149
+ <xsd:sequence>
12150
+ <xsd:element name="return" type="typens:orderStruct" />
12151
+ </xsd:sequence>
12152
+ </xsd:complexType>
12153
+ </xsd:element>
12154
+
12205
12155
  <xsd:element name="dedicatedMonitoringServiceList">
12206
12156
  <xsd:complexType>
12207
12157
  <xsd:sequence>
@@ -12868,9 +12818,11 @@
12868
12818
  <xsd:element name="pin" type="xsd:int"/>
12869
12819
  <xsd:element name="enterMuted" type="xsd:boolean"/>
12870
12820
  <xsd:element name="announceStatus" type="xsd:boolean"/>
12821
+ <xsd:element name="announceFilename" type="xsd:string"/>
12871
12822
  <xsd:element name="recordStatus" type="xsd:boolean"/>
12872
12823
  <xsd:element name="reportStatus" type="xsd:string"/>
12873
12824
  <xsd:element name="reportMail" type="xsd:string"/>
12825
+ <xsd:element name="eventsHash" type="xsd:string"/>
12874
12826
  </xsd:sequence>
12875
12827
  </xsd:complexType>
12876
12828
 
@@ -13012,6 +12964,18 @@
13012
12964
  </xsd:sequence>
13013
12965
  </xsd:complexType>
13014
12966
 
12967
+ <xsd:complexType name="telephonyDirectoryInfoGetSiretReturn">
12968
+ <xsd:sequence>
12969
+ <xsd:element name="name" type="xsd:string"/>
12970
+ <xsd:element name="siret" type="xsd:int"/>
12971
+ <xsd:element name="siren" type="xsd:int"/>
12972
+ <xsd:element name="ape" type="xsd:string"/>
12973
+ <xsd:element name="address" type="xsd:string"/>
12974
+ <xsd:element name="juridicCategory" type="xsd:string"/>
12975
+ <xsd:element name="brand" type="xsd:string"/>
12976
+ </xsd:sequence>
12977
+ </xsd:complexType>
12978
+
13015
12979
  <xsd:complexType name="telephonyAvailableFunctionStruct">
13016
12980
  <xsd:sequence>
13017
12981
  <xsd:element name="function" type="xsd:string"/>
@@ -13163,11 +13127,12 @@
13163
13127
  <xsd:element name="billingAccount" type="xsd:string"/>
13164
13128
  <xsd:element name="callNumber" type="xsd:string"/>
13165
13129
  <xsd:element name="extraNumbers" type="typens:MyArrayOfStringType"/>
13130
+ <xsd:element name="planDate" type="xsd:string"/>
13166
13131
  <xsd:element name="resellerOrder" type="xsd:boolean"/>
13167
13132
  <xsd:element name="customerMailSent" type="xsd:boolean"/>
13168
- <xsd:element name="customerMailSendDate" type="xsd:boolean"/>
13133
+ <xsd:element name="customerMailSendDate" type="xsd:string"/>
13169
13134
  <xsd:element name="customerMailReturned" type="xsd:boolean"/>
13170
- <xsd:element name="customerMailReturnDate" type="xsd:boolean"/>
13135
+ <xsd:element name="customerMailReturnDate" type="xsd:string"/>
13171
13136
  <xsd:element name="customerMailTracking" type="xsd:string"/>
13172
13137
  <xsd:element name="rangeHolderName" type="xsd:string"/>
13173
13138
  <xsd:element name="losingCpName" type="xsd:string"/>
@@ -13197,6 +13162,8 @@
13197
13162
 
13198
13163
  <xsd:complexType name="telephonyNumberZoneAndPrefixStruct">
13199
13164
  <xsd:sequence>
13165
+ <xsd:element name="country" type="xsd:string"/>
13166
+ <xsd:element name="type" type="xsd:string"/>
13200
13167
  <xsd:element name="zone" type="xsd:string"/>
13201
13168
  <xsd:element name="prefix" type="xsd:string"/>
13202
13169
  </xsd:sequence>
@@ -13541,6 +13508,20 @@
13541
13508
  </xsd:sequence>
13542
13509
  </xsd:complexType>
13543
13510
 
13511
+ <xsd:complexType name="telephonySpareListStruct">
13512
+ <xsd:sequence>
13513
+ <xsd:element name="mac" type="xsd:string"/>
13514
+ <xsd:element name="brand" type="xsd:string"/>
13515
+ </xsd:sequence>
13516
+ </xsd:complexType>
13517
+
13518
+ <xsd:complexType name="telephonySpareBrandListStruct">
13519
+ <xsd:sequence>
13520
+ <xsd:element name="name" type="xsd:string"/>
13521
+ <xsd:element name="price_fr" type="xsd:string"/>
13522
+ </xsd:sequence>
13523
+ </xsd:complexType>
13524
+
13544
13525
  <xsd:element name="MyArrayOfTelephonyBillingAccountStruct" type="typens:MyArrayOfTelephonyBillingAccountStructType" />
13545
13526
  <xsd:complexType name="MyArrayOfTelephonyBillingAccountStructType">
13546
13527
  <xsd:sequence>
@@ -13639,13 +13620,6 @@
13639
13620
  </xsd:sequence>
13640
13621
  </xsd:complexType>
13641
13622
 
13642
- <xsd:element name="MyArrayOfTelephonyConferenceStruct" type="typens:MyArrayOfTelephonyConferenceStructType" />
13643
- <xsd:complexType name="MyArrayOfTelephonyConferenceStructType">
13644
- <xsd:sequence>
13645
- <xsd:element name="item" type="typens:telephonyConferenceStruct" minOccurs="0" maxOccurs="unbounded"/>
13646
- </xsd:sequence>
13647
- </xsd:complexType>
13648
-
13649
13623
  <xsd:element name="MyArrayOfTelephonySmsCsvSlotStruct" type="typens:MyArrayOfTelephonySmsCsvSlotStructType" />
13650
13624
  <xsd:complexType name="MyArrayOfTelephonySmsCsvSlotStructType">
13651
13625
  <xsd:sequence>
@@ -13828,6 +13802,20 @@
13828
13802
  </xsd:sequence>
13829
13803
  </xsd:complexType>
13830
13804
 
13805
+ <xsd:element name="MyArrayOfTelephonySpareBrandListStruct" type="typens:MyArrayOfTelephonySpareBrandListStructType" />
13806
+ <xsd:complexType name="MyArrayOfTelephonySpareBrandListStructType">
13807
+ <xsd:sequence>
13808
+ <xsd:element name="item" type="typens:telephonySpareBrandListStruct" minOccurs="0" maxOccurs="unbounded"/>
13809
+ </xsd:sequence>
13810
+ </xsd:complexType>
13811
+
13812
+ <xsd:element name="MyArrayOfTelephonySpareListStruct" type="typens:MyArrayOfTelephonySpareListStructType" />
13813
+ <xsd:complexType name="MyArrayOfTelephonySpareListStructType">
13814
+ <xsd:sequence>
13815
+ <xsd:element name="item" type="typens:telephonySpareListStruct" minOccurs="0" maxOccurs="unbounded"/>
13816
+ </xsd:sequence>
13817
+ </xsd:complexType>
13818
+
13831
13819
  <xsd:element name="MyArrayOfTelephonyBillingAccountInfoChildrenStruct" type="typens:MyArrayOfTelephonyBillingAccountInfoChildrenStructType" />
13832
13820
  <xsd:complexType name="MyArrayOfTelephonyBillingAccountInfoChildrenStructType">
13833
13821
  <xsd:sequence>
@@ -16296,14 +16284,6 @@
16296
16284
  </xsd:schema>
16297
16285
  </wsdl:types>
16298
16286
 
16299
- <wsdl:message name="telephonyConferenceDelRequest">
16300
- <wsdl:part name="parameters" element="typens:telephonyConferenceDel" />
16301
- </wsdl:message>
16302
-
16303
- <wsdl:message name="telephonyConferenceDelResponse">
16304
- <wsdl:part name="parameters" element="typens:telephonyConferenceDelResponse" />
16305
- </wsdl:message>
16306
-
16307
16287
  <wsdl:message name="mailingListModeratorDelRequest">
16308
16288
  <wsdl:part name="parameters" element="typens:mailingListModeratorDel" />
16309
16289
  </wsdl:message>
@@ -16784,6 +16764,14 @@
16784
16764
  <wsdl:part name="parameters" element="typens:overquotaInfoResponse" />
16785
16765
  </wsdl:message>
16786
16766
 
16767
+ <wsdl:message name="telephonyConferenceSetAnnounceFileRequest">
16768
+ <wsdl:part name="parameters" element="typens:telephonyConferenceSetAnnounceFile" />
16769
+ </wsdl:message>
16770
+
16771
+ <wsdl:message name="telephonyConferenceSetAnnounceFileResponse">
16772
+ <wsdl:part name="parameters" element="typens:telephonyConferenceSetAnnounceFileResponse" />
16773
+ </wsdl:message>
16774
+
16787
16775
  <wsdl:message name="automatedMailGetErrorsRequest">
16788
16776
  <wsdl:part name="parameters" element="typens:automatedMailGetErrors" />
16789
16777
  </wsdl:message>
@@ -16968,14 +16956,6 @@
16968
16956
  <wsdl:part name="parameters" element="typens:emailDomainListByMasterNicResponse" />
16969
16957
  </wsdl:message>
16970
16958
 
16971
- <wsdl:message name="telephonyConferenceMailReportModifyRequest">
16972
- <wsdl:part name="parameters" element="typens:telephonyConferenceMailReportModify" />
16973
- </wsdl:message>
16974
-
16975
- <wsdl:message name="telephonyConferenceMailReportModifyResponse">
16976
- <wsdl:part name="parameters" element="typens:telephonyConferenceMailReportModifyResponse" />
16977
- </wsdl:message>
16978
-
16979
16959
  <wsdl:message name="telephonyAbbreviatedNumberDelRequest">
16980
16960
  <wsdl:part name="parameters" element="typens:telephonyAbbreviatedNumberDel" />
16981
16961
  </wsdl:message>
@@ -17176,14 +17156,6 @@
17176
17156
  <wsdl:part name="parameters" element="typens:hostingAccessByNicResponse" />
17177
17157
  </wsdl:message>
17178
17158
 
17179
- <wsdl:message name="telephonyConferenceModeratorCallNumberModifyRequest">
17180
- <wsdl:part name="parameters" element="typens:telephonyConferenceModeratorCallNumberModify" />
17181
- </wsdl:message>
17182
-
17183
- <wsdl:message name="telephonyConferenceModeratorCallNumberModifyResponse">
17184
- <wsdl:part name="parameters" element="typens:telephonyConferenceModeratorCallNumberModifyResponse" />
17185
- </wsdl:message>
17186
-
17187
17159
  <wsdl:message name="sqlpriveAlertInfoRequest">
17188
17160
  <wsdl:part name="parameters" element="typens:sqlpriveAlertInfo" />
17189
17161
  </wsdl:message>
@@ -17192,14 +17164,6 @@
17192
17164
  <wsdl:part name="parameters" element="typens:sqlpriveAlertInfoResponse" />
17193
17165
  </wsdl:message>
17194
17166
 
17195
- <wsdl:message name="telephonyOfferSimultaneousLinesAddRequest">
17196
- <wsdl:part name="parameters" element="typens:telephonyOfferSimultaneousLinesAdd" />
17197
- </wsdl:message>
17198
-
17199
- <wsdl:message name="telephonyOfferSimultaneousLinesAddResponse">
17200
- <wsdl:part name="parameters" element="typens:telephonyOfferSimultaneousLinesAddResponse" />
17201
- </wsdl:message>
17202
-
17203
17167
  <wsdl:message name="mailingListFullInfoRequest">
17204
17168
  <wsdl:part name="parameters" element="typens:mailingListFullInfo" />
17205
17169
  </wsdl:message>
@@ -17312,14 +17276,6 @@
17312
17276
  <wsdl:part name="parameters" element="typens:dedicatedRtmGetStatusResponse" />
17313
17277
  </wsdl:message>
17314
17278
 
17315
- <wsdl:message name="telephonyConferenceListRequest">
17316
- <wsdl:part name="parameters" element="typens:telephonyConferenceList" />
17317
- </wsdl:message>
17318
-
17319
- <wsdl:message name="telephonyConferenceListResponse">
17320
- <wsdl:part name="parameters" element="typens:telephonyConferenceListResponse" />
17321
- </wsdl:message>
17322
-
17323
17279
  <wsdl:message name="managedServicesPartitionQuotaUsedRequest">
17324
17280
  <wsdl:part name="parameters" element="typens:managedServicesPartitionQuotaUsed" />
17325
17281
  </wsdl:message>
@@ -17672,14 +17628,6 @@
17672
17628
  <wsdl:part name="parameters" element="typens:dedicatedEditServiceMonitoringItemResponse" />
17673
17629
  </wsdl:message>
17674
17630
 
17675
- <wsdl:message name="passwordRequest">
17676
- <wsdl:part name="parameters" element="typens:password" />
17677
- </wsdl:message>
17678
-
17679
- <wsdl:message name="passwordResponse">
17680
- <wsdl:part name="parameters" element="typens:passwordResponse" />
17681
- </wsdl:message>
17682
-
17683
17631
  <wsdl:message name="telephonySmsplusIsFreeKeywordRequest">
17684
17632
  <wsdl:part name="parameters" element="typens:telephonySmsplusIsFreeKeyword" />
17685
17633
  </wsdl:message>
@@ -17792,6 +17740,14 @@
17792
17740
  <wsdl:part name="parameters" element="typens:dedicatedCapabilitiesGetAllResponse" />
17793
17741
  </wsdl:message>
17794
17742
 
17743
+ <wsdl:message name="telephonySparePurchaseRequest">
17744
+ <wsdl:part name="parameters" element="typens:telephonySparePurchase" />
17745
+ </wsdl:message>
17746
+
17747
+ <wsdl:message name="telephonySparePurchaseResponse">
17748
+ <wsdl:part name="parameters" element="typens:telephonySparePurchaseResponse" />
17749
+ </wsdl:message>
17750
+
17795
17751
  <wsdl:message name="nicRequest">
17796
17752
  <wsdl:part name="parameters" element="typens:nic" />
17797
17753
  </wsdl:message>
@@ -17864,6 +17820,14 @@
17864
17820
  <wsdl:part name="parameters" element="typens:telephonySmsGetUserQuotaForUserResponse" />
17865
17821
  </wsdl:message>
17866
17822
 
17823
+ <wsdl:message name="telephonyDirectoryInfoGetSiretRequest">
17824
+ <wsdl:part name="parameters" element="typens:telephonyDirectoryInfoGetSiret" />
17825
+ </wsdl:message>
17826
+
17827
+ <wsdl:message name="telephonyDirectoryInfoGetSiretResponse">
17828
+ <wsdl:part name="parameters" element="typens:telephonyDirectoryInfoGetSiretResponse" />
17829
+ </wsdl:message>
17830
+
17867
17831
  <wsdl:message name="dedicatedMonitoringServiceAddRequest">
17868
17832
  <wsdl:part name="parameters" element="typens:dedicatedMonitoringServiceAdd" />
17869
17833
  </wsdl:message>
@@ -18144,14 +18108,6 @@
18144
18108
  <wsdl:part name="parameters" element="typens:telephonyVoicemailModifyPasswordResponse" />
18145
18109
  </wsdl:message>
18146
18110
 
18147
- <wsdl:message name="telephonyConferenceRoomModifyRequest">
18148
- <wsdl:part name="parameters" element="typens:telephonyConferenceRoomModify" />
18149
- </wsdl:message>
18150
-
18151
- <wsdl:message name="telephonyConferenceRoomModifyResponse">
18152
- <wsdl:part name="parameters" element="typens:telephonyConferenceRoomModifyResponse" />
18153
- </wsdl:message>
18154
-
18155
18111
  <wsdl:message name="dnsSoaModifyRequest">
18156
18112
  <wsdl:part name="parameters" element="typens:dnsSoaModify" />
18157
18113
  </wsdl:message>
@@ -18776,6 +18732,14 @@
18776
18732
  <wsdl:part name="parameters" element="typens:telephonyTonesOptionsListResponse" />
18777
18733
  </wsdl:message>
18778
18734
 
18735
+ <wsdl:message name="telephonySpareListRequest">
18736
+ <wsdl:part name="parameters" element="typens:telephonySpareList" />
18737
+ </wsdl:message>
18738
+
18739
+ <wsdl:message name="telephonySpareListResponse">
18740
+ <wsdl:part name="parameters" element="typens:telephonySpareListResponse" />
18741
+ </wsdl:message>
18742
+
18779
18743
  <wsdl:message name="supportReportAnswerProblemRequest">
18780
18744
  <wsdl:part name="parameters" element="typens:supportReportAnswerProblem" />
18781
18745
  </wsdl:message>
@@ -19152,6 +19116,14 @@
19152
19116
  <wsdl:part name="parameters" element="typens:telephonyPortabilityOrderResponse" />
19153
19117
  </wsdl:message>
19154
19118
 
19119
+ <wsdl:message name="passwordSoapiRequest">
19120
+ <wsdl:part name="parameters" element="typens:passwordSoapi" />
19121
+ </wsdl:message>
19122
+
19123
+ <wsdl:message name="passwordSoapiResponse">
19124
+ <wsdl:part name="parameters" element="typens:passwordSoapiResponse" />
19125
+ </wsdl:message>
19126
+
19155
19127
  <wsdl:message name="nicCreateRequest">
19156
19128
  <wsdl:part name="parameters" element="typens:nicCreate" />
19157
19129
  </wsdl:message>
@@ -19256,6 +19228,14 @@
19256
19228
  <wsdl:part name="parameters" element="typens:subDomainModifyResponse" />
19257
19229
  </wsdl:message>
19258
19230
 
19231
+ <wsdl:message name="telephonySpareReplaceOutOfOrderModemRequest">
19232
+ <wsdl:part name="parameters" element="typens:telephonySpareReplaceOutOfOrderModem" />
19233
+ </wsdl:message>
19234
+
19235
+ <wsdl:message name="telephonySpareReplaceOutOfOrderModemResponse">
19236
+ <wsdl:part name="parameters" element="typens:telephonySpareReplaceOutOfOrderModemResponse" />
19237
+ </wsdl:message>
19238
+
19259
19239
  <wsdl:message name="telephonyPlugAndPhoneOperationRequest">
19260
19240
  <wsdl:part name="parameters" element="typens:telephonyPlugAndPhoneOperation" />
19261
19241
  </wsdl:message>
@@ -19280,14 +19260,6 @@
19280
19260
  <wsdl:part name="parameters" element="typens:anonymousFtpInfoResponse" />
19281
19261
  </wsdl:message>
19282
19262
 
19283
- <wsdl:message name="telephonyPhonebookOnSmsContactModifyRequest">
19284
- <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsContactModify" />
19285
- </wsdl:message>
19286
-
19287
- <wsdl:message name="telephonyPhonebookOnSmsContactModifyResponse">
19288
- <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsContactModifyResponse" />
19289
- </wsdl:message>
19290
-
19291
19263
  <wsdl:message name="dedicatedCapabilitiesGetRequest">
19292
19264
  <wsdl:part name="parameters" element="typens:dedicatedCapabilitiesGet" />
19293
19265
  </wsdl:message>
@@ -19296,6 +19268,14 @@
19296
19268
  <wsdl:part name="parameters" element="typens:dedicatedCapabilitiesGetResponse" />
19297
19269
  </wsdl:message>
19298
19270
 
19271
+ <wsdl:message name="telephonyPhonebookOnSmsContactModifyRequest">
19272
+ <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsContactModify" />
19273
+ </wsdl:message>
19274
+
19275
+ <wsdl:message name="telephonyPhonebookOnSmsContactModifyResponse">
19276
+ <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsContactModifyResponse" />
19277
+ </wsdl:message>
19278
+
19299
19279
  <wsdl:message name="telephonyPhonebookOnSmsModifyRequest">
19300
19280
  <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsModify" />
19301
19281
  </wsdl:message>
@@ -19384,14 +19364,6 @@
19384
19364
  <wsdl:part name="parameters" element="typens:resellerDomainTransferASIAResponse" />
19385
19365
  </wsdl:message>
19386
19366
 
19387
- <wsdl:message name="telephonyConferenceLanguageModifyRequest">
19388
- <wsdl:part name="parameters" element="typens:telephonyConferenceLanguageModify" />
19389
- </wsdl:message>
19390
-
19391
- <wsdl:message name="telephonyConferenceLanguageModifyResponse">
19392
- <wsdl:part name="parameters" element="typens:telephonyConferenceLanguageModifyResponse" />
19393
- </wsdl:message>
19394
-
19395
19367
  <wsdl:message name="telephonySmsUserPasswordRequest">
19396
19368
  <wsdl:part name="parameters" element="typens:telephonySmsUserPassword" />
19397
19369
  </wsdl:message>
@@ -19488,14 +19460,6 @@
19488
19460
  <wsdl:part name="parameters" element="typens:telephonyLineSetSipDomainResponse" />
19489
19461
  </wsdl:message>
19490
19462
 
19491
- <wsdl:message name="telephonyConferenceAddRequest">
19492
- <wsdl:part name="parameters" element="typens:telephonyConferenceAdd" />
19493
- </wsdl:message>
19494
-
19495
- <wsdl:message name="telephonyConferenceAddResponse">
19496
- <wsdl:part name="parameters" element="typens:telephonyConferenceAddResponse" />
19497
- </wsdl:message>
19498
-
19499
19463
  <wsdl:message name="telephonyTrunkExternalDisplayedNumberDelRequest">
19500
19464
  <wsdl:part name="parameters" element="typens:telephonyTrunkExternalDisplayedNumberDel" />
19501
19465
  </wsdl:message>
@@ -19544,6 +19508,14 @@
19544
19508
  <wsdl:part name="parameters" element="typens:telephonyDeleteLineResponse" />
19545
19509
  </wsdl:message>
19546
19510
 
19511
+ <wsdl:message name="telephonySpareBrandPossibilitiesRequest">
19512
+ <wsdl:part name="parameters" element="typens:telephonySpareBrandPossibilities" />
19513
+ </wsdl:message>
19514
+
19515
+ <wsdl:message name="telephonySpareBrandPossibilitiesResponse">
19516
+ <wsdl:part name="parameters" element="typens:telephonySpareBrandPossibilitiesResponse" />
19517
+ </wsdl:message>
19518
+
19547
19519
  <wsdl:message name="nicModifyInfosITRequest">
19548
19520
  <wsdl:part name="parameters" element="typens:nicModifyInfosIT" />
19549
19521
  </wsdl:message>
@@ -19800,14 +19772,6 @@
19800
19772
  <wsdl:part name="parameters" element="typens:cmsRenewAdminPasswordResponse" />
19801
19773
  </wsdl:message>
19802
19774
 
19803
- <wsdl:message name="telephonyConferenceAnnounceDeleteRequest">
19804
- <wsdl:part name="parameters" element="typens:telephonyConferenceAnnounceDelete" />
19805
- </wsdl:message>
19806
-
19807
- <wsdl:message name="telephonyConferenceAnnounceDeleteResponse">
19808
- <wsdl:part name="parameters" element="typens:telephonyConferenceAnnounceDeleteResponse" />
19809
- </wsdl:message>
19810
-
19811
19775
  <wsdl:message name="dedicatedNetbootModifyByIdRequest">
19812
19776
  <wsdl:part name="parameters" element="typens:dedicatedNetbootModifyById" />
19813
19777
  </wsdl:message>
@@ -19856,14 +19820,6 @@
19856
19820
  <wsdl:part name="parameters" element="typens:databaseDeleteResponse" />
19857
19821
  </wsdl:message>
19858
19822
 
19859
- <wsdl:message name="telephonyConferenceAnnouncesStatusRequest">
19860
- <wsdl:part name="parameters" element="typens:telephonyConferenceAnnouncesStatus" />
19861
- </wsdl:message>
19862
-
19863
- <wsdl:message name="telephonyConferenceAnnouncesStatusResponse">
19864
- <wsdl:part name="parameters" element="typens:telephonyConferenceAnnouncesStatusResponse" />
19865
- </wsdl:message>
19866
-
19867
19823
  <wsdl:message name="resellerDomainCreateASIARequest">
19868
19824
  <wsdl:part name="parameters" element="typens:resellerDomainCreateASIA" />
19869
19825
  </wsdl:message>
@@ -19872,12 +19828,12 @@
19872
19828
  <wsdl:part name="parameters" element="typens:resellerDomainCreateASIAResponse" />
19873
19829
  </wsdl:message>
19874
19830
 
19875
- <wsdl:message name="nicChangePasswordRequest">
19876
- <wsdl:part name="parameters" element="typens:nicChangePassword" />
19831
+ <wsdl:message name="telephonyLineDetailsRequest">
19832
+ <wsdl:part name="parameters" element="typens:telephonyLineDetails" />
19877
19833
  </wsdl:message>
19878
19834
 
19879
- <wsdl:message name="nicChangePasswordResponse">
19880
- <wsdl:part name="parameters" element="typens:nicChangePasswordResponse" />
19835
+ <wsdl:message name="telephonyLineDetailsResponse">
19836
+ <wsdl:part name="parameters" element="typens:telephonyLineDetailsResponse" />
19881
19837
  </wsdl:message>
19882
19838
 
19883
19839
  <wsdl:message name="telephonyPhonebookContactDelRequest">
@@ -19992,14 +19948,6 @@
19992
19948
  <wsdl:part name="parameters" element="typens:mailingListInfoResponse" />
19993
19949
  </wsdl:message>
19994
19950
 
19995
- <wsdl:message name="telephonyPhonebookOnSmsContactListRequest">
19996
- <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsContactList" />
19997
- </wsdl:message>
19998
-
19999
- <wsdl:message name="telephonyPhonebookOnSmsContactListResponse">
20000
- <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsContactListResponse" />
20001
- </wsdl:message>
20002
-
20003
19951
  <wsdl:message name="serviceListRequest">
20004
19952
  <wsdl:part name="parameters" element="typens:serviceList" />
20005
19953
  </wsdl:message>
@@ -20012,8 +19960,16 @@
20012
19960
  <wsdl:part name="parameters" element="typens:serviceGroupSetComment" />
20013
19961
  </wsdl:message>
20014
19962
 
20015
- <wsdl:message name="serviceGroupSetCommentResponse">
20016
- <wsdl:part name="parameters" element="typens:serviceGroupSetCommentResponse" />
19963
+ <wsdl:message name="serviceGroupSetCommentResponse">
19964
+ <wsdl:part name="parameters" element="typens:serviceGroupSetCommentResponse" />
19965
+ </wsdl:message>
19966
+
19967
+ <wsdl:message name="telephonyPhonebookOnSmsContactListRequest">
19968
+ <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsContactList" />
19969
+ </wsdl:message>
19970
+
19971
+ <wsdl:message name="telephonyPhonebookOnSmsContactListResponse">
19972
+ <wsdl:part name="parameters" element="typens:telephonyPhonebookOnSmsContactListResponse" />
20017
19973
  </wsdl:message>
20018
19974
 
20019
19975
  <wsdl:message name="nicCreateITRequest">
@@ -21112,6 +21068,14 @@
21112
21068
  <wsdl:part name="parameters" element="typens:nicUpdateResponse" />
21113
21069
  </wsdl:message>
21114
21070
 
21071
+ <wsdl:message name="passwordManagerRequest">
21072
+ <wsdl:part name="parameters" element="typens:passwordManager" />
21073
+ </wsdl:message>
21074
+
21075
+ <wsdl:message name="passwordManagerResponse">
21076
+ <wsdl:part name="parameters" element="typens:passwordManagerResponse" />
21077
+ </wsdl:message>
21078
+
21115
21079
  <wsdl:message name="telephonyOfferModifyNameRequest">
21116
21080
  <wsdl:part name="parameters" element="typens:telephonyOfferModifyName" />
21117
21081
  </wsdl:message>
@@ -21376,14 +21340,6 @@
21376
21340
  <wsdl:part name="parameters" element="typens:dedicatedIPForUDPGetResponse" />
21377
21341
  </wsdl:message>
21378
21342
 
21379
- <wsdl:message name="telephonyConferenceOptionsModifyRequest">
21380
- <wsdl:part name="parameters" element="typens:telephonyConferenceOptionsModify" />
21381
- </wsdl:message>
21382
-
21383
- <wsdl:message name="telephonyConferenceOptionsModifyResponse">
21384
- <wsdl:part name="parameters" element="typens:telephonyConferenceOptionsModifyResponse" />
21385
- </wsdl:message>
21386
-
21387
21343
  <wsdl:message name="dedicatedGetAvailableIpFromNetworkRequest">
21388
21344
  <wsdl:part name="parameters" element="typens:dedicatedGetAvailableIpFromNetwork" />
21389
21345
  </wsdl:message>
@@ -21568,6 +21524,14 @@
21568
21524
  <wsdl:part name="parameters" element="typens:telephonyAbbreviatedNumberModifyResponse" />
21569
21525
  </wsdl:message>
21570
21526
 
21527
+ <wsdl:message name="telephonyOfferSimultaneousLinesModifyRequest">
21528
+ <wsdl:part name="parameters" element="typens:telephonyOfferSimultaneousLinesModify" />
21529
+ </wsdl:message>
21530
+
21531
+ <wsdl:message name="telephonyOfferSimultaneousLinesModifyResponse">
21532
+ <wsdl:part name="parameters" element="typens:telephonyOfferSimultaneousLinesModifyResponse" />
21533
+ </wsdl:message>
21534
+
21571
21535
  <wsdl:message name="dedicatedMonitoringServiceListRequest">
21572
21536
  <wsdl:part name="parameters" element="typens:dedicatedMonitoringServiceList" />
21573
21537
  </wsdl:message>
@@ -21594,11 +21558,6 @@
21594
21558
 
21595
21559
  <wsdl:portType name="managerPortType">
21596
21560
 
21597
- <wsdl:operation name="telephonyConferenceDel">
21598
- <wsdl:input message="wsdlns:telephonyConferenceDelRequest" />
21599
- <wsdl:output message="wsdlns:telephonyConferenceDelResponse" />
21600
- </wsdl:operation>
21601
-
21602
21561
  <wsdl:operation name="mailingListModeratorDel">
21603
21562
  <wsdl:input message="wsdlns:mailingListModeratorDelRequest" />
21604
21563
  <wsdl:output message="wsdlns:mailingListModeratorDelResponse" />
@@ -21899,6 +21858,11 @@
21899
21858
  <wsdl:output message="wsdlns:overquotaInfoResponse" />
21900
21859
  </wsdl:operation>
21901
21860
 
21861
+ <wsdl:operation name="telephonyConferenceSetAnnounceFile">
21862
+ <wsdl:input message="wsdlns:telephonyConferenceSetAnnounceFileRequest" />
21863
+ <wsdl:output message="wsdlns:telephonyConferenceSetAnnounceFileResponse" />
21864
+ </wsdl:operation>
21865
+
21902
21866
  <wsdl:operation name="automatedMailGetErrors">
21903
21867
  <wsdl:input message="wsdlns:automatedMailGetErrorsRequest" />
21904
21868
  <wsdl:output message="wsdlns:automatedMailGetErrorsResponse" />
@@ -22014,11 +21978,6 @@
22014
21978
  <wsdl:output message="wsdlns:emailDomainListByMasterNicResponse" />
22015
21979
  </wsdl:operation>
22016
21980
 
22017
- <wsdl:operation name="telephonyConferenceMailReportModify">
22018
- <wsdl:input message="wsdlns:telephonyConferenceMailReportModifyRequest" />
22019
- <wsdl:output message="wsdlns:telephonyConferenceMailReportModifyResponse" />
22020
- </wsdl:operation>
22021
-
22022
21981
  <wsdl:operation name="telephonyAbbreviatedNumberDel">
22023
21982
  <wsdl:input message="wsdlns:telephonyAbbreviatedNumberDelRequest" />
22024
21983
  <wsdl:output message="wsdlns:telephonyAbbreviatedNumberDelResponse" />
@@ -22144,21 +22103,11 @@
22144
22103
  <wsdl:output message="wsdlns:hostingAccessByNicResponse" />
22145
22104
  </wsdl:operation>
22146
22105
 
22147
- <wsdl:operation name="telephonyConferenceModeratorCallNumberModify">
22148
- <wsdl:input message="wsdlns:telephonyConferenceModeratorCallNumberModifyRequest" />
22149
- <wsdl:output message="wsdlns:telephonyConferenceModeratorCallNumberModifyResponse" />
22150
- </wsdl:operation>
22151
-
22152
22106
  <wsdl:operation name="sqlpriveAlertInfo">
22153
22107
  <wsdl:input message="wsdlns:sqlpriveAlertInfoRequest" />
22154
22108
  <wsdl:output message="wsdlns:sqlpriveAlertInfoResponse" />
22155
22109
  </wsdl:operation>
22156
22110
 
22157
- <wsdl:operation name="telephonyOfferSimultaneousLinesAdd">
22158
- <wsdl:input message="wsdlns:telephonyOfferSimultaneousLinesAddRequest" />
22159
- <wsdl:output message="wsdlns:telephonyOfferSimultaneousLinesAddResponse" />
22160
- </wsdl:operation>
22161
-
22162
22111
  <wsdl:operation name="mailingListFullInfo">
22163
22112
  <wsdl:input message="wsdlns:mailingListFullInfoRequest" />
22164
22113
  <wsdl:output message="wsdlns:mailingListFullInfoResponse" />
@@ -22229,11 +22178,6 @@
22229
22178
  <wsdl:output message="wsdlns:dedicatedRtmGetStatusResponse" />
22230
22179
  </wsdl:operation>
22231
22180
 
22232
- <wsdl:operation name="telephonyConferenceList">
22233
- <wsdl:input message="wsdlns:telephonyConferenceListRequest" />
22234
- <wsdl:output message="wsdlns:telephonyConferenceListResponse" />
22235
- </wsdl:operation>
22236
-
22237
22181
  <wsdl:operation name="managedServicesPartitionQuotaUsed">
22238
22182
  <wsdl:input message="wsdlns:managedServicesPartitionQuotaUsedRequest" />
22239
22183
  <wsdl:output message="wsdlns:managedServicesPartitionQuotaUsedResponse" />
@@ -22454,11 +22398,6 @@
22454
22398
  <wsdl:output message="wsdlns:dedicatedEditServiceMonitoringItemResponse" />
22455
22399
  </wsdl:operation>
22456
22400
 
22457
- <wsdl:operation name="password">
22458
- <wsdl:input message="wsdlns:passwordRequest" />
22459
- <wsdl:output message="wsdlns:passwordResponse" />
22460
- </wsdl:operation>
22461
-
22462
22401
  <wsdl:operation name="telephonySmsplusIsFreeKeyword">
22463
22402
  <wsdl:input message="wsdlns:telephonySmsplusIsFreeKeywordRequest" />
22464
22403
  <wsdl:output message="wsdlns:telephonySmsplusIsFreeKeywordResponse" />
@@ -22529,6 +22468,11 @@
22529
22468
  <wsdl:output message="wsdlns:dedicatedCapabilitiesGetAllResponse" />
22530
22469
  </wsdl:operation>
22531
22470
 
22471
+ <wsdl:operation name="telephonySparePurchase">
22472
+ <wsdl:input message="wsdlns:telephonySparePurchaseRequest" />
22473
+ <wsdl:output message="wsdlns:telephonySparePurchaseResponse" />
22474
+ </wsdl:operation>
22475
+
22532
22476
  <wsdl:operation name="nic">
22533
22477
  <wsdl:input message="wsdlns:nicRequest" />
22534
22478
  <wsdl:output message="wsdlns:nicResponse" />
@@ -22574,6 +22518,11 @@
22574
22518
  <wsdl:output message="wsdlns:telephonySmsGetUserQuotaForUserResponse" />
22575
22519
  </wsdl:operation>
22576
22520
 
22521
+ <wsdl:operation name="telephonyDirectoryInfoGetSiret">
22522
+ <wsdl:input message="wsdlns:telephonyDirectoryInfoGetSiretRequest" />
22523
+ <wsdl:output message="wsdlns:telephonyDirectoryInfoGetSiretResponse" />
22524
+ </wsdl:operation>
22525
+
22577
22526
  <wsdl:operation name="dedicatedMonitoringServiceAdd">
22578
22527
  <wsdl:input message="wsdlns:dedicatedMonitoringServiceAddRequest" />
22579
22528
  <wsdl:output message="wsdlns:dedicatedMonitoringServiceAddResponse" />
@@ -22749,11 +22698,6 @@
22749
22698
  <wsdl:output message="wsdlns:telephonyVoicemailModifyPasswordResponse" />
22750
22699
  </wsdl:operation>
22751
22700
 
22752
- <wsdl:operation name="telephonyConferenceRoomModify">
22753
- <wsdl:input message="wsdlns:telephonyConferenceRoomModifyRequest" />
22754
- <wsdl:output message="wsdlns:telephonyConferenceRoomModifyResponse" />
22755
- </wsdl:operation>
22756
-
22757
22701
  <wsdl:operation name="dnsSoaModify">
22758
22702
  <wsdl:input message="wsdlns:dnsSoaModifyRequest" />
22759
22703
  <wsdl:output message="wsdlns:dnsSoaModifyResponse" />
@@ -23144,6 +23088,11 @@
23144
23088
  <wsdl:output message="wsdlns:telephonyTonesOptionsListResponse" />
23145
23089
  </wsdl:operation>
23146
23090
 
23091
+ <wsdl:operation name="telephonySpareList">
23092
+ <wsdl:input message="wsdlns:telephonySpareListRequest" />
23093
+ <wsdl:output message="wsdlns:telephonySpareListResponse" />
23094
+ </wsdl:operation>
23095
+
23147
23096
  <wsdl:operation name="supportReportAnswerProblem">
23148
23097
  <wsdl:input message="wsdlns:supportReportAnswerProblemRequest" />
23149
23098
  <wsdl:output message="wsdlns:supportReportAnswerProblemResponse" />
@@ -23379,6 +23328,11 @@
23379
23328
  <wsdl:output message="wsdlns:telephonyPortabilityOrderResponse" />
23380
23329
  </wsdl:operation>
23381
23330
 
23331
+ <wsdl:operation name="passwordSoapi">
23332
+ <wsdl:input message="wsdlns:passwordSoapiRequest" />
23333
+ <wsdl:output message="wsdlns:passwordSoapiResponse" />
23334
+ </wsdl:operation>
23335
+
23382
23336
  <wsdl:operation name="nicCreate">
23383
23337
  <wsdl:input message="wsdlns:nicCreateRequest" />
23384
23338
  <wsdl:output message="wsdlns:nicCreateResponse" />
@@ -23444,6 +23398,11 @@
23444
23398
  <wsdl:output message="wsdlns:subDomainModifyResponse" />
23445
23399
  </wsdl:operation>
23446
23400
 
23401
+ <wsdl:operation name="telephonySpareReplaceOutOfOrderModem">
23402
+ <wsdl:input message="wsdlns:telephonySpareReplaceOutOfOrderModemRequest" />
23403
+ <wsdl:output message="wsdlns:telephonySpareReplaceOutOfOrderModemResponse" />
23404
+ </wsdl:operation>
23405
+
23447
23406
  <wsdl:operation name="telephonyPlugAndPhoneOperation">
23448
23407
  <wsdl:input message="wsdlns:telephonyPlugAndPhoneOperationRequest" />
23449
23408
  <wsdl:output message="wsdlns:telephonyPlugAndPhoneOperationResponse" />
@@ -23459,16 +23418,16 @@
23459
23418
  <wsdl:output message="wsdlns:anonymousFtpInfoResponse" />
23460
23419
  </wsdl:operation>
23461
23420
 
23462
- <wsdl:operation name="telephonyPhonebookOnSmsContactModify">
23463
- <wsdl:input message="wsdlns:telephonyPhonebookOnSmsContactModifyRequest" />
23464
- <wsdl:output message="wsdlns:telephonyPhonebookOnSmsContactModifyResponse" />
23465
- </wsdl:operation>
23466
-
23467
23421
  <wsdl:operation name="dedicatedCapabilitiesGet">
23468
23422
  <wsdl:input message="wsdlns:dedicatedCapabilitiesGetRequest" />
23469
23423
  <wsdl:output message="wsdlns:dedicatedCapabilitiesGetResponse" />
23470
23424
  </wsdl:operation>
23471
23425
 
23426
+ <wsdl:operation name="telephonyPhonebookOnSmsContactModify">
23427
+ <wsdl:input message="wsdlns:telephonyPhonebookOnSmsContactModifyRequest" />
23428
+ <wsdl:output message="wsdlns:telephonyPhonebookOnSmsContactModifyResponse" />
23429
+ </wsdl:operation>
23430
+
23472
23431
  <wsdl:operation name="telephonyPhonebookOnSmsModify">
23473
23432
  <wsdl:input message="wsdlns:telephonyPhonebookOnSmsModifyRequest" />
23474
23433
  <wsdl:output message="wsdlns:telephonyPhonebookOnSmsModifyResponse" />
@@ -23524,11 +23483,6 @@
23524
23483
  <wsdl:output message="wsdlns:resellerDomainTransferASIAResponse" />
23525
23484
  </wsdl:operation>
23526
23485
 
23527
- <wsdl:operation name="telephonyConferenceLanguageModify">
23528
- <wsdl:input message="wsdlns:telephonyConferenceLanguageModifyRequest" />
23529
- <wsdl:output message="wsdlns:telephonyConferenceLanguageModifyResponse" />
23530
- </wsdl:operation>
23531
-
23532
23486
  <wsdl:operation name="telephonySmsUserPassword">
23533
23487
  <wsdl:input message="wsdlns:telephonySmsUserPasswordRequest" />
23534
23488
  <wsdl:output message="wsdlns:telephonySmsUserPasswordResponse" />
@@ -23589,11 +23543,6 @@
23589
23543
  <wsdl:output message="wsdlns:telephonyLineSetSipDomainResponse" />
23590
23544
  </wsdl:operation>
23591
23545
 
23592
- <wsdl:operation name="telephonyConferenceAdd">
23593
- <wsdl:input message="wsdlns:telephonyConferenceAddRequest" />
23594
- <wsdl:output message="wsdlns:telephonyConferenceAddResponse" />
23595
- </wsdl:operation>
23596
-
23597
23546
  <wsdl:operation name="telephonyTrunkExternalDisplayedNumberDel">
23598
23547
  <wsdl:input message="wsdlns:telephonyTrunkExternalDisplayedNumberDelRequest" />
23599
23548
  <wsdl:output message="wsdlns:telephonyTrunkExternalDisplayedNumberDelResponse" />
@@ -23624,6 +23573,11 @@
23624
23573
  <wsdl:output message="wsdlns:telephonyDeleteLineResponse" />
23625
23574
  </wsdl:operation>
23626
23575
 
23576
+ <wsdl:operation name="telephonySpareBrandPossibilities">
23577
+ <wsdl:input message="wsdlns:telephonySpareBrandPossibilitiesRequest" />
23578
+ <wsdl:output message="wsdlns:telephonySpareBrandPossibilitiesResponse" />
23579
+ </wsdl:operation>
23580
+
23627
23581
  <wsdl:operation name="nicModifyInfosIT">
23628
23582
  <wsdl:input message="wsdlns:nicModifyInfosITRequest" />
23629
23583
  <wsdl:output message="wsdlns:nicModifyInfosITResponse" />
@@ -23784,11 +23738,6 @@
23784
23738
  <wsdl:output message="wsdlns:cmsRenewAdminPasswordResponse" />
23785
23739
  </wsdl:operation>
23786
23740
 
23787
- <wsdl:operation name="telephonyConferenceAnnounceDelete">
23788
- <wsdl:input message="wsdlns:telephonyConferenceAnnounceDeleteRequest" />
23789
- <wsdl:output message="wsdlns:telephonyConferenceAnnounceDeleteResponse" />
23790
- </wsdl:operation>
23791
-
23792
23741
  <wsdl:operation name="dedicatedNetbootModifyById">
23793
23742
  <wsdl:input message="wsdlns:dedicatedNetbootModifyByIdRequest" />
23794
23743
  <wsdl:output message="wsdlns:dedicatedNetbootModifyByIdResponse" />
@@ -23819,19 +23768,14 @@
23819
23768
  <wsdl:output message="wsdlns:databaseDeleteResponse" />
23820
23769
  </wsdl:operation>
23821
23770
 
23822
- <wsdl:operation name="telephonyConferenceAnnouncesStatus">
23823
- <wsdl:input message="wsdlns:telephonyConferenceAnnouncesStatusRequest" />
23824
- <wsdl:output message="wsdlns:telephonyConferenceAnnouncesStatusResponse" />
23825
- </wsdl:operation>
23826
-
23827
23771
  <wsdl:operation name="resellerDomainCreateASIA">
23828
23772
  <wsdl:input message="wsdlns:resellerDomainCreateASIARequest" />
23829
23773
  <wsdl:output message="wsdlns:resellerDomainCreateASIAResponse" />
23830
23774
  </wsdl:operation>
23831
23775
 
23832
- <wsdl:operation name="nicChangePassword">
23833
- <wsdl:input message="wsdlns:nicChangePasswordRequest" />
23834
- <wsdl:output message="wsdlns:nicChangePasswordResponse" />
23776
+ <wsdl:operation name="telephonyLineDetails">
23777
+ <wsdl:input message="wsdlns:telephonyLineDetailsRequest" />
23778
+ <wsdl:output message="wsdlns:telephonyLineDetailsResponse" />
23835
23779
  </wsdl:operation>
23836
23780
 
23837
23781
  <wsdl:operation name="telephonyPhonebookContactDel">
@@ -23904,11 +23848,6 @@
23904
23848
  <wsdl:output message="wsdlns:mailingListInfoResponse" />
23905
23849
  </wsdl:operation>
23906
23850
 
23907
- <wsdl:operation name="telephonyPhonebookOnSmsContactList">
23908
- <wsdl:input message="wsdlns:telephonyPhonebookOnSmsContactListRequest" />
23909
- <wsdl:output message="wsdlns:telephonyPhonebookOnSmsContactListResponse" />
23910
- </wsdl:operation>
23911
-
23912
23851
  <wsdl:operation name="serviceList">
23913
23852
  <wsdl:input message="wsdlns:serviceListRequest" />
23914
23853
  <wsdl:output message="wsdlns:serviceListResponse" />
@@ -23919,6 +23858,11 @@
23919
23858
  <wsdl:output message="wsdlns:serviceGroupSetCommentResponse" />
23920
23859
  </wsdl:operation>
23921
23860
 
23861
+ <wsdl:operation name="telephonyPhonebookOnSmsContactList">
23862
+ <wsdl:input message="wsdlns:telephonyPhonebookOnSmsContactListRequest" />
23863
+ <wsdl:output message="wsdlns:telephonyPhonebookOnSmsContactListResponse" />
23864
+ </wsdl:operation>
23865
+
23922
23866
  <wsdl:operation name="nicCreateIT">
23923
23867
  <wsdl:input message="wsdlns:nicCreateITRequest" />
23924
23868
  <wsdl:output message="wsdlns:nicCreateITResponse" />
@@ -24604,6 +24548,11 @@
24604
24548
  <wsdl:output message="wsdlns:nicUpdateResponse" />
24605
24549
  </wsdl:operation>
24606
24550
 
24551
+ <wsdl:operation name="passwordManager">
24552
+ <wsdl:input message="wsdlns:passwordManagerRequest" />
24553
+ <wsdl:output message="wsdlns:passwordManagerResponse" />
24554
+ </wsdl:operation>
24555
+
24607
24556
  <wsdl:operation name="telephonyOfferModifyName">
24608
24557
  <wsdl:input message="wsdlns:telephonyOfferModifyNameRequest" />
24609
24558
  <wsdl:output message="wsdlns:telephonyOfferModifyNameResponse" />
@@ -24769,11 +24718,6 @@
24769
24718
  <wsdl:output message="wsdlns:dedicatedIPForUDPGetResponse" />
24770
24719
  </wsdl:operation>
24771
24720
 
24772
- <wsdl:operation name="telephonyConferenceOptionsModify">
24773
- <wsdl:input message="wsdlns:telephonyConferenceOptionsModifyRequest" />
24774
- <wsdl:output message="wsdlns:telephonyConferenceOptionsModifyResponse" />
24775
- </wsdl:operation>
24776
-
24777
24721
  <wsdl:operation name="dedicatedGetAvailableIpFromNetwork">
24778
24722
  <wsdl:input message="wsdlns:dedicatedGetAvailableIpFromNetworkRequest" />
24779
24723
  <wsdl:output message="wsdlns:dedicatedGetAvailableIpFromNetworkResponse" />
@@ -24889,6 +24833,11 @@
24889
24833
  <wsdl:output message="wsdlns:telephonyAbbreviatedNumberModifyResponse" />
24890
24834
  </wsdl:operation>
24891
24835
 
24836
+ <wsdl:operation name="telephonyOfferSimultaneousLinesModify">
24837
+ <wsdl:input message="wsdlns:telephonyOfferSimultaneousLinesModifyRequest" />
24838
+ <wsdl:output message="wsdlns:telephonyOfferSimultaneousLinesModifyResponse" />
24839
+ </wsdl:operation>
24840
+
24892
24841
  <wsdl:operation name="dedicatedMonitoringServiceList">
24893
24842
  <wsdl:input message="wsdlns:dedicatedMonitoringServiceListRequest" />
24894
24843
  <wsdl:output message="wsdlns:dedicatedMonitoringServiceListResponse" />
@@ -24909,16 +24858,6 @@
24909
24858
  <wsdl:binding name="managerBinding" type="wsdlns:managerPortType">
24910
24859
  <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
24911
24860
 
24912
- <wsdl:operation name="telephonyConferenceDel">
24913
- <soap:operation soapAction="" />
24914
- <wsdl:input name="telephonyConferenceDelRequest">
24915
- <soap:body use="literal" />
24916
- </wsdl:input>
24917
- <wsdl:output name="telephonyConferenceDelResponse">
24918
- <soap:body use="literal" />
24919
- </wsdl:output>
24920
- </wsdl:operation>
24921
-
24922
24861
  <wsdl:operation name="mailingListModeratorDel">
24923
24862
  <soap:operation soapAction="" />
24924
24863
  <wsdl:input name="mailingListModeratorDelRequest">
@@ -25519,6 +25458,16 @@
25519
25458
  </wsdl:output>
25520
25459
  </wsdl:operation>
25521
25460
 
25461
+ <wsdl:operation name="telephonyConferenceSetAnnounceFile">
25462
+ <soap:operation soapAction="" />
25463
+ <wsdl:input name="telephonyConferenceSetAnnounceFileRequest">
25464
+ <soap:body use="literal" />
25465
+ </wsdl:input>
25466
+ <wsdl:output name="telephonyConferenceSetAnnounceFileResponse">
25467
+ <soap:body use="literal" />
25468
+ </wsdl:output>
25469
+ </wsdl:operation>
25470
+
25522
25471
  <wsdl:operation name="automatedMailGetErrors">
25523
25472
  <soap:operation soapAction="" />
25524
25473
  <wsdl:input name="automatedMailGetErrorsRequest">
@@ -25749,16 +25698,6 @@
25749
25698
  </wsdl:output>
25750
25699
  </wsdl:operation>
25751
25700
 
25752
- <wsdl:operation name="telephonyConferenceMailReportModify">
25753
- <soap:operation soapAction="" />
25754
- <wsdl:input name="telephonyConferenceMailReportModifyRequest">
25755
- <soap:body use="literal" />
25756
- </wsdl:input>
25757
- <wsdl:output name="telephonyConferenceMailReportModifyResponse">
25758
- <soap:body use="literal" />
25759
- </wsdl:output>
25760
- </wsdl:operation>
25761
-
25762
25701
  <wsdl:operation name="telephonyAbbreviatedNumberDel">
25763
25702
  <soap:operation soapAction="" />
25764
25703
  <wsdl:input name="telephonyAbbreviatedNumberDelRequest">
@@ -26009,16 +25948,6 @@
26009
25948
  </wsdl:output>
26010
25949
  </wsdl:operation>
26011
25950
 
26012
- <wsdl:operation name="telephonyConferenceModeratorCallNumberModify">
26013
- <soap:operation soapAction="" />
26014
- <wsdl:input name="telephonyConferenceModeratorCallNumberModifyRequest">
26015
- <soap:body use="literal" />
26016
- </wsdl:input>
26017
- <wsdl:output name="telephonyConferenceModeratorCallNumberModifyResponse">
26018
- <soap:body use="literal" />
26019
- </wsdl:output>
26020
- </wsdl:operation>
26021
-
26022
25951
  <wsdl:operation name="sqlpriveAlertInfo">
26023
25952
  <soap:operation soapAction="" />
26024
25953
  <wsdl:input name="sqlpriveAlertInfoRequest">
@@ -26029,16 +25958,6 @@
26029
25958
  </wsdl:output>
26030
25959
  </wsdl:operation>
26031
25960
 
26032
- <wsdl:operation name="telephonyOfferSimultaneousLinesAdd">
26033
- <soap:operation soapAction="" />
26034
- <wsdl:input name="telephonyOfferSimultaneousLinesAddRequest">
26035
- <soap:body use="literal" />
26036
- </wsdl:input>
26037
- <wsdl:output name="telephonyOfferSimultaneousLinesAddResponse">
26038
- <soap:body use="literal" />
26039
- </wsdl:output>
26040
- </wsdl:operation>
26041
-
26042
25961
  <wsdl:operation name="mailingListFullInfo">
26043
25962
  <soap:operation soapAction="" />
26044
25963
  <wsdl:input name="mailingListFullInfoRequest">
@@ -26179,16 +26098,6 @@
26179
26098
  </wsdl:output>
26180
26099
  </wsdl:operation>
26181
26100
 
26182
- <wsdl:operation name="telephonyConferenceList">
26183
- <soap:operation soapAction="" />
26184
- <wsdl:input name="telephonyConferenceListRequest">
26185
- <soap:body use="literal" />
26186
- </wsdl:input>
26187
- <wsdl:output name="telephonyConferenceListResponse">
26188
- <soap:body use="literal" />
26189
- </wsdl:output>
26190
- </wsdl:operation>
26191
-
26192
26101
  <wsdl:operation name="managedServicesPartitionQuotaUsed">
26193
26102
  <soap:operation soapAction="" />
26194
26103
  <wsdl:input name="managedServicesPartitionQuotaUsedRequest">
@@ -26629,16 +26538,6 @@
26629
26538
  </wsdl:output>
26630
26539
  </wsdl:operation>
26631
26540
 
26632
- <wsdl:operation name="password">
26633
- <soap:operation soapAction="" />
26634
- <wsdl:input name="passwordRequest">
26635
- <soap:body use="literal" />
26636
- </wsdl:input>
26637
- <wsdl:output name="passwordResponse">
26638
- <soap:body use="literal" />
26639
- </wsdl:output>
26640
- </wsdl:operation>
26641
-
26642
26541
  <wsdl:operation name="telephonySmsplusIsFreeKeyword">
26643
26542
  <soap:operation soapAction="" />
26644
26543
  <wsdl:input name="telephonySmsplusIsFreeKeywordRequest">
@@ -26779,6 +26678,16 @@
26779
26678
  </wsdl:output>
26780
26679
  </wsdl:operation>
26781
26680
 
26681
+ <wsdl:operation name="telephonySparePurchase">
26682
+ <soap:operation soapAction="" />
26683
+ <wsdl:input name="telephonySparePurchaseRequest">
26684
+ <soap:body use="literal" />
26685
+ </wsdl:input>
26686
+ <wsdl:output name="telephonySparePurchaseResponse">
26687
+ <soap:body use="literal" />
26688
+ </wsdl:output>
26689
+ </wsdl:operation>
26690
+
26782
26691
  <wsdl:operation name="nic">
26783
26692
  <soap:operation soapAction="" />
26784
26693
  <wsdl:input name="nicRequest">
@@ -26869,6 +26778,16 @@
26869
26778
  </wsdl:output>
26870
26779
  </wsdl:operation>
26871
26780
 
26781
+ <wsdl:operation name="telephonyDirectoryInfoGetSiret">
26782
+ <soap:operation soapAction="" />
26783
+ <wsdl:input name="telephonyDirectoryInfoGetSiretRequest">
26784
+ <soap:body use="literal" />
26785
+ </wsdl:input>
26786
+ <wsdl:output name="telephonyDirectoryInfoGetSiretResponse">
26787
+ <soap:body use="literal" />
26788
+ </wsdl:output>
26789
+ </wsdl:operation>
26790
+
26872
26791
  <wsdl:operation name="dedicatedMonitoringServiceAdd">
26873
26792
  <soap:operation soapAction="" />
26874
26793
  <wsdl:input name="dedicatedMonitoringServiceAddRequest">
@@ -27219,16 +27138,6 @@
27219
27138
  </wsdl:output>
27220
27139
  </wsdl:operation>
27221
27140
 
27222
- <wsdl:operation name="telephonyConferenceRoomModify">
27223
- <soap:operation soapAction="" />
27224
- <wsdl:input name="telephonyConferenceRoomModifyRequest">
27225
- <soap:body use="literal" />
27226
- </wsdl:input>
27227
- <wsdl:output name="telephonyConferenceRoomModifyResponse">
27228
- <soap:body use="literal" />
27229
- </wsdl:output>
27230
- </wsdl:operation>
27231
-
27232
27141
  <wsdl:operation name="dnsSoaModify">
27233
27142
  <soap:operation soapAction="" />
27234
27143
  <wsdl:input name="dnsSoaModifyRequest">
@@ -28009,6 +27918,16 @@
28009
27918
  </wsdl:output>
28010
27919
  </wsdl:operation>
28011
27920
 
27921
+ <wsdl:operation name="telephonySpareList">
27922
+ <soap:operation soapAction="" />
27923
+ <wsdl:input name="telephonySpareListRequest">
27924
+ <soap:body use="literal" />
27925
+ </wsdl:input>
27926
+ <wsdl:output name="telephonySpareListResponse">
27927
+ <soap:body use="literal" />
27928
+ </wsdl:output>
27929
+ </wsdl:operation>
27930
+
28012
27931
  <wsdl:operation name="supportReportAnswerProblem">
28013
27932
  <soap:operation soapAction="" />
28014
27933
  <wsdl:input name="supportReportAnswerProblemRequest">
@@ -28479,6 +28398,16 @@
28479
28398
  </wsdl:output>
28480
28399
  </wsdl:operation>
28481
28400
 
28401
+ <wsdl:operation name="passwordSoapi">
28402
+ <soap:operation soapAction="" />
28403
+ <wsdl:input name="passwordSoapiRequest">
28404
+ <soap:body use="literal" />
28405
+ </wsdl:input>
28406
+ <wsdl:output name="passwordSoapiResponse">
28407
+ <soap:body use="literal" />
28408
+ </wsdl:output>
28409
+ </wsdl:operation>
28410
+
28482
28411
  <wsdl:operation name="nicCreate">
28483
28412
  <soap:operation soapAction="" />
28484
28413
  <wsdl:input name="nicCreateRequest">
@@ -28609,6 +28538,16 @@
28609
28538
  </wsdl:output>
28610
28539
  </wsdl:operation>
28611
28540
 
28541
+ <wsdl:operation name="telephonySpareReplaceOutOfOrderModem">
28542
+ <soap:operation soapAction="" />
28543
+ <wsdl:input name="telephonySpareReplaceOutOfOrderModemRequest">
28544
+ <soap:body use="literal" />
28545
+ </wsdl:input>
28546
+ <wsdl:output name="telephonySpareReplaceOutOfOrderModemResponse">
28547
+ <soap:body use="literal" />
28548
+ </wsdl:output>
28549
+ </wsdl:operation>
28550
+
28612
28551
  <wsdl:operation name="telephonyPlugAndPhoneOperation">
28613
28552
  <soap:operation soapAction="" />
28614
28553
  <wsdl:input name="telephonyPlugAndPhoneOperationRequest">
@@ -28639,22 +28578,22 @@
28639
28578
  </wsdl:output>
28640
28579
  </wsdl:operation>
28641
28580
 
28642
- <wsdl:operation name="telephonyPhonebookOnSmsContactModify">
28581
+ <wsdl:operation name="dedicatedCapabilitiesGet">
28643
28582
  <soap:operation soapAction="" />
28644
- <wsdl:input name="telephonyPhonebookOnSmsContactModifyRequest">
28583
+ <wsdl:input name="dedicatedCapabilitiesGetRequest">
28645
28584
  <soap:body use="literal" />
28646
28585
  </wsdl:input>
28647
- <wsdl:output name="telephonyPhonebookOnSmsContactModifyResponse">
28586
+ <wsdl:output name="dedicatedCapabilitiesGetResponse">
28648
28587
  <soap:body use="literal" />
28649
28588
  </wsdl:output>
28650
28589
  </wsdl:operation>
28651
28590
 
28652
- <wsdl:operation name="dedicatedCapabilitiesGet">
28591
+ <wsdl:operation name="telephonyPhonebookOnSmsContactModify">
28653
28592
  <soap:operation soapAction="" />
28654
- <wsdl:input name="dedicatedCapabilitiesGetRequest">
28593
+ <wsdl:input name="telephonyPhonebookOnSmsContactModifyRequest">
28655
28594
  <soap:body use="literal" />
28656
28595
  </wsdl:input>
28657
- <wsdl:output name="dedicatedCapabilitiesGetResponse">
28596
+ <wsdl:output name="telephonyPhonebookOnSmsContactModifyResponse">
28658
28597
  <soap:body use="literal" />
28659
28598
  </wsdl:output>
28660
28599
  </wsdl:operation>
@@ -28769,16 +28708,6 @@
28769
28708
  </wsdl:output>
28770
28709
  </wsdl:operation>
28771
28710
 
28772
- <wsdl:operation name="telephonyConferenceLanguageModify">
28773
- <soap:operation soapAction="" />
28774
- <wsdl:input name="telephonyConferenceLanguageModifyRequest">
28775
- <soap:body use="literal" />
28776
- </wsdl:input>
28777
- <wsdl:output name="telephonyConferenceLanguageModifyResponse">
28778
- <soap:body use="literal" />
28779
- </wsdl:output>
28780
- </wsdl:operation>
28781
-
28782
28711
  <wsdl:operation name="telephonySmsUserPassword">
28783
28712
  <soap:operation soapAction="" />
28784
28713
  <wsdl:input name="telephonySmsUserPasswordRequest">
@@ -28899,16 +28828,6 @@
28899
28828
  </wsdl:output>
28900
28829
  </wsdl:operation>
28901
28830
 
28902
- <wsdl:operation name="telephonyConferenceAdd">
28903
- <soap:operation soapAction="" />
28904
- <wsdl:input name="telephonyConferenceAddRequest">
28905
- <soap:body use="literal" />
28906
- </wsdl:input>
28907
- <wsdl:output name="telephonyConferenceAddResponse">
28908
- <soap:body use="literal" />
28909
- </wsdl:output>
28910
- </wsdl:operation>
28911
-
28912
28831
  <wsdl:operation name="telephonyTrunkExternalDisplayedNumberDel">
28913
28832
  <soap:operation soapAction="" />
28914
28833
  <wsdl:input name="telephonyTrunkExternalDisplayedNumberDelRequest">
@@ -28969,6 +28888,16 @@
28969
28888
  </wsdl:output>
28970
28889
  </wsdl:operation>
28971
28890
 
28891
+ <wsdl:operation name="telephonySpareBrandPossibilities">
28892
+ <soap:operation soapAction="" />
28893
+ <wsdl:input name="telephonySpareBrandPossibilitiesRequest">
28894
+ <soap:body use="literal" />
28895
+ </wsdl:input>
28896
+ <wsdl:output name="telephonySpareBrandPossibilitiesResponse">
28897
+ <soap:body use="literal" />
28898
+ </wsdl:output>
28899
+ </wsdl:operation>
28900
+
28972
28901
  <wsdl:operation name="nicModifyInfosIT">
28973
28902
  <soap:operation soapAction="" />
28974
28903
  <wsdl:input name="nicModifyInfosITRequest">
@@ -29289,16 +29218,6 @@
29289
29218
  </wsdl:output>
29290
29219
  </wsdl:operation>
29291
29220
 
29292
- <wsdl:operation name="telephonyConferenceAnnounceDelete">
29293
- <soap:operation soapAction="" />
29294
- <wsdl:input name="telephonyConferenceAnnounceDeleteRequest">
29295
- <soap:body use="literal" />
29296
- </wsdl:input>
29297
- <wsdl:output name="telephonyConferenceAnnounceDeleteResponse">
29298
- <soap:body use="literal" />
29299
- </wsdl:output>
29300
- </wsdl:operation>
29301
-
29302
29221
  <wsdl:operation name="dedicatedNetbootModifyById">
29303
29222
  <soap:operation soapAction="" />
29304
29223
  <wsdl:input name="dedicatedNetbootModifyByIdRequest">
@@ -29359,16 +29278,6 @@
29359
29278
  </wsdl:output>
29360
29279
  </wsdl:operation>
29361
29280
 
29362
- <wsdl:operation name="telephonyConferenceAnnouncesStatus">
29363
- <soap:operation soapAction="" />
29364
- <wsdl:input name="telephonyConferenceAnnouncesStatusRequest">
29365
- <soap:body use="literal" />
29366
- </wsdl:input>
29367
- <wsdl:output name="telephonyConferenceAnnouncesStatusResponse">
29368
- <soap:body use="literal" />
29369
- </wsdl:output>
29370
- </wsdl:operation>
29371
-
29372
29281
  <wsdl:operation name="resellerDomainCreateASIA">
29373
29282
  <soap:operation soapAction="" />
29374
29283
  <wsdl:input name="resellerDomainCreateASIARequest">
@@ -29379,12 +29288,12 @@
29379
29288
  </wsdl:output>
29380
29289
  </wsdl:operation>
29381
29290
 
29382
- <wsdl:operation name="nicChangePassword">
29291
+ <wsdl:operation name="telephonyLineDetails">
29383
29292
  <soap:operation soapAction="" />
29384
- <wsdl:input name="nicChangePasswordRequest">
29293
+ <wsdl:input name="telephonyLineDetailsRequest">
29385
29294
  <soap:body use="literal" />
29386
29295
  </wsdl:input>
29387
- <wsdl:output name="nicChangePasswordResponse">
29296
+ <wsdl:output name="telephonyLineDetailsResponse">
29388
29297
  <soap:body use="literal" />
29389
29298
  </wsdl:output>
29390
29299
  </wsdl:operation>
@@ -29529,32 +29438,32 @@
29529
29438
  </wsdl:output>
29530
29439
  </wsdl:operation>
29531
29440
 
29532
- <wsdl:operation name="telephonyPhonebookOnSmsContactList">
29441
+ <wsdl:operation name="serviceList">
29533
29442
  <soap:operation soapAction="" />
29534
- <wsdl:input name="telephonyPhonebookOnSmsContactListRequest">
29443
+ <wsdl:input name="serviceListRequest">
29535
29444
  <soap:body use="literal" />
29536
29445
  </wsdl:input>
29537
- <wsdl:output name="telephonyPhonebookOnSmsContactListResponse">
29446
+ <wsdl:output name="serviceListResponse">
29538
29447
  <soap:body use="literal" />
29539
29448
  </wsdl:output>
29540
29449
  </wsdl:operation>
29541
29450
 
29542
- <wsdl:operation name="serviceList">
29451
+ <wsdl:operation name="serviceGroupSetComment">
29543
29452
  <soap:operation soapAction="" />
29544
- <wsdl:input name="serviceListRequest">
29453
+ <wsdl:input name="serviceGroupSetCommentRequest">
29545
29454
  <soap:body use="literal" />
29546
29455
  </wsdl:input>
29547
- <wsdl:output name="serviceListResponse">
29456
+ <wsdl:output name="serviceGroupSetCommentResponse">
29548
29457
  <soap:body use="literal" />
29549
29458
  </wsdl:output>
29550
29459
  </wsdl:operation>
29551
29460
 
29552
- <wsdl:operation name="serviceGroupSetComment">
29461
+ <wsdl:operation name="telephonyPhonebookOnSmsContactList">
29553
29462
  <soap:operation soapAction="" />
29554
- <wsdl:input name="serviceGroupSetCommentRequest">
29463
+ <wsdl:input name="telephonyPhonebookOnSmsContactListRequest">
29555
29464
  <soap:body use="literal" />
29556
29465
  </wsdl:input>
29557
- <wsdl:output name="serviceGroupSetCommentResponse">
29466
+ <wsdl:output name="telephonyPhonebookOnSmsContactListResponse">
29558
29467
  <soap:body use="literal" />
29559
29468
  </wsdl:output>
29560
29469
  </wsdl:operation>
@@ -30929,6 +30838,16 @@
30929
30838
  </wsdl:output>
30930
30839
  </wsdl:operation>
30931
30840
 
30841
+ <wsdl:operation name="passwordManager">
30842
+ <soap:operation soapAction="" />
30843
+ <wsdl:input name="passwordManagerRequest">
30844
+ <soap:body use="literal" />
30845
+ </wsdl:input>
30846
+ <wsdl:output name="passwordManagerResponse">
30847
+ <soap:body use="literal" />
30848
+ </wsdl:output>
30849
+ </wsdl:operation>
30850
+
30932
30851
  <wsdl:operation name="telephonyOfferModifyName">
30933
30852
  <soap:operation soapAction="" />
30934
30853
  <wsdl:input name="telephonyOfferModifyNameRequest">
@@ -31259,16 +31178,6 @@
31259
31178
  </wsdl:output>
31260
31179
  </wsdl:operation>
31261
31180
 
31262
- <wsdl:operation name="telephonyConferenceOptionsModify">
31263
- <soap:operation soapAction="" />
31264
- <wsdl:input name="telephonyConferenceOptionsModifyRequest">
31265
- <soap:body use="literal" />
31266
- </wsdl:input>
31267
- <wsdl:output name="telephonyConferenceOptionsModifyResponse">
31268
- <soap:body use="literal" />
31269
- </wsdl:output>
31270
- </wsdl:operation>
31271
-
31272
31181
  <wsdl:operation name="dedicatedGetAvailableIpFromNetwork">
31273
31182
  <soap:operation soapAction="" />
31274
31183
  <wsdl:input name="dedicatedGetAvailableIpFromNetworkRequest">
@@ -31499,6 +31408,16 @@
31499
31408
  </wsdl:output>
31500
31409
  </wsdl:operation>
31501
31410
 
31411
+ <wsdl:operation name="telephonyOfferSimultaneousLinesModify">
31412
+ <soap:operation soapAction="" />
31413
+ <wsdl:input name="telephonyOfferSimultaneousLinesModifyRequest">
31414
+ <soap:body use="literal" />
31415
+ </wsdl:input>
31416
+ <wsdl:output name="telephonyOfferSimultaneousLinesModifyResponse">
31417
+ <soap:body use="literal" />
31418
+ </wsdl:output>
31419
+ </wsdl:operation>
31420
+
31502
31421
  <wsdl:operation name="dedicatedMonitoringServiceList">
31503
31422
  <soap:operation soapAction="" />
31504
31423
  <wsdl:input name="dedicatedMonitoringServiceListRequest">